@charset "UTF-8";
/* =========================================================
   Svolta - Total beauty salon
   Static site (WordPress化前提)  base stylesheet
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --green-deep: #2c352a;   /* footer / drawer / dark sections */
  --green:      #3f5233;   /* LINE button / accents */
  --green-mid:  #46583d;   /* nav circle */
  --charcoal:   #262322;   /* WEB button */
  --tel:        #242b22;   /* TEL button (dark) */
  --gold:       #b3a082;   /* beige / WEB(alt) button */
  --gold-dark:  #9c8a6d;
  --cream:      #f4efe7;   /* section bg (About) */
  --cream-lt:   #faf7f1;   /* page bg */
  --pink-cream: #f6f1ee;   /* lower page bg */
  --line:       #e2dbd0;   /* hairlines */
  --text:       #38352f;
  --text-sub:   #6f6a61;
  --white:      #ffffff;

  --serif-jp: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --serif-en: "Cormorant Garamond", "Noto Serif JP", serif;

  --maxw: 1080px;
  --header-h: 84px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--serif-jp);
  font-weight: 400;
  color: var(--text);
  background: var(--cream-lt);
  line-height: 1.9;
  letter-spacing: .04em;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease), color .3s var(--ease); }
a:hover { opacity: .72; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - 48px, var(--maxw)); margin-inline: auto; }
.wrap-wide { width: min(100% - 48px, 1280px); margin-inline: auto; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.bg-cream { background: var(--cream); }
.bg-pink  { background: var(--pink-cream); }
.bg-dark  { background: var(--green-deep); color: #efeae0; }
.center   { text-align: center; }

/* ---------- Section headings ---------- */
.sec-head { margin-bottom: 46px; }
.sec-head--center { text-align: center; }
.sec-head__en {
  font-family: var(--serif-en);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: .06em;
  line-height: 1.2;
  color: inherit;
}
.bg-dark .sec-head__en { color: #f3efe6; }
.sec-head__jp {
  display: block;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--text-sub);
  margin-top: 10px;
}
.bg-dark .sec-head__jp { color: #c9c3b6; }
.ornament {
  display: block; width: 20px; height: 20px; margin-top: 12px;
  background-color: var(--gold);
  -webkit-mask: url("../images/reaf.svg") no-repeat center / contain;
          mask: url("../images/reaf.svg") no-repeat center / contain;
}
.sec-head--center .ornament { margin-inline: auto; }
.bg-dark .ornament { background-color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 56px; padding: 0 30px;
  font-size: 14px; letter-spacing: .12em;
  border: 1px solid transparent; border-radius: 3px;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn:hover { opacity: 1; transform: translateY(-2px); }
.btn .ico { width: 20px; height: 20px; flex: 0 0 auto; }
.btn .arw { width: 22px; height: 10px; }
.btn--line { background: var(--green); color: #fff; }
.btn--line:hover { background: #4a6140; }
.btn--web  { background: var(--charcoal); color: #fff; }
.btn--web:hover { background: #3a3532; }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: var(--gold-dark); }
.btn--tel  { background: var(--tel); color: #fff; }
.btn--tel:hover { background: #33402c; }
.btn--dark { background: var(--charcoal); color: #fff; }
.btn--outline {
  background: transparent; border-color: var(--text-sub); color: var(--text);
  min-height: 52px; border-radius: 3px;
}
.btn--outline:hover { background: var(--text); color: #fff; border-color: var(--text); }
.btn--green { background: var(--green); color: #fff; border-radius: 3px; }
.btn--ghost-light { border: 1px solid rgba(255,255,255,.55); color: #fff; background: transparent; border-radius: 3px; }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); }
/* HOME・CONCEPT のヒーロー内 LINE/WEB ボタンだけ丸みを強く（reserve-band等は 3px） */
.hero__btns .btn, .page-hero__btns .btn { border-radius: 50px; }
.btn--block { width: 100%; }
.btn small { display: block; font-size: 11px; letter-spacing: .06em; opacity: .85; }
.btn-stack { text-align: left; line-height: 1.5; }

/* reserve trio */
.reserve-trio { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 720px; margin-inline: auto; }
.reserve-trio .btn { min-height: 72px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: var(--cream-lt);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease), border-color .4s var(--ease);
}
.header-inner {
  height: var(--header-h);
  width: min(100% - 48px, 1280px); margin-inline: auto;
  display: flex; align-items: center; gap: 28px;
}
.header-logo { display: flex; align-items: center; gap: 12px; }
.header-logo img { width: 70px; height: 70px; }
.header-logo__txt { line-height: 1.15; }
.header-logo__txt b { font-family: var(--serif-en); font-weight: 600; font-size: 24px; letter-spacing: .04em; }
.header-logo__txt span { display: block; font-size: 9px; letter-spacing: .28em; color: var(--text-sub); }
.gnav { margin-left: auto; }
.gnav ul { display: flex; gap: 26px; }
.gnav a { font-size: 12.5px; letter-spacing: .1em; position: relative; padding: 6px 0; }
.gnav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: currentColor; transition: width .3s var(--ease);
}
.gnav a:hover, .gnav a.is-current { opacity: 1; }
.gnav a:hover::after, .gnav a.is-current::after { width: 100%; }

.nav-toggle {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--green-mid); border: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  flex: 0 0 auto;
}
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: #fff; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle small { font-size: 7px; letter-spacing: .1em; color: #fff; margin-top: 3px; }

/* transparent header over hero */
body.page--hero .site-header {
  background: transparent; border-color: transparent; color: #fff;
}
body.page--hero .site-header .header-logo__txt b,
body.page--hero .site-header .header-logo__txt span { color: #fff; }
body.page--hero .site-header .gnav a { color: #fff; }
/* black SVG logo → white while over the dark hero (reverts when scrolled/solid) */
body.page--hero .site-header:not(.scrolled) .header-logo img { filter: invert(1) brightness(1.6); }
body.page--hero .site-header.scrolled {
  background: rgba(250,247,241,.96); border-color: var(--line); color: var(--text);
  backdrop-filter: blur(4px);
}
body.page--hero .site-header.scrolled .header-logo__txt b { color: var(--text); }
body.page--hero .site-header.scrolled .header-logo__txt span,
body.page--hero .site-header.scrolled .gnav a { color: var(--text); }

/* ---------- Drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--green-deep); color: #efeae0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 30px; padding: 40px;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__close {
  position: absolute; top: 26px; right: 26px; width: 48px; height: 48px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.4); background: transparent; color: #fff;
  font-size: 22px; line-height: 1;
}
.drawer nav ul { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.drawer nav a { font-family: var(--serif-en); font-size: 22px; letter-spacing: .12em; }
.drawer nav a small { display: block; font-family: var(--serif-jp); font-size: 10px; letter-spacing: .3em; color: #b7b1a4; text-align: center; margin-top: 2px; }
.drawer__sns { display: flex; gap: 22px; }
.drawer__sns a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.drawer__sns svg { width: 18px; height: 18px; fill: #efeae0; }

/* ============================================================
   HERO (top)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #b7c3c4 0%, #8ea0a0 30%, #5f7469 60%, #3f5344 100%);
}
/* 背景写真（images/hero.jpg）を薄く重ねる。透過80%＝opacity:0.2。
   下地グラデ→この画像→暗幕(::after)→文字 の順で重なり、白文字の可読性を確保 */
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background: url("../images/hero.jpg") center / cover no-repeat;
  opacity: 0.2;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,30,25,.15), rgba(20,30,25,.45));
}
.hero__inner { position: relative; z-index: 2; padding-top: var(--header-h); }
.hero h1 {
  font-family: var(--serif-jp); font-weight: 500;
  font-size: clamp(30px, 5vw, 52px); letter-spacing: .12em; line-height: 1.5;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}
.hero__sub { margin-top: 20px; font-size: clamp(14px, 2vw, 17px); letter-spacing: .12em; text-shadow: 0 2px 14px rgba(0,0,0,.3); }
.hero__brand { margin-top: 40px; }
.hero__brand b { font-family: var(--serif-en); font-size: 34px; letter-spacing: .04em; display: block; }
.hero__brand span { font-size: 10px; letter-spacing: .3em; }
.hero__btns { margin-top: 30px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   Lower page hero (light)
   ============================================================ */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 64px) 0 56px;
  background: var(--pink-cream); text-align: center; overflow: hidden;
}
.page-hero::before, .page-hero::after {
  content: ""; position: absolute; top: 0; width: 220px; height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(120,140,110,.18), transparent 70%);
}
.page-hero::before { left: -60px; }
.page-hero::after  { right: -60px; }
.page-hero__en { font-family: var(--serif-en); font-weight: 500; font-size: clamp(34px, 5vw, 52px); letter-spacing: .06em; position: relative; z-index: 2; }
.page-hero__jp { display: block; font-size: 12px; letter-spacing: .35em; color: var(--text-sub); margin-top: 12px; position: relative; z-index: 2; }

/* photographic lower hero (concept / headspa / salon) */
.page-hero--photo {
  color: #fff; padding: calc(var(--header-h) + 120px) 0 90px;
  background: linear-gradient(160deg, #aebabb, #6c7f74 55%, #3c4c40);
}
.page-hero--photo::before, .page-hero--photo::after { display: none; }
.page-hero--photo .page-hero__en { text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.page-hero--photo .page-hero__jp { color: #eae6dc; }
.page-hero--photo .page-hero__lead { position: relative; z-index: 2; margin-top: 22px; font-size: clamp(20px, 3vw, 30px); letter-spacing: .1em; line-height: 1.7; font-weight: 500; text-shadow: 0 2px 16px rgba(0,0,0,.35); }
.page-hero--photo .page-hero__btns { position: relative; z-index: 2; margin-top: 34px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Placeholder images
   ============================================================ */
.ph {
  position: relative; background: linear-gradient(135deg, #d9d3c6, #c3bdb0);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border-radius: 3px;
}
.ph::after {
  content: attr(data-label); font-size: 11px; letter-spacing: .2em; color: #6b6459;
  font-family: var(--serif-jp);
}
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph--green { background: linear-gradient(135deg, #5c6d5a, #38452f); }
.ph--green::after { color: #d7d0c2; }
.ph--dark { background: linear-gradient(135deg, #3a3a37, #23231f); }
.ph--dark::after { color: #cfc9bc; }

/* ============================================================
   TOP - About
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: center; }
.about-lead { font-size: 15px; line-height: 2.2; }
.about-lead b { font-family: var(--serif-en); }
.about-media .ph { aspect-ratio: 16 / 11; }
.about-brand { }
.about-brand__logo { font-family: var(--serif-en); font-size: 30px; letter-spacing: .02em; margin-bottom: 22px; }
.about-brand p { color: var(--text-sub); font-size: 14px; line-height: 2.1; margin-bottom: 26px; }

/* ============================================================
   TOP - Head spa (dark)
   ============================================================ */
.headspa-top { position: relative; background: var(--green-deep); color: #ece7dd; overflow: hidden; }
.headspa-top__grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 48px; align-items: center; }
.headspa-top h2 { font-family: var(--serif-en); font-weight: 500; font-size: clamp(26px,3.5vw,36px); letter-spacing: .05em; }
.headspa-top__jp { font-size: clamp(20px,2.6vw,26px); letter-spacing: .08em; margin: 16px 0 20px; font-weight: 500; color: #f4efe6; }
.headspa-top p { color: #c6c0b3; font-size: 14px; line-height: 2.1; }
.headspa-media .ph { aspect-ratio: 4/3; }
.feature-list { display: grid; gap: 22px; margin-top: 8px; }
.feature-list li { display: grid; grid-template-columns: 40px 1fr; gap: 18px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.14); }
.feature-list li:last-child { border-bottom: none; }
.feature-list .ico { width: 34px; height: 34px; color: var(--gold); }
.feature-list b { font-weight: 500; color: #f2ede4; font-size: 15px; line-height: 1.6; display: block; }

/* Head spa section as full block on TOP */
.headspa-top .headspa-media { grid-column: 2; }

/* ============================================================
   TOP - Bridal
   ============================================================ */
.bridal-grid { display: grid; grid-template-columns: 320px 1fr; gap: 44px; align-items: start; }
.bridal-media .ph { aspect-ratio: 3/4; }
.bridal-lead { font-size: clamp(18px,2.4vw,24px); font-weight: 500; letter-spacing: .06em; line-height: 1.8; margin-bottom: 18px; }
.bridal-lead + p { color: var(--text-sub); font-size: 13.5px; }
.price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 30px; }

/* Price table / cards */
.price-card { border: none; border-radius: 0; padding: 0; background: none; }
.price-card__ttl { text-align: left; font-size: 15px; letter-spacing: .1em; min-height: 0; padding-bottom: 10px; margin-bottom: 12px; border-bottom: 1px solid var(--line); }
.price-card__ttl small { display: block; font-size: 11px; color: var(--text-sub); letter-spacing: .1em; margin-top: 4px; }
.price-row { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding: 5px 0; color: var(--text-sub); }
.price-row span:first-child { color: var(--text); }

.bridal-note {
  margin-top: 34px; border: 1px solid var(--line); border-radius: 4px; background: rgba(255,255,255,.5);
  padding: 26px 30px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.bridal-note h3 { font-size: 17px; letter-spacing: .08em; margin-bottom: 8px; }
.bridal-note p { font-size: 13px; color: var(--text-sub); }

/* ---------- Course menu (HOME) ---------- */
.course-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.course-card { border: 1px solid var(--line); border-radius: 4px; background: rgba(255,255,255,.55); padding: 24px 16px 20px; text-align: center; display: flex; flex-direction: column; }
.course-card__en { font-family: var(--serif-en); font-size: 19px; letter-spacing: .02em; line-height: 1.25; min-height: 2.4em; display: flex; align-items: center; justify-content: center; }
.course-card__icons { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; color: var(--green-mid); min-height: 30px; margin: 12px 0; }
.cico { width: 24px; height: 24px; flex: 0 0 auto; }
.course-card__icons .plus { color: var(--text-sub); font-size: 12px; }
.course-card__desc { font-size: 11.5px; letter-spacing: .02em; color: var(--text-sub); line-height: 1.7; margin-bottom: 16px; min-height: 3em; }
.course-card__price { margin-top: auto; display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.course-card__price s { color: var(--text-sub); font-size: 13px; }
.course-card__price b { font-family: var(--serif-en); font-weight: 500; font-size: 22px; letter-spacing: .02em; color: var(--text); }
.course-note { margin-top: 30px; font-size: 12px; color: var(--text-sub); }

/* ============================================================
   Reserve band (ご予約はこちら)
   ============================================================ */
.reserve-band { background: var(--cream); }
.reserve-band .sec-head__en { font-size: 26px; }

/* ============================================================
   Menu page
   ============================================================ */
.menu-list { max-width: 760px; margin-inline: auto; }
.menu-item { display: grid; grid-template-columns: 92px 1fr; gap: 26px; align-items: start; padding: 26px 0; border-bottom: 1px solid var(--line); }
.menu-item__icon { width: 74px; height: 74px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.menu-item__icon svg { width: 34px; height: 34px; color: var(--green-mid); }
.menu-item__en { font-family: var(--serif-en); font-size: 24px; letter-spacing: .04em; margin-bottom: 6px; }
.menu-item__row { display: flex; justify-content: space-between; gap: 20px; font-size: 14px; padding: 3px 0; }
.menu-item__row .name { color: var(--text); }
.menu-item__row .price { color: var(--text-sub); white-space: nowrap; }
.menu-item__lead { font-size: 13px; color: var(--text-sub); line-height: 1.9; margin: 2px 0 14px; }
.menu-sub { padding: 5px 0; }
.menu-sub__desc { font-size: 12px; color: var(--text-sub); line-height: 1.8; margin-top: 2px; }
.menu-badge { display: inline-block; font-family: var(--serif-jp); font-size: 11px; color: var(--gold-dark); border: 1px solid var(--gold); border-radius: 2px; padding: 1px 8px; margin-left: 10px; vertical-align: middle; letter-spacing: .08em; }

/* Icon cards row (concept menu preview) */
.menu-cards { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.menu-card { text-align: center; }
.menu-card .ph { aspect-ratio: 1/1; margin-bottom: 12px; }
.menu-card b { font-family: var(--serif-en); font-size: 18px; display: block; }
.menu-card span { font-size: 12px; color: var(--text-sub); }
.menu-card .price { display: block; font-size: 12px; color: var(--text-sub); margin-top: 2px; }

.other-icons { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; max-width: 720px; margin-inline: auto; }
.other-icon { text-align: center; }
.other-icon .circle { width: 74px; height: 74px; border-radius: 50%; background: #fff; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.other-icon .circle svg { width: 32px; height: 32px; color: var(--green-mid); }
.other-icon span { font-size: 12.5px; letter-spacing: .1em; }

/* Other menu tables (2-col) */
.otbl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px; max-width: 820px; margin-inline: auto; }
.otbl { }
.otbl h3 { font-size: 16px; letter-spacing: .16em; padding-bottom: 10px; margin-bottom: 12px; border-bottom: 1px solid var(--line); }
.otbl .price-row { font-size: 13px; }
.otbl-hair { max-width: 820px; margin: 0 auto 34px; }
.otbl-hair h3 { font-family: var(--serif-en); font-size: 22px; letter-spacing: .04em; border: none; margin-bottom: 6px; padding: 0; }

/* MENU: Other Menu(左) ｜ Bridal(右) の2カラム */
.other-bridal { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; max-width: 1080px; margin-inline: auto; }
.other-bridal .otbl-hair, .other-bridal .otbl-grid { max-width: none; }
.bridal-3col__text { text-align: center; max-width: 560px; margin: 0 auto 30px; }
.other-bridal .price-cards { grid-template-columns: 1fr; gap: 22px; margin-top: 0; }

/* MENU: Other / Bridal をコンパクトに詰める */
.menu-compact.section { padding: 56px 0; }
.menu-compact .sec-head { margin-bottom: 28px; }
.menu-compact .otbl-hair, .menu-compact .otbl-grid { max-width: 720px; }
.menu-compact .otbl-hair { margin-bottom: 24px; }
.menu-compact .otbl-hair h3 { font-size: 18px; }
.menu-compact .otbl h3 { font-size: 14px; padding-bottom: 8px; margin-bottom: 8px; }
.menu-compact .otbl-grid { gap: 18px 36px; }
.menu-compact .price-row { font-size: 12px; padding: 2px 0; }
.menu-compact .price-cards { gap: 14px; margin-top: 22px; }
.menu-compact .price-card { padding: 0; }
.menu-compact .price-card__ttl { min-height: 0; font-size: 14px; padding-bottom: 8px; margin-bottom: 10px; }
.menu-compact .split { margin-bottom: 28px !important; }
.menu-compact .menu-bridal .split__media .ph { max-width: 240px; }
.menu-compact .bridal-lead { font-size: clamp(16px,2vw,20px); }

/* ============================================================
   Concept / feature blocks
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split .ph { aspect-ratio: 4/5; }
/* MENU の Bridal 写真は隣のテキストとバランスを取り小さめに */
.menu-bridal .split__media .ph { max-width: 300px; margin-inline: auto; aspect-ratio: 3/4; }
.split__body h2 { margin-bottom: 22px; }
.split__body p { color: var(--text-sub); font-size: 14.5px; line-height: 2.1; }

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

/* ---------- SALON: Hair gallery + amenities ---------- */
.hairgal__head { margin-bottom: 24px; }
.hairgal__head .sec-head__en { font-family: var(--serif-en); font-weight: 500; font-size: clamp(28px,4vw,40px); letter-spacing: .06em; line-height: 1.2; }
.hairgal__grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.hairgal__grid .ph { aspect-ratio: 3/4; }
.amenity4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.amenity { text-align: center; }
.amenity svg { width: 42px; height: 42px; color: var(--green-mid); margin: 0 auto 14px; display: block; }
.amenity h3 { font-size: 14px; letter-spacing: .04em; line-height: 1.5; margin-bottom: 10px; }
.amenity p { font-size: 12px; color: var(--text-sub); line-height: 1.85; }
.amenity-tag { margin-top: 44px; font-size: clamp(14px,2vw,16px); letter-spacing: .06em; }
.feature-col .ph { aspect-ratio: 4/3; margin-bottom: 18px; }
.feature-col h3 { font-size: 17px; letter-spacing: .06em; margin-bottom: 8px; }
.feature-col p { font-size: 13.5px; color: var(--text-sub); line-height: 1.9; }

/* ============================================================
   Blog
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px 28px; }
.blog-card .ph { aspect-ratio: 3/2; margin-bottom: 14px; }
.blog-card time { font-size: 11px; letter-spacing: .12em; color: var(--gold-dark); }
.blog-card .cat { font-size: 10px; letter-spacing: .1em; border: 1px solid var(--line); padding: 2px 10px; border-radius: 999px; margin-left: 10px; color: var(--text-sub); }
.blog-card h3 { font-size: 16px; line-height: 1.7; margin: 10px 0 6px; }
.blog-card p { font-size: 13px; color: var(--text-sub); }
.blog-pager { display: flex; justify-content: center; gap: 10px; margin-top: 56px; }
.blog-pager a { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; font-size: 13px; }
.blog-pager a.is-active { background: var(--green-mid); color: #fff; border-color: var(--green-mid); }

/* ============================================================
   Access
   ============================================================ */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 16px 8px; border-bottom: 1px solid var(--line); font-weight: 400; vertical-align: top; }
.info-table th { width: 130px; font-size: 13px; letter-spacing: .1em; color: var(--text-sub); }
.info-table td { font-size: 14px; }
.map-embed { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: 4px; filter: grayscale(.2); }
.access-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.access-photos .ph { aspect-ratio: 4/3; }

/* ============================================================
   Reservation page
   ============================================================ */
.resv-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 760px; margin-inline: auto; }
.resv-card { border-radius: 6px; padding: 40px 28px; color: #fff; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; min-height: 300px; }
.resv-card--line { background: var(--green); }
.resv-card--web  { background: var(--gold); }
.resv-card--tel  { background: var(--green-deep); }
.resv-card__icon { width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; }
.resv-card__icon svg { width: 30px; height: 30px; fill: #fff; }
.resv-card h3 { font-size: 19px; letter-spacing: .08em; }
.resv-card p { font-size: 13px; line-height: 1.9; opacity: .92; }
.resv-card .tel-num { font-family: var(--serif-en); font-size: 26px; letter-spacing: .04em; }
.resv-card .btn { margin-top: auto; background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.5); }
.resv-card .btn:hover { background: rgba(255,255,255,.28); }
.resv-notes { max-width: 720px; margin: 46px auto 0; }
.resv-notes h4 { text-align: center; font-size: 16px; letter-spacing: .1em; margin-bottom: 16px; }
.resv-notes ul { display: grid; gap: 8px; }
.resv-notes li { font-size: 13px; color: var(--text-sub); padding-left: 18px; position: relative; }
.resv-notes li::before { content: "・"; position: absolute; left: 0; color: var(--gold); }

/* Privacy policy / legal prose */
.legal { max-width: 760px; margin-inline: auto; }
.legal__lead { color: var(--text-sub); line-height: 2; margin-bottom: 44px; }
.legal__item { margin-bottom: 34px; }
.legal__item h2 { font-size: 17px; letter-spacing: .06em; padding-bottom: 10px; margin-bottom: 14px; border-bottom: 1px solid var(--line); }
.legal p { line-height: 2; color: var(--text); }
.legal ul { margin-top: 12px; display: grid; gap: 9px; }
.legal li { position: relative; padding-left: 18px; color: var(--text-sub); line-height: 1.9; }
.legal li::before { content: "・"; position: absolute; left: 0; color: var(--gold); }
.legal__contact { margin-top: 18px; padding: 22px 26px; background: var(--cream); border: 1px solid var(--line); border-radius: 4px; }
.legal__contact > div { display: grid; grid-template-columns: 8em 1fr; gap: 4px 16px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.legal__contact > div:last-child { border-bottom: none; }
.legal__contact dt { color: var(--text-sub); font-size: 13.5px; letter-spacing: .04em; }
.legal__contact dd { margin: 0; font-size: 14px; color: var(--text); }
.legal__contact dd a { color: var(--gold-dark); }
@media (max-width: 768px) {
  .legal__contact > div { grid-template-columns: 1fr; gap: 2px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-deep); color: #d9d3c6; }
/* footer top = 3カラム：左情報｜中央写真｜右営業時間ボックス */
.footer-top { display: grid; grid-template-columns: 1fr 1.15fr 1fr; align-items: center; gap: 44px; padding: 56px 6%; }
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo__img { width: 62px; height: 62px; filter: invert(1) brightness(1.6); }
.footer-logo__txt b { display: block; font-family: var(--serif-en); font-weight: 600; font-size: 32px; color: #f2ede4; letter-spacing: .03em; line-height: 1; }
.footer-logo__txt span { display: block; font-family: var(--serif-jp); font-size: 10px; letter-spacing: .26em; color: #b7b1a4; margin-top: 6px; }
.footer-brand .footer-info__addr { font-size: 13px; line-height: 1.9; color: #d0cabd; margin-top: 20px; }
.footer-brand .footer-tel { font-size: 13px; letter-spacing: .04em; margin-top: 8px; }
.footer-brand .footer-tel a { color: #d0cabd; }
.footer-brand .sns { display: flex; gap: 14px; margin-top: 20px; }
.footer-brand .sns a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-brand .sns svg { width: 18px; height: 18px; fill: #d9d3c6; }
.footer-photo { align-self: stretch; min-height: 200px; }
.footer-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 2px; }
.footer-hours dl { margin: 0; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: 4px; padding: 4px 22px; }
.footer-hours dl > div { display: grid; grid-template-columns: 4.2em 1fr; align-items: start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-hours dl > div:last-child { border-bottom: none; }
.footer-hours dt { color: #c4beb1; font-size: 13.5px; line-height: 1.95; letter-spacing: 0; text-align: justify; text-align-last: justify; }
.footer-hours dd { margin: 0 20px; padding-left: 18px; border-left: 1px solid rgba(255,255,255,.22); color: #e6e1d6; font-size: 13.5px; line-height: 1.95; letter-spacing: 0; white-space: nowrap; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 24px 20px; }
.footer-nav ul { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; margin-bottom: 16px; }
.footer-nav a { font-size: 12px; letter-spacing: .12em; color: #d0cabd; }
.footer-copy { font-size: 11px; letter-spacing: .12em; color: #9a9488; }
.to-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; background: var(--green-mid); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 90; }
.to-top.show { opacity: 1; visibility: visible; }
.to-top svg { width: 16px; height: 16px; }

/* ============================================================
   Fade-in on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE  (PC / SP only, breakpoint 768)
   ============================================================ */
/* nav: inline gnav on PC, hamburger drawer on SP only */
@media (min-width: 769px) {
  .nav-toggle { display: none; }
}
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  body { font-size: 14.5px; }
  .section { padding: 60px 0; }
  .wrap, .wrap-wide { width: calc(100% - 40px); }
  .header-logo img { width: 44px; height: 44px; }
  .header-logo__txt b { font-size: 20px; }
  .gnav { display: none; }
  .nav-toggle { display: flex; margin-left: auto; width: 46px; height: 46px; }

  .about-grid, .about3, .headspa-top__grid, .bridal-grid, .split, .access-grid { grid-template-columns: 1fr; gap: 32px; }
  .headspa-top .headspa-media { grid-column: 1; }
  .price-cards, .otbl-grid { grid-template-columns: 1fr; }
  .reserve-trio { grid-template-columns: 1fr; }
  .features3, .blog-grid, .resv-cards { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .other-bridal { grid-template-columns: 1fr; gap: 40px; }
  .hairgal__grid { grid-template-columns: repeat(2,1fr); }
  .amenity4 { grid-template-columns: repeat(2,1fr); gap: 24px 20px; }
  .menu-cards { grid-template-columns: repeat(2,1fr); }
  .other-icons { grid-template-columns: repeat(3,1fr); }
  .bridal-grid { grid-template-columns: 1fr; }
  .bridal-media { max-width: 260px; margin-inline: auto; }
  .bridal-note { grid-template-columns: 1fr; text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; padding: 44px 24px 32px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand .sns { justify-content: center; }
  .footer-photo { width: 100%; height: 200px; min-height: 0; }
  .footer-hours dl { display: inline-block; text-align: left; }
  .footer-nav ul { gap: 8px 16px; }
  .menu-item { grid-template-columns: 64px 1fr; gap: 16px; }
  .menu-item__icon { width: 60px; height: 60px; }
  .access-photos { grid-template-columns: 1fr 1fr; }
  .reserve-trio .btn { min-height: 64px; }
}
