* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
picture {
  display: block;
  width: 100%;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

.js-section-text {
  display: inline-block;
  will-change: transform, opacity;
  opacity: 1;
}
html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

a,
button {
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  padding: 40px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.l-header__logo {
  width: 332px;
  aspect-ratio: 332/33;
  position: relative;
  display: block;
  img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.3s ease 0.4s;
    &.logo-black {
      opacity: 1;
    }
    &.logo-white {
      opacity: 0;
    }
  }
  body.is-logo-white & img.logo-black {
    opacity: 0;
  }
  body.is-logo-white & img.logo-white {
    opacity: 1;
  }
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  letter-spacing: -0.24px;
  font-size: 12px;
  font-weight: 700;
}

.l-header__nav__icon {
  width: 16px;
  flex-shrink: 0;
  display: flex;
  margin-right: 2px;
  * {
    transition: all 0.3s ease 0.4s;
  }
}

.l-header__nav__slash {
  color: #000;
  opacity: 0.2;
  transition: all 0.3s ease 0.4s;
}

.l-header__nav__link {
  color: #000;
  text-decoration: none;
  opacity: 0.2;
  transition: all 0.3s ease 0.4s;
}

.l-header__nav__link.is-active {
  opacity: 1;
}

body.is-nav-white .l-header__nav__slash,
body.is-nav-white .l-header__nav__link {
  color: #fff;
}
body.is-nav-white .l-header__nav__icon svg,
body.is-nav-white .l-header__nav__icon svg path {
  fill: #fff;
}

@media (max-width: 767px) {
  .l-header {
    padding: 20px;
  }
  .l-header__logo {
    width: 239px;
  }
}

.l-scroll {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.l-scroll.is-l-bottom .l-hope-section {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.l-section {
  width: 100%;
  height: var(--section-height, 100svh);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  color: white;
  position: relative;
}
.l-section--01 {
  z-index: 1000;
}
.l-section--02 {
  z-index: 900;
}
.l-section--03 {
  z-index: 800;
}
.l-section--04 {
  z-index: 700;
}

.l-section__scroll--global {
  position: fixed;
  z-index: 10000;
  pointer-events: none;
  top: 75%;
  right: 32px;
  transform: translateY(-50%) rotate(90deg);
  height: auto;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  gap: 32px;
  transform-origin: right top;
  transition: all 0.3s ease;
}
body.is-l-bottom .l-section__scroll--global {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none;
}

.l-section__scroll__text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 1;
  transition: color 0.3s ease;
}

@media (max-width: 767px) {
  .l-section__scroll__text {
    font-size: 12px;
  }
}

.l-section__scroll__var {
  height: 1px;
  width: 39.1vh;
  background: #fff;
  position: relative;
  transition: background-color 0.3s ease;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% / 11);
    height: 1px;
    background: #c80019;
    transition: all 0.4s ease;
  }
  &.is-section-01 {
    &::before {
      left: 0;
    }
  }
  &.is-section-02 {
    &::before {
      left: calc(100% / 11);
    }
  }
  &.is-section-03 {
    &::before {
      left: calc(100% / 11 * 2);
    }
  }
  &.is-section-04 {
    &::before {
      left: calc(100% / 11 * 3);
    }
  }
  &.is-section-05 {
    &::before {
      left: calc(100% / 11 * 4);
    }
  }
  &.is-section-06 {
    &::before {
      left: calc(100% / 11 * 5);
    }
  }
  &.is-section-07 {
    &::before {
      left: calc(100% / 11 * 6);
    }
  }
  &.is-section-08 {
    &::before {
      left: calc(100% / 11 * 7);
    }
  }
  &.is-section-09 {
    &::before {
      left: calc(100% / 11 * 8);
    }
  }
  &.is-section-10 {
    &::before {
      left: calc(100% / 11 * 9);
    }
  }
  &.is-section-11 {
    &::before {
      left: calc(100% / 11 * 10);
    }
  }
}
body.is-from-movie-section .l-section__scroll__var {
  background-color: #c8c8c8;
}
body.is-from-movie-section .l-section__scroll__text {
  color: #c8c8c8;
}

@media (max-width: 767px) {
  .l-section__scroll--global {
    right: 20px;
    top: auto;
    bottom: 74px;
    gap: 20px;
  }
  .l-section__scroll__var {
    width: 220px;
  }
}

.l-movie-section {
  z-index: 800;
}
.hope-start-section {
  z-index: 900;

  background: linear-gradient(180deg, #fff 0%, #fff 40px, transparent 40px, transparent 100%);
}

.l-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  z-index: 0;
  overflow: hidden;
  & img {
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: top center;
  }
}

@media (min-width: 1441px) {
  .l-section__bg {
    & img {
      object-position: center;
    }
  }
}

@media (max-height: 800px) and (min-width: 768px) {
  .l-section__bg img {
    object-position: 0 30%;
  }
}

.l-section__bg--lower-bg {
  height: 100%;
  min-height: 100%;
}
.l-section__bg--lower-bg picture {
  display: block;
  height: 100%;
  min-height: 100%;
}

@media (max-width: 767px) {
  .l-section__bg--lower-bg {
    width: max-content;
    max-width: 200vw;
    min-width: 0;
    min-width: 100vw;
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }
  .l-section__bg--lower-bg picture {
    height: 100%;
    min-height: 100%;
  }
}

.l-section__full {
  position: absolute;
  top: calc(100% - 22.3vw);
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  width: 105vw;
  aspect-ratio: 1436 / 1856;
  will-change: transform;
  overflow: hidden;
  --maskFeather: 140px;
  --maskEdgeAlpha: 0.22;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 46%, rgba(0, 0, 0, var(--maskEdgeAlpha)) 52%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 300% 100%;
  -webkit-mask-position: 0% 0%;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 46%, rgba(0, 0, 0, var(--maskEdgeAlpha)) 52%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0) 100%);
  mask-repeat: no-repeat;
  mask-size: 300% 100%;
  mask-position: 0% 0%;

  & img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 767px) {
  .l-section__full {
    top: calc(100% - 17.2vw);
    aspect-ratio: 402 / 584;
    width: 100%;
  }
}

.l-section__full .full-mask {
  display: none;
}

.movie-trigger {
  z-index: 3000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  pointer-events: none;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.movie-trigger .movie-trigger__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.movie-trigger .movie-trigger__button:hover::before {
  transform: translateZ(0) scale(1.05);
}

.movie-trigger .movie-trigger__button.force-blur-repaint::before {
  transform: translateZ(0.001px);
}

.movie-trigger .movie-trigger__button > * {
  position: relative;
  z-index: 1;
}

.movie-trigger__button {
  width: 144px;
  aspect-ratio: 1;
  position: absolute;
  bottom: 83px;
  left: 2.2vw;
  pointer-events: auto;
  border-radius: 50%;
  overflow: visible;
}

.movie-trigger__button img {
  display: block;
  width: 100%;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateZ(0);
}
.movie-trigger__button:hover img {
  transform: translateZ(0) scale(1.05);
}

.fv-movie-trigger::before {
  content: "";
  position: absolute;
  bottom: 83px;
  left: 2.2vw;
  width: 144px;
  aspect-ratio: 1;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fv-movie-trigger:hover::before {
  transform: translateZ(0) scale(1.05);
}

@media (max-width: 767px) {
  .fv-movie-trigger::before {
    width: 115px;
    left: 5vw;
    bottom: 18px;
  }
}
.fv-movie-trigger .movie-trigger__button {
  z-index: 1;
}

@media (max-width: 767px) {
  .movie-trigger__button {
    width: 115px;
    left: 5vw;
    bottom: 18px;
  }
}

.l-section__content {
  position: absolute;
  z-index: 1;
}

.l-section__content__text01 {
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  font-size: 30px;
  font-weight: 700;
  line-height: 2.3;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .l-section__content__text01 {
    font-size: 16px;
  }
}

.l-section__content__text01 span {
  display: block;
}

.l-section__content__line {
  overflow: hidden;
}

.l-section__content__line-inner.js-section-text-line-inner {
  will-change: transform;
  transform: translateY(100%);
  visibility: hidden;
  opacity: 0;
}

.l-section__content__text02 {
  margin-top: min(15.8vh, 163px);
  margin-top: min(8.8vh, 88px);

  width: 320px;
}

.l-section__content__text02 .l-section__content__line {
  display: block;
}

.l-section__content__text02 .l-section__content__line-inner.js-section-text-line-inner {
  display: block;
  opacity: 0;
  visibility: visible;
}

@media (max-width: 767px) {
  .l-section__content__text02 {
    width: 177px;
    margin-top: 32px;
  }
}

.l-section--01 .l-section__bg,
.l-section--01 .fv__plane,
.l-section--01 .fv__text {
  opacity: 0;
  visibility: hidden;
}

.l-section__bg--lower-bg.l-section__bg img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .l-section__bg--lower-bg.l-section__bg img {
    transform: none !important;
  }
}

.l-section--01 .l-section__bg {
  overflow: hidden;
}

.l-section__bg img {
  width: auto;
}

.l-section--01 .l-section__bg picture {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3588px;
  min-width: 100%;
  height: 100%;
  top: 0;
  overflow: visible;
}
.l-section--01 .l-section__bg img {
  width: 1720px;
  min-width: 101%;
  left: -1%;
  top: -1%;
  height: 101%;
  max-width: none;
  object-fit: cover;
  position: absolute;
}

@media (max-width: 767px) {
  .l-section--01 .l-section__bg {
  }
  .l-section--01 .l-section__bg picture {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1004px;
    min-width: 100%;
    height: 100%;
    top: 0;
    overflow: visible;
  }
  .l-section--01 .l-section__bg img {
    width: 1004px;
    min-width: 101%;
    left: -1%;
    top: -1%;
    height: 101%;
    max-width: none;
    object-fit: cover;
    object-position: top;

    width: 960px;
    min-width: 101%;
    left: 0.4%;
    top: -3%;
    height: 123%;
    max-width: none;
    object-fit: cover;
    object-position: top;
  }
}

.l-section--01 .l-section__full {
  opacity: 0;
  overflow: hidden;
  --maskFeather: 140px;
  --maskEdgeAlpha: 0.22;
  will-change: transform, opacity;
}

.fv__plane {
  width: 230px;
  position: absolute;
  top: 220px;
  left: calc(50% + min(450px, 32vw));
  transform: none;
  z-index: 2;
}

@media (max-height: 800px) and (min-width: 768px) {
  .fv__plane {
    top: 150px;
  }
}

@media (max-width: 767px) {
  .fv__plane {
    width: 120px;
    top: 120px;
    left: calc(50% + 112px);
  }
}

.fv__text {
  width: min(448px, 31vw);
  position: absolute;
  top: 50%;
  left: calc(50% - min(416px, 29vw));
  transform: none;
  z-index: 2;
  img {
    height: auto;
  }
}

@media (max-width: 767px) {
  .fv__text {
    width: 177px;
    top: 51.4%;
    left: calc(50% - 73.6px);
  }
}

.fv-movie-trigger {
  z-index: 3000;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.movie-modal {
  z-index: 5000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  visibility: hidden;
  pointer-events: none;
}

.movie-modal.is-active {
  visibility: visible;
  pointer-events: auto;
}

.movie-modal.is-open {
  transform: translate3d(0, 0, 0);
}

.movie-modal__content {
  width: 100%;
}

.movie-modal__title {
  font-size: 32px;
  font-weight: 350;
  line-height: 2.3;
  text-align: center;
}

@media (max-width: 767px) {
  .movie-modal__content {
    padding: 0 40px;
  }
  .movie-modal__title {
    font-size: 24px;
  }
}

.movie-modal__video {
  margin: 18px auto 0;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  position: relative;
  width: clamp(0px, calc((100vh - 300px) * 16 / 9), min(960px, 100%));
  iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.movie-modal__close {
  width: 170px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 58px auto 0;
  border: 1px solid #000;
  border-radius: 9999px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #000;
}

.l-section--02 .l-section__content,
.l-section--03 .l-section__content,
.l-section--04 .l-section__content,
.l-section--05 .l-section__content,
.l-section--06 .l-section__content,
.l-section--07 .l-section__content {
  transform: translateY(-50%);
  top: 50%;
  left: 10.3vw;
}

@media (max-width: 767px) {
  .l-section--02 .l-section__content,
  .l-section--03 .l-section__content,
  .l-section--04 .l-section__content,
  .l-section--05 .l-section__content,
  .l-section--06 .l-section__content,
  .l-section--07 .l-section__content {
    left: 40px;
    height: 110px;
    display: flex;
    align-items: center;
    top: calc(50% + 87px);
  }
}

.movie-section__content {
  max-width: 1144px;
  width: calc(100% - 80px);
}

.movie-section__title {
  margin: 0 auto;
  color: #000;
  font-size: 32px;
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .movie-section__title {
    line-height: 1.6;
    font-size: 24px;
  }
}

.movie-section__video {
  margin: 32px auto 0;
  max-width: 1122px;
  aspect-ratio: 16 / 9;
  width: clamp(0px, calc((100vh - 300px) * 16 / 9), min(1122px, 100%));
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 54px 0 rgba(100, 126, 153, 0.18);
  overflow: hidden;
  iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 767px) {
  .movie-section__video {
    margin-top: 80px;
    border-radius: 16px;
  }
}

.hope-start-section {
  position: relative;
  overflow: hidden;
  z-index: 200;
}
@media (max-width: 767px) {
  .hope-start-section {
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.hope-start-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100svh;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
  }
}

.hope-start-section-bg-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vh + 30vw);
  z-index: 1;
  overflow: hidden;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transform-origin: top center;
}
.hope-start-section-bg-mask picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.hope-start-section-bg-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

@media (max-width: 767px) {
  .hope-start-section-bg-mask {
    height: 70vh;
  }
}

.hope-start-section__content {
  position: relative;
  z-index: 2;
  max-width: 1144px;
  width: calc(100% - 80px);
}

.hope-start-section__content__text {
  color: #000;
  font-size: 32px;
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 0.02em;
  span {
    display: block;
  }
}

@media (max-width: 767px) {
  .hope-start-section__content__text {
    font-size: 24px;
    line-height: 1.6;
  }
}

.l-hope-section {
  position: relative;
  z-index: 100;

  clip-path: inset(-100vh 0 0 0);
}

.js-hope-content02,
.js-hope-content03 {
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.l-hope-section__mask {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
  max-height: max(68vh, 690px);
  max-height: max(80vh, 690px);
  width: 1440px;
  min-width: 100%;
}

@media (max-width: 767px) {
  .l-hope-section__mask {
    height: 71vh;
    max-height: none;
    width: 100%;
    & picture {
      height: 100%;
    }

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
  }
}

@media (max-height: 800px) {
  .l-hope-section__mask {
    max-height: max(68vh, 590px);
  }
}

.l-scroll.is-before-hope-start .l-hope-section__bg {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.l-scroll.is-on-hope-section .l-hope-section__bg {
  top: 0;
}

.l-hope-section__bg {
  position: absolute;
  top: calc(-1 * var(--section-height, 100vh));
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    &:nth-child(1) {
      opacity: 1;
    }
    &:nth-child(2) {
      opacity: 0;
    }
    &:nth-child(3) {
      opacity: 0;
    }
  }
  picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.hope-global-bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.l-hope-section__window {
  position: absolute;
  width: min(320px, 100%, calc((100vh - 300px) * 320 / 467));
  max-width: 100%;
  bottom: calc(10.5vh + 203.2px);
  left: 50%;
  transform: translate(-50%, 0);
  aspect-ratio: 320 / 467;
  height: auto;
  min-height: 0;
  border: 2px solid #fff;
  overflow: hidden;
  border-radius: 80px;
  box-shadow: 0 22px 54px 0 rgba(100, 126, 153, 0.18);
  z-index: 2;
  bottom: 0;
  top: 0;
  margin: auto;
}

@media (max-height: 800px) and (min-width: 768px) {
  .l-hope-section__window {
    bottom: 0;
    top: 0;
    margin: auto;
  }
}

@media (max-width: 767px) {
  .l-hope-section__window {
    width: min(max(242px, 60vw), calc(50vh * 242 / 317));
    height: auto;
    max-height: 50vh;
    aspect-ratio: 242 / 317;
    top: calc(50% - 120px);
    border-radius: 40px;
    bottom: auto;
    top: 80px;
    top: min(80px, 12vh);
    top: max(80px, 11vh);
  }
}

.l-hope-section__window-inner {
  display: flex;
  width: 300%;
  height: 100%;
  min-height: 0;
  transform-origin: 0 0;
  will-change: transform;
}

.l-hope-section__window-inner img {
  flex: 0 0 33.333%;
  width: 33.333%;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.js-vertical .l-hope-section__window-inner {
  flex-direction: column;
  width: 100%;
  height: 300%;
}

.js-vertical .l-hope-section__window-inner img {
  width: 100%;
  height: 33.333%;
  min-width: 0;
  min-height: 0;
}

.hope-section__content {
  position: absolute;
  bottom: 10.5vh;
  right: 9.5vw;
  z-index: 100;

  position: absolute;
  bottom: 10.5vh;
  right: 9.5vw;
  z-index: 100;
  right: -63%;
  right: -907px;
  left: 0;
  margin: 0 auto;
  width: fit-content;

  bottom: auto;
  transform: translateY(-50%);
  top: calc(50% + 280px);
}

.hope-section__content__child {
  position: relative;
  overflow: hidden;
}

.hope-section__clm {
  display: flex;
  gap: 30px;
  flex-direction: column;
  width: 264px;
}
@media (max-width: 1200px) {
  .hope-section__content {
    right: -78vw;
    top: calc(50% + 200px);
  }
  .hope-section__clm {
    width: 190px;
  }
}
@media (max-width: 767px) {
  .hope-section__content {
    width: 100%;
    padding: 0 20px 0 40px;
    right: 0;
    bottom: auto;
    top: 435px;
    top: 64vh;

    padding-left: min(40px, 10vw);
    top: calc(50% + 170px);
  }
  .hope-section__clm {
    flex-direction: row;
    gap: 53px;
    gap: 30px;
    width: 342px;
    margin: 0 auto;
  }
  .hope-section__clm-item:first-child {
    flex-shrink: 0;
    width: 150px;
  }
  .hope-section__clm-item:nth-child(n + 2) {
    position: relative;
    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: -18px;
      width: 0.25px;
      height: 112px;
      background: #c5c5c5;
      box-shadow: 1px 0 3px 0 rgba(0, 0, 0, 0.26);
      opacity: 0.5;
    }
  }
  .hope-section__content__child {
    overflow: visible;
  }
  .hope-section__content__child:nth-child(1) {
  }
  .hope-section__content__child:nth-child(2) .hope-section__clm {
  }
}

@media (max-height: 900px) and (min-width: 768px) {
  .hope-section__content {
    top: calc(50% + 200px);
    top: auto;
    transform: none;
    bottom: 40px;
  }
}

@media (max-width: 375px) {
  .hope-section__content {
    padding-inline: 4px;
  }
}

.hope-section__content__line {
  overflow: hidden;
}

.hope-section__content__line-inner {
  will-change: transform;
  transform: translateY(100%);
}

.hope-section__text01 {
  color: #000;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.hope-section__text01 span {
  display: block;
}

.hope-section__text02 {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 2.3;
  letter-spacing: 0.02em;
}

.l-bottom {
  position: relative;
  background: #fff;
  margin-top: -10px;
  height: 100svh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 0;
}

.l-bottom::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 100vh;
  background: #fff;
  pointer-events: none;
}

@media (max-width: 1200px) {
  .hope-section__text01 {
    font-size: 18px;
  }
  .hope-section__text02 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .hope-section__text01 {
    font-size: 18px;
    letter-spacing: 0.04em;
  }
  .hope-section__text02 {
    font-size: 13px;
  }
  .l-bottom {
    padding: 40px 40px 36px;
  }
}

.bottom-btn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 16px;
  list-style: none;
  max-width: 1030px;
  margin: auto;
}

.bottom-btn-list--4 {
  max-width: 700px;
}

.bottom-btn-list__item {
}

.bottom-btn-list__item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 330px;
  height: 59px;
  border-radius: 999px;
  border: 1px solid #b1cedc;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.02em;
  position: relative;
}
.bottom-btn-list__item-btn::after {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 11px;
  aspect-ratio: 11 / 16;
  background: url(./../img/btn_arrow_01.svg) no-repeat center center / contain;
}

@media (max-width: 767px) {
  .bottom-btn-list {
    flex-direction: column;
    align-items: center;
    gap: 17px;
    flex: 1;
  }
  .bottom-btn-list__item-btn {
    width: 244px;
    height: 52px;
    font-size: 16px;
  }
  .bottom-btn-list__item-btn::after {
    width: 8px;
  }
}

.bottom-btn-list__item-btn:hover {
  opacity: 0.7;
}

.l-bottom__logo {
  width: 410px;
  margin: 85px auto 0;
}

@media (max-width: 767px) {
  .l-bottom__logo {
    width: 318px;
  }
}

.movie-section__detail {
  margin: 16px auto 0;
  display: flex;
  align-items: center;
}

.movie-section__detail__text01 {
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.5;
}

.movie-section__detail__text02 {
  margin-left: auto;
  color: #000;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.5;
}

.movie-section__detail__text03 {
  width: 40px;
  height: 28px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
  .movie-section__detail__text01,
  .movie-section__detail__text02,
  .movie-section__detail__text03 {
    font-size: 12px;
  }
}

.en-page {
  & .l-section__content__text01--sp {
    display: none;
  }
  & .hope-section__clm-item--sp {
    display: none;
  }
  & .l-section__content__text01 {
    font-size: 24px;
  }
  & .l-section--02 .l-section__content {
    left: 8vw;
  }
  & .l-section--03 .l-section__content {
    left: 8vw;
  }
  & .l-section--04 .l-section__content {
    left: 10.3vw;
  }
  & .l-section--05 .l-section__content {
    left: 10.3vw;
  }
  & .l-section--06 .l-section__content {
    left: 10.3vw;
  }
  & .l-section--07 .l-section__content {
    left: 10.3vw;
  }
  & .l-section__content__text02 {
    margin-top: min(10.7vh, 103px);
  }
  & .hope-section__clm {
    gap: 24px;
    width: 294px;
    height: 334px;
  }
}

@media (max-width: 767px) {
  .en-page {
    & .l-section__content__text01--pc {
      display: none;
    }
    & .l-section__content__text01--sp {
      display: block;
    }
    & .hope-section__clm-item--pc {
      display: none;
    }
    & .hope-section__clm-item--sp {
      display: block;
    }
    & .l-section__content__text01 {
      font-size: 14px;
    }
    & .l-section--02 .l-section__content,
    & .l-section--03 .l-section__content,
    & .l-section--04 .l-section__content,
    & .l-section--05 .l-section__content,
    & .l-section--06 .l-section__content,
    & .l-section--07 .l-section__content {
      left: 10.3vw;
      height: 129px;
    }
    & .l-section__content__text02 {
      margin-top: min(5vh, 32px);
    }
    & .hope-section__content {
      right: 0;
      top: calc(50% + 260px);
    }
    & .hope-section__clm {
      max-width: 100%;
      width: 402px;
      justify-content: flex-start;
      gap: 24px;
      padding-left: 40px;
      padding-left: min(40px, 4vw);
    }
    & .hope-section__clm-item.hope-section__clm-left {
      width: 162px;
      width: min(162px, 40vw);
    }
    & .hope-section__content {
      padding-right: 0;
      padding-left: 0;
    }
    & .--noborder {
      &::before {
        content: none;
      }
    }
  }
}

@media (max-width: 390px) {
  .en-page {
    & .hope-section__clm {
      padding-left: 20px;
    }
    & .hope-section__clm-item.hope-section__clm-left {
      width: 140px;
    }
  }
}

.visually-hidden {
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
  width: 4px !important;
  height: 4px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

@media (max-height: 800px) and (min-width: 768px) {
  .font-adjustment .l-section__content__text01 {
    font-size: 24px;
  }
  .font-adjustment .l-section__content__text02 {
    width: 300px;
    margin-top: 20px;
  }
  .l-header {
    padding-block: 24px;
  }
  .movie-trigger__button {
    bottom: 80px;
  }
  .fv-movie-trigger::before {
    bottom: 80px;
  }
}

.l-bottom:not(:has(.bottom-btn-list)) {
  justify-content: center;
}

.l-bottom__logo:first-child {
  margin-top: 0;
}
