.selectorHead {
  margin-bottom: 8px;
  overflow-y: visible;
}
.selectorTitle__wrap {
  position: relative;
}
.selectorTitle__wrap .selectorTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Hiragino Kaku Gothic StdN";
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 8px;
}
.selectorTitle__wrap .backArrow {
  all: unset;
  position: absolute;
  content: "";
  background-image: url(https://ticket.moviewalker.jp/img/icon/ic_arrow_gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  left: 32px;
  cursor: pointer;
}
.selectorTitle__wrap .selectorTitle > img {
  width: 10px;
  height: 14px;
  margin: 0 6px;
}
.selectorTabs {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  margin-bottom: 8px;
}
.selectorTabs .selectorTab {
  width: 100%;
  text-align: center;
}
.selectorTabs .selectorTab span {
  display: inline-block;
  padding: 4px 16px 6px;
  color: #999;
  font-size: 14px;
  font-weight: bold;
  line-height: 160%;
}
.selectorTabs .selectorTab:hover span {
  position: relative;
  color: #e71410;
}
.selectorTabs .selectorTab:hover span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #e71410;
}
.selectorTabs .selectorTab.active span {
  display: inline-block;
  color: #e71410;
  position: relative;
}
.selectorTabs .selectorTab.active span::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #e71410;
}
.scheduleDays .scheduleDays__list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background-color: #f2f2f2;
  padding: 1px 0;
}
.scheduleDays .scheduleDays__list .scheduleDays__listItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background-color: #fff;
  font-size: 11px;
  font-weight: normal;
  line-height: 100%;
  color: #666;
  padding: 8px;
}
.scheduleDays .scheduleDays__list .scheduleDays__listItem:hover {
  background-color: #000;
  color: #fff;
}
.scheduleDays .scheduleDays__list .scheduleDays__listItem span {
  font-family: "Roboto";
  font-size: 14px;
  font-weight: bold;
  line-height: 100%;
}
.scheduleDays .scheduleDays__list .scheduleDays__listItem.active {
  background-color: #000;
  color: #fff;
  border: solid 1px #000;
}
@media screen and (max-width: 767px) {
  .selectorHead {
    margin-bottom: 12px;
  }
  .selectorTitle__wrap .backArrow {
    left: 16px;
  }
  .selectorTabs .selectorTab span {
    padding: 8px 16px 6px;
  }
}
