/* ===========================
   RESET & BASE
=========================== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Zen Kaku Gothic New', 'Jost', sans-serif;
  background: #1f1813;
  color: #e8dfd4;
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s; }
a:hover { opacity: .7; }

/* ===========================
   VARIABLES
=========================== */
:root {
  --bg-deep: #1f1813;
  --bg-warm: #2a201a;
  --bg-card: #3a2e25;
  --cream: #e8dfd4;
  --copper: #c9a87a;
  --copper-bright: #d4b78c;
  --copper-deep: #8b6f4e;
  --line-green: #06c755;
  --soft-white: #f4ede3;
}

/* ===========================
   TYPOGRAPHY
=========================== */
.serif-en { font-family: 'Cormorant Garamond', serif; letter-spacing: .1em; }
.sans-en  { font-family: 'Jost', sans-serif; letter-spacing: .15em; }
.serif-jp { font-family: 'Noto Serif JP', serif; }

h1, h2, h3 { font-weight: 400; line-height: 1.4; }

/* ===========================
   NAVIGATION
=========================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  background: rgba(31, 24, 19, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .4s;
}
header.scrolled {
  padding: 16px 48px;
  background: rgba(31, 24, 19, 0.95);
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: .25em;
  color: var(--copper-bright);
}
.logo-sub {
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--cream);
  margin-top: 4px;
  opacity: .8;
}
nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
nav a {
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  letter-spacing: .25em;
  color: var(--cream);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--copper);
  transition: all .3s;
  transform: translateX(-50%);
}
nav a:hover { opacity: 1; color: var(--copper-bright); }
nav a:hover::after { width: 100%; }
nav a.nav-reserve {
  border: 1px solid var(--copper);
  border-radius: 100px;
  padding: 8px 18px;
  color: var(--copper-bright);
}
nav a.nav-reserve::after { display: none; }
nav a.nav-reserve:hover { background: var(--copper); color: #1f1813; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(180deg, rgba(31,24,19,.4) 0%, rgba(31,24,19,.8) 100%),
              url('https://www.genspark.ai/api/files/s/do49m7kU?cache_control=3600');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(31,24,19,.5) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  animation: fadeUp 1.4s ease forwards;
  opacity: 0;
  animation-delay: .2s;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .5em;
  color: var(--copper);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: .08em;
  margin-bottom: 24px;
  color: var(--soft-white);
}
.hero-sub-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: var(--copper-bright);
  margin-bottom: 32px;
  letter-spacing: .08em;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--copper);
  margin: 0 auto 24px;
}
.hero-info {
  font-size: .85rem;
  letter-spacing: .3em;
  color: var(--cream);
  opacity: .85;
}
.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: .4em;
  color: var(--copper);
  z-index: 2;
}
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--copper);
  margin: 12px auto 0;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===========================
   PAGE HERO (sub pages)
=========================== */
.page-hero {
  padding: 180px 48px 80px;
  text-align: center;
  background: var(--bg-warm);
  border-bottom: 1px solid rgba(201,168,122,.12);
}
.page-hero .section-tag { margin-bottom: 12px; }
.page-hero .section-title { margin-bottom: 12px; }
.page-hero .section-title-jp { margin-bottom: 0; }
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 48px 0;
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--cream);
  opacity: .6;
  text-transform: uppercase;
}
.breadcrumb a:hover { color: var(--copper-bright); opacity: 1; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .08em;
  transition: all .3s;
}
.btn-line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 12px 32px rgba(6, 199, 85, .3);
}
.btn-line:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(6, 199, 85, .5);
  opacity: 1;
}
.btn-tel {
  background: transparent;
  color: var(--copper-bright);
  border: 1px solid var(--copper);
}
.btn-tel:hover {
  background: var(--copper);
  color: #1f1813;
  opacity: 1;
  transform: translateY(-3px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201,168,122,.4);
}
.btn-ghost:hover { border-color: var(--copper); color: var(--copper-bright); opacity: 1; }
.line-icon {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--line-green);
  font-weight: 700;
  font-size: .62rem;
}

/* ===========================
   SECTIONS
=========================== */
section {
  padding: 120px 48px;
  position: relative;
}
.container { max-width: 1200px; margin: 0 auto; }

.section-tag {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .5em;
  color: var(--copper);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  text-align: center;
  color: var(--soft-white);
  letter-spacing: .15em;
  margin-bottom: 24px;
}
.section-title-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  text-align: center;
  color: var(--cream);
  opacity: .7;
  letter-spacing: .25em;
  margin-bottom: 64px;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--copper);
  margin: 0 auto 64px;
}
.section-foot {
  text-align: center;
  margin-top: 56px;
}

/* ===========================
   CONCEPT
=========================== */
.concept { background: var(--bg-warm); }
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.concept-image {
  position: relative;
  aspect-ratio: 4/5;
  background: url('https://www.genspark.ai/api/files/s/8OyiwAFO?cache_control=3600');
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
}
.concept-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--copper);
  transform: translate(16px, 16px);
  border-radius: 4px;
  z-index: -1;
}
.concept-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 400;
  color: var(--soft-white);
  margin-bottom: 32px;
  line-height: 1.6;
}
.concept-text p {
  font-size: .95rem;
  line-height: 2.2;
  color: var(--cream);
  margin-bottom: 20px;
  opacity: .85;
}

/* ===========================
   MENU
=========================== */
.menu { background: var(--bg-deep); position: relative; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.menu-card {
  background: var(--bg-card);
  padding: 48px 32px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid rgba(201, 168, 122, .15);
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0;
  transition: opacity .4s;
}
.menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--copper);
  box-shadow: 0 24px 48px rgba(0,0,0,.3);
}
.menu-card:hover::before { opacity: 1; }
.menu-card.featured { border-color: var(--copper); }
.menu-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-family: 'Jost', sans-serif;
  font-size: .6rem;
  letter-spacing: .2em;
  color: #1f1813;
  background: var(--copper-bright);
  padding: 4px 10px;
  border-radius: 100px;
}
.menu-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--copper-bright);
}
.menu-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: .2em;
  color: var(--copper-bright);
  margin-bottom: 6px;
}
.menu-card .menu-jp {
  font-size: .8rem;
  color: var(--cream);
  opacity: .7;
  margin-bottom: 18px;
  letter-spacing: .1em;
}
.menu-rows { margin-bottom: 8px; }
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 4px;
  border-bottom: 1px dashed rgba(201,168,122,.2);
}
.menu-row:last-child { border-bottom: none; }
.menu-row .t {
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  letter-spacing: .15em;
  color: var(--cream);
  opacity: .85;
}
.menu-row .p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--soft-white);
}
.menu-time {
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  letter-spacing: .3em;
  color: var(--cream);
  opacity: .6;
  margin-bottom: 24px;
}
.menu-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--soft-white);
  margin-bottom: 16px;
}
.menu-desc {
  font-size: .85rem;
  color: var(--cream);
  opacity: .8;
  line-height: 1.8;
}

/* Option / fee tables */
.price-block { max-width: 760px; margin: 0 auto; }
.price-sub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  letter-spacing: .2em;
  color: var(--copper-bright);
  text-align: center;
  margin: 72px 0 8px;
}
.price-sub-jp {
  text-align: center;
  font-size: .8rem;
  letter-spacing: .25em;
  color: var(--cream);
  opacity: .65;
  margin-bottom: 32px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th, .price-table td {
  padding: 16px 12px;
  border-bottom: 1px solid rgba(201,168,122,.15);
  text-align: left;
  font-size: .9rem;
}
.price-table th {
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}
.price-table td.name { color: var(--cream); }
.price-table td.dur { color: var(--cream); opacity: .6; font-family: 'Jost', sans-serif; letter-spacing: .1em; white-space: nowrap; }
.price-table td.price {
  text-align: right;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--soft-white);
  white-space: nowrap;
}
.price-note {
  margin-top: 40px;
  font-size: .8rem;
  color: var(--cream);
  opacity: .7;
  line-height: 2;
  text-align: center;
}

/* ===========================
   THERAPIST
=========================== */
.therapist { background: var(--bg-warm); }
.therapist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.therapist-card {
  text-align: center;
  transition: all .4s;
  display: block;
}
.therapist-card:hover { transform: translateY(-6px); opacity: 1; }
.therapist-img {
  aspect-ratio: 3/4;
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 122, .15);
  background: linear-gradient(135deg, #3a2e25, #2a201a);
}
.therapist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.therapist-card:hover .therapist-img img { transform: scale(1.05); }
.therapist-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'Jost', sans-serif;
  font-size: .6rem;
  letter-spacing: .15em;
  padding: 4px 10px;
  border-radius: 100px;
  color: #1f1813;
  background: var(--copper-bright);
  z-index: 2;
}
.therapist-badge.new { background: #d98c6a; color: #fff; }
.therapist-badge.premium { background: linear-gradient(135deg,#e8d2a0,#c9a87a); }
.therapist-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.15rem;
  color: var(--soft-white);
  letter-spacing: .12em;
  margin-bottom: 4px;
}
.therapist-initial {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--copper-bright);
  letter-spacing: .2em;
  margin-bottom: 8px;
}
.therapist-tag {
  font-family: 'Jost', sans-serif;
  font-size: .72rem;
  letter-spacing: .25em;
  color: var(--cream);
  opacity: .7;
  text-transform: uppercase;
}
.therapist-note {
  text-align: center;
  margin-top: 56px;
  font-size: .85rem;
  color: var(--cream);
  opacity: .6;
  font-style: italic;
}

/* Therapist detail */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.detail-gallery .main-photo {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,122,.2);
  margin-bottom: 16px;
  background: var(--bg-card);
}
.detail-gallery .main-photo img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.thumb-row .thumb {
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201,168,122,.15);
  opacity: .65;
  transition: opacity .3s, border-color .3s;
}
.thumb-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row .thumb.active, .thumb-row .thumb:hover { opacity: 1; border-color: var(--copper); }

.detail-info .d-badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  letter-spacing: .2em;
  padding: 5px 14px;
  border-radius: 100px;
  color: #1f1813;
  background: var(--copper-bright);
  margin-bottom: 20px;
}
.detail-info .d-badge.new { background: #d98c6a; color:#fff; }
.detail-info h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--soft-white);
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.detail-info .d-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--copper-bright);
  margin-bottom: 28px;
  letter-spacing: .1em;
}
.detail-info .d-role {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
}
.detail-profile {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px 24px;
  margin-bottom: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(201,168,122,.15);
  border-bottom: 1px solid rgba(201,168,122,.15);
}
.detail-profile dt {
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  padding-top: 3px;
}
.detail-profile dd { font-size: .92rem; color: var(--cream); }
.detail-comment {
  font-size: .95rem;
  line-height: 2.1;
  color: var(--cream);
  opacity: .9;
  margin-bottom: 36px;
}
.detail-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.back-link {
  display: inline-block;
  margin-top: 56px;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--copper);
  text-transform: uppercase;
}

/* ===========================
   ACCESS
=========================== */
.access { background: var(--bg-deep); }
.access-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.access-map {
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 122, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-family: 'Jost', sans-serif;
  letter-spacing: .3em;
  font-size: .85rem;
  position: relative;
  overflow: hidden;
}
.access-map iframe {
  width: 100%; height: 100%; border: 0;
  filter: invert(.9) hue-rotate(180deg) saturate(.3) brightness(.85);
}
.access-info dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px 32px;
}
.access-info dt {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--copper);
  text-transform: uppercase;
  padding-top: 4px;
}
.access-info dd {
  font-size: .95rem;
  color: var(--cream);
  line-height: 1.9;
}
.access-info dd a { color: var(--copper-bright); }

/* ===========================
   RESERVE SECTION
=========================== */
.reserve {
  background: linear-gradient(135deg, var(--bg-warm) 0%, #241a14 100%);
  text-align: center;
  border-top: 1px solid rgba(201,168,122,.12);
}
.reserve .lead {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: .95rem;
  line-height: 2.1;
  color: var(--cream);
  opacity: .85;
}
.reserve-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.reserve-meta {
  margin-top: 32px;
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--cream);
  opacity: .65;
}

/* ===========================
   RECRUIT BANNER
=========================== */
.recruit {
  background: linear-gradient(135deg, var(--copper-deep) 0%, #6e573c 50%, var(--copper-deep) 100%);
  position: relative;
  overflow: hidden;
}
.recruit::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212,183,140,.15), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(212,183,140,.15), transparent 40%);
}
.recruit-content { position: relative; z-index: 2; text-align: center; }
.recruit-tag {
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  letter-spacing: .5em;
  color: var(--soft-white);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: .9;
}
.recruit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: .15em;
  margin-bottom: 16px;
}
.recruit-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--soft-white);
  margin-bottom: 32px;
  letter-spacing: .1em;
}
.recruit-features {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.recruit-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--soft-white);
  font-size: .95rem;
  letter-spacing: .08em;
}
.recruit-feature::before {
  content: '◆';
  color: var(--copper-bright);
  font-size: .7rem;
}
.line-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--line-green);
  color: #fff;
  padding: 20px 56px;
  border-radius: 100px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: .1em;
  box-shadow: 0 12px 32px rgba(6, 199, 85, .35);
  transition: all .3s;
}
.line-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(6, 199, 85, .5);
  opacity: 1;
}
.recruit-note {
  margin-top: 32px;
  color: var(--soft-white);
  font-size: .85rem;
  opacity: .85;
  letter-spacing: .05em;
}
.recruit-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 16px;
  text-align: left;
}
.recruit-detail-grid .item {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,122,.15);
  border-radius: 4px;
  padding: 28px 32px;
}
.recruit-detail-grid .item h4 {
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.recruit-detail-grid .item p { font-size: .95rem; color: var(--cream); opacity: .9; }

/* ===========================
   FLOATING BUTTONS
=========================== */
.float-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--line-green);
  color: #fff;
  padding: 14px 22px;
  border-radius: 100px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  box-shadow: 0 8px 28px rgba(6,199,85,.4);
  transition: all .3s;
}
.float-line:hover { transform: translateY(-3px); opacity: 1; }
.recruit-float {
  background: linear-gradient(135deg, var(--copper-bright), var(--copper));
  color: #1f1813;
  padding: 12px 20px;
  border-radius: 100px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: .82rem;
  box-shadow: 0 8px 32px rgba(201, 168, 122, .35);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
}
.recruit-float:hover { transform: translateY(-3px); opacity: 1; }
.recruit-float .badge {
  background: #1f1813;
  color: var(--copper-bright);
  padding: 3px 8px;
  border-radius: 100px;
  font-size: .65rem;
  letter-spacing: .15em;
}

/* ===========================
   FOOTER
=========================== */
footer {
  background: #14100d;
  padding: 80px 48px 40px;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 122, .15);
}
.footer-logo {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .3em;
  color: var(--copper-bright);
  margin-bottom: 12px;
}
.footer-sub {
  font-size: .8rem;
  letter-spacing: .3em;
  color: var(--cream);
  opacity: .6;
  margin-bottom: 32px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .3em;
  color: var(--cream);
  opacity: .7;
  text-transform: uppercase;
}
.footer-nav a:hover { opacity: 1; color: var(--copper-bright); }
.footer-copyright {
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  letter-spacing: .3em;
  color: var(--cream);
  opacity: .4;
}

/* ===========================
   ANIMATIONS
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  header { padding: 16px 24px; }
  .menu-toggle { display: block; }
  nav ul {
    position: fixed;
    top: 64px;
    right: -100%;
    flex-direction: column;
    background: rgba(31,24,19,.98);
    width: 72%;
    height: calc(100vh - 64px);
    padding: 48px 32px;
    gap: 28px;
    transition: right .4s;
    backdrop-filter: blur(16px);
    align-items: flex-start;
  }
  nav ul.open { right: 0; }
  nav a { font-size: 1rem; }
  nav a.nav-reserve { align-self: stretch; text-align: center; }

  section { padding: 80px 24px; }
  .breadcrumb { padding: 96px 24px 0; }
  .page-hero { padding: 150px 24px 64px; }
  .concept-grid,
  .access-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .menu-grid,
  .therapist-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .recruit-detail-grid { grid-template-columns: 1fr; }
  .recruit-features { flex-direction: column; gap: 16px; align-items: center; }
  .access-info dl { grid-template-columns: 1fr; gap: 4px 0; }
  .access-info dt { margin-top: 16px; }
  .detail-profile { grid-template-columns: 90px 1fr; }
  .scroll-hint { display: none; }
}
@media (max-width: 520px) {
  .menu-grid, .therapist-grid { grid-template-columns: 1fr; }
  .float-line span:not(.line-icon), .recruit-float .badge { display: none; }
}

/* ============================================================
   RECRUIT LP — additional styles
============================================================ */

/* Hero (image-free gradient version) */
.hero-recruit {
  background:
    radial-gradient(circle at 25% 20%, rgba(201,168,122,.18), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(139,111,78,.28), transparent 50%),
    linear-gradient(160deg, #2a201a 0%, #1f1813 60%, #241a14 100%);
}

/* Greeting */
.greeting-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.greeting-box h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  color: var(--soft-white);
  margin-bottom: 32px;
  line-height: 1.8;
}
.greeting-box p {
  font-size: .95rem;
  line-height: 2.2;
  color: var(--cream);
  opacity: .85;
  margin-bottom: 20px;
  text-align: left;
}
.greeting-sign {
  margin-top: 36px;
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  letter-spacing: .25em;
  color: var(--copper);
  text-transform: uppercase;
}

/* Salary model cases */
.salary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.salary-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,122,.15);
  border-radius: 4px;
  padding: 44px 36px;
  text-align: center;
  position: relative;
  transition: all .4s;
}
.salary-card:hover { border-color: var(--copper); transform: translateY(-6px); }
.salary-person {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: .2em;
  color: var(--copper-bright);
  margin-bottom: 4px;
}
.salary-cond {
  font-size: .82rem;
  letter-spacing: .15em;
  color: var(--cream);
  opacity: .7;
  margin-bottom: 24px;
}
.salary-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  color: var(--soft-white);
  line-height: 1.2;
  margin-bottom: 6px;
}
.salary-amount small {
  font-size: 1rem;
  color: var(--copper);
  letter-spacing: .1em;
}
.salary-breakdown {
  margin-top: 28px;
  border-top: 1px dashed rgba(201,168,122,.25);
  padding-top: 20px;
  text-align: left;
}
.salary-breakdown li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--cream);
  padding: 8px 2px;
  border-bottom: 1px dashed rgba(201,168,122,.12);
}
.salary-breakdown li:last-child { border-bottom: none; }
.salary-breakdown .v {
  font-family: 'Jost', sans-serif;
  color: var(--soft-white);
  letter-spacing: .05em;
}

/* Flow steps */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  counter-reset: flow;
}
.flow-step {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,122,.15);
  border-radius: 4px;
  padding: 40px 24px 32px;
  text-align: center;
  position: relative;
}
.flow-step::before {
  counter-increment: flow;
  content: '0' counter(flow);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--copper);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.flow-step h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  color: var(--soft-white);
  margin-bottom: 12px;
  letter-spacing: .1em;
}
.flow-step p {
  font-size: .82rem;
  line-height: 1.9;
  color: var(--cream);
  opacity: .8;
}
.flow-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--copper);
  font-size: 1rem;
  z-index: 2;
}

/* Check list (こんな女性にオススメ) */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,122,.12);
  border-radius: 4px;
  padding: 18px 24px;
  font-size: .92rem;
  color: var(--cream);
}
.check-item::before {
  content: '✓';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-bright);
  font-size: .8rem;
}

/* Benefits grid (待遇) */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.benefit {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,122,.15);
  border-radius: 4px;
  padding: 28px 16px;
  text-align: center;
  transition: all .3s;
}
.benefit:hover { border-color: var(--copper); transform: translateY(-4px); }
.benefit .b-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--copper-bright);
}
.benefit h4 {
  font-size: .9rem;
  color: var(--soft-white);
  letter-spacing: .08em;
  margin-bottom: 6px;
  font-weight: 500;
}
.benefit p {
  font-size: .75rem;
  color: var(--cream);
  opacity: .7;
  line-height: 1.7;
}

/* Entry channels */
.entry-channels {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Responsive additions */
@media (max-width: 900px) {
  .salary-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr 1fr; }
  .flow-step:not(:last-child)::after { display: none; }
  .check-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .flow-steps { grid-template-columns: 1fr; }
}
