* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  color: #ffffff;
  background-color: #0b0b0b;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
  opacity: 0.75;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

.l-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-inline: 24px;
}
@media (max-width: 768px) {
  .l-inner {
    padding-inline: 20px;
  }
}

.p-section {
  padding-block: 120px;
}
@media (max-width: 768px) {
  .p-section {
    padding-block: 72px;
  }
}

.p-section__title {
  font-family: "Oswald", "Impact", sans-serif;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: #e7a81b;
  line-height: 1.1;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .p-section__title {
    font-size: 30px;
  }
}

.p-section__title-sub {
  display: block;
  margin-top: 10px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-section__title-sub {
    font-size: 12px;
  }
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.c-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.c-modal__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .c-modal__inner {
    padding: 0;
  }
}

.c-modal__movie {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background-color: #000;
  border: 3px solid #e7a81b;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  pointer-events: auto;
}
@media (max-width: 768px) {
  .c-modal__movie {
    border-radius: 0;
  }
}
.c-modal__movie iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.c-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 72px;
  height: 72px;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
@media (max-width: 768px) {
  .c-modal__close {
    width: 52px;
    height: 52px;
  }
}
.c-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 32px;
  height: 2px;
  background-color: #e7a81b;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .c-modal__close span {
    width: 22px;
  }
}
.c-modal__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__close:hover span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__close:hover span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.is-modal-open {
  overflow: hidden;
}

.c-loading {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0b0b0b;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.c-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.c-loading__inner {
  width: min(78%, 340px);
  text-align: center;
}

.c-loading__label {
  margin-bottom: 18px;
  font-family: "Oswald", "Impact", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: #b3b3b3;
}

.c-loading__bar {
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.c-loading__bar-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #e7a81b, #f4c451);
}

.c-loading__num {
  margin-top: 16px;
  font-family: "Oswald", "Impact", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #e7a81b;
}

.p-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  overflow: hidden;
  background: url("../img/bg.jpg") left center/cover no-repeat;
}
@media (max-width: 768px) {
  .p-hero {
    padding: 90px 20px 80px;
  }
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
}

.p-hero__cast,
.p-hero__logo,
.p-hero__release,
.btns {
  opacity: 0;
  transform: translateY(28px);
}

.is-loaded .p-hero__cast {
  animation: heroIn 0.9s ease forwards;
}
.is-loaded .p-hero__logo {
  animation: heroIn 1s ease forwards;
}
.is-loaded .p-hero__release {
  animation: heroInSoft 0.9s ease forwards;
}
.is-loaded .btns {
  animation: heroIn 0.9s ease forwards;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroInSoft {
  to {
    opacity: 0.75;
    transform: translateY(0);
  }
}
.p-hero__logo {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.6));
}
@media (max-width: 768px) {
  .p-hero__logo {
    max-width: 100%;
  }
}

.p-hero__cast {
  margin-bottom: 24px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.14em;
  color: #ffffff;
  font-style: italic;
}
@media (max-width: 768px) {
  .p-hero__cast {
    font-size: 18px;
    letter-spacing: 0.08em;
  }
}

.p-hero__release {
  margin-top: 40px;
  opacity: 0.75;
  font-style: italic;
}
@media (max-width: 768px) {
  .p-hero__release {
    margin-top: 28px;
  }
}

.p-hero__date {
  font-family: "Oswald", "Impact", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #e7a81b;
}
@media (max-width: 768px) {
  .p-hero__date {
    font-size: 38px;
  }
}
.p-hero__date span {
  font-size: 0.5em;
  margin-left: 0.3em;
  letter-spacing: 0.08em;
}

.p-hero__catch {
  margin-top: 14px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.16em;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-hero__catch {
    font-size: 17px;
    letter-spacing: 0.1em;
  }
}

.p-hero__sns {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border: 1px solid #e7a81b;
  border-radius: 999px;
  font-family: "Oswald", "Impact", sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #e7a81b;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: 1.7;
  min-width: 280px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.p-hero__sns:hover {
  opacity: 1;
  background-color: #e7a81b;
  color: #0b0b0b;
}
.p-hero__sns svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.p-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 1;
  font-family: "Oswald", "Impact", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #b3b3b3;
}
.p-hero__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  margin: 10px auto 0;
  background: linear-gradient(to bottom, #e7a81b, transparent);
  animation: heroScroll 1.8s ease-in-out infinite;
}

@keyframes heroScroll {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.p-hero__cast,
.p-hero__logo,
.p-hero__release,
.btns {
  opacity: 0;
  transform: translateY(28px);
}

.is-loaded .p-hero__cast {
  animation: heroIn 0.9s ease forwards 0.1s;
}
.is-loaded .p-hero__logo {
  animation: heroIn 1s ease forwards 0.1s;
}
.is-loaded .p-hero__release {
  animation: heroInSoft 0.9s ease forwards 0.1s;
}
.is-loaded .btns {
  animation: heroIn 0.9s ease forwards 0.1s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroInSoft {
  to {
    opacity: 0.75;
    transform: translateY(0);
  }
}
.p-trailer {
  background-color: #141414;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  display: block;
}

.p-trailer__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  border: 1px solid #e7a81b;
  border-radius: 999px;
  font-family: "Oswald", "Impact", sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #e7a81b;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: 1.7;
  min-width: 280px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.p-trailer__btn:hover {
  opacity: 1;
  background-color: #e7a81b;
  color: #0b0b0b;
}
.p-trailer__btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}/*# sourceMappingURL=style.css.map */