:root {
  --bg: #020914;
  --bg-2: #061a38;
  --panel: rgba(5, 21, 46, 0.82);
  --text: #f5f9ff;
  --muted: #b7c9e3;
  --line: rgba(137, 199, 255, 0.46);
  --line-strong: rgba(105, 190, 255, 0.9);
  --accent: #65c7ff;
  --accent-2: #0b63d1;
  --shadow: 0 24px 80px rgba(0, 55, 140, 0.42);
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  --sans: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(0, 105, 255, 0.24), transparent 26rem),
    radial-gradient(circle at 90% 30%, rgba(38, 160, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, #02060e 0%, #04142b 44%, #020914 100%);
  color: var(--text);
  font-family: var(--serif);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(112, 181, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 181, 255, 0.03) 1px, transparent 1px);
  background-size: 82px 82px;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) auto minmax(16rem, 1fr);
  align-items: stretch;
  min-height: 6.8rem;
  padding: 0 2rem;
  background: rgba(1, 8, 19, 0.78);
  border-bottom: 1px solid rgba(96, 164, 255, 0.28);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  min-width: 9rem;
  color: #fff;
  text-shadow: 0 0 18px rgba(117, 210, 255, 0.72);
}

.brand__small {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-style: italic;
}

.brand__main {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.95;
}

.brand__sub {
  align-self: flex-end;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: stretch;
  border-left: 1px solid rgba(116, 173, 255, 0.18);
}

.site-nav a {
  display: grid;
  place-items: center;
  min-width: 5.7rem;
  padding: 0.8rem 0.9rem;
  border-right: 1px solid rgba(116, 173, 255, 0.18);
  font-size: 0.78rem;
}

.site-nav span {
  display: block;
  margin-top: 0.28rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.62rem;
}

.header-actions,
.contact-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  align-items: center;
}

.phone-cta,
.line-cta,
.solid-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.7rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--line);
  background: rgba(3, 20, 47, 0.62);
  box-shadow: inset 0 0 24px rgba(57, 157, 255, 0.13);
  color: #fff;
  font-family: var(--serif);
  text-align: center;
}

.phone-cta,
.line-cta {
  flex-direction: column;
  min-width: 9rem;
}

.line-cta {
  border-color: rgba(92, 202, 255, 0.86);
  background: linear-gradient(135deg, rgba(0, 45, 110, 0.75), rgba(2, 107, 212, 0.55));
  box-shadow: 0 0 28px rgba(0, 140, 255, 0.42), inset 0 0 30px rgba(98, 202, 255, 0.16);
}

.phone-cta span,
.line-cta span {
  font-size: 0.98rem;
}

.phone-cta small,
.line-cta small {
  margin-top: 0.28rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.68rem;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(1, 7, 17, 0.72) 0%, rgba(1, 7, 17, 0.38) 33%, rgba(1, 7, 17, 0.04) 72%),
    linear-gradient(180deg, rgba(1, 7, 17, 0.58) 0%, rgba(1, 7, 17, 0) 24%, rgba(1, 7, 17, 0.16) 100%);
  pointer-events: none;
}

.hero__picture {
  position: absolute;
  inset: 0;
}

.hero__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(47rem, calc(100% - 3rem));
  min-height: 100svh;
  padding: 8rem 0 5rem clamp(1.5rem, 8vw, 7rem);
}

.hero h1 {
  margin: 0;
  text-shadow: 0 0 28px rgba(36, 142, 255, 0.62);
  font-size: clamp(3.2rem, 7vw, 4.2rem);
  font-weight: 500;
  line-height: 1.35;
}

.hero__title {
  display: grid;
  gap: 0.7rem;
}

.hero__title-eyebrow {
  display: block;
  color: #f6e0a2;
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  font-style: normal;
  letter-spacing: 0.14em;
  text-shadow: 0 0 12px rgba(246, 224, 162, 0.3);
}

.hero__title-main {
  display: block;
  font-size: clamp(3rem, 6.6vw, 4.2rem);
  font-weight: 500;
  line-height: 1.15;
}

.hero .hero__catch {
  margin: 1.3rem 0 0;
  padding-top: 0;
  border-top: 0;
  color: #fff7e1;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 500;
  line-height: 1.85;
}

.hero p {
  margin: 2.1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(168, 214, 255, 0.45);
  color: #d8eaff;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__actions .outline-button,
.hero__actions .solid-button {
  width: min(18rem, 100%);
  margin: 0;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.hero__facts span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(160, 214, 255, 0.36);
  background: rgba(6, 24, 50, 0.54);
  color: #ecf4ff;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.hero__logo {
  margin-top: 3rem;
  width: fit-content;
  color: #fff;
  text-shadow: 0 0 20px rgba(110, 210, 255, 0.74);
}

.hero__logo span {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-style: italic;
}

.hero__logo strong {
  display: block;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 1;
}

.section-panel {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 12, 30, 0.72);
}

.guide-page .section-panel {
  background:
    radial-gradient(circle at 12% 0%, rgba(72, 140, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(255, 205, 92, 0.08), transparent 18rem),
    linear-gradient(180deg, rgba(2, 9, 20, 0.98), rgba(2, 12, 30, 0.9));
}

.guide-page .section-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.03) 46% 48%, transparent 48% 100%),
    linear-gradient(180deg, transparent 0 72%, rgba(108, 174, 255, 0.08) 72% 73%, transparent 73% 100%);
  opacity: 0.72;
}

.section-inner {
  width: min(74rem, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.concept__grid,
.access__grid,
.system__grid,
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.34fr);
  gap: clamp(2rem, 5vw, 4.8rem);
  align-items: center;
}

.section-kana {
  margin: 0 0 2rem;
  color: #f6e0a2;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.02;
  text-shadow: 0 0 12px rgba(117, 184, 255, 0.18);
}

.section-kana span {
  margin-left: 0.8rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.82rem;
}

.section-copy h2,
.section-heading h2,
.news h2,
.access h2,
.faq h2,
.contact-strip h2 {
  margin: 0 0 1.5rem;
  color: #fff7e1;
  font-size: clamp(1.7rem, 3.6vw, 2.85rem);
  font-weight: 500;
  line-height: 1.22;
}

.section-copy p,
.faq p,
.contact-strip p {
  margin: 0;
  color: #d7e7fb;
  font-size: 1rem;
  line-height: 2.35;
}

.wide-photo,
.access-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(112, 188, 255, 0.44);
  box-shadow: var(--shadow);
}

.wide-photo img,
.access-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wide-photo img {
  object-position: center 42%;
}

.access-photo img {
  object-position: center;
}

.wide-photo::after,
.access-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 70px rgba(0, 45, 120, 0.55);
}

.access-map {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(112, 188, 255, 0.44);
  background: #06172e;
  box-shadow: var(--shadow);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

.access-map a {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(246, 224, 162, 0.62);
  background: rgba(2, 12, 30, 0.88);
  color: #fff7e1;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.center {
  text-align: center;
}

.cast {
  background:
    radial-gradient(circle at 50% 0%, rgba(77, 166, 255, 0.24), transparent 26rem),
    rgba(2, 12, 30, 0.82);
}

.cast-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 1.4rem);
  margin-top: 2.5rem;
}

.cast-card {
  position: relative;
  overflow: hidden;
  min-height: 23rem;
  border: 1px solid rgba(105, 192, 255, 0.58);
  background: #06172e;
  box-shadow: 0 0 24px rgba(35, 133, 255, 0.22);
}

.cast-card__photo {
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
}

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

.cast-card::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10rem;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(2, 12, 30, 0.94) 55%, rgba(2, 12, 30, 1));
}

.cast-card h3,
.cast-card p,
.cast-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  text-align: center;
}

.cast-card h3 {
  margin-top: -0.6rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.cast-card p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.cast-card small {
  margin-top: 0.8rem;
  color: #c7d7ef;
  font-family: var(--sans);
  font-size: 0.72rem;
}

.outline-button,
.solid-button {
  width: min(21rem, 100%);
  margin: 2.3rem auto 0;
  min-height: 3.4rem;
}

.solid-button {
  margin: 0;
  background: linear-gradient(135deg, rgba(0, 50, 120, 0.86), rgba(0, 111, 220, 0.62));
}

.news {
  background-image:
    linear-gradient(90deg, rgba(2, 11, 28, 0.94) 0%, rgba(2, 11, 28, 0.66) 49%, rgba(2, 11, 28, 0.4) 100%),
    url("../img/glass.webp?v=20260615-interior");
  background-position: center;
  background-size: cover;
}

.news__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.news-list {
  display: grid;
  gap: 1rem;
  margin: 2.2rem 0 0;
}

.news-list div {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
}

.news-list dt {
  color: #f3f8ff;
}

.news-list dd {
  margin: 0;
  color: #d8e7fb;
}

.event-card {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 2rem 0 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(246,224,162,0.2);
  border-radius: 0.5rem;
  overflow: hidden;
}

.event-card a {
  display: block;
  flex-shrink: 0;
}

.event-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card__body {
  padding: 1rem 1.2rem 1rem 0;
}

.event-card__date {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--accent, #f6e0a2);
  margin: 0 0 0.3rem;
}

.event-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: 0.06em;
}

.event-card__desc {
  font-size: 0.88rem;
  color: #d8e7fb;
  margin: 0;
  line-height: 1.6;
}

.system {
  background:
    linear-gradient(90deg, rgba(1, 9, 22, 0.86), rgba(4, 24, 55, 0.78)),
    url("../img/glass.webp?v=20260615-interior") center / cover;
}

.price-box {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(116, 195, 255, 0.4);
  background: rgba(116, 195, 255, 0.26);
}

.price-box div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: rgba(2, 13, 31, 0.82);
}

.price-box span {
  color: var(--muted);
  font-family: var(--sans);
}

.price-box strong {
  font-weight: 500;
}

.shop-info {
  display: grid;
  gap: 0.8rem;
  color: #d9e8fc;
  font-style: normal;
  line-height: 1.8;
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(90rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.2rem 0;
}

.link-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 10rem;
  overflow: hidden;
  border: 1px solid rgba(160, 214, 255, 0.78);
  background: #07182f;
  text-align: center;
}

.link-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(2, 10, 24, 0.4), rgba(2, 10, 24, 0.68)), url("../img/interior.webp?v=20260615-interior");
  background-position: center;
  background-size: cover;
  transition: transform 0.5s ease;
}

.link-card--cast::before {
  background-image: linear-gradient(rgba(2, 10, 24, 0.42), rgba(2, 10, 24, 0.72)), url("../img/cast-placeholders.webp");
}

.link-card--recruit::before,
.link-card--instagram::before {
  background-image: linear-gradient(rgba(2, 10, 24, 0.38), rgba(2, 10, 24, 0.74)), url("../img/hero.webp?v=20260623-lcp");
}

.link-card:hover::before {
  transform: scale(1.05);
}

.link-card span,
.link-card small {
  position: relative;
  z-index: 1;
}

.link-card span {
  font-size: 1.35rem;
}

.link-card small {
  margin-top: 0.5rem;
  color: #d7e9ff;
  font-family: var(--sans);
  font-size: 0.75rem;
}

.faq__grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

details {
  border: 1px solid rgba(105, 190, 255, 0.36);
  background: rgba(3, 18, 42, 0.78);
}

summary {
  cursor: pointer;
  padding: 1.2rem 1.3rem;
  color: #f7fbff;
  font-size: 1rem;
}

details p {
  padding: 0 1.3rem 1.3rem;
  color: #d3e5fb;
  font-size: 0.96rem;
  line-height: 2;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  width: min(74rem, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.social-strip {
  border-top: 1px solid rgba(104, 188, 255, 0.22);
  background:
    radial-gradient(circle at 15% 20%, rgba(24, 112, 225, 0.14), transparent 28rem),
    linear-gradient(180deg, rgba(2, 10, 24, 0.84), rgba(3, 16, 37, 0.95));
}

.social-strip__inner {
  padding-top: clamp(3.2rem, 6vw, 5rem);
  padding-bottom: clamp(3.2rem, 6vw, 5rem);
}

.social-strip__heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 6.5rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(128, 198, 255, 0.48);
  background: linear-gradient(135deg, rgba(4, 23, 52, 0.92), rgba(7, 35, 75, 0.75));
  box-shadow: inset 0 0 28px rgba(84, 170, 255, 0.08);
}

.social-link--instagram {
  background: linear-gradient(135deg, rgba(55, 15, 77, 0.92), rgba(9, 32, 67, 0.78));
}

.social-link--tiktok {
  background: linear-gradient(135deg, rgba(9, 12, 25, 0.94), rgba(18, 44, 82, 0.82));
}

.social-link__label {
  display: grid;
  gap: 0.35rem;
}

.social-link__label small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
}

.social-link__label strong {
  font-size: 1.12rem;
  font-weight: 500;
}

.social-link__arrow {
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.listing-strip {
  border-top: 1px solid rgba(104, 188, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(3, 16, 37, 0.95), rgba(2, 10, 24, 0.98));
}

.listing-strip__inner {
  padding-top: clamp(3rem, 5vw, 4.4rem);
  padding-bottom: clamp(3rem, 5vw, 4.4rem);
}

.listing-strip__heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.listing-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.8rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(128, 198, 255, 0.42);
  background: rgba(5, 21, 46, 0.86);
}

.listing-link__label {
  font-size: 1rem;
}

.listing-link__meta {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  white-space: nowrap;
}

.recruit-hero .hero__media {
  background-image:
    linear-gradient(90deg, rgba(1, 7, 17, 0.76) 0%, rgba(1, 7, 17, 0.32) 38%, rgba(1, 7, 17, 0.1) 72%),
    linear-gradient(180deg, rgba(1, 7, 17, 0.6) 0%, rgba(1, 7, 17, 0.08) 28%, rgba(1, 7, 17, 0.24) 100%),
    url("../img/interior.webp?v=20260615-interior");
  background-position: center 40%;
}

.recruit-hero .hero__content {
  width: min(52rem, calc(100% - 3rem));
}

.recruit-hero.hero {
  min-height: 88svh;
}

.recruit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.recruit-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(160, 214, 255, 0.42);
  background: rgba(6, 24, 50, 0.62);
  color: #f3f8ff;
  font-family: var(--sans);
  font-size: 0.78rem;
}

.recruit-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: start;
}

.recruit-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.recruit-stat {
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(112, 188, 255, 0.4);
  background: rgba(4, 18, 42, 0.8);
}

.recruit-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 500;
}

.recruit-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.74rem;
}

.recruit-grid,
.recruit-flow {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

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

.recruit-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.recruit-card {
  padding: 1.15rem 1.2rem 1.3rem;
  border: 1px solid rgba(112, 188, 255, 0.4);
  background: rgba(4, 18, 42, 0.78);
  box-shadow: inset 0 0 26px rgba(84, 170, 255, 0.06);
}

.recruit-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
}

.recruit-card p {
  margin: 0;
  color: #d7e7fb;
  font-size: 0.96rem;
  line-height: 1.95;
}

.recruit-conditions {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(112, 188, 255, 0.42);
  background: rgba(112, 188, 255, 0.2);
}

.recruit-conditions__row {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  background: rgba(4, 18, 42, 0.86);
}

.recruit-conditions__label {
  color: var(--muted);
  font-family: var(--sans);
}

.system-hero .hero__media {
  background-image:
    linear-gradient(90deg, rgba(1, 7, 17, 0.78) 0%, rgba(1, 7, 17, 0.38) 40%, rgba(1, 7, 17, 0.12) 74%),
    linear-gradient(180deg, rgba(1, 7, 17, 0.58) 0%, rgba(1, 7, 17, 0.08) 26%, rgba(1, 7, 17, 0.3) 100%),
    url("../img/glass.webp?v=20260615-interior");
  background-position: center;
}

.system-hero.hero {
  min-height: 78svh;
}

.system-hero .hero__content {
  width: min(54rem, calc(100% - 3rem));
}

.system-hero .hero__content p {
  max-width: 42rem;
}

.system-breadcrumb {
  margin: 0 0 1.1rem;
  color: #d4e3f8;
  font-family: var(--sans);
  font-size: 0.82rem;
}

.system-page__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: start;
}

.system-page__lead {
  display: grid;
  gap: 1rem;
}

.system-highlight {
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(128, 198, 255, 0.46);
  background: linear-gradient(180deg, rgba(5, 21, 46, 0.98), rgba(3, 14, 32, 0.92));
  box-shadow: inset 0 0 36px rgba(96, 164, 255, 0.08);
}

.system-highlight__label {
  color: #f2d98a;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-highlight__price {
  color: #fff8e6;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
}

.system-highlight__sub {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.84rem;
  line-height: 1.8;
}

.system-price-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(128, 198, 255, 0.46);
  background: rgba(3, 16, 37, 0.94);
  box-shadow: var(--shadow);
}

.system-price-card__heading {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  text-align: center;
}

.system-price-card__heading h2 {
  margin: 0;
  color: #fff8e6;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.24;
}

.system-price-card__heading p {
  margin: 0;
  color: #d7e7fb;
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.9;
}

.system-table-wrap {
  overflow-x: auto;
}

.system-table {
  width: 100%;
  border-collapse: collapse;
  color: #f7fbff;
}

.system-table caption {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(128, 198, 255, 0.36);
  color: #f3e3b3;
  font-family: var(--sans);
  font-size: 0.84rem;
  text-align: left;
}

.system-table th,
.system-table td {
  padding: 1.1rem 0.2rem;
  border-bottom: 1px solid rgba(124, 180, 235, 0.28);
  font-size: 1rem;
  line-height: 1.6;
}

.system-table th {
  width: 54%;
  font-weight: 500;
  text-align: left;
}

.system-table td {
  width: 46%;
  color: #fff7e3;
  text-align: right;
  white-space: nowrap;
}

.system-table tr:first-child th,
.system-table tr:first-child td {
  border-top: 1px solid rgba(124, 180, 235, 0.28);
}

.system-fees {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.system-fee-card {
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid rgba(128, 198, 255, 0.4);
  background: rgba(4, 18, 42, 0.8);
}

.system-fee-card h3 {
  margin: 0 0 0.7rem;
  color: #fff7e1;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.system-fee-card p {
  margin: 0;
  color: #d7e7fb;
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.9;
}

.system-notes {
  display: grid;
  gap: 0.9rem;
}

.system-note {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(128, 198, 255, 0.3);
  background: rgba(4, 18, 42, 0.68);
  color: #d8e7fb;
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.8;
}

.system-contact {
  border-top: 1px solid rgba(104, 188, 255, 0.22);
  background:
    linear-gradient(90deg, rgba(2, 10, 24, 0.96), rgba(2, 10, 24, 0.74)),
    url("../img/hero.webp?v=20260623-lcp") center / cover;
}

.system-contact h2 {
  margin: 0 0 1rem;
  color: #fff7e1;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.24;
}

.system-contact p {
  margin: 0;
  color: #d7e7fb;
  font-size: 1rem;
  line-height: 2.1;
}

.system-contact__inner {
  width: min(74rem, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.system-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.system-contact__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.system-contact__actions .outline-button,
.system-contact__actions .solid-button {
  width: min(18rem, 100%);
  margin: 0;
}

.recruit-conditions__value {
  color: #eff6ff;
  line-height: 1.9;
}

.recruit-conditions a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(160, 214, 255, 0.5);
}

.guide-page .hero__media {
  background-image:
    linear-gradient(90deg, rgba(1, 7, 17, 0.78) 0%, rgba(1, 7, 17, 0.36) 38%, rgba(1, 7, 17, 0.08) 72%),
    linear-gradient(180deg, rgba(1, 7, 17, 0.52) 0%, rgba(1, 7, 17, 0.08) 28%, rgba(1, 7, 17, 0.2) 100%),
    url("../img/interior.webp?v=20260615-guide");
  background-position: center 42%;
}

.guide-hero.hero {
  min-height: 84svh;
}

.guide-hero .hero__content {
  width: min(78rem, calc(100% - 3rem));
  min-height: 84svh;
}

.guide-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
}

.guide-hero__copy {
  display: grid;
  gap: 1.1rem;
}

.guide-hero__title {
  margin: 0;
}

.guide-hero__title-art {
  width: min(100%, 42rem);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(110, 210, 255, 0.34));
}

.guide-hero__lead {
  margin: 0;
  color: #eff7ff;
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.55;
  font-weight: 500;
}

.guide-hero__text {
  max-width: 38rem;
  margin: 0;
  color: #d8e7fb;
  font-size: 1rem;
  line-height: 2.2;
}

.guide-hero .hero__content p {
  border-top: 0;
  padding-top: 0;
}

.guide-poster {
  margin: 0;
  padding: 0.55rem;
  border: 1px solid rgba(166, 217, 255, 0.55);
  background: rgba(3, 14, 33, 0.74);
  box-shadow: 0 0 30px rgba(18, 112, 240, 0.24);
  transform: rotate(1.1deg);
  width: min(100%, 47rem);
  max-width: 47rem;
  aspect-ratio: 1024 / 1448;
  justify-self: end;
}

.guide-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.concept-cta {
  margin: 2rem 0 0;
  width: fit-content;
}

.guide-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.guide-feature-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  min-height: 12.6rem;
  padding: 1.2rem 1.25rem 1.3rem;
  border: 1px solid rgba(117, 184, 255, 0.46);
  background:
    linear-gradient(180deg, rgba(5, 20, 48, 0.96), rgba(4, 14, 32, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 224, 148, 0.04);
}

.guide-feature-card::before {
  position: absolute;
  inset: auto -15% -25% auto;
  width: 70%;
  height: 50%;
  content: "";
  background: radial-gradient(circle, rgba(86, 149, 255, 0.16), transparent 70%);
  transform: rotate(-12deg);
}

.guide-feature-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(160, 214, 255, 0.54);
  border-radius: 50%;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  background: rgba(14, 45, 90, 0.85);
}

.guide-feature-card h3,
.guide-compare__panel h3,
.guide-flow-card h3 {
  margin: 0;
  color: #fff7e1;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.6;
}

.guide-feature-card p,
.guide-compare__panel li,
.guide-flow-card p,
.guide-recommend__copy p,
.guide-cta__copy p {
  margin: 0;
  color: #e0ebfb;
  font-size: 0.96rem;
  line-height: 1.95;
}

.guide-compare__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.guide-compare__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(117, 184, 255, 0.46);
  background: linear-gradient(180deg, rgba(5, 20, 48, 0.95), rgba(4, 14, 32, 0.88));
}

.guide-compare__panel:first-child h3 {
  color: #f2ece1;
}

.guide-compare__panel--kinrin {
  border-color: rgba(170, 214, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(5, 20, 48, 0.96), rgba(3, 16, 37, 0.94));
  box-shadow: 0 0 30px rgba(17, 117, 255, 0.14);
}

.guide-compare__panel--kinrin h3 {
  color: #f6de95;
}

.guide-compare__panel ul,
.guide-checklist {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-compare__panel li,
.guide-checklist li {
  position: relative;
  padding-left: 1.35rem;
}

.guide-compare__panel li::before,
.guide-checklist li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  content: "・";
  color: var(--accent);
}

.guide-vs {
  display: grid;
  place-items: center;
  align-self: center;
  min-height: 100%;
  border-top: 1px solid rgba(160, 214, 255, 0.18);
  border-bottom: 1px solid rgba(160, 214, 255, 0.18);
  color: #f6d87c;
  font-family: var(--serif);
  font-size: 2.1rem;
  letter-spacing: 0;
  text-shadow: 0 0 16px rgba(247, 216, 108, 0.32);
}

.guide-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.guide-flow-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.8rem;
  min-height: 14.4rem;
  padding: 1rem 1rem 1.1rem;
  border: 1px solid rgba(117, 184, 255, 0.44);
  background:
    linear-gradient(180deg, rgba(5, 20, 48, 0.95), rgba(4, 14, 32, 0.88));
}

.guide-flow-card::before {
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 38%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(96, 152, 255, 0.09));
}

.guide-flow-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 793 / 430;
  border: 1px solid rgba(255, 214, 120, 0.42);
  background: rgba(3, 13, 32, 0.88);
}

.guide-flow-card__media::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(3, 13, 32, 0.08) 100%);
  pointer-events: none;
}

.guide-flow-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-flow-card h3 {
  padding: 0 0.05rem;
}

.concept-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.first-timer .section-heading p {
  max-width: 46rem;
  margin: 1.2rem auto 0;
  color: #d7e7fb;
  font-size: 1rem;
  line-height: 2;
}

.first-timer__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.first-timer .concept-cta {
  margin: 2.5rem auto 0;
}

.mobile-cta-bar {
  display: none;
}

.guide-recommend__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.guide-recommend__copy {
  display: grid;
  gap: 1rem;
}

.guide-cta .section-kana {
  color: #fff6dc;
}

.guide-checklist li {
  padding-left: 1.5rem;
}

.guide-checklist li::before {
  content: "✓";
  top: 0;
}

.guide-cta {
  border-top: 1px solid rgba(104, 188, 255, 0.22);
  background:
    linear-gradient(90deg, rgba(2, 10, 24, 0.95) 0%, rgba(2, 10, 24, 0.72) 52%, rgba(2, 10, 24, 0.95) 100%),
    url("../img/hero.webp?v=20260623-lcp") center / cover;
}

.guide-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.guide-cta__copy {
  display: grid;
  gap: 1rem;
}

.guide-cta__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.guide-cta__actions .outline-button,
.guide-cta__actions .solid-button {
  width: min(18rem, 100%);
  margin: 0;
}

.guide-cta .solid-button {
  border-color: rgba(255, 212, 107, 0.8);
  background: linear-gradient(135deg, rgba(145, 108, 0, 0.92), rgba(255, 207, 78, 0.8));
  color: #1a1200;
}

.guide-cta .outline-button {
  border-color: rgba(116, 191, 255, 0.8);
  background: rgba(4, 20, 48, 0.82);
}

.guide-section--spacious {
  padding-top: clamp(5rem, 10vw, 8rem);
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem clamp(1rem, 5vw, 4rem);
  border-top: 1px solid rgba(104, 188, 255, 0.34);
  background: rgba(2, 10, 24, 0.96);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.3rem;
  color: #d6e8ff;
  font-size: 0.82rem;
}

.site-footer p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  text-align: center;
}

.to-top {
  width: 4.6rem;
  height: 4.6rem;
  border: 1px solid rgba(160, 214, 255, 0.58);
  background: rgba(4, 21, 48, 0.72);
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    min-height: 5.2rem;
  }

  .site-nav {
    position: fixed;
    top: 5.2rem;
    left: 0;
    right: 0;
    display: none;
    background: rgba(1, 8, 19, 0.96);
    border-top: 1px solid rgba(116, 173, 255, 0.22);
  }

  .site-nav.is-open {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
    gap: 0.34rem;
    width: 3.2rem;
    height: 3.2rem;
    align-self: center;
    justify-self: end;
    border: 1px solid rgba(126, 198, 255, 0.44);
    background: rgba(4, 23, 52, 0.66);
  }

  .nav-toggle span {
    display: block;
    width: 1.4rem;
    height: 1px;
    background: #fff;
  }

  .cast-list,
  .link-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-hero.hero {
    min-height: 84svh;
  }

  .guide-hero .hero__content {
    min-height: 84svh;
  }

  .guide-hero__grid,
  .guide-recommend__grid,
  .guide-cta__grid {
    grid-template-columns: 1fr;
  }

  .guide-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-compare__grid {
    grid-template-columns: 1fr;
  }

  .guide-vs {
    min-height: 2.4rem;
    border: 0;
  }

  .guide-flow-grid {
    grid-template-columns: 1fr;
  }

  .guide-cta__actions {
    grid-template-columns: 1fr;
  }

  .system-page__intro,
  .system-contact__grid {
    grid-template-columns: 1fr;
  }

  .system-fees {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-contact__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 1rem;
  }

  .brand__main {
    font-size: 2rem;
  }

  .brand {
    min-width: 6.4rem;
  }

  .brand__sub {
    align-self: flex-start;
  }

  .site-nav.is-open {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    justify-content: start;
    min-width: 0;
    padding: 1rem 1.4rem;
  }

  .hero {
    min-height: 58svh;
  }

  .hero__picture img {
    object-position: 58% 34%;
  }

  .hero__content {
    min-height: 58svh;
    padding: 5.8rem 1.5rem 2rem;
  }

  .hero h1 {
    font-size: clamp(1.35rem, 10.8vw, 1.55rem);
    line-height: 1.48;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .outline-button,
  .hero__actions .solid-button {
    width: 100%;
  }

  .hero__facts {
    gap: 0.5rem;
  }

  .hero__facts span {
    width: 100%;
  }

  .system-hero.hero {
    min-height: 70svh;
  }

  .system-hero .hero__content {
    min-height: 70svh;
  }

  .system-hero .hero__content p {
    max-width: none;
  }

  .recruit-hero.hero {
    min-height: 64svh;
  }

  .recruit-hero .hero__media {
    background-position: 58% 34%;
  }

  .recruit-hero .hero__content {
    min-height: 64svh;
  }

  .recruit-intro__grid,
  .recruit-grid,
  .recruit-flow {
    grid-template-columns: 1fr;
  }

  .recruit-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-conditions__row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .concept__grid,
  .access__grid,
  .system__grid,
  .faq__grid,
  .news__grid,
  .social-strip__inner,
  .listing-strip__inner,
  .contact-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-inner {
    width: min(100% - 2rem, 74rem);
    padding: 4rem 0;
  }

  .section-kana {
    font-size: 2rem;
  }

  .section-kana span {
    display: block;
    margin: 0.6rem 0 0;
  }

  .wide-photo,
  .access-photo {
    aspect-ratio: 16 / 9;
  }

  .system-table th,
  .system-table td {
    display: block;
    width: 100%;
  }

  .system-table td {
    padding-top: 0.15rem;
    text-align: left;
    white-space: normal;
  }

  .system-fees {
    grid-template-columns: 1fr;
  }

  .wide-photo img {
    object-position: center 48%;
  }

  .guide-hero.hero {
    min-height: 88svh;
  }

  .guide-hero .hero__content {
    min-height: 88svh;
    padding-top: 7rem;
  }

  .guide-hero__title-art {
    width: min(100%, 26rem);
  }

  .guide-hero__lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .guide-hero__text {
    font-size: 0.95rem;
    line-height: 2.05;
  }

  .guide-poster {
    width: min(100%, 22rem);
    max-width: 22rem;
    aspect-ratio: 4 / 5;
    justify-self: start;
  }

  .guide-feature-grid {
    grid-template-columns: 1fr;
  }

  .guide-poster {
    transform: none;
  }

  .cast-list,
  .link-cards,
  .listing-grid {
    grid-template-columns: 1fr;
  }

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

  .cast-card {
    min-height: 0;
  }

  .cast-card__photo {
    aspect-ratio: 3 / 4.5;
  }

  .cast-card::after {
    height: 6.5rem;
  }

  .cast-card h3 {
    font-size: 1.05rem;
  }

  .news-list div,
  .price-box div {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .contact-actions {
    justify-content: stretch;
    flex-direction: column;
  }

  .phone-cta,
  .line-cta,
  .solid-button,
  .outline-button {
    width: 100%;
  }

  .site-footer p {
    grid-column: auto;
  }

  .to-top {
    justify-self: center;
  }
}

@media (max-width: 1080px) {
  .mobile-cta-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(116, 173, 255, 0.32);
    background: rgba(1, 8, 19, 0.94);
    backdrop-filter: blur(18px);
  }

  .mobile-cta-bar__item {
    display: grid;
    place-content: center;
    gap: 0.2rem;
    min-height: 4.4rem;
    padding: 0.5rem 0.4rem;
    border-right: 1px solid rgba(116, 173, 255, 0.18);
    color: #fff;
    text-align: center;
  }

  .mobile-cta-bar__item:last-child {
    border-right: 0;
  }

  .mobile-cta-bar__item strong {
    font-family: var(--serif);
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .mobile-cta-bar__item small {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .mobile-cta-bar__item--recruit {
    background: linear-gradient(135deg, rgba(0, 50, 120, 0.86), rgba(0, 111, 220, 0.5));
  }

  .mobile-cta-bar__item--recruit small {
    color: #eaf4ff;
  }

  body {
    padding-bottom: 4.4rem;
  }
}

@media (max-width: 768px) {
  .hero__title-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .hero__title-main {
    font-size: clamp(2.1rem, 11vw, 2.6rem);
    line-height: 1.25;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .hero .hero__catch {
    font-size: 1.02rem;
    line-height: 1.75;
  }
}

/* ── Hero Slider ── */
/* ── Cast card link ── */
.cast-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cast-card__link:hover .cast-card__photo img {
  transform: scale(1.04);
  transition: transform 0.4s ease;
}

.cast-card__photo img {
  transition: transform 0.4s ease;
}

.instagram-feed__more {
  margin-top: 1.6rem;
  width: min(18rem, 100%);
}

/* ── Contact form button ── */
.contact-form-btn {
  min-width: 12rem;
}

/* ── Cast profile page ── */
.cast-profile__inner {
  max-width: 72rem;
  margin: 0 auto;
}

.cast-profile__back {
  display: inline-flex;
  margin-bottom: 2.5rem;
  min-height: 2.8rem;
  width: auto;
}

.cast-profile__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.cast-profile__photo {
  margin: 0;
  border: 1px solid rgba(105, 192, 255, 0.35);
}

.cast-profile__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.cast-profile__thumbs {
  display: flex;
  gap: 0.4rem;
  padding: 0.5rem;
  background: rgba(0,0,0,0.3);
  overflow-x: auto;
  scrollbar-width: none;
}

.cast-profile__thumbs::-webkit-scrollbar { display: none; }

.cast-thumb {
  flex-shrink: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.25rem;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}

.cast-thumb img {
  display: block;
  width: 4rem;
  height: 5.3rem;
  object-fit: cover;
  object-position: center top;
}

.cast-thumb:hover { opacity: 0.9; }
.cast-thumb.is-active {
  border-color: var(--accent, #f6e0a2);
  opacity: 1;
}

.cast-profile__name {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 500;
  margin: 0.4rem 0 0;
  line-height: 1.2;
}

.cast-profile__roman {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin: 0.4rem 0 0;
}

.cast-profile__detail {
  margin: 2rem 0 0;
  display: grid;
  gap: 1rem;
}

.cast-profile__detail > div {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.cast-profile__detail dt {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.82rem;
}

.cast-profile__detail dd {
  margin: 0;
  font-size: 0.95rem;
}

.cast-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.cast-profile__actions .solid-button,
.cast-profile__actions .outline-button {
  width: auto;
  margin: 0;
  min-width: 12rem;
}

/* ── Contact page / form ── */
.contact-page__inner {
  max-width: 52rem;
  margin: 0 auto;
}

.contact-page__tel {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 0;
}

.contact-page__tel .phone-cta {
  min-width: 18rem;
}

.contact-page__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.82rem;
}

.contact-page__divider::before,
.contact-page__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.contact-form {
  display: grid;
  gap: 1.6rem;
}

.contact-form__group {
  display: grid;
  gap: 0.55rem;
}

.contact-form__group label {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-form__required {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  background: rgba(38, 120, 255, 0.25);
  border: 1px solid rgba(101, 199, 255, 0.4);
  color: var(--accent);
  font-size: 0.68rem;
  border-radius: 2px;
}

.contact-form input[type="text"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(4, 18, 42, 0.75);
  border: 1px solid rgba(96, 164, 255, 0.3);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}

.contact-form input[type="text"]:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2365c7ff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-form__group--privacy label {
  color: var(--text);
  font-size: 0.88rem;
}

.contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.contact-form__checkbox input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.contact-form__submit {
  width: 100%;
  margin: 0.6rem 0 0;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 760px) {
  .cast-profile__grid {
    grid-template-columns: 1fr;
  }

  .cast-profile__photo {
    max-width: 22rem;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
