@charset "UTF-8";

/* =========================================================
   CHUCHOTER - style.css
    1. Design tokens
    2. Reset & base
    3. Utilities
    4. Header / Global nav / Notice
    5. Hero
    6. Section common (title, lead, headings, button, reveal)
    7. About
    8. Table
    9. Casts carousel
   10. Lounge
   11. News
   12. Contact
   13. Footer / to-top
   14. Sub pages (page head, prose, grid, form)
   15. Responsive
   ========================================================= */

/* =========================================================
   1. Design tokens
   ========================================================= */
:root {
  --bg:            #060406;
  --bg-alt:        #0b080c;

  --gold-100:      #f6e9c4;
  --gold-200:      #e3cd92;
  --gold-300:      #c9a54c;
  --gold-400:      #9c7a2e;
  --gold-line:     rgba(201, 165, 76, .55);
  --gold-line-soft:rgba(201, 165, 76, .22);

  --wine-100:      #7b1c33;
  --wine-200:      #52101e;
  --wine-300:      #2c0710;

  --navy-100:      #2b3555;
  --navy-200:      #1a2135;
  --navy-300:      #10141f;

  --text:          #e6e0d4;
  --text-muted:    #a49c90;
  --text-dark:     #1a1208;
  --red:           #c2453d;

  --font-jp:  "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  --font-en:  "Cormorant Garamond", "Times New Roman", serif;
  --font-ui:  "Lato", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --header-h:      86px;
  --notice-h:      38px;
  --container:     1200px;
  --gutter:        24px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* =========================================================
   2. Reset & base
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--notice-h) + 16px);
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 165, 76, .45) rgba(6, 4, 6, .9);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: .06em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* --- Scrollbar（Chrome / Safari / Edge） --- */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #0b080c 0%, #060406 100%);
  border-left: 1px solid rgba(201, 165, 76, .12);
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(227, 205, 146, .55), rgba(201, 165, 76, .4) 45%, rgba(156, 122, 46, .55));
  border: 2px solid rgba(6, 4, 6, .85);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(246, 233, 196, .18);
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(246, 233, 196, .75), rgba(201, 165, 76, .65) 45%, rgba(156, 122, 46, .7));
}
*::-webkit-scrollbar-corner {
  background: #060406;
}

img,
svg,
video,
iframe { max-width: 100%; height: auto; display: block; border: 0; }

h1, h2, h3, h4, p, dl, dd, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s var(--ease), opacity .3s var(--ease);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

:focus-visible {
  outline: 2px solid var(--gold-200);
  outline-offset: 3px;
}

main { position: relative; z-index: 1; }

/* =========================================================
   3. Utilities
   ========================================================= */
.container {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
}
/* カルーセルを画面端まで見せるための全幅ブロック */
.container--bleed { width: 100%; }

.u-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  z-index: 999;
  padding: 10px 18px;
  background: var(--gold-300);
  color: var(--text-dark);
  font-size: 13px;
}
.skip-link:focus { top: 12px; }

/* =========================================================
   4. Header / Global nav / Notice
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(6, 4, 6, .96), rgba(6, 4, 6, .84));
  backdrop-filter: blur(6px);
  transition: background .4s var(--ease), box-shadow .4s var(--ease);
}
.header.is-scrolled {
  background: rgba(6, 4, 6, .98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .6);
}

.header__inner {
  height: var(--header-h);
  width: min(100% - 40px, 1560px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* --- Brand --- */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand__mark {
  width: 38px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(201, 165, 76, .3));
  transition: transform .7s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-10deg) scale(1.06); }
.brand__type { width: 178px; height: auto; display: block; }

/* --- Global nav --- */
.gnav { display: flex; align-items: center; gap: 30px; }

.gnav__list { display: flex; align-items: flex-end; gap: 28px; }

.gnav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  padding-bottom: 6px;
}
.gnav__en {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--gold-300);
}
.gnav__ja {
  font-size: 14px;
  letter-spacing: .04em;
  white-space: nowrap;
  color: #f2ece0;
}
.gnav__link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-200), transparent);
  transform: translateX(-50%);
  transition: width .4s var(--ease);
}
.gnav__link:hover::after,
.gnav__link:focus-visible::after { width: 100%; }
.gnav__link[aria-current="page"] { color: var(--gold-100); }
.gnav__link[aria-current="page"]::after { width: 100%; }
.gnav__link:hover .gnav__ja { color: var(--gold-100); }

.gnav__sns { display: flex; align-items: center; gap: 10px; }

/* ハンバーガーメニュー専用項目（PCナビでは非表示） */
.gnav__item--sp-only { display: none; }

/* --- SNS icons --- */
.sns-icon {
  display: block;
  width: 28px; height: 28px;
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 64%;
  transition: transform .3s var(--ease), filter .3s var(--ease);
}
.sns-icon:hover { transform: translateY(-2px); filter: brightness(1.15); }
.sns-icon--lg { width: 36px; height: 36px; border-radius: 6px; }

/* VRChatは吹き出し型のワードマークのため横長に表示する */
.sns-icon--vrchat {
  width: 52px;
  background-color: #fff;
  background-size: 82%;
  background-image: url("../img/sns-vrchat.png");
}
.sns-icon--lg.sns-icon--vrchat { width: 66px; }

.sns-icon--x {
  background-color: #000;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M17.7 3h3.2l-7 8 8.2 10h-6.4l-5-6.1L4.9 21H1.7l7.4-8.4L1.2 3h6.6l4.7 5.7L17.7 3Zm-1.1 16h1.8L6.3 4.8H4.4L16.6 19Z'/%3E%3C/svg%3E");
}
.sns-icon--youtube {
  width: 40px;
  background-color: #ff0000;
  background-size: 46%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M8 5l12 7-12 7V5Z'/%3E%3C/svg%3E");
}
.sns-icon--lg.sns-icon--youtube { width: 52px; }

/* --- Hamburger --- */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
}
.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
  position: absolute;
  left: 50%;
  width: 20px; height: 1.5px;
  background: var(--gold-200);
  transform: translateX(-50%);
  transform-origin: center;
  transition: transform .35s var(--ease), opacity .2s var(--ease), top .35s var(--ease);
}
.menu-toggle__bars { top: 50%; margin-top: -.75px; }
.menu-toggle__bars::before { content: ""; top: -6px; }
.menu-toggle__bars::after  { content: ""; top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bars {
  transform: translateX(-50%) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::before {
  top: 0;
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bars::after {
  top: 0;
  transform: translateX(-50%) rotate(-90deg);
}

/* --- Notice: 最新のお知らせを1件だけ表示 --- */
.notice {
  min-height: var(--notice-h);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  /* メインコンテンツ（.container）の左端に揃える */
  padding: 3px max(var(--gutter), calc((100% - var(--container)) / 2));
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: #050305;
}
.notice__label {
  flex-shrink: 0;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--red);
}
.notice__body {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
  color: rgba(243, 236, 221, .88);
}
.notice__date { flex-shrink: 0; font-size: 12.5px; letter-spacing: .04em; color: var(--gold-300); }
.notice__text {
  font-size: 13px;
  letter-spacing: .06em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.notice__body:hover .notice__text { color: var(--gold-100); text-decoration: underline; }
/* =========================================================
   5. Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: calc(var(--header-h) + var(--notice-h));
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: hero-zoom 24s ease-out both;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(66% 52% at 50% 46%, rgba(0, 0, 0, .12) 0%, rgba(3, 2, 3, .86) 100%),
    linear-gradient(180deg, rgba(6, 4, 6, .92) 0%, transparent 22% 70%, var(--bg) 100%);
}

@keyframes hero-zoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}

.hero__inner { text-align: center; padding: 40px var(--gutter) 90px; }

.hero__mark {
  width: clamp(58px, 5.6vw, 82px);
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 22px rgba(201, 165, 76, .4));
  animation: fade-up 1.2s .2s var(--ease) both;
}
.hero__logo { margin: 0; animation: fade-up 1.4s .5s var(--ease) both; }
.hero__logo img {
  width: clamp(280px, 44vw, 620px);
  height: auto;
  display: block;
  margin-inline: auto;
  filter: drop-shadow(0 6px 26px rgba(0, 0, 0, .85));
}
.hero__lead {
  margin-top: 18px;
  font-size: clamp(15px, 1.7vw, 26px);
  letter-spacing: .26em;
  color: #f4eee2;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .95);
  animation: fade-up 1.4s .9s var(--ease) both;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 34px;
  width: 1px; height: 62px;
  background: linear-gradient(180deg, transparent, var(--gold-200));
  transform: translateX(-50%);
  animation: fade-in 1s 1.6s both;
}
.hero__scroll::after {
  content: "";
  position: absolute;
  left: -3px; top: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-100);
  box-shadow: 0 0 10px var(--gold-200);
  animation: scroll-dot 2.4s 2s var(--ease) infinite;
}

@keyframes scroll-dot {
  0%        { top: 0;   opacity: 0; }
  25%       { opacity: 1; }
  75%, 100% { top: 100%; opacity: 0; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =========================================================
   6. Section common
   ========================================================= */
.section { padding: 78px 0; position: relative; }
.section--about { padding-top: 64px; }
.section--casts .container:first-child { padding-bottom: 6px; }
.section--contact { padding-bottom: 100px; }

/* --- ▌見出し --- */
.section__title {
  margin-bottom: 20px;
  padding: 2px 0 2px 18px;
  position: relative;
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 500;
  letter-spacing: .12em;
  background: linear-gradient(100deg, var(--gold-400) 0%, #fff6de 42%, var(--gold-300) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}
.section__title::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold-100), var(--gold-400));
  box-shadow: 0 0 10px rgba(201, 165, 76, .45);
}

.section__lead { margin-bottom: 34px; }
.section__lead p {
  max-width: 74em;
  font-size: 13.5px;
  line-height: 2.05;
  color: #cfc8bb;
}

/* 下層ページ：h1直下のリード文は中央寄せ */
.breadcrumb + .section > .container > .section__lead:first-child {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.breadcrumb + .section > .container > .section__lead:first-child p {
  max-width: none;
  margin-inline: auto;
}

.section__note {
  margin-top: 4px;
  font-size: 11px !important;
  color: var(--text-muted);
}

/* --- ダイヤ付きの罫線見出し --- */
.rule-heading {
  position: relative;
  padding: 0 0 9px 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--gold-300);
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .08em;
  color: var(--gold-100);
}
.rule-heading::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4.5px;
  width: 9px; height: 9px;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-400));
  transform: rotate(45deg);
}
.rule-heading--sm { font-size: 15px; margin-bottom: 0; padding-bottom: 8px; }

/* --- ◆付きの小見出し --- */
.diamond-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--gold-100);
}
.diamond-heading::before {
  content: "";
  width: 11px; height: 11px;
  background: linear-gradient(135deg, #fff3d6, var(--gold-400));
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* --- Buttons --- */
.section__action { margin-top: 30px; text-align: right; }
.section__action--left   { text-align: left; }
.section__action--center { text-align: center; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 26px;
  border: 1px solid var(--gold-300);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .08em;
  color: #f4eee2;
  overflow: hidden;
  transition: color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn > span { position: relative; z-index: 1; }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--gold-400), var(--gold-200) 50%, var(--gold-300));
  transform: translateX(-101%);
  transition: transform .45s var(--ease);
}
/* 内部リンクは矢印、外部リンクは別窓アイコン */
.btn::after {
  content: "";
  position: relative;
  z-index: 1;
  width: 17px; height: 8px;
  background: var(--gold-200);
  clip-path: polygon(0 42%, 74% 42%, 74% 0, 100% 50%, 74% 100%, 74% 58%, 0 58%);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.btn--external::after {
  width: 15px; height: 15px;
  clip-path: polygon(0 26%, 74% 26%, 74% 100%, 0 100%, 0 26%,
                     26% 26%, 26% 0, 100% 0, 100% 74%, 74% 74%, 74% 26%);
}
.btn:hover,
.btn:focus-visible {
  color: var(--text-dark);
  border-color: var(--gold-200);
  box-shadow: 0 8px 26px rgba(201, 165, 76, .24);
}
.btn:hover::before,
.btn:focus-visible::before { transform: translateX(0); }
.btn:hover::after,
.btn:focus-visible::after { background: var(--text-dark); }
.btn:hover::after { transform: translateX(4px); }
.btn--external:hover::after { transform: none; }

/* --- Reveal（JS有効時のみ初期非表示。未対応環境では最初から見える） --- */
html.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
html.js-reveal [data-reveal].is-visible { opacity: 1; transform: none; }

/* X埋め込みは非表示状態だと widgets.js が失敗するため、最初から表示する */
html.js-reveal [data-reveal]:has([data-x-embed]) {
  opacity: 1;
  transform: none;
}

/* =========================================================
   7. About
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}
.about__text p {
  font-size: 14px;
  line-height: 2.25;
  color: #ddd6c9;
}

.about__photos {
  position: relative;
  aspect-ratio: 16 / 11;
}
.about__photo {
  position: absolute;
  border-radius: 12px;
  border: 3px solid var(--gold-300);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .8);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .9);
  z-index: 5;
}
.about__photo--1 { width: 62%; aspect-ratio: 16 / 11; top: 0;    left: 0;   z-index: 1; }
.about__photo--2 { width: 62%; aspect-ratio: 16 / 11; bottom: 0; right: 0;  z-index: 2; }

/* about 詳細ページ */
.about-lead {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 48px;
  text-align: center;
}
.about-note {
  margin: -8px 0 28px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-muted);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px 48px;
  align-items: center;
}
.about-split--reverse { direction: rtl; }
.about-split--reverse > * { direction: ltr; }

.about-split__media {
  border: 1px solid var(--gold-300);
  border-radius: 10px;
  overflow: hidden;
  background: #050305;
  aspect-ratio: 16 / 11;
}
.about-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-split__text p {
  font-size: 14px;
  line-height: 2.2;
  color: #ddd6c9;
}
.about-split__text p + p { margin-top: .35em; }

.info-list--flush { max-width: none; margin: 0; }

/* 参加ルール */
.rules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.rules__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  aspect-ratio: 1;
  padding: 18px 14px;
  border: 1px solid var(--gold-line-soft);
  border-radius: 4px;
  background: #050305;
  text-align: center;
}
.rules__icon-img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.rules__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: .04em;
  color: rgba(236, 230, 218, .92);
}

.flow.flow--3,
.flow.flow--4 {
  --flow-gap: 48px;
  display: grid;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  gap: var(--flow-gap);
  justify-content: center;
  box-sizing: border-box;
}
.flow.flow--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.flow.flow--4 {
  --flow-gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flow.flow--3 .flow__item,
.flow.flow--4 .flow__item {
  padding: 30px 26px 28px;
  border-radius: 4px;
  text-align: center;
  background: #050305;
  min-width: 0;
}
.flow.flow--4 .flow__item { padding: 26px 16px 24px; }
/* 矢印をボックス間ギャップの中央に配置 */
.flow.flow--3 .flow__item:not(:last-child)::after,
.flow.flow--4 .flow__item:not(:last-child)::after {
  right: calc(var(--flow-gap) / -2);
  left: auto;
  top: 50%;
  transform: translate(50%, -50%) rotate(-45deg);
}
.flow.flow--3 .flow__step,
.flow.flow--4 .flow__step {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  letter-spacing: 0;
}
.flow.flow--3 .flow__step span,
.flow.flow--4 .flow__step span {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--gold-300), var(--gold-100));
  color: #1a1208;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}
.flow.flow--3 .flow__title,
.flow.flow--4 .flow__title {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-line-soft);
  font-size: 15px;
}
.flow.flow--4 .flow__title { font-size: 14px; }
.flow.flow--3 .flow__text,
.flow.flow--4 .flow__text {
  text-align: left;
  font-size: 12.5px;
  color: rgba(236, 230, 218, .88);
}
.flow.flow--4 .flow__text { font-size: 12px; }
.flow__note {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(230, 224, 212, .62);
}

/* =========================================================
   8. Table
   ========================================================= */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.schedule-empty {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 28px 24px;
  border: 1px solid var(--gold-line-soft);
  border-radius: 4px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--text-muted);
  background: rgba(201, 165, 76, .04);
}

.data-table {
  min-width: 820px;
  border: 1px solid var(--gold-300);
  font-size: 13.5px;
}
.data-table thead th {
  padding: 12px 16px;
  background: linear-gradient(100deg, #b6913f 0%, #f2e3b6 38%, #dcc283 62%, #b08c3c 100%);
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: .12em;
  text-align: center;
  white-space: nowrap;
  border-right: 1px solid rgba(26, 18, 8, .22);
}
.data-table thead th:last-child { border-right: 0; }

.data-table tbody th,
.data-table tbody td {
  padding: 15px 16px;
  text-align: center;
  border-top: 1px solid var(--gold-line-soft);
  border-right: 1px solid var(--gold-line-soft);
  font-weight: 400;
  letter-spacing: .04em;
  color: #ece6da;
}
.data-table tbody td:last-child { border-right: 0; }
.data-table tbody tr { transition: background .35s var(--ease); }
.data-table tbody tr:nth-child(odd)  { background: rgba(201, 165, 76, .055); }
.data-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, .025); }
.data-table tbody tr:hover { background: rgba(201, 165, 76, .12); }

/* =========================================================
   9. Casts carousel
   ========================================================= */
.carousel {
  --gap: 20px;
  --per-page: 5;
  --content-w: min(100vw - var(--gutter) * 2, var(--container));
  margin-bottom: 42px;
}
.carousel:last-child { margin-bottom: 0; }

.carousel__head {
  width: var(--content-w);
  margin: 0 auto 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--gold-300);
  position: relative;
}
.carousel__head .rule-heading { border: 0; margin-bottom: 0; }
.carousel__head .rule-heading::after { bottom: -5px; }

.carousel__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 9px;
}


.carousel__pause { width: 20px; height: 20px; display: grid; place-items: center; }
.carousel__pause::before {
  content: "";
  width: 11px; height: 13px;
  border-left: 3px solid var(--gold-100);
  border-right: 3px solid var(--gold-100);
  transition: border-color .3s var(--ease);
}
/* 停止中は再生アイコンへ切り替える */
.carousel__pause[aria-pressed="true"]::before {
  width: 11px;
  border: 0;
  background: var(--gold-100);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.carousel__pause:hover::before { border-color: var(--gold-200); }
.carousel__pause[aria-pressed="true"]:hover::before { background: var(--gold-200); }

/* 流れるカードを左右で切り取ります。
   上下も切られるとホバーで浮き上がったカードの上端や影が欠けるため、
   余白で切り取り範囲を広げ、同じ幅の負のマージンで打ち消して位置は保っています。 */
.carousel__viewport {
  overflow: hidden;
  padding: 14px 0 40px;
  margin: -14px 0 -40px;
}
/* 広げた切り取り範囲が見出し側に重なっても、停止ボタンを押せるようにする */
.carousel__head { position: relative; z-index: 1; }

/* 一定速度で流れ続けるトラック。
   --shift（カード1周分の幅）と再生時間はJSが実際の幅から算出します。 */
.carousel__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation-name: marquee-left;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}
.carousel[data-marquee-direction="right"] .carousel__track { animation-name: marquee-right; }
.carousel.is-ready .carousel__track { animation-play-state: running; }
.carousel.is-paused .carousel__track { animation-play-state: paused; }

.carousel__slide {
  flex: 0 0 calc((var(--content-w) - (var(--per-page) - 1) * var(--gap)) / var(--per-page));
  min-width: 0;
  margin-right: var(--gap);
}

/* 右から左へ（女性キャスト） */
@keyframes marquee-left {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(var(--shift, 0px) * -1), 0, 0); }
}
/* 左から右へ（男性キャスト） */
@keyframes marquee-right {
  from { transform: translate3d(calc(var(--shift, 0px) * -1), 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

/* --- Cast card --- */
.cast-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 11px 11px 18px;
  border: 2px solid var(--gold-300);
  border-radius: 10px;
  text-align: center;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.cast-card--male {
  background: linear-gradient(168deg, var(--navy-100) 0%, var(--navy-200) 48%, var(--navy-300) 100%);
}
.cast-card--female {
  background: linear-gradient(168deg, var(--wine-100) 0%, var(--wine-200) 48%, var(--wine-300) 100%);
}
.cast-card:hover,
.cast-card:focus-within {
  transform: translateY(-7px);
  border-color: var(--gold-100);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .72);
}

/* カード全面に重ねた、詳細モーダルを開くためのボタン */
.cast-card__open {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 8px;
  cursor: pointer;
}

.cast-card__thumb {
  border: 2px solid var(--gold-300);
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #050406;
}
.cast-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.cast-card:hover .cast-card__thumb img { transform: scale(1.06); }

.cast-card__body { padding-top: 12px; flex: 1; }
.cast-card__role {
  font-size: 11.5px;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .82);
}
.cast-card__name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 4px 0 8px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: .04em;
  color: #fdf8ec;
}
.cast-card__diamond {
  width: 11px; height: 11px;
  background: linear-gradient(135deg, #fff3d6, var(--gold-400));
  transform: rotate(45deg);
  flex-shrink: 0;
}
.cast-card__copy {
  font-size: 11.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .86);
}

/* =========================================================
  10. Lounge
   ========================================================= */
.lounge__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
  margin-top: 36px;
}

.lounge-poster {
  width: min(100%, 420px);
  margin: 8px auto 8px;
  border: 1px solid var(--gold-300);
  background: #050305;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .55);
}
.lounge-poster img {
  width: 100%;
  height: auto;
  display: block;
}
.lounge-poster--compact {
  width: min(100%, 280px);
  margin-bottom: 8px;
}

.lounge__x {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.x-embed__follow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
  min-height: 32px;
}

.embed {
  border: 1px solid var(--gold-300);
  background: #050305;
  min-height: 420px;
  height: 420px;
}
/* X の埋め込みは中身の高さが伸びるため、枠内でスクロールさせる */
.embed--timeline,
.embed--tweet {
  overflow: hidden;
  overscroll-behavior: contain;
}
.embed--timeline iframe,
.embed--tweet iframe {
  max-width: 100% !important;
}

/* 固定投稿：Xの読み込みが終わるまでは、下の文章がそのまま見えている状態になる */
.embed--tweet .twitter-tweet {
  margin: 0;
  padding: 20px;
  font-size: 12.5px;
  line-height: 1.9;
  color: var(--text-muted);
}
.embed--tweet .twitter-tweet a { color: var(--gold-200); }
.embed--tweet .twitter-tweet-rendered { padding: 0; }
.embed--timeline a.twitter-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
}

.embed__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  padding: 20px;
  text-align: center;
}
.embed__note { font-size: 14px; letter-spacing: .08em; color: var(--gold-200); }
.embed__hint { font-size: 11px; color: var(--text-muted); }
.embed__link:hover .embed__note { color: var(--gold-100); }

/* --- Video --- */
.video {
  position: relative;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--gold-300);
  overflow: hidden;
  background: #050305;
}
.video__poster { display: block; width: 100%; height: 100%; position: relative; }
.video__poster img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .42;
  transition: opacity .5s var(--ease), transform .8s var(--ease);
}
.video__poster:hover img { opacity: .66; transform: scale(1.04); }
.video__btn {
  position: absolute;
  left: 50%; top: 50%;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(232, 232, 232, .82);
  transform: translate(-50%, -50%);
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.video__btn::after {
  content: "";
  position: absolute;
  left: 55%; top: 50%;
  width: 19px; height: 21px;
  background: #4f4f4f;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transform: translate(-50%, -50%);
}
.video__poster:hover .video__btn {
  background: var(--gold-100);
  transform: translate(-50%, -50%) scale(1.08);
}
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* =========================================================
  11. News
   ========================================================= */
.news__grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.news-list__item { border-bottom: 1px solid var(--gold-line-soft); }
.news-list__link {
  display: grid;
  grid-template-columns: 10em minmax(0, 1fr) 18px;
  gap: 18px;
  align-items: center;
  padding: 13px 6px;
  position: relative;
  transition: background .35s var(--ease);
}
.news-list__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold-200), rgba(201, 165, 76, .2));
  transition: width .5s var(--ease);
}
.news-list__link:hover::after { width: 100%; }
.news-list__date { font-size: 13px; letter-spacing: .04em; color: #ddd6c9; }
.news-list__title { font-size: 13.5px; color: #ece6da; }
.news-list__link:hover .news-list__title { color: var(--gold-100); }
.news-list__arrow {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 1.5px solid var(--gold-200);
  border-bottom: 1.5px solid var(--gold-200);
  transform: rotate(-45deg);
  opacity: .72;
  transition: opacity .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.news-list__link:hover .news-list__arrow {
  opacity: 1;
  border-color: var(--gold-100);
  transform: rotate(-45deg) translateX(2px);
}

/* =========================================================
  12. Contact
   ========================================================= */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px;
}
.contact__col .section__action { margin-top: 26px; }

/* =========================================================
  13. Footer / to-top
   ========================================================= */
.footer {
  position: relative;
  z-index: 1;
  padding: 40px 0 18px;
  border-top: 1px solid var(--gold-line);
  background: var(--bg-alt);
}
.footer__inner {
  width: min(100% - var(--gutter) * 2, 1360px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.brand--footer { flex-direction: column; gap: 10px; }
.brand--footer .brand__mark { width: 52px; }
.brand--footer .brand__type { width: 250px; }

.footer__right { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer__sns { display: flex; align-items: center; gap: 16px; }
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
}
.footer__nav a { font-size: 14px; letter-spacing: .04em; color: #f2ece0; }
.footer__nav a:hover { color: var(--gold-100); }

.footer__copy {
  margin-top: 26px;
  text-align: center;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(230, 224, 212, .65);
}

.to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 44px; height: 44px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: rgba(6, 4, 6, .82);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s var(--ease), visibility .4s;
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.to-top::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 11px; height: 8px;
  background: var(--gold-100);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translate(-50%, -50%);
}
.to-top:hover { background: rgba(201, 165, 76, .22); }

/* =========================================================
  14. Sub pages
   ========================================================= */
.page-head {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + var(--notice-h) + 62px) 0 42px;
  text-align: center;
  border-bottom: 1px solid var(--gold-line-soft);
  background: var(--bg-alt);
}
/* MV画像をごく薄く敷く */
.page-head__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.page-head__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: .28;
  filter: saturate(.75) brightness(.6);
}
.page-head__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 3, 5, .42) 0%, rgba(5, 3, 5, .72) 55%, rgba(5, 3, 5, .9) 100%),
    radial-gradient(70% 100% at 50% 0%, rgba(201, 165, 76, .1), transparent 72%);
}
.page-head__ja {
  position: relative;
  z-index: 1;
  font-size: clamp(23px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: .14em;
  background: linear-gradient(100deg, var(--gold-400), #fff6de 44%, var(--gold-300));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-head__en {
  display: block;
  margin-top: 8px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--gold-300);
}

.breadcrumb {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin: 18px auto 0;
  font-size: 11.5px;
  color: var(--text-muted);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--gold-line); }
.breadcrumb a:hover { color: var(--gold-100); }

.prose { max-width: 860px; margin-inline: auto; }
.prose p { margin-bottom: 1.5em; font-size: 14px; line-height: 2.25; color: #ddd6c9; }
.prose p:last-child { margin-bottom: 0; }

.info-list {
  border-top: 1px solid var(--gold-line-soft);
  max-width: 860px;
  margin-inline: auto;
}
.info-list > div {
  display: grid;
  grid-template-columns: 11em minmax(0, 1fr);
  gap: 16px;
  padding: 15px 14px;
  border-bottom: 1px solid var(--gold-line-soft);
}
.info-list > div:nth-child(odd) {
  background: rgba(201, 165, 76, .055);
}
.info-list > div:nth-child(even) {
  background: rgba(255, 255, 255, .025);
}
.info-list dt { font-size: 13px; letter-spacing: .1em; color: var(--gold-200); }
.info-list dd { font-size: 13.5px; color: #ece6da; }

.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
  gap: 22px;
}

/* --- Form --- */
/* --- FAQ（アコーディオン） --- */
.faq {
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}
.faq__list {
  margin-top: 0;
  border-top: 1px solid var(--gold-line-soft);
}
.faq__item {
  border-bottom: 1px solid var(--gold-line-soft);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 14.5px;
  letter-spacing: .04em;
  color: #f3ecdd;
  transition: color .25s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q:hover { color: var(--gold-100); }
.faq__q-text { flex: 1; min-width: 0; line-height: 1.7; }
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--gold-200);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq__icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faq__item[open] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__item[open] .faq__q { color: var(--gold-100); }
.faq__a {
  padding: 0 4px 18px;
}
.faq__a p {
  font-size: 13px;
  line-height: 2;
  color: var(--text-muted);
}

.form { max-width: 780px; width: 100%; margin-inline: auto; }
.form__heading { margin-top: 64px; }
.form__row { margin-bottom: 24px; }
.form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--gold-100);
}
.form__required {
  margin-left: 8px;
  padding: 1px 8px;
  border: 1px solid rgba(194, 69, 61, .65);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .08em;
  color: #e7a9a5;
}
.form__control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gold-line-soft);
  background: #050305;
  color: var(--text);
  font-family: var(--font-jp);
  font-size: 14px;
  letter-spacing: .06em;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.form__control:focus,
.form__control:focus-visible {
  outline: 2px solid var(--gold-200);
  outline-offset: 2px;
  border-color: var(--gold-300);
  box-shadow: 0 0 0 3px rgba(201, 165, 76, .18);
}
.form__control.is-invalid {
  border-color: #c96b6b;
}
.form__control.is-invalid:focus,
.form__control.is-invalid:focus-visible {
  outline-color: #e08a8a;
  box-shadow: 0 0 0 3px rgba(201, 107, 107, .2);
}
.form__error {
  margin-top: 8px;
  font-size: 12px;
  color: #e8a0a0;
}
.form__control::placeholder { color: rgba(164, 156, 144, .75); }
textarea.form__control { min-height: 190px; resize: vertical; line-height: 1.9; }
select.form__control {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold-200) 50%),
    linear-gradient(135deg, var(--gold-200) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.form__consent input { margin-top: .5em; accent-color: var(--gold-300); }
.form__consent a { color: var(--gold-200); text-decoration: underline; }

.form__submit { text-align: center; margin-top: 34px; }
.form__submit .btn { padding-inline: 44px; }

.alert {
  margin-bottom: 32px;
  padding: 18px 22px;
  font-size: 13.5px;
  line-height: 1.95;
}
.alert--error {
  border: 1px solid rgba(194, 69, 61, .55);
  background: rgba(70, 12, 14, .3);
  color: #eab9b6;
}
.alert--success {
  border: 1px solid var(--gold-line);
  background: rgba(201, 165, 76, .08);
  color: var(--gold-100);
}
.alert ul { margin-top: 8px; }
.alert li { padding-left: 1.2em; position: relative; }
.alert li::before { content: "・"; position: absolute; left: 0; }

/* =========================================================
  14b. お知らせ詳細 / ご利用の流れ / 補助スタイル
   ========================================================= */
.news-list-wrap { max-width: 900px; margin-inline: auto; }
.news-list__empty {
  padding: 24px 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
}

.article { max-width: 860px; margin-inline: auto; }
.article__head {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gold-line-soft);
}
.article__date {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--gold-300);
}
.article__title {
  margin-top: 10px;
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.7;
  color: #f3ecdd;
}
.article__figure {
  margin: 34px 0 0;
  border: 1px solid var(--gold-line-soft);
}
.article__figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article__body { margin-top: 32px; }
.article__body p {
  margin-bottom: 1.6em;
  font-size: 14px;
  line-height: 2.2;
  color: #ddd6c9;
}
.article__body p:last-child { margin-bottom: 0; }

.article__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 860px;
  margin: 52px auto 0;
}
.article__nav-link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid var(--gold-line-soft);
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.article__nav-link--next { text-align: right; }
.article__nav-link:hover {
  border-color: var(--gold-line);
  background: rgba(201, 165, 76, .06);
}
.article__nav-label { font-size: 11px; letter-spacing: .12em; color: var(--gold-300); }
.article__nav-title {
  font-size: 13px;
  color: #ece6da;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin-inline: auto;
}
.flow__item {
  position: relative;
  padding: 22px 18px;
  border: 1px solid var(--gold-line-soft);
  background: linear-gradient(170deg, rgba(201, 165, 76, .08), transparent 72%);
}
/* 次のステップへ続く矢印（デスクトップは右向き） */
.flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--gold-200);
  border-bottom: 2px solid var(--gold-200);
  transform: translateY(-50%) rotate(-45deg);
  pointer-events: none;
}
.flow__step {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--gold-300);
}
.flow__title {
  margin: 8px 0 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .06em;
  color: #f3ecdd;
}
.flow__text { font-size: 12.5px; line-height: 1.95; color: var(--text-muted); }

.prose--sm { max-width: none; margin-bottom: 22px; }
.prose--sm p { font-size: 13px; line-height: 2.05; }

.link-underline {
  color: var(--gold-200);
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: break-all;
}
.link-underline:hover { color: var(--gold-100); }

.form__note { margin-top: 8px; font-size: 12px; color: var(--text-muted); }

/* 隣人カードのボイス再生 */
/* ボイスが登録されている隣人にだけ出る印 */
.cast-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 12px auto 0;
  padding: 3px 11px;
  border: 1px solid var(--gold-300);
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--gold-100);
}

/* フッターのロゴマーク（管理画面の入口） */
.footer__crest {
  display: block;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}
.footer__type-link { display: block; }
/* =========================================================
   隣人の詳細モーダル
   ========================================================= */
.cast-modal {
  width: min(100% - 32px, 560px);
  max-height: min(88svh, 760px);
  padding: 0;
  border: 2px solid var(--gold-300);
  border-radius: 12px;
  background: var(--navy-200);
  color: var(--text-main);
  overflow: auto;
  overscroll-behavior: contain;
}
.cast-modal--male   { background: linear-gradient(168deg, var(--navy-100) 0%, var(--navy-200) 48%, var(--navy-300) 100%); }
.cast-modal--female { background: linear-gradient(168deg, var(--wine-100) 0%, var(--wine-200) 48%, var(--wine-300) 100%); }
.cast-modal::backdrop { background: rgba(3, 2, 5, .82); backdrop-filter: blur(3px); }

.cast-modal[open] { animation: cast-modal-in .3s var(--ease); }
@keyframes cast-modal-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.cast-modal__inner { position: relative; padding: 26px 26px 30px; text-align: center; }

.cast-modal__close {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-300);
  border-radius: 50%;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.cast-modal__close::before,
.cast-modal__close::after {
  content: "";
  position: absolute;
  width: 14px; height: 1px;
  background: var(--gold-100);
}
.cast-modal__close::before { transform: rotate(45deg); }
.cast-modal__close::after  { transform: rotate(-45deg); }
.cast-modal__close:hover { border-color: var(--gold-100); background: rgba(246, 233, 196, .1); }

.cast-modal__thumb {
  width: min(100%, 260px);
  margin: 0 auto 20px;
  border: 2px solid var(--gold-300);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #050406;
}
.cast-modal__thumb img { width: 100%; height: 100%; object-fit: cover; }

.cast-modal__role { font-size: 12px; letter-spacing: .14em; color: rgba(255, 255, 255, .82); }
.cast-modal__name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px 0 14px;
  font-size: 23px;
  letter-spacing: .06em;
  color: var(--gold-100);
}
.cast-modal__copy {
  font-size: 13px;
  line-height: 2;
  white-space: pre-line;
  color: rgba(255, 255, 255, .88);
}

.cast-modal__voice {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gold-line-soft);
}
.cast-modal__voice-label {
  margin-bottom: 9px;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--gold-200);
}
.cast-modal__voice audio { width: 100%; height: 38px; }

@media (max-width: 600px) {
  .cast-modal__inner { padding: 22px 18px 26px; }
  .cast-modal__thumb { width: min(100%, 210px); }
  .cast-modal__name { font-size: 20px; }
}
/* =========================================================
  15. Responsive
   ========================================================= */
@media (max-width: 1360px) {
  .gnav__list { gap: 20px; }
  .gnav__ja   { font-size: 13px; }
  .brand__type { width: 150px; }
}

@media (max-width: 1200px) {
  .carousel { --per-page: 4; }
}

@media (max-width: 1080px) {
  :root { --header-h: 70px; }

  .menu-toggle { display: block; }

  .gnav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + 22px) 26px 38px;
    background: rgba(6, 4, 6, .985);
    border-bottom: 1px solid var(--gold-line-soft);
    max-height: 100svh;
    overflow-y: auto;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform .5s var(--ease), visibility .5s;
  }
  .gnav.is-open { transform: translateY(0); visibility: visible; }

  .gnav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav__item { border-bottom: 1px solid var(--gold-line-soft); }
  .gnav__item--sp-only { display: list-item; }
  .gnav__link {
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px 4px;
  }
  .gnav__ja { font-size: 14.5px; }
  .gnav__en { min-width: 6.4em; }
  .gnav__sns { justify-content: center; margin-top: 26px; gap: 18px; }

  .carousel { --per-page: 3; }
  .news__grid { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 900px) {
  .section { padding: 62px 0; }

  .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 28px; }
  /* 2列時：行末のカードは下向き矢印、それ以外は右向きのまま */
  .flow__item:nth-child(2n)::after {
    top: auto;
    right: auto;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .about__grid { grid-template-columns: 1fr; gap: 34px; }
  .about__photos { max-width: 540px; margin-inline: auto; }
  .about-split,
  .about-split--reverse { grid-template-columns: 1fr; gap: 28px; direction: ltr; }
  .rules { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .rules__icon-img { width: 72px; height: 72px; }
  .flow.flow--3,
  .flow.flow--4 { grid-template-columns: 1fr; gap: 32px; }
  .flow.flow--3 .flow__item:not(:last-child)::after,
  .flow.flow--4 .flow__item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .lounge__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 44px; }

  .carousel { --per-page: 2.4; --gap: 16px; }

  .footer__inner { flex-direction: column; gap: 30px; }
}

@media (max-width: 600px) {
  :root { --notice-h: 34px; --gutter: 18px; }

  body { font-size: 14px; }

  .brand__mark { width: 32px; }
  .brand__type { width: 132px; }

  .notice { gap: 10px; }
  .notice__label { font-size: 11px; }
  .notice__date  { display: none; }
  .notice__text  { font-size: 11.5px; }

  .hero__lead { letter-spacing: .16em; }
  .hero__inner { padding: 28px var(--gutter) 64px; }

  .page-head {
    padding: calc(var(--header-h) + var(--notice-h) + 42px) 0 30px;
  }
  .page-head__ja { font-size: clamp(20px, 6vw, 26px); }
  .breadcrumb {
    padding-inline: var(--gutter);
    font-size: 11.5px;
  }

  .section { padding: 52px 0; }
  .section__title { font-size: 19px; padding-left: 14px; }
  .section__title::before { width: 4px; }
  .section__lead p { font-size: 13px; line-height: 1.95; }
  .section__action { text-align: center; }
  .btn { font-size: 13px; padding: 11px 22px; max-width: 100%; }

  .about__photos { aspect-ratio: 4 / 5; }
  .about__photo--1,
  .about__photo--2 { width: 78%; }
  .about-note {
    font-size: 12.5px;
    line-height: 1.85;
  }
  .about-split__text p {
    font-size: 13px;
    line-height: 2;
  }

  .schedule-empty {
    min-height: 100px;
    padding: 24px 18px;
    font-size: 13px;
  }

  .table-wrap {
    margin-inline: 0;
    border-radius: 4px;
  }
  .data-table { min-width: 0; width: 100%; }
  .data-table thead { display: none; }
  .data-table {
    border: 0;
  }
  .data-table tbody tr {
    display: block;
    margin-bottom: 14px;
    border: 1px solid var(--gold-300);
    border-radius: 4px;
    overflow: hidden;
  }
  .data-table tbody th {
    display: block;
    text-align: left;
    padding: 11px 14px;
    background: linear-gradient(100deg, rgba(201, 165, 76, .22), rgba(201, 165, 76, .05));
    border: 0;
    color: var(--gold-100);
    word-break: break-word;
  }
  .page-recruit .recruit-table tbody th {
    background: linear-gradient(100deg, #b6913f 0%, #f2e3b6 38%, #dcc283 62%, #b08c3c 100%);
    color: var(--text-dark);
  }
  .data-table tbody td {
    display: grid;
    grid-template-columns: 6.5em minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    text-align: left;
    padding: 10px 14px;
    border-right: 0;
    border-top: 1px solid var(--gold-line-soft);
    word-break: break-word;
  }
  .data-table tbody td::before {
    content: attr(data-label);
    font-size: 11.5px;
    color: var(--gold-200);
    line-height: 1.6;
  }

  .info-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 12px;
  }
  .info-list dt { font-size: 12px; }
  .info-list dd { font-size: 13px; line-height: 1.8; word-break: break-word; }

  .rules {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .rules__item {
    aspect-ratio: auto;
    min-height: 0;
    padding: 16px 10px 14px;
    gap: 10px;
  }
  .rules__icon-img { width: 56px; height: 56px; }
  .rules__text { font-size: 15px; line-height: 1.65; }

  .flow,
  .flow.flow--3,
  .flow.flow--4 {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
  }
  .flow__item,
  .flow.flow--3 .flow__item,
  .flow.flow--4 .flow__item {
    padding: 22px 16px 20px;
  }
  /* 1列時：すべて下向き */
  .flow__item:not(:last-child)::after,
  .flow.flow--3 .flow__item:not(:last-child)::after,
  .flow.flow--4 .flow__item:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
  .flow.flow--3 .flow__text,
  .flow.flow--4 .flow__text { font-size: 12.5px; }

  .carousel { --per-page: 1.35; }
  .carousel__head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .carousel__controls { align-self: flex-end; }

  .lounge__x { grid-template-columns: 1fr; gap: 22px; }
  .embed { height: 320px; }
  .lounge-poster img { width: 100%; height: auto; }

  .news-list__link {
    grid-template-columns: minmax(0, 1fr) 18px;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 2px;
    padding: 12px 4px;
  }
  .news-list__date { grid-column: 1; grid-row: 1; }
  .news-list__title {
    grid-column: 1;
    grid-row: 2;
    font-size: 13.5px;
    word-break: break-word;
  }
  .news-list__arrow { grid-column: 2; grid-row: 1 / span 2; align-self: center; }

  .faq,
  .form {
    max-width: none;
    width: 100%;
  }
  .faq__q {
    font-size: 13.5px;
    padding: 16px 2px;
    gap: 12px;
  }
  .form__control { font-size: 16px; } /* iOS zoom prevention */
  .form__submit .btn { width: 100%; max-width: 280px; }

  .cast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .article__title { font-size: 18px; }
  .article__nav { grid-template-columns: 1fr; }
  .article__nav-link--next { text-align: left; }

  .footer__nav ul {
    gap: 8px 16px;
    font-size: 13px;
  }
  .footer__sns { gap: 14px; }

  .to-top { right: 14px; bottom: 14px; }
}

/* =========================================================
   Recruit
   ========================================================= */
.page-recruit #main {
  padding-top: var(--recruit-header-offset, calc(var(--header-h) + var(--notice-h)));
  overflow-x: clip;
}

.recruit-hero {
  position: relative;
  min-height: calc(100svh - var(--recruit-header-offset, calc(var(--header-h) + var(--notice-h))));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
.recruit-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.recruit-hero__slides {
  position: absolute;
  inset: 0;
}
.recruit-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s var(--ease), visibility .9s var(--ease);
}
.recruit-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.recruit-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.recruit-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(6,4,6,.18) 0%, transparent 22% 58%, rgba(0,0,0,.78) 100%),
    linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.08) 46%, transparent 70%);
  pointer-events: none;
}
.recruit-hero__controls {
  position: absolute;
  right: max(16px, calc((100% - min(100%, var(--container))) / 2 + var(--gutter)));
  bottom: clamp(20px, 4vw, 36px);
  z-index: 3;
}
.recruit-hero__pause {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 165, 76, .65);
  border-radius: 50%;
  background: rgba(6, 4, 6, .55);
  backdrop-filter: blur(4px);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.recruit-hero__pause::before {
  content: "";
  width: 12px;
  height: 14px;
  border-left: 3px solid var(--gold-100);
  border-right: 3px solid var(--gold-100);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.recruit-hero__pause[aria-pressed="true"]::before {
  width: 12px;
  height: 14px;
  border: 0;
  background: var(--gold-100);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.recruit-hero__pause:hover,
.recruit-hero__pause:focus-visible {
  border-color: var(--gold-200);
  background: rgba(6, 4, 6, .78);
}
.recruit-hero__pause:hover::before,
.recruit-hero__pause:focus-visible::before { border-color: var(--gold-200); }
.recruit-hero__pause[aria-pressed="true"]:hover::before,
.recruit-hero__pause[aria-pressed="true"]:focus-visible::before {
  background: var(--gold-200);
}
.recruit-hero__copy {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(48px, 7vw, 88px);
  pointer-events: none;
}
.recruit-hero__title {
  margin: 0;
  font-family: var(--font-jp);
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: .08em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}

.section--recruit { padding-top: 48px; }

.recruit-lead {
  margin: 0 auto 56px;
  max-width: 28em;
  text-align: center;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.8;
  color: #f2ebe0;
}

.recruit-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 48px;
}
.recruit-overview__item .rule-heading {
  margin-bottom: 18px;
}
.recruit-overview__media {
  margin: 0 0 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}
.recruit-overview__media img,
.recruit-policy__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.recruit-overview__media picture,
.recruit-policy__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.recruit-hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.recruit-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* 画面外セクションの描画コストを抑える */
.page-recruit .recruit-seasonal,
.page-recruit .recruit-policy,
.page-recruit .recruit-common,
.page-recruit .recruit-welcome,
.page-recruit .table-wrap {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}
.recruit-overview__item:hover .recruit-overview__media img {
  transform: scale(1.03);
}
.recruit-overview__text {
  margin: 0;
  text-align: center;
  font-size: 13.5px;
  line-height: 2;
  color: #cfc8bb;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: anywhere;
}

.recruit-seasonal {
  margin-top: 72px;
  text-align: center;
}
.recruit-seasonal .section__title {
  margin-bottom: 22px;
}
.recruit-seasonal__stage {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  min-height: clamp(420px, 52vw, 640px);
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.recruit-seasonal__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.recruit-seasonal__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}
.recruit-seasonal__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,4,6,.55) 0%, rgba(6,4,6,.18) 28%, transparent 48% 72%, rgba(6,4,6,.42) 100%);
  pointer-events: none;
}
.recruit-seasonal__content {
  position: relative;
  z-index: 2;
  width: min(100% - var(--gutter) * 2, var(--container));
  margin-inline: auto;
  padding: clamp(36px, 5vw, 56px) 0 0;
  display: flex;
  flex-direction: column;
  min-height: inherit;
}
.recruit-seasonal__lead {
  margin: 0 0 12px;
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: .06em;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,.55);
}
.recruit-seasonal__note {
  margin: 0 auto;
  max-width: none;
  padding: 0 8px;
  font-size: clamp(12.5px, 1.15vw, 14px);
  line-height: 1.9;
  letter-spacing: .04em;
  color: #f0e8da;
  text-shadow: 0 1px 12px rgba(0,0,0,.55);
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: anywhere;
}
@media (min-width: 1100px) {
  .recruit-seasonal__note { white-space: nowrap; }
}
.recruit-seasonal__grid {
  list-style: none;
  margin: auto 0 0;
  padding: 24px 0 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(4px, 1.2vw, 16px);
  align-items: end;
}
.recruit-seasonal__grid li {
  overflow: visible;
  background: transparent;
  line-height: 0;
}
.recruit-seasonal__grid img {
  width: 100%;
  height: auto;
  max-height: clamp(260px, 38vw, 520px);
  object-fit: contain;
  object-position: center bottom;
  display: block;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,.5));
  transition: transform .7s var(--ease);
}
.recruit-seasonal__grid li:hover img { transform: translateY(-6px) scale(1.02); }

.recruit-policy__lead {
  margin: 0 auto 34px;
  text-align: center;
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: .06em;
  color: #f2ebe0;
}
.recruit-policy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
}
.recruit-policy__media {
  margin: 0 0 16px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #111;
}
.recruit-policy__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.recruit-policy__item:hover .recruit-policy__media img {
  transform: scale(1.03);
}
.recruit-policy__title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--gold-100);
}
.recruit-policy__text {
  margin: 0;
  font-size: 13px;
  line-height: 2;
  color: #cfc8bb;
}

.recruit-common {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
  margin-bottom: 8px;
}
.recruit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.recruit-list li {
  position: relative;
  padding-left: 1.1em;
  margin-bottom: .55em;
  font-size: 13.5px;
  line-height: 1.9;
  color: #d8d0c4;
}
.recruit-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--gold-200);
}
.recruit-list__note {
  font-size: 12px !important;
  color: var(--text-muted) !important;
}

.recruit-welcome {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
  margin-top: 40px;
  width: 100%;
}
.recruit-welcome__col .rule-heading {
  margin-bottom: 18px;
}

.section--recruit .section__action { margin-top: 48px; }

/* 採用情報の表：行見出しも金グラデーション */
.page-recruit .recruit-table tbody th {
  background: linear-gradient(100deg, #b6913f 0%, #f2e3b6 38%, #dcc283 62%, #b08c3c 100%);
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: .08em;
}

@media (max-width: 900px) {
  /* SP: 縦埋めではなく横幅基準（16:9）で全体を見せる */
  .recruit-hero {
    min-height: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .recruit-hero__slide img {
    object-fit: contain;
    object-position: center center;
    background: #000;
  }
  .recruit-hero__media::after {
    background:
      linear-gradient(180deg, rgba(6,4,6,.12) 0%, transparent 30% 55%, rgba(0,0,0,.72) 100%);
  }
  .recruit-hero__copy {
    padding-bottom: clamp(16px, 4vw, 28px);
  }
  .recruit-overview,
  .recruit-policy,
  .recruit-common,
  .recruit-welcome { grid-template-columns: 1fr; gap: 28px; }
  .recruit-seasonal__stage { min-height: 480px; }
  .recruit-seasonal__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 2px;
  }
  .recruit-seasonal__grid img { max-height: 280px; }
  .recruit-seasonal__note { font-size: 12.5px; }
}

@media (max-width: 640px) {
  .recruit-hero__title { font-size: 20px; letter-spacing: .06em; }
  .recruit-hero__controls {
    right: 12px;
    bottom: 12px;
  }
  .recruit-hero__pause {
    width: 36px;
    height: 36px;
  }
  .recruit-lead { margin-bottom: 40px; font-size: 17px; }
  .recruit-seasonal__stage { min-height: 420px; }
  .recruit-seasonal__content { padding-top: 28px; }
  .recruit-seasonal__grid {
    display: flex;
    overflow-x: auto;
    gap: 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-top: 16px;
    justify-content: flex-start;
  }
  .recruit-seasonal__grid li {
    flex: 0 0 36%;
    scroll-snap-align: start;
  }
  .recruit-seasonal__grid img { max-height: 240px; }
}

/* =========================================================
   Preferences
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  [data-reveal],
  html.js-reveal [data-reveal] { opacity: 1; transform: none; }
  .carousel__track { animation: none !important; }
}
