html {
  font-size: 10px;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6041666667vw;
  }
}

:root {
  --remV: 10px;
}
@media screen and (max-width: 1920px) {
  :root {
    --remV: 0.5208333333vw;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --remV: 0.5208333333vw;
  }
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  display: flex;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow svg {
  display: none;
}

.splide__pagination__page {
  display: block;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-style: normal;
}

sup {
  font-size: 0.5em;
}

img,
picture,
video,
canvas,
svg {
  height: auto;
}

img,
iframe {
  display: block;
  width: 100%;
}

picture {
  display: contents;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  touch-action: manipulation;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th,
td {
  text-align: left;
  vertical-align: top;
  padding: 0;
}

body {
  background: #fff;
  color: #000;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
  font-family: Yakuhanjp, "Noto Sans JP", sans-serif;
  text-align: justify;
  word-break: break-all;
  font-feature-settings: "palt" 1;
  font-optical-sizing: auto;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

@media screen and (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .only-pc {
    display: none !important;
  }
}

.hover-opacity a,
.hover-opacity button {
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  will-change: opacity;
}
@media (hover: hover) {
  .hover-opacity a:hover,
  .hover-opacity button:hover {
    opacity: 0.5;
  }
}
@media (hover: none) {
  .hover-opacity a:active,
  .hover-opacity button:active {
    opacity: 0.5;
  }
}

@media (hover: hover) {
  .hover-text-black a:hover span,
  .hover-text-black button:hover span,
  .hover-text-white a:hover span,
  .hover-text-white button:hover span,
  .hover-text-green a:hover span,
  .hover-text-green button:hover span {
    background-position: right top;
    transition: background-position 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}
@media (hover: none) {
  .hover-text-black a:active span,
  .hover-text-black button:active span,
  .hover-text-white a:active span,
  .hover-text-white button:active span,
  .hover-text-green a:active span,
  .hover-text-green button:active span {
    background-position: right top;
    transition: background-position 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}
.hover-text-black a span,
.hover-text-black button span,
.hover-text-white a span,
.hover-text-white button span,
.hover-text-green a span,
.hover-text-green button span {
  position: relative;
  display: inline-block;
  color: transparent;
  transition: background-position 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.hover-text-black a span,
.hover-text-black button span {
  background: linear-gradient(to right, #000, #000, #000, rgba(0, 0, 0, 0.2)) left top/200% 100% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
}

.hover-text-white a span,
.hover-text-white button span {
  background: linear-gradient(to right, #fff, #fff, #fff, rgba(255, 255, 255, 0.2)) left top/200% 100% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
}

.hover-text-green a span,
.hover-text-green button span {
  background: linear-gradient(to right, #9AB0A6, #9AB0A6, #9AB0A6, rgba(154, 176, 166, 0.2)) left top/200% 100% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
}

body:has(.component-modal.is-clicked) {
  overflow: hidden;
}

.component-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1), visibility 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
  will-change: opacity;
}
.component-modal.is-clicked {
  opacity: 1;
  visibility: visible;
}
.component-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: #000;
  z-index: -1;
}
.component-modal__content {
  display: flex;
  position: relative;
  z-index: 1;
  overflow: auto;
  height: 100%;
  pointer-events: none;
}
.component-modal__content > * {
  position: relative;
  margin: auto;
  padding: 6rem 0;
  pointer-events: auto;
}
.component-modal__close {
  position: absolute;
  top: 5rem;
  right: -1rem;
  width: 3.4rem;
  height: 3.4rem;
  translate: 100% -100%;
}
@media screen and (max-width: 768px) {
  .component-modal__close {
    right: 2rem;
    translate: 0 -100%;
  }
}
.component-modal__close button {
  width: 100%;
  height: 100%;
  position: relative;
}
.component-modal__close button::before, .component-modal__close button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 4.6rem;
  height: 1px;
  content: "";
  display: block;
  translate: -50% -50%;
  background-color: #fff;
}
.component-modal__close button::before {
  rotate: 45deg;
}
.component-modal__close button::after {
  rotate: -45deg;
}

.component-trailer {
  width: 104rem;
}
.component-trailer__player {
  width: 100%;
}
.component-trailer__player iframe {
  height: auto;
  aspect-ratio: 16/9;
}
.component-trailer .component-trailer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .component-trailer .component-trailer-buttons {
    padding: 0 2rem;
    gap: 1rem;
  }
}
.component-trailer .component-trailer-buttons:not(:has(.component-trailer-buttons__item:nth-child(n+2))) .component-trailer-buttons__item {
  width: 100%;
}
.component-trailer .component-trailer-buttons__item {
  width: calc(50% - 0.6rem);
}
@media screen and (max-width: 768px) {
  .component-trailer .component-trailer-buttons__item {
    width: 100%;
  }
}
.component-trailer .component-trailer-buttons__item button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.6rem;
  font-size: 1.5rem;
  background-color: #2C2C2C;
  color: #fff;
  transition: background-color 0.4s cubic-bezier(0.39, 0.575, 0.565, 1), color 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media screen and (max-width: 768px) {
  .component-trailer .component-trailer-buttons__item button {
    height: 3.4rem;
    font-size: 1.2rem;
  }
}
@media (hover: hover) {
  .component-trailer .component-trailer-buttons__item button:hover {
    color: rgba(255, 255, 255, 0.5);
  }
}
@media (hover: none) {
  .component-trailer .component-trailer-buttons__item button:active {
    color: rgba(255, 255, 255, 0.5);
  }
}
.component-trailer .component-trailer-buttons__item button.is-active {
  background-color: #9AB0A6;
  color: #000;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .layout-footer {
    padding: 3rem 2rem;
    background-color: #000;
  }
}
.layout-footer .footer-sns {
  position: relative;
}
.layout-footer .footer-sns__heading {
  font-size: 2.6rem;
  line-height: 1;
  color: #fff;
  font-family: "teko", sans-serif;
}
.layout-footer .footer-sns .footer-sns-links {
  position: fixed;
  top: 2rem;
  right: 4rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-sns .footer-sns-links {
    gap: 2.5rem;
    position: static;
    margin-top: 1.5rem;
  }
}
.layout-footer .footer-sns .footer-sns-links__item a,
.layout-footer .footer-sns .footer-sns-links__item button {
  display: block;
  background: linear-gradient(to right, #000, #000, rgba(0, 0, 0, 0.3)) left top/200% 100% no-repeat;
  transition: background-position 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-sns .footer-sns-links__item a,
  .layout-footer .footer-sns .footer-sns-links__item button {
    background: linear-gradient(to right, #fff, #fff, #fff, rgba(255, 255, 255, 0.3)) left top/200% 100% no-repeat;
  }
}
@media (hover: hover) {
  .layout-footer .footer-sns .footer-sns-links__item a:hover,
  .layout-footer .footer-sns .footer-sns-links__item button:hover {
    background-position: right top;
    transition: background-position 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}
@media (hover: none) {
  .layout-footer .footer-sns .footer-sns-links__item a:active,
  .layout-footer .footer-sns .footer-sns-links__item button:active {
    background-position: right top;
    transition: background-position 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}
.layout-footer .footer-sns .footer-sns-links__item a img,
.layout-footer .footer-sns .footer-sns-links__item button img {
  display: none;
}
.layout-footer .footer-sns .footer-sns-links__item--facebook a {
  width: 2.4rem;
  height: 2.4rem;
  -webkit-mask: url("../../assets/img/common/icn_facebook.svg") no-repeat center/contain;
          mask: url("../../assets/img/common/icn_facebook.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-sns .footer-sns-links__item--facebook a {
    width: 2.2rem;
    height: 2.2rem;
  }
}
.layout-footer .footer-sns .footer-sns-links__item--x a {
  width: 2.1rem;
  height: 2.2rem;
  -webkit-mask: url("../../assets/img/common/icn_x.svg") no-repeat center/contain;
          mask: url("../../assets/img/common/icn_x.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-sns .footer-sns-links__item--x a {
    width: 1.9rem;
    height: 2rem;
  }
}
.layout-footer .footer-sns .footer-sns-links__item--instagram a {
  width: 2.2rem;
  height: 2.2rem;
  -webkit-mask: url("../../assets/img/common/icn_instagram.svg") no-repeat center/contain;
          mask: url("../../assets/img/common/icn_instagram.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-sns .footer-sns-links__item--instagram a {
    width: 2rem;
    height: 2rem;
  }
}
.layout-footer .footer-sns .footer-sns-links__item--line a {
  width: 2.3rem;
  height: 2.2rem;
  -webkit-mask: url("../../assets/img/common/icn_line.svg") no-repeat center/contain;
          mask: url("../../assets/img/common/icn_line.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-sns .footer-sns-links__item--line a {
    width: 2.1rem;
    height: 2rem;
  }
}
.layout-footer .footer-sns .footer-sns-links__item--tiktok a {
  width: 1.8rem;
  height: 2.2rem;
  -webkit-mask: url("../../assets/img/common/icn_tiktok.svg") no-repeat center/contain;
          mask: url("../../assets/img/common/icn_tiktok.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-sns .footer-sns-links__item--tiktok a {
    width: 1.6rem;
    height: 2rem;
  }
}
.layout-footer .footer-sns .footer-sns-links__item--youtube a {
  width: 2.5rem;
  height: 1.7rem;
  -webkit-mask: url("../../assets/img/common/icn_youtube.svg") no-repeat center/contain;
          mask: url("../../assets/img/common/icn_youtube.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-sns .footer-sns-links__item--youtube a {
    width: 2.2rem;
    height: 1.5rem;
  }
}
.layout-footer .footer-sns .footer-sns-links__item--share button {
  width: 2.2rem;
  height: 2.4rem;
  -webkit-mask: url("../../assets/img/common/icn_share.svg") no-repeat center/contain;
          mask: url("../../assets/img/common/icn_share.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-sns .footer-sns-links__item--share button {
    width: 2rem;
    height: 2.2rem;
  }
}
.layout-footer .footer-sns .footer-sns-links:has(.is-clicked) .footer-sns-shares {
  opacity: 1;
  visibility: visible;
}
.layout-footer .footer-sns .footer-sns-links .footer-sns-shares {
  position: fixed;
  top: 6rem;
  right: 4rem;
  display: flex;
  gap: 0.8rem;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1), visibility 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-sns .footer-sns-links .footer-sns-shares {
    position: absolute;
    top: 8rem;
    right: 0;
    flex-wrap: wrap;
  }
}
.layout-footer .footer-sns .footer-sns-links .footer-sns-shares__item iframe {
  vertical-align: top;
}
.layout-footer .footer-logos {
  display: flex;
  align-items: center;
  position: fixed;
  right: 4rem;
  bottom: 1.2rem;
  z-index: 99;
  gap: 1.4rem;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-logos {
    position: static;
    gap: 1.2rem;
    margin-top: 8.6rem;
  }
}
.layout-footer .footer-logos__item a {
  display: block;
  background: linear-gradient(to right, #9AB0A6, #9AB0A6, rgba(154, 176, 166, 0.3)) left top/200% 100% no-repeat;
  transition: background-position 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}
@media (hover: hover) {
  .layout-footer .footer-logos__item a:hover {
    background-position: right top;
    transition: background-position 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}
@media (hover: none) {
  .layout-footer .footer-logos__item a:active {
    background-position: right top;
    transition: background-position 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}
.layout-footer .footer-logos__item a img {
  display: none;
}
.layout-footer .footer-logos__item--amblin a {
  width: 5.5rem;
  height: 2.4rem;
  -webkit-mask: url("../../assets/img/common/logo_amblin.svg") no-repeat center/contain;
          mask: url("../../assets/img/common/logo_amblin.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-logos__item--amblin a {
    width: 4.5rem;
    height: 2rem;
  }
}
.layout-footer .footer-logos__item--universal a {
  width: 3.9rem;
  height: 2.4rem;
  -webkit-mask: url("../../assets/img/common/logo_universal.svg") no-repeat center/contain;
          mask: url("../../assets/img/common/logo_universal.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-logos__item--universal a {
    width: 3.2rem;
    height: 2rem;
  }
}
.layout-footer .footer-logos__item--tohotowa a {
  width: 6.6rem;
  height: 2.2rem;
  -webkit-mask: url("../../assets/img/common/logo_tohotowa.svg") no-repeat center/contain;
          mask: url("../../assets/img/common/logo_tohotowa.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-logos__item--tohotowa a {
    width: 5.5rem;
    height: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-logos__item--tohotowa a {
    width: 5.5rem;
    height: 1.8rem;
  }
}
.layout-footer .footer-copyright {
  position: fixed;
  bottom: 2rem;
  left: 4rem;
  width: 22.2rem;
}
@media screen and (max-width: 768px) {
  .layout-footer .footer-copyright {
    position: static;
    width: 11.1rem;
    margin-top: 3.4rem;
  }
}

body:has(.header-hamburger button.is-clicked) .layout-header__inner,
body:has(.header-hamburger button.is-clicked) .layout-header-logo,
body:has(.header-hamburger button.is-clicked) .layout-header-nav,
body:has(.header-hamburger button.is-clicked) .layout-header-links {
  opacity: 1;
  visibility: visible;
}
body:has(.header-hamburger button.is-clicked) .layout-header-logo {
  transition: opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1), visibility 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-delay: 0.6s !important;
}
body:has(.header-hamburger button.is-clicked) .layout-header-nav,
body:has(.header-hamburger button.is-clicked) .layout-header-links {
  transition: opacity 1s cubic-bezier(0.39, 0.575, 0.565, 1), visibility 1s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-delay: 1.2s !important;
}

.layout-header {
  line-height: 1;
}
.layout-header .header-hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 6.2rem;
  height: 6.2rem;
  z-index: 999;
}
.layout-header .header-hamburger button {
  width: 100%;
  height: 100%;
  position: relative;
}
.layout-header .header-hamburger button span {
  position: absolute;
  left: 50%;
  width: 2.4rem;
  height: 1px;
  display: block;
  background-color: #000;
}
.layout-header .header-hamburger button span:nth-child(1) {
  top: 2.3rem;
  translate: -50% 0;
}
.layout-header .header-hamburger button span:nth-child(2) {
  top: 50%;
  translate: -50% 0;
}
.layout-header .header-hamburger button span:nth-child(3) {
  bottom: 2.3rem;
  translate: -50% 0;
}
.layout-header .header-hamburger button.is-clicked span {
  background-color: #fff;
}
.layout-header .header-hamburger button.is-clicked span:nth-child(1) {
  top: 50%;
  translate: -50% -0.5px;
  rotate: 45deg;
}
.layout-header .header-hamburger button.is-clicked span:nth-child(2) {
  opacity: 0;
}
.layout-header .header-hamburger button.is-clicked span:nth-child(3) {
  bottom: 50%;
  translate: -50% 0.5px;
  rotate: -45deg;
}
@media screen and (max-width: 768px) {
  .layout-header__inner {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 16rem 2rem 4rem;
    background-color: #000;
    transition: opacity 0.6s cubic-bezier(0.39, 0.575, 0.565, 1), visibility 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
    will-change: opacity;
  }
}
.layout-header .layout-header-logo {
  width: 25rem;
  opacity: 0;
  visibility: hidden;
  will-change: opacity;
  transition-delay: 0s !important;
}
.layout-header .layout-header-nav {
  position: fixed;
  top: 2rem;
  left: 4rem;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .layout-header .layout-header-nav {
    position: static;
    opacity: 0;
    visibility: hidden;
    margin-top: 5rem;
    padding-bottom: 6rem;
    transition-delay: 0s !important;
    will-change: opacity;
  }
}
.layout-header .layout-header-nav .layout-header-nav-links {
  display: flex;
  gap: 3.4rem 4rem;
}
@media screen and (max-width: 768px) {
  .layout-header .layout-header-nav .layout-header-nav-links {
    flex-direction: column;
    align-items: center;
  }
}
.layout-header .layout-header-nav .layout-header-nav-links__item a,
.layout-header .layout-header-nav .layout-header-nav-links__item button {
  font-size: 2.6rem;
  font-family: "teko", sans-serif;
}
@media (hover: hover) {
  .layout-header .layout-header-nav .layout-header-nav-links__item a:hover span,
  .layout-header .layout-header-nav .layout-header-nav-links__item button:hover span {
    background-position: right top;
    transition: background-position 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}
@media (hover: none) {
  .layout-header .layout-header-nav .layout-header-nav-links__item a:active span,
  .layout-header .layout-header-nav .layout-header-nav-links__item button:active span {
    background-position: right top;
    transition: background-position 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
  }
}
@media screen and (max-width: 768px) {
  .layout-header .layout-header-nav .layout-header-nav-links__item a span,
  .layout-header .layout-header-nav .layout-header-nav-links__item button span {
    background: linear-gradient(to right, #fff, #fff, #fff, rgba(255, 255, 255, 0.2)) left top/200% 100% no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
  }
}
.layout-header .layout-header-links {
  position: fixed;
  right: 25.8rem;
  bottom: 2rem;
  z-index: 99;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .layout-header .layout-header-links {
    position: static;
    opacity: 0;
    visibility: hidden;
    margin-top: auto;
    will-change: opacity;
    transition-delay: 0s !important;
  }
}
.layout-header .layout-header-links__item a {
  color: #9AB0A6;
  font-size: 1.2rem;
}

body.is-trailer-closed .home-hero .home-section__background,
body.is-trailer-closed .home-hero .home-section__content, body:has(.component-modal.is-clicked-) .home-hero .home-section__background,
body:has(.component-modal.is-clicked-) .home-hero .home-section__content {
  scale: 1;
  opacity: 1;
}

.home-background {
  position: fixed;
  inset: 0;
  height: 100vh;
}
.home-background img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.home-section {
  position: relative;
}
.home-section__inner {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 192rem;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .home-section__inner {
    position: static;
    height: auto;
  }
}
.home-section__background {
  position: absolute;
  inset: 0;
}
@media screen and (max-width: 768px) {
  .home-section__background {
    position: static;
  }
}
.home-section__background img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-section__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  flex-direction: column;
  position: relative;
  padding-left: calc(24 * var(--remV));
}
@media screen and (max-width: 1920px) {
  .home-section__content {
    padding-left: calc(24rem - (192rem - 100%) / 3);
  }
}
@media screen and (max-width: 768px) {
  .home-section__content {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    padding: 0;
  }
}
.home-section__heading {
  color: #5E7971;
  font-size: 2.6rem;
  font-family: "teko", sans-serif;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home-section__heading {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 769px) {
  .home-hero {
    height: 100vh;
  }
}
@media screen and (max-width: 768px) {
  .home-hero {
    height: auto;
    background: url("../../assets/img/home/bg_hero@sp.jpg") no-repeat center/cover;
  }
}
.home-hero .home-section__content {
  padding-bottom: 6rem;
  scale: 0.99;
  opacity: 0;
  transition: scale 2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s, opacity 2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.6s;
  will-change: scale, opacity;
}
@media screen and (max-width: 768px) {
  .home-hero .home-section__content {
    padding: 8rem 0 0;
  }
}
.home-hero .home-section__background {
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.39, 0.575, 0.565, 1) 1.6s;
  will-change: opacity;
}
.home-hero__lead {
  width: 34.6rem;
}
@media screen and (max-width: 768px) {
  .home-hero__lead {
    width: 16.5rem;
  }
}
.home-hero__logo {
  width: 69.7rem;
  margin-top: 2.1rem;
}
@media screen and (max-width: 768px) {
  .home-hero__logo {
    width: 33.4rem;
    margin-top: 1rem;
  }
}
.home-hero__date {
  width: 13.8rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .home-hero__date {
    width: 6.6rem;
    margin-top: 1.4rem;
  }
}
.home-hero__cast {
  width: 44rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .home-hero__cast {
    width: 24.1rem;
    margin-top: 0.8rem;
  }
}
.home-hero__copy {
  width: 45.1rem;
  margin-top: 2.6rem;
}
@media screen and (max-width: 768px) {
  .home-hero__copy {
    width: 21.4rem;
    margin-top: 1.2rem;
  }
}

.home-trailer {
  background-color: #000;
  padding: 5rem 0;
}
.home-trailer__content {
  margin-top: 1.5rem;
}
.home-trailer .home-trailer-buttons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 2rem;
}
.home-trailer .home-trailer-buttons__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.6rem;
  padding-top: 0.4rem;
  border: 1px solid #3E3E3E;
  color: #fff;
  font-size: 2.4rem;
  font-family: "teko", sans-serif;
}

@media screen and (min-width: 769px) {
  .home-about {
    height: 300vh;
  }
}
@media screen and (max-width: 768px) {
  .home-about {
    background: url("../../assets/img/home/bg_about@sp.jpg") no-repeat center/cover;
  }
}
@media screen and (min-width: 769px) {
  .home-about #about {
    position: absolute;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .home-about .home-section__content {
    padding-top: 5rem;
  }
}
.home-about .home-section__background {
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.39, 0.575, 0.565, 1);
  will-change: opacity;
}
.home-about .home-section__background.is-inview {
  opacity: 1;
  transition-duration: 6s;
}
.home-about__heading {
  width: 83.1rem;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .home-about__heading {
    width: 34.4rem;
    margin-top: 3rem;
  }
}
.home-about__text {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home-about__text {
    margin-top: 2rem;
  }
}
.home-about__cast {
  margin-top: 4rem;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home-about__cast {
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
  }
}