:root {
  --ink: #110d0a;
  --ink-soft: #251a15;
  --paper: #fffaf1;
  --paper-deep: #f5ead7;
  --wine: #6f151c;
  --wine-dark: #3e0d12;
  --gold: #d5ad69;
  --gold-soft: #f1dba7;
  --line: rgba(213, 173, 105, 0.32);
  --text: #211814;
  --muted: #6d5b50;
  --white: #ffffff;
  --shadow: 0 20px 70px rgba(16, 8, 4, 0.24);
  --radius: 8px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.serif,
h1,
h2,
h3,
.brand {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(17, 13, 10, 0.92);
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(213, 173, 105, 0.22);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 24px;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 250, 241, 0.88);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold-soft);
  background: transparent;
}

.hero {
  min-height: calc(100vh - 72px);
  color: var(--paper);
  background-image:
    linear-gradient(90deg, rgba(7, 5, 4, 0.97) 0%, rgba(7, 5, 4, 0.86) 32%, rgba(7, 5, 4, 0.24) 72%),
    url("../images/hero-bar.png");
  background-position: center;
  background-size: cover;
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: 72px 0 88px;
}

.hero-content {
  max-width: 560px;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: clamp(48px, 8vw, 104px);
  line-height: 1.08;
}

.hero-copy {
  margin: 0 0 30px;
  font-size: 18px;
  color: rgba(255, 250, 241, 0.9);
}

.hero-headline {
  margin: 0 0 18px;
  color: var(--paper);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(27px, 4vw, 43px);
  font-weight: 600;
  line-height: 1.45;
}

.fact-list {
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.fact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 250, 241, 0.92);
}

.fact-list svg,
.button svg,
.icon-card svg {
  flex: 0 0 auto;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(213, 173, 105, 0.54);
  border-radius: var(--radius);
  background: var(--wine);
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(111, 21, 28, 0.32);
}

.button--ghost {
  background: rgba(17, 13, 10, 0.32);
  color: var(--gold-soft);
  box-shadow: none;
}

.button--dark {
  background: var(--ink);
  color: var(--gold-soft);
  box-shadow: none;
}

.button--line {
  background: #06c755;
  color: #fff;
  box-shadow: none;
}

.button--disabled {
  cursor: default;
  opacity: 0.72;
  pointer-events: none;
}

.section {
  padding: 88px 0;
}

.section--dark {
  background: linear-gradient(135deg, var(--ink) 0%, var(--wine-dark) 100%);
  color: var(--paper);
}

.section--wine {
  background:
    radial-gradient(circle at 78% 22%, rgba(213, 173, 105, 0.16), transparent 34%),
    linear-gradient(135deg, var(--wine-dark) 0%, #4b0d13 100%);
  color: var(--paper);
}

.section--paper {
  background: var(--paper);
}

.section--deep {
  background: var(--paper-deep);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.split--top {
  align-items: start;
}

.section-title {
  margin: 0 0 18px;
  color: var(--wine);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.2;
}

.section--dark .section-title,
.section--wine .section-title {
  color: var(--gold-soft);
}

.lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.section--dark .lead,
.section--wine .lead {
  color: rgba(255, 250, 241, 0.82);
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-frame--contain {
  background: var(--paper);
  display: grid;
  place-items: center;
  padding: 12px;
}

.media-frame--contain img {
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: start;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(111, 21, 28, 0.2);
}

.about-points p {
  margin: 0;
  padding: 22px 24px 22px 0;
  border-bottom: 1px solid rgba(111, 21, 28, 0.2);
}

.about-points p:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid rgba(111, 21, 28, 0.2);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  margin-bottom: 6px;
  color: var(--wine);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 20px;
}

.about-points span {
  color: var(--muted);
  font-size: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 54px;
}

.gallery-item {
  grid-column: span 5;
  min-height: 280px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 18px 48px rgba(47, 27, 18, 0.16);
}

.gallery-item--wide {
  grid-column: span 7;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 18px 15px;
  background: linear-gradient(transparent, rgba(17, 13, 10, 0.9));
  color: var(--paper);
  font-weight: 700;
}

.image-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.first-visit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: start;
}

.visit-flow {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: visit;
  border-top: 1px solid rgba(111, 21, 28, 0.18);
}

.visit-flow li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid rgba(111, 21, 28, 0.18);
}

.visit-flow li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--paper);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.visit-flow strong {
  color: var(--wine);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
}

.visit-flow p {
  margin: 3px 0 0;
  color: var(--muted);
}

.button--ghost-light {
  border-color: rgba(111, 21, 28, 0.26);
  background: transparent;
  color: var(--wine);
  box-shadow: none;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.section-heading-row .lead {
  margin-bottom: 0;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 54px;
  align-items: start;
}

.access-details {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
}

.access-details div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(213, 173, 105, 0.22);
}

.access-details dt {
  color: var(--gold-soft);
  font-weight: 700;
}

.access-details dd {
  margin: 0;
  color: rgba(255, 250, 241, 0.86);
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.event-card,
.info-panel,
.form-card {
  border: 1px solid rgba(65, 39, 26, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 14px 34px rgba(47, 27, 18, 0.08);
}

.feature-card {
  padding: 24px;
}

.feature-card h3,
.info-panel h3,
.event-card h3 {
  margin: 0 0 10px;
  color: var(--wine);
  font-size: 24px;
}

.feature-card p,
.info-panel p,
.event-card p {
  margin: 0;
  color: var(--muted);
}

.event-list {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 680px;
  justify-self: end;
}

.section--paper > .container > .event-list {
  margin: 0 auto;
  justify-self: center;
}

.event-card {
  display: grid;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
  box-shadow: 0 26px 70px rgba(10, 4, 3, 0.28);
}

.event-card__media {
  background:
    linear-gradient(135deg, rgba(213, 173, 105, 0.22), rgba(255, 250, 241, 0.96));
  display: grid;
  place-items: center;
  padding: 22px;
  border-bottom: 1px solid rgba(65, 39, 26, 0.12);
}

.event-card__media img {
  width: 100%;
  max-height: 340px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 16px 36px rgba(17, 13, 10, 0.22);
}

.event-card__body {
  padding: 28px 32px 32px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 14px;
  padding: 4px 10px;
  border: 1px solid rgba(111, 21, 28, 0.22);
  border-radius: var(--radius);
  background: rgba(111, 21, 28, 0.08);
  color: var(--wine);
  font-size: 13px;
  font-weight: 700;
}

.event-card h3 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
}

.inline-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid rgba(65, 39, 26, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.inline-list div {
  display: grid;
  gap: 2px;
}

.inline-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.inline-list dd {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.5;
}

.event-card .text-link {
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid rgba(111, 21, 28, 0.2);
  border-radius: var(--radius);
  background: var(--wine);
  color: var(--paper);
  text-decoration: none;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--wine);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

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

.info-panel {
  padding: 28px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
}

.price-table th,
.price-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(65, 39, 26, 0.12);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  width: 32%;
  color: var(--wine);
  font-weight: 700;
}

.note {
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  padding: 92px 0 62px;
  background:
    linear-gradient(90deg, rgba(17, 13, 10, 0.96), rgba(17, 13, 10, 0.64)),
    url("../images/lounge-karaoke.png");
  background-position: center;
  background-size: cover;
  color: var(--paper);
}

.page-hero h1 {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.15;
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 250, 241, 0.86);
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.form-card {
  padding: 28px;
}

.form-card--dark {
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

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

.field {
  display: grid;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(65, 39, 26, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 250, 241, 0.78);
  border-top: 1px solid rgba(213, 173, 105, 0.22);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  font-size: 14px;
}

.footer-links a {
  color: rgba(255, 250, 241, 0.78);
  text-decoration: none;
}

.footer-note {
  margin: 14px 0 0;
  color: rgba(255, 250, 241, 0.6);
  font-size: 13px;
}

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

@media (max-width: 900px) {
  .header-inner {
    min-height: 64px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(17, 13, 10, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 78px 0 58px;
  }

  .split,
  .about-intro,
  .first-visit-layout,
  .access-layout,
  .feature-grid,
  .info-grid,
  .event-card,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .event-card__media img {
    aspect-ratio: 16 / 10;
  }

  .about-intro,
  .first-visit-layout,
  .access-layout {
    gap: 38px;
  }

  .gallery-item,
  .gallery-item--wide {
    grid-column: span 6;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .home-page {
    padding-bottom: 70px;
  }

  .brand {
    font-size: 21px;
  }

  .hero {
    background-position: 60% center;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-headline {
    font-size: 27px;
  }

  .button {
    width: 100%;
  }

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

  .price-table th {
    padding-bottom: 6px;
    border-bottom: 0;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .about-points p,
  .about-points p:nth-child(even) {
    padding: 18px 0;
    border-left: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .gallery-item,
  .gallery-item--wide {
    grid-column: auto;
    min-height: 220px;
  }

  .gallery-item img {
    min-height: 220px;
  }

  .image-note {
    text-align: left;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
  }

  .visit-flow li {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .visit-flow li > span {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .access-details div {
    grid-template-columns: 72px 1fr;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 66px;
    border-top: 1px solid rgba(213, 173, 105, 0.42);
    background: rgba(17, 13, 10, 0.97);
    box-shadow: 0 -10px 30px rgba(17, 13, 10, 0.24);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a,
  .mobile-action-bar__disabled {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2px;
    color: var(--paper);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-action-bar > * + * {
    border-left: 1px solid rgba(213, 173, 105, 0.22);
  }

  .mobile-action-bar__disabled {
    color: rgba(255, 250, 241, 0.62);
  }

  .line-mark {
    color: #69d870;
    font-size: 11px;
    letter-spacing: 0.04em;
  }

.price-table td {
  padding-top: 0;
  }
}

.system-board {
  display: grid;
  gap: 24px;
}

.system-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.system-price {
  padding: 32px;
  text-align: center;
}

.system-price + .system-price {
  border-left: 1px solid rgba(65, 39, 26, 0.12);
}

.system-price h3 {
  margin: 0 0 10px;
  color: var(--wine);
  font-size: 22px;
}

.price-amount {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 700;
  line-height: 1;
}

.system-note {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.price-list {
  display: grid;
  gap: 0;
  border: 1px solid rgba(65, 39, 26, 0.14);
  border-radius: var(--radius);
  background: var(--white);
}

.price-line,
.menu-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px dotted rgba(111, 21, 28, 0.28);
}

.price-line:last-child,
.menu-row:last-child {
  border-bottom: 0;
}

.price-line strong,
.menu-row strong {
  color: var(--ink-soft);
}

.price-line span,
.menu-row span {
  color: var(--wine);
  font-weight: 800;
  white-space: nowrap;
}

.menu-board {
  display: grid;
  gap: 28px;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.menu-stack {
  display: grid;
  gap: 24px;
}

.menu-category {
  padding: 26px;
  border: 1px solid rgba(65, 39, 26, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 14px 34px rgba(47, 27, 18, 0.08);
}

.menu-category h2,
.menu-category h3 {
  margin: 0 0 16px;
  color: var(--wine);
  font-size: 28px;
  line-height: 1.25;
}

.menu-category p {
  margin: 0 0 16px;
  color: var(--muted);
}

.menu-subtitle {
  margin: -8px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.delivery-box {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.delivery-box h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.recruit-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}

.recruit-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.76);
  color: var(--wine);
  font-weight: 800;
}

.recruit-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.recruit-card,
.recruit-note {
  padding: 28px;
  border: 1px solid rgba(65, 39, 26, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 14px 34px rgba(47, 27, 18, 0.08);
}

.recruit-card--primary {
  background: var(--ink);
  color: var(--paper);
}

.recruit-card h3,
.recruit-note h3 {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 24px;
}

.recruit-card--primary h3 {
  color: var(--gold-soft);
}

.recruit-card p,
.recruit-note p {
  margin: 0;
  color: var(--muted);
}

.recruit-card--primary p {
  color: rgba(255, 250, 241, 0.82);
}

.recruit-price {
  display: block;
  margin: 0 0 10px;
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
}

.recruit-card--primary .recruit-price {
  color: var(--gold-soft);
}

.section--dark .recruit-note {
  background: rgba(255, 250, 241, 0.08);
  border-color: rgba(213, 173, 105, 0.28);
  box-shadow: none;
}

.section--dark .recruit-note h3 {
  color: var(--gold-soft);
}

.section--dark .recruit-note p {
  color: rgba(255, 250, 241, 0.78);
}

.recruit-phone-row {
  margin-top: 20px;
}

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

.cast-card {
  overflow: hidden;
  border: 1px solid rgba(65, 39, 26, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 18px 44px rgba(47, 27, 18, 0.1);
}

.cast-portrait {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cast-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 250, 241, 0.26), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(17, 13, 10, 0.36), transparent 42%);
}

.cast-portrait span {
  position: relative;
  width: 118px;
  height: 158px;
  border-radius: 999px 999px 34px 34px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(213, 173, 105, 0.72));
  box-shadow: 0 22px 46px rgba(17, 13, 10, 0.28);
}

.cast-portrait span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -46px;
  width: 74px;
  height: 74px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(241, 219, 167, 0.9));
}

.cast-portrait span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -54px;
  width: 96px;
  height: 90px;
  transform: translateX(-50%);
  border-radius: 54% 46% 48% 52%;
  border-top: 16px solid rgba(17, 13, 10, 0.72);
  border-left: 10px solid rgba(17, 13, 10, 0.56);
  border-right: 10px solid rgba(17, 13, 10, 0.56);
}

.cast-portrait--wine {
  background: linear-gradient(135deg, #3e0d12 0%, #8a2026 100%);
}

.cast-portrait--gold {
  background: linear-gradient(135deg, #4f2b16 0%, #d5ad69 100%);
}

.cast-portrait--dark {
  background: linear-gradient(135deg, #110d0a 0%, #463126 100%);
}

.cast-card__body {
  padding: 24px;
}

.cast-card h3 {
  margin: 0 0 10px;
  color: var(--wine);
  font-size: 26px;
}

.cast-card p {
  margin: 0;
  color: var(--muted);
}

.cast-tags {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
}

.cast-tags div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px dotted rgba(111, 21, 28, 0.22);
}

.cast-tags dt {
  color: var(--wine);
  font-size: 13px;
  font-weight: 800;
}

.cast-tags dd {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

@media (max-width: 900px) {
  .system-main,
  .menu-columns,
  .recruit-board,
  .cast-grid {
    grid-template-columns: 1fr;
  }

  .system-price + .system-price {
    border-left: 0;
    border-top: 1px solid rgba(65, 39, 26, 0.12);
  }
}

@media (max-width: 520px) {
  .price-line,
  .menu-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
