/* ===========================
   BASE RESET & VARIABLES
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg:        #080808;
  --color-bg-2:      #0f0f0f;
  --color-bg-3:      #181818;
  --color-text:      #ffffff;
  --color-muted:     #888888;
  --color-border:    rgba(255, 255, 255, 0.08);
  --color-accent:    #e63946;
  --color-accent-lt: #f4737f;
  --color-accent-on-light: #c81e30;
  --font-ja:         'Noto Sans JP', sans-serif;
  --font-en:         'Bebas Neue', sans-serif;
  --nav-h:           72px;
  --max-w:           1240px;
  --pad-x:           clamp(20px, 5vw, 60px);
  --sec-py:          clamp(60px, 10vw, 120px);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

/* ===========================
   SPLASH（モバイルのみ：ロゴがフェードイン→フェードアウトしてから本編表示）
   =========================== */
.splash {
  display: none;
}

@media (max-width: 768px) {
  .splash {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: opacity 0.5s ease;
  }

  .splash__logo {
    width: 160px;
    height: auto;
    opacity: 0;
    animation: splash-logo-fade 0.6s ease forwards;
  }

  .splash.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes splash-logo-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-ja);
  font-weight: 400;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* キーボード操作時のフォーカスリング（ブランドカラーで統一） */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}


/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 38px;
  font-family: var(--font-ja);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: #000;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-lt);
  border-color: var(--color-accent-lt);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: var(--color-text);
  color: #000;
  border-color: var(--color-text);
}

.btn--full {
  width: 100%;
  padding: 18px;
  font-size: 0.95rem;
}


/* ===========================
   NAVIGATION
   =========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

/* 背景のぼかしは疑似要素側にかける。
   backdrop-filter を .site-header 自身に付けると、この要素が
   position:fixed な子要素（モバイルメニュー）の基準点になってしまい、
   スクロール後にメニューが画面全体に広がらなくなるため。 */
.site-header.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: -1;
}

.site-header.scrolled .nav__links a {
  color: rgba(0, 0, 0, 0.7);
}

.site-header.scrolled .nav__links a:hover {
  color: var(--color-accent-on-light);
}

.site-header.scrolled .nav__btn--shop {
  color: var(--color-accent-on-light) !important;
  border-color: var(--color-accent-on-light) !important;
}

.site-header.scrolled .nav__sns {
  color: rgba(0, 0, 0, 0.5);
}

.site-header.scrolled .nav__hamburger span {
  background: #000;
}

.nav {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  gap: 32px;
}

.nav__logo a {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav__logo-img--dark {
  display: none;
}

.site-header.scrolled .nav__logo-img--light {
  display: none;
}

.site-header.scrolled .nav__logo-img--dark {
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav__links a {
  display: block;
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--color-accent);
}

.nav__btn {
  padding: 7px 14px !important;
  border: 1px solid !important;
  margin-left: 4px;
}

.nav__btn--shop {
  color: var(--color-accent) !important;
  border-color: var(--color-accent) !important;
}

.nav__btn--shop:hover {
  background: var(--color-accent) !important;
  color: #000 !important;
}

.nav__btn--movie {
  background: var(--color-accent) !important;
  color: #000 !important;
  border-color: var(--color-accent) !important;
}

.nav__btn--movie:hover {
  background: var(--color-accent-lt) !important;
  border-color: var(--color-accent-lt) !important;
}

/* SHOP/MOVIE等、未実装リンク（近日公開） */
[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}

.nav__sns {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.5);
}

.nav__sns a {
  transition: color 0.2s;
  display: flex;
  align-items: center;
  padding: 5px;
  margin: -5px;
}

.nav__sns a:hover {
  color: var(--color-accent);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ===========================
   HERO — フルスクリーン画像＋テキストオーバーレイ
   =========================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: calc(56px + env(safe-area-inset-bottom));
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__bg-video--mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero__bg-video--desktop {
    display: none;
  }

  .hero__bg-video--mobile {
    display: block;
  }

  .hero__established {
    display: none;
  }

  .hero__subtitle {
    display: none;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
  }

  .hero__cta {
    order: 1;
    margin-bottom: 12px;
  }

  .hero__heading {
    order: 2;
    margin-bottom: 0;
  }

  .section__title {
    font-size: 3.6rem;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.85) 0%,
    rgba(8, 8, 8, 0.4) 35%,
    rgba(8, 8, 8, 0) 65%
  );
}

/* ヘッダー付近の可読性を保証する保険用の暗幕（実写真差し替え後も要再確認） */
.hero__top-shade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.hero__heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 6px;
}

@media (max-width: 480px) {
  .hero__heading {
    gap: 6px 10px;
  }

  .hero__heading .hero__label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .hero__heading .hero__title {
    font-size: 1rem;
  }
}

.hero__label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  text-transform: uppercase;
  display: block;
}

.hero__title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  line-height: 1.5;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__established {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.3);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  right: var(--pad-x);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  80%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}


/* ===========================
   SECTION COMMON
   =========================== */
.section {
  padding: var(--sec-py) 0;
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section__header {
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section__label {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section__title {
  font-family: var(--font-en);
  font-size: clamp(2.7rem, 6vw, 7.5rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--color-text);
}

.section__title-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.section__title-status {
  font-family: var(--font-ja);
  font-size: clamp(0.9rem, 1.8vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--color-accent);
  white-space: nowrap;
}


/* ===========================
   NEXT STAGE
   =========================== */
.next-stage {
  background: var(--color-bg-2);
}

.next-stage__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.next-stage__visual {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-3);
}

.next-stage__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: transform 0.7s ease;
}

.next-stage__visual:hover img {
  transform: scale(1.04);
}

.next-stage__info {
  padding-top: 8px;
}

.next-stage__count {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.next-stage__name {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 36px;
}

.next-stage__detail {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px 28px;
  margin-bottom: 48px;
  font-size: 0.95rem;
}

.next-stage__detail dt {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding-top: 3px;
}

.next-stage__detail dd {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.next-stage__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


/* ===========================
   NEWS
   =========================== */
.news {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.news__list {
  list-style: none;
}

.news__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s;
}

.news__item:last-child {
  border-bottom: none;
}

.news__date {
  color: var(--color-muted);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  min-width: 76px;
  flex-shrink: 0;
}

.news__tag {
  background: var(--color-accent);
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

.news__text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.news__text:hover {
  color: var(--color-accent);
}


/* ===========================
   MEMBERS
   =========================== */
.members {
  background: var(--color-bg-3);
}

.members__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.members__card {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.members__photo {
  overflow: hidden;
  background: var(--color-bg-2);
}

.members__photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: grayscale(20%);
}

.members__card:hover .members__photo img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.members__info {
  padding: 20px 4px 24px;
  background: var(--color-bg-3);
}

.members__name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.members__role {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--color-accent);
}

.members__bio {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 10px;
}


/* ===========================
   GALLERY
   =========================== */
.gallery {
  background: var(--color-bg-2);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery__item {
  overflow: hidden;
  background: var(--color-bg-3);
  cursor: zoom-in;
  position: relative;
}

.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s;
  filter: brightness(0.75);
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.gallery__item--large {
  grid-column: span 2;
}

.gallery__item--large img {
  aspect-ratio: 16 / 9;
}


/* ===========================
   LIGHTBOX（GALLERY拡大表示）
   =========================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  color: var(--color-accent);
}


/* ===========================
   PAST STAGE
   =========================== */
.past-stage {
  background: var(--color-bg);
}

.past-stage__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
  align-items: start;
}

.past-stage__item {
  cursor: default;
}

.past-stage__item--noimg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
  padding: 14px 10px;
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  text-align: center;
}

.past-stage__meta {
  font-size: 0.6rem;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.past-stage__thumb {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-3);
  margin-bottom: 8px;
}

.past-stage__thumb img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.7);
}

.past-stage__item:hover .past-stage__thumb img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

.past-stage__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.past-stage__year {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.past-stage__title {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}


/* ===========================
   TRAILER
   =========================== */
.trailer {
  background: var(--color-bg-2);
}

.trailer__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.trailer__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}

.trailer__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.trailer__main-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  padding-left: 4px;
}

.trailer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trailer__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.trailer__item:hover,
.trailer__item--active {
  border-color: var(--color-accent);
  background: rgba(230, 57, 70, 0.08);
}

.trailer__thumb {
  position: relative;
  overflow: hidden;
}

.trailer__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  transition: filter 0.3s;
}

.trailer__item:hover .trailer__thumb img,
.trailer__item--active .trailer__thumb img {
  filter: brightness(1);
}

.trailer__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  pointer-events: none;
}

.trailer__info {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.trailer__num {
  font-family: var(--font-en);
  font-size: 1.1rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.trailer__name {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ===========================
   ABOUT
   =========================== */
.about {
  background: var(--color-bg-2);
}

.about__concept {
  margin-bottom: clamp(48px, 8vw, 80px);
  max-width: 640px;
}

.about__concept-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.about__concept-text {
  font-size: 1rem;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.75);
}

.about__info {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px 24px;
  font-size: 0.9rem;
}

.about__info dt {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding-top: 3px;
}

.about__info dd {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.about__info a:hover {
  color: var(--color-accent);
}

.about__director {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "photo video"
    "body  body";
  column-gap: 20px;
  row-gap: 24px;
}

/* 松野プロフィール（スマホ）：写真→紹介文→YouTubeの順に並び替え */
@media (max-width: 768px) {
  .about__director {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "body"
      "video";
  }
}

.about__director-photo {
  grid-area: photo;
  height: clamp(200px, 30vw, 320px);
  overflow: hidden;
  background: var(--color-bg-3);
}

.about__director-photo img {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__director-video {
  grid-area: video;
  height: clamp(200px, 30vw, 320px);
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.about__director-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.about__director-body {
  grid-area: body;
  padding-top: 0;
}

.about__director-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.about__director-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.about__director-name {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.about__director-note {
  display: inline-flex;
  transition: transform 0.2s;
}

.about__director-note:hover {
  transform: scale(1.08);
}

.about__director-note-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #000;
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.about__director-note:hover .about__director-note-badge {
  background: var(--color-accent-lt);
}

.about__director-role {
  font-size: 0.72rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__director-bio {
  font-size: 0.95rem;
  line-height: 2.1;
  color: rgba(255, 255, 255, 0.65);
}


/* ===========================
   CONTACT
   =========================== */
.contact {
  background: var(--color-bg);
}

.contact__form {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact__field--secondary {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact__field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.contact__field input,
.contact__field textarea {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 14px 16px;
  font-family: var(--font-ja);
  font-size: 1rem;
  line-height: 1.6;
  transition: border-color 0.2s;
  width: 100%;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.contact__field input:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contact__field textarea {
  resize: vertical;
  min-height: 160px;
}

.contact__select-wrap {
  position: relative;
}

.contact__select-wrap select {
  background: var(--color-bg-2);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 14px 40px 14px 16px;
  font-family: var(--font-ja);
  font-size: 0.9rem;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}

.contact__select-wrap select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contact__select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-muted);
}

.contact__select-wrap select option {
  background: var(--color-bg-2);
}


/* ===========================
   FOOTER
   =========================== */
.footer {
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 64px 0 40px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer__logo-img {
  height: 52px;
  width: auto;
}

.footer__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.6);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--color-accent-on-light);
}

.footer__sns {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(0, 0, 0, 0.6);
}

.footer__sns a {
  display: flex;
  align-items: center;
  transition: color 0.2s;
  padding: 5px;
  margin: -5px;
}

.footer__sns a:hover {
  color: var(--color-accent-on-light);
}

.icon-yt-cut {
  fill: var(--color-bg);
}

.site-header.scrolled .icon-yt-cut,
.footer__sns .icon-yt-cut {
  fill: #fff;
}

.footer__address {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.02em;
  text-align: center;
}

.footer__copy {
  font-size: 0.68rem;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.06em;
}


/* ===========================
   FADE-IN（プログレッシブエンハンスメント）
   JS未実行時は will-fade でも opacity:1 のまま表示される
   =========================== */
.will-fade {
  opacity: 1;
}

.js-ready .will-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-fade.is-visible {
  opacity: 1 !important;
  transform: none !important;
}


/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
  .nav__links { gap: 0; }
  .nav__links a { padding: 8px 7px; font-size: 0.68rem; }
  .nav__sns { gap: 10px; }
}

@media (max-width: 1024px) {
  .nav {
    gap: 14px;
  }

  .nav__links {
    display: none;
  }

  .nav__sns {
    margin-left: 0;
    gap: 12px;
  }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 8, 8, 0.98);
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .nav__links.is-open li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
  }

  .nav__links.is-open a {
    display: block;
    padding: 18px;
    font-size: 0.9rem;
  }

  .nav__links.is-open .nav__btn {
    padding: 18px !important;
    border: none !important;
    margin-left: 0;
  }

  .site-header.scrolled .nav__links.is-open a {
    color: rgba(255, 255, 255, 0.7);
  }

  .nav__hamburger {
    display: flex;
    margin-left: auto;
  }


  .next-stage__card {
    grid-template-columns: 1fr;
  }

  .members__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trailer__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero__cta {
    flex-wrap: nowrap;
  }

  .hero__cta .btn {
    padding: 10px 18px;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .members__grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery__item--large {
    grid-column: span 2;
  }

  .past-stage__grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }

  .contact__row {
    grid-template-columns: 1fr;
  }

  .news__item {
    flex-wrap: wrap;
    gap: 8px;
  }

  .about__director-photo {
    max-width: 220px;
    margin: 0 auto 20px;
  }
}
