@charset "UTF-8";

@media screen and (min-width: 768px) {
  .wrapper {
    overflow: revert;
  }
}

/* movieModal */
.movieModal .modal__container {
  max-width: 640px;
  background-color: transparent;
  padding-inline: 0;
}
.movieModal .modal__close {
  top: 0;
  right: 0;
  background-color: #333;
  color: #fff;
  width: 30px;
  aspect-ratio: 1;
  font-size: 20px;
  line-height: 1;
}
.movieModal iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.pageTabBottom {
  margin-top: 200px;
}

@media screen and (max-width: 768px) {
  .pageTabBottom {
    margin-top: 80px;
  }
}

/* kv
---------------------------------------------- */
@media screen and (max-width: 767px) {
  .pageTab__inner {
    grid-template-columns: 1fr;
  }
}

/* map
---------------------------------------------- */
.mapBox {
  max-width: 1280px;
  margin-top: 80px;
}
.mapBox__inner {
  width: fit-content;
  max-width: 640px;
  margin-left: auto;
}
.mapBox__text {
  margin-top: 1.5em;
}

@media screen and (max-width: 767px) {
  .mapBox {
    max-width: 560px;
    margin-top: 40px;
  }
}

/* schedule
---------------------------------------------- */
.schedule {
  padding-block: 200px 160px;
}

.age {
  border-top: 1px solid #222;
  position: relative;
  z-index: 0;
}
.ageList {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90%, 1280px);
  z-index: 1;
}
.ageList > li {
  transform: translateY(-26px);
  position: relative;
  z-index: 0;
}
.ageList__num {
  color: #c3c3c3;
  font-size: 32px;
  letter-spacing: 0.04em;
  transition: .4s;
  text-align: center;
}
.ageList__circle {
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background-color: #c3c3c3;
  border-radius: 50%;
  margin-inline: auto;
  transition: .4s;
}

.ageList > li.active .ageList__num {
  color: #222;
}
.ageList > li.active .ageList__circle {
  background-color: #222;
}

.scheduleBox {
  padding-top: 70px;
  overflow: hidden;
}
.scheduleBox__inner {
  /* overflow: auto; */
  /* padding-inline: calc(320 / 1920 * 100%); */
  width: 90%;
  max-width: 1280px;
  margin-inline: auto;
  padding-bottom: 60px;
}
.scheduleList {
  /* display: flex; */
  /* column-gap: 40px; */
  /* width: 7000px; */
}
.scheduleList > li {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  width: 600px;
  user-select: none;
}
.scheduleList__body {
  display: flex;
  flex-direction: column;
}
.scheduleList__headline {
  display: flex;
  align-items: flex-start;
  column-gap: 5%;
  margin-bottom: 30px;
}
.scheduleList__headline .alphabet {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1;
  background-color: #222;
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.scheduleList__title {
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.scheduleList__title .small {
  display: block;
  font-size: 70%;
  letter-spacing: 0.06em;
}
.scheduleList__title .note {
  display: block;
  font-size: 11px;
  letter-spacing: 0;
  margin-top: 5px;
}
.scheduleList__text {
  margin-top: auto;
}
.scheduleList__caption {
  font-size: 11px;
  letter-spacing: 0;
  line-height: 2;
  margin-top: 1.5em;
}

.mouseStalker {
  position: fixed;
  top: 0;
  left: 0;
  width: 222px;
  pointer-events: none;
  transform: translate3d(50vw, 50vh, 0);
  transition: all 0.3s ease-out;
  z-index: 9999;
}
.mouseStalker img {
  transform: scale(0);
  visibility: hidden;
  transition: all .3s ease;
  z-index: 0;
}
.mouseStalker.is-hover img {
  transform: scale(1);
  visibility: visible;
}

@media screen and (max-width: 1200px) {
  .ageList > li {
    transform: translateY(-20px);
  }
  .ageList__num {
    font-size: 24px;
  }
  .ageList__circle {
    width: 12px;
  }
}

@media screen and (max-width: 768px) {
  .schedule {
    padding-block: 80px;
  }

  .ageList {
    width: min(calc(335 / 375 * 100%), 560px);
  }
  .ageList > li {
    transform: translateY(-14px);
  }
  .ageList__num {
    font-size: 16px;
  }
  .ageList__circle {
    width: 8px;
  }

  .scheduleBox {
    padding-top: 40px;
  }
  .scheduleBox__inner {
    width: calc(335 / 375 * 100%);
    max-width: 560px;
    padding-bottom: 0;
  }
  .scheduleList > li {
    row-gap: 20px;
    width: 600px;
  }
  .scheduleList__headline {
    margin-bottom: 20px;
  }
  .scheduleList__headline .alphabet {
    width: 24px;
    font-size: 16px;
  }
  .scheduleList__title {
    font-size: 16px;
  }

  .mouseStalker {
    display: none;
  }
}

/* topics
---------------------------------------------- */
.topics {
  background-color: #f4f4f4;
  padding-block: 80px;
}
.topics__inner {
  display: grid;
  grid-template-columns: auto calc(var(--gridSize) / 1760 * 100%);
  gap: 30px 3%;
}
.topics__title {
  font-size: 18px;
  letter-spacing: 0.02em;
}
.topics__title + .topics__copy {
  margin-top: 1em;
}

/* topics01 */
.topics01 {
  --gridSize: 1520;
}
.topics01Body {
  display: grid;
  grid-template-columns: calc(720 / 1440 * 100%) 1fr;
  gap: 30px calc(80 / 1440 * 100%);
  align-items: center;
  padding-right: calc(80 / 1520 * 100%);
}
.topics01Body .sectionText {
  margin-top: 1.5em;
}

/* topics02 */
.topics02 {
  --gridSize: 1240;
  padding-block: 160px;
}
.topics02Body {
  padding-right: calc(240 / 1240 * 100%);
}
.topics02Box + .topics02Box {
  border-top: 1px solid rgb(34 34 34 / .3);
  margin-top: 80px;
  padding-top: 80px;
}
.topics02Box__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px calc(80 / 1000 * 100%);
}
.topics02Item--column {
  display: grid;
  grid-template-columns: calc(480 / 1000 * 100%) 1fr;
  gap: 25px calc(80 / 1000 * 100%);
}
.topics02Box--bottom__body {
  margin-top: 25px;
}
.topics02Box--bottom__body .sectionCopy-20 + .sectionText {
  margin-top: 1.5em;
}
.topics02Box--bottom__body .sectionCopy-20 + .sectionText + .sectionNote {
  margin-top: 1.5em;
}

@media screen and (max-width: 960px) {
  .topics02Item--column,
  .topics02Box__inner {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {

  .topics01Body {
    grid-template-columns: 1fr;
    padding-right: 0;
  }
  .topics02 {
    padding-block: 80px;
  }
  .topics02Box + .topics02Box {
    margin-top: 40px;
    padding-top: 50px;
  }
  .topics__inner {
    grid-template-columns: 1fr;
  }
  .topics02Body {
    padding-right: 0;
  }
}

/* message
---------------------------------------------- */
.message {
  padding-block: 210px 200px;
}
.messageHead {
  max-width: 450px;
}
.message__title {
  font-size: 14px;
  letter-spacing: 0.02em;
}
.message__title + .message__copy {
  margin-top: 1em;
}

.movie {
  display: grid;
  grid-template-columns: calc(720 / 1280 * 100%) calc(480 / 1280 * 100%);
  gap: 5% calc(80 / 1280 * 100%);
  align-items: center;
  margin-top: 40px;
}
.movie__title {
  grid-area: 1/2/2/3;
  line-height: 1.2;
}
.movie__title .en {
  display: block;
  font-size: 40px;
  letter-spacing: 0.02em;
}
.movie__img {
  grid-area: 1/1/3/2;
}
.movieBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 5px;
  width: 100%;
  background-color: #f4f4f4;
  font-family: YakuHanMP, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
  padding: 12px 20px;
  transition: opacity .4s;
  text-align: left;
}
.movieBtn + .movieBtn {
  margin-top: 10px;
}
.movieBtn__text {
  display: flex;
  align-items: baseline;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2;
}
.movieBtn__text .num {
  font-size: 142.857%;
  margin-right: 3px;
}
.movieBtn__icon {
  flex-shrink: 0;
  display: block;
  width: 32px;
  aspect-ratio: 1;
  background-color: #222;
  border-radius: 50%;
  position: relative;
  z-index: 0;
}
.movieBtn__icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 56%;
  transform: translate(-50%, -50%);
  width: 12px;
  aspect-ratio: 1;
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .movieBtn:hover {
    opacity: .7;
  }
}

@media screen and (max-width: 960px) {
  .movie {
    display: block;
    max-width: 560px;
    margin-inline: auto;
  }
  .movie__img,
  .movieContents {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .message {
    padding-block: 80px;
  }

  .movie__title .en {
    font-size: 28px;
  }
  .movieBtn {
    padding-inline: 15px;
  }
  .movieBtn__text {
    font-size: 13px;
  }
  .movieBtn__icon {
    width: 26px;
  }
  .movieBtn__icon::before {
    width: 10px;
  }
}