@charset "UTF-8";
/* =============================================================
   黄土よもぎ蒸しサロン 結 -yui-
   くすみカラー / 明朝見出し / 手描き文字アクセント
   ライトテーマ固定（閲覧環境を問わず同じ見え方にするため）
   ============================================================= */

:root {
  --sage:        #8ba07e;
  --sage-deep:   #67795b;
  --sage-soft:   #cfdac2;
  --sage-bg:     #eef1e9;
  --ivory:       #f6f2e9;
  --paper:       #fbf9f3;
  --ink:         #4b4a44;
  --ink-soft:    #837f74;
  --navy:        #3f4b58;
  --gold:        #b09a6a;
  --line:        #e4ddcd;
  --shadow:      0 18px 44px -24px rgba(74, 72, 60, .38);
  --shadow-sm:   0 8px 22px -14px rgba(74, 72, 60, .32);
  --radius:      18px;
  --wrap:        1080px;

  --font-mincho: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-body:   "Zen Kaku Gothic New", "Hiragino Sans", "Noto Sans JP", sans-serif;
  --font-hand:   "Yomogi", "Klee One", "Zen Kaku Gothic New", sans-serif;
  --font-hand2:  "Klee One", "Yomogi", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: .02em;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
a:hover { opacity: .82; }

h1, h2, h3 {
  font-family: var(--font-mincho);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 40px, 720px); margin-inline: auto; }
.text-center { text-align: center; }
.pc { display: inline; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- 手描きラベル ---------- */
.hand-label {
  display: inline-block;
  font-family: var(--font-hand);
  color: var(--sage-deep);
  font-size: .98rem;
  letter-spacing: .06em;
  margin-bottom: .5em;
  position: relative;
  padding-left: 34px;
}
.hand-label::before {
  content: "";
  position: absolute; left: 0; top: .68em;
  width: 26px; height: 2px;
  background: var(--gold);
  transform: rotate(-3deg);
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  line-height: 1.4;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn .icon { width: 1.15em; height: 1.15em; flex: none; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

.btn-line { background: #06C755; color: #fff; box-shadow: var(--shadow-sm); }
.btn-line:hover { box-shadow: 0 14px 30px -14px rgba(6,199,85,.6); }
.btn-sage { background: var(--sage); color: #fff; box-shadow: var(--shadow-sm); }
.btn-sage:hover { background: var(--sage-deep); }
.btn-outline { background: transparent; border-color: var(--sage); color: var(--sage-deep); }
.btn-outline:hover { background: var(--sage-bg); }
.btn-ghost { background: transparent; color: var(--sage-deep); padding: 10px 16px; }
.btn-ghost .icon { transition: transform .2s; }
.btn-ghost:hover .icon { transform: translateX(4px); }
.danger { color: #b45; }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 243, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s, box-shadow .25s;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(74,72,60,.5);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-jp { font-family: var(--font-mincho); font-size: 1.14rem; color: var(--navy); letter-spacing: .08em; }
.brand-yui { font-size: .8rem; color: var(--sage-deep); }
.brand-sub { font-size: .62rem; color: var(--ink-soft); letter-spacing: .1em; white-space: nowrap; }
.brand { flex: none; }

.main-nav { display: flex; align-items: center; gap: 20px; }
.main-nav a { font-size: .88rem; color: var(--ink); position: relative; white-space: nowrap; }
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--sage); transition: width .25s;
}
.main-nav a:not(.btn):hover::after,
.main-nav a.is-current::after { width: 100%; }
.nav-cta { padding: 10px 20px; font-size: .86rem; }

.nav-toggle { display: none; width: 42px; height: 42px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px auto; transition: .25s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- ヒーロー ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(246,242,233,.94) 0%, rgba(246,242,233,.78) 42%, rgba(246,242,233,.22) 78%, rgba(246,242,233,.05) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 90px 0; max-width: 660px; }
.hero-eyebrow {
  font-family: var(--font-hand); color: var(--sage-deep);
  font-size: 1rem; letter-spacing: .08em; margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-hand);
  font-weight: 400;
  font-size: clamp(1.9rem, 5.4vw, 2.9rem);
  line-height: 1.9;
  letter-spacing: .04em;
  margin-bottom: 26px;
  color: var(--navy);
}
.hero-title span { display: block; }
.hero-line1 { font-size: .84em; color: var(--ink); }
.hero-line2 { color: var(--sage-deep); }
.hero-lead {
  font-family: var(--font-hand2);
  font-size: 1.04rem;
  line-height: 2.05;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 30em;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 20px; }
.hero-facts li { display: flex; align-items: center; gap: 7px; font-size: .88rem; color: var(--ink-soft); }
.hero-facts .icon { width: 1.1em; height: 1.1em; color: var(--sage); }

/* ---------- セクション共通 ---------- */
.section { padding: clamp(64px, 10vw, 108px) 0; }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.55rem, 4.4vw, 2.15rem); margin-bottom: .5em; }
.section-lead { color: var(--ink-soft); font-size: .98rem; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head-row .section-head { margin-bottom: 0; }

.wave { display: block; width: 100%; height: 54px; margin-bottom: -1px; }

/* ---------- イントロ ---------- */
.intro { background: var(--sage-bg); text-align: center; }
.intro-inner { max-width: 680px; }
.intro-text { font-family: var(--font-hand2); font-size: 1.12rem; line-height: 2.2; color: var(--navy); margin: 16px 0 20px; }
.intro-sign { font-family: var(--font-mincho); color: var(--sage-deep); letter-spacing: .1em; }
.tnum { border-bottom: 2px solid var(--gold); padding-bottom: 1px; }

/* ---------- よもぎ蒸しとは ---------- */
.about { background: var(--paper); }
.about-figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 48px; }
.about-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.about-figure-note {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(63,75,88,.72));
  color: #fff; font-size: .82rem; padding: 40px 24px 16px;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px; box-shadow: var(--shadow-sm);
}
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--sage-bg); color: var(--sage-deep); margin-bottom: 16px;
}
.feature-icon .icon { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.14rem; margin-bottom: .5em; }
.feature-card p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- こだわり ---------- */
.concept { background: var(--sage-bg); }
.concept-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.concept-media { position: relative; }
.concept-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4 / 3.2; object-fit: cover; width: 100%; }
.sprig { position: absolute; color: var(--sage); opacity: .5; width: 120px; }
.sprig-tl { top: -46px; left: -40px; transform: rotate(-18deg); }
.concept-body h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: .7em; }
.concept-body p { margin-bottom: 1em; font-size: .96rem; }
.concept-points { list-style: none; margin: 22px 0; }
.concept-points li { display: flex; gap: 10px; align-items: flex-start; padding: 7px 0; font-size: .92rem; }
.concept-points .icon { width: 1.2em; height: 1.2em; color: var(--sage); flex: none; margin-top: .25em; }

/* ---------- メニュー ---------- */
.menu-preview { background: var(--paper); }
.menu-preview .section-head { margin-inline: auto; text-align: center; }
.menu-preview .section-head .hand-label { padding-left: 0; }
.menu-preview .section-head .hand-label::before { display: none; }

.trial-banner {
  max-width: 720px; margin: 0 auto 22px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 20px;
  background: var(--navy); color: #f3efe4; border-radius: var(--radius);
  padding: 20px 28px; text-align: center; box-shadow: var(--shadow-sm);
}
.trial-banner--wide { max-width: 860px; }
.trial-label {
  font-family: var(--font-hand); background: var(--gold); color: #fff;
  padding: 3px 16px; border-radius: 999px; font-size: .9rem;
}
.trial-text { font-size: .95rem; color: #e7e2d5; }
.trial-time { font-family: var(--font-mincho); }
.trial-price { font-family: var(--font-mincho); font-size: 1.7rem; color: #fff; display: flex; align-items: baseline; gap: 12px; }
.trial-was { font-family: var(--font-body); font-size: .8rem; color: #b3ad9d; text-decoration: line-through; }

.menu-variations { max-width: 860px; margin: 0 auto 30px; background: var(--sage-bg); border-radius: var(--radius); padding: 30px 32px; }
.menu-variations h3 { font-size: 1.15rem; margin-bottom: .4em; }
.menu-variations-lead { font-size: .88rem; color: var(--ink-soft); margin-bottom: 18px; }
.variation-list { list-style: none; display: grid; gap: 12px; }
.variation-list li { display: flex; flex-direction: column; gap: 2px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.variation-list li:last-child { border-bottom: none; }
.variation-name { font-family: var(--font-mincho); color: var(--navy); font-size: 1rem; }
.variation-desc { font-size: .84rem; color: var(--ink-soft); }

.salon-hero-photo { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.salon-hero-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 16 / 10; object-fit: cover; }
.access-address-note { font-size: .8rem; color: var(--ink-soft); }

.course-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); max-width: 720px; margin: 0 auto 26px;
}
.course-card--wide { max-width: 860px; }
.course-card-head { background: var(--sage-bg); padding: 32px 34px; border-bottom: 1px solid var(--line); }
.course-badge {
  display: inline-block; font-family: var(--font-hand); font-size: .82rem;
  background: var(--sage); color: #fff; padding: 3px 14px; border-radius: 999px; margin-bottom: 12px;
}
.course-card-head h2, .course-card-head h3 { font-size: 1.4rem; margin-bottom: .5em; }
.course-flow { font-size: .84rem; color: var(--sage-deep); letter-spacing: .04em; }
.course-time { display: inline-flex; align-items: center; gap: 6px; font-size: .84rem; color: var(--ink-soft); margin-top: 10px; }
.course-time .icon { width: 1.1em; height: 1.1em; }
.course-card-body { padding: 30px 34px; }
.course-desc { font-size: .92rem; color: var(--ink-soft); margin-bottom: 22px; }
.course-desc strong { color: var(--ink); }

.care-choices { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 22px; }
.care-choices li { display: flex; align-items: center; gap: 7px; font-size: .92rem; }
.care-choices .icon { width: 1.1em; height: 1.1em; color: var(--sage); }

.price-rows { display: grid; gap: 12px; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.price-row:last-child { border-bottom: none; }
.price-name { font-size: .95rem; color: var(--navy); }
.price-val { font-family: var(--font-mincho); font-size: 1.3rem; color: var(--sage-deep); }
.price-val small { display: block; font-family: var(--font-body); font-size: .72rem; color: var(--ink-soft); text-align: right; }

.menu-preview-add, .menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 860px; margin: 0 auto 30px; }
.add-item, .menu-block {
  background: var(--sage-bg); border-radius: 14px; padding: 24px;
}
.add-label, .menu-block h3 {
  font-family: var(--font-hand); color: var(--sage-deep); font-size: .95rem; display: block; margin-bottom: 8px;
}
.menu-block h3 { font-family: var(--font-mincho); font-size: 1.1rem; }
.add-item p, .menu-block p { font-size: .9rem; color: var(--ink); margin-bottom: 8px; }
.add-price, .menu-block-price { font-family: var(--font-mincho); color: var(--navy); font-size: 1.05rem; }
.tax-note { font-size: .8rem; color: var(--ink-soft); margin-top: 14px; }

/* ---------- メニューページ ---------- */
.page-hero { background: var(--sage-bg); padding: 64px 0 56px; text-align: center; }
.page-hero h1 { font-size: clamp(1.7rem, 5vw, 2.4rem); margin: .3em 0; }
.page-hero p { color: var(--ink-soft); font-size: .95rem; }
.page-hero .hand-label { padding-left: 0; }
.page-hero .hand-label::before { display: none; }

.price-table { width: 100%; border-collapse: collapse; }
.price-table th { text-align: left; font-weight: 500; color: var(--navy); padding: 16px 0; width: 42%; vertical-align: top; }
.price-table td { text-align: right; font-family: var(--font-mincho); font-size: 1.35rem; color: var(--sage-deep); padding: 16px 0; border-bottom: 1px dashed var(--line); }
.price-sub { display: block; font-family: var(--font-body); font-size: .72rem; color: var(--ink-soft); }

.menu-notes { max-width: 860px; margin: 40px auto 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.menu-notes h3 { font-size: 1.15rem; margin-bottom: 16px; }
.menu-notes ul { list-style: none; display: grid; gap: 14px; }
.menu-notes li { display: flex; gap: 12px; font-size: .92rem; }
.menu-note-ic { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--sage-bg); color: var(--sage-deep); display: inline-flex; align-items: center; justify-content: center; }
.menu-note-ic .icon { width: 18px; height: 18px; }
.menu-cta { margin-top: 40px; }

/* ---------- ご利用の流れ ---------- */
.flow { background: var(--paper); }
.flow-steps { list-style: none; counter-reset: none; max-width: 720px; margin-inline: auto; position: relative; }
.flow-steps::before {
  content: ""; position: absolute; left: 26px; top: 20px; bottom: 20px; width: 2px;
  background: repeating-linear-gradient(var(--sage-soft) 0 6px, transparent 6px 12px);
}
.flow-step { display: flex; gap: 22px; padding: 18px 0; position: relative; }
.flow-num {
  flex: none; width: 54px; height: 54px; border-radius: 50%;
  background: #fff; border: 2px solid var(--sage); color: var(--sage-deep);
  font-family: var(--font-mincho); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 1;
}
.flow-step h3 { font-size: 1.12rem; margin-bottom: .3em; }
.flow-step p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- ギャラリー帯 ---------- */
.gallery-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: var(--paper); }
.gallery-band figure { margin: 0; overflow: hidden; }
.gallery-band img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .6s ease; }
.gallery-band figure:hover img { transform: scale(1.04); }
@media (max-width: 720px) {
  .gallery-band { grid-template-columns: 1fr 1fr; }
  .gallery-band figure:first-child { grid-column: 1 / -1; }
}

/* ---------- お客様の声 ---------- */
.voice { background: var(--sage-bg); }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.voice-card {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow-sm); position: relative;
}
.voice-card::before {
  content: "\201C"; font-family: var(--font-mincho); font-size: 3.4rem; color: var(--sage-soft);
  position: absolute; top: 6px; left: 16px; line-height: 1;
}
.voice-card blockquote { font-size: .92rem; color: var(--ink); margin: 18px 0 14px; position: relative; z-index: 1; }
.voice-card figcaption { font-size: .82rem; color: var(--sage-deep); font-family: var(--font-hand); }
.voice-card figcaption span { color: var(--ink-soft); font-family: var(--font-body); }
.voice-disclaimer { font-size: .78rem; color: var(--ink-soft); margin-top: 24px; text-align: center; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); }
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative;
  font-family: var(--font-mincho); font-size: 1.02rem; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--sage); border-bottom: 2px solid var(--sage);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-a { padding: 0 0 22px; }
.faq-a p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- お知らせ ---------- */
.news { background: var(--sage-bg); }
.news-list { list-style: none; max-width: 800px; }
.news-item { border-bottom: 1px solid var(--line); }
.news-item a { display: flex; align-items: center; gap: 16px; padding: 18px 4px; flex-wrap: wrap; }
.news-item time { font-family: var(--font-mincho); color: var(--sage-deep); font-size: .88rem; flex: none; }
.news-tag { font-size: .72rem; background: #fff; border: 1px solid var(--sage-soft); color: var(--sage-deep); padding: 2px 10px; border-radius: 999px; }
.news-ttl { font-size: .95rem; color: var(--ink); flex: 1 1 auto; }
.news-item a:hover .news-ttl { color: var(--sage-deep); }
.news-empty { color: var(--ink-soft); font-size: .92rem; padding: 20px 0; }

/* ---------- Instagram ---------- */
.instagram { background: var(--paper); text-align: center; }
.instagram .section-head { margin-inline: auto; }
.instagram .section-head .hand-label { padding-left: 0; }
.instagram .section-head .hand-label::before { display: none; }
.instagram-card {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  max-width: 420px; margin: 8px auto 0; padding: 34px 44px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.instagram-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); opacity: 1; }
.instagram-card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--sage-bg); color: var(--sage-deep);
  display: inline-flex; align-items: center; justify-content: center;
}
.instagram-card-icon .icon { width: 26px; height: 26px; }
.instagram-card-user { font-family: var(--font-mincho); font-size: 1.2rem; color: var(--navy); }
.instagram-card-cta { display: inline-flex; align-items: center; gap: 6px; font-size: .86rem; color: var(--sage-deep); }
.instagram-card-cta .icon { width: 1em; height: 1em; }

/* ---------- 予約カレンダー ---------- */
.calendar { background: var(--paper); }
.calendar .section-head { margin-inline: auto; text-align: center; }
.calendar .section-head .hand-label { padding-left: 0; }
.calendar .section-head .hand-label::before { display: none; }
/* カレンダー表示切り替えタブ */
.calendar-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; }
.calendar-tab {
  font-family: var(--font-body); font-size: .85rem; color: var(--sage-deep);
  background: #fff; border: 1.5px solid var(--sage-soft); border-radius: 999px;
  padding: 8px 20px; cursor: pointer; transition: background .2s, color .2s;
}
.calendar-tab.is-active { background: var(--sage); border-color: var(--sage); color: #fff; }

/* Googleカレンダー埋め込み。埋め込みURLに表示時間帯を指定するパラメータが無いため、
   既定は予定リスト（AGENDA）表示。週表示はクリップしてコアの営業時間帯（おおよそ午前7時〜）を上端に寄せている。
   --cal-shift はGoogle側のレイアウト変更時に微調整するためのつまみ。 */
.calendar-embed {
  --cal-clip-h: 580px;
  --cal-iframe-h: 1600px;
  --cal-shift: 500px;
  max-width: 820px; margin: 0 auto 16px;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff;
}
.calendar-embed-clip { overflow: hidden; }
.calendar-embed iframe { display: block; width: 100%; border: 0; }

.calendar-embed[data-cal-mode="AGENDA"] .calendar-embed-clip { height: 540px; }
.calendar-embed[data-cal-mode="AGENDA"] iframe { height: 540px; margin-top: 0; }

.calendar-embed[data-cal-mode="WEEK"] .calendar-embed-clip { height: var(--cal-clip-h); }
.calendar-embed[data-cal-mode="WEEK"] iframe { height: var(--cal-iframe-h); margin-top: calc(var(--cal-shift) * -1); }

.calendar-note { max-width: 640px; margin: 0 auto 24px; text-align: center; font-size: .82rem; color: var(--ink-soft); }
@media (max-width: 720px) {
  .calendar-embed { --cal-clip-h: 460px; --cal-shift: 470px; }
  .calendar-embed[data-cal-mode="AGENDA"] .calendar-embed-clip,
  .calendar-embed[data-cal-mode="AGENDA"] iframe { height: 460px; }
}

/* ---------- アクセス ---------- */
.access { background: var(--sage-bg); }
.access-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 36px; margin-bottom: 40px; }
.access-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: 340px; }
.access-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
.access-info { align-self: center; }
.access-kicker { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-hand); color: var(--sage-deep); font-size: .88rem; margin-bottom: 10px; }
.access-kicker .icon { width: 1.1em; height: 1.1em; }
.access-info h3 { font-size: 1.4rem; margin-bottom: .3em; }
.access-address { font-size: .95rem; color: var(--ink); margin-bottom: 16px; }
.access-notes { list-style: none; display: grid; gap: 8px; margin-bottom: 20px; }
.access-notes li { display: flex; gap: 9px; align-items: flex-start; font-size: .88rem; color: var(--ink-soft); }
.access-notes .icon { width: 1.1em; height: 1.1em; color: var(--sage); flex: none; margin-top: .3em; }

.hours-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); max-width: 720px; }
.hours-head { text-align: center; margin-bottom: 22px; }
.hours-head .hand-label { padding-left: 0; }
.hours-head .hand-label::before { display: none; }
.hours-head h3 { font-size: 1.3rem; }
.hours-body { display: grid; gap: 4px; }
.hours-row { display: flex; gap: 18px; padding: 12px 0; border-bottom: 1px dashed var(--line); align-items: center; }
.hours-label { flex: none; width: 92px; font-size: .86rem; color: var(--ink-soft); }
.hours-value { font-family: var(--font-mincho); color: var(--navy); font-size: 1.05rem; }
.hours-slots { display: flex; flex-wrap: wrap; gap: 10px; }
.hours-slots .slot {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--sage-bg); color: var(--sage-deep);
  font-family: var(--font-mincho); font-size: 1rem; padding: 6px 14px; border-radius: 999px;
}
.hours-slots .icon { width: 1em; height: 1em; }
.hours-note { font-size: .82rem; color: var(--ink-soft); margin-top: 16px; }

/* ---------- クロージングCTA ---------- */
.closing-cta { background: var(--navy); color: #f3efe4; text-align: center; padding: clamp(60px, 9vw, 96px) 0; position: relative; overflow: hidden; }
.closing-cta .hand-label { color: var(--sage-soft); padding-left: 0; }
.closing-cta .hand-label::before { display: none; }
.closing-cta h2 { color: #fff; font-size: clamp(1.5rem, 4.4vw, 2.1rem); margin-bottom: .6em; }
.closing-cta p { font-size: .95rem; color: #d7d2c4; margin-bottom: 28px; }
.closing-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.closing-cta .btn-outline { border-color: rgba(255,255,255,.5); color: #fff; }
.closing-cta .btn-outline:hover { background: rgba(255,255,255,.1); }

/* ---------- フッター ---------- */
.site-footer { background: var(--ivory); border-top: 1px solid var(--line); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand img { border-radius: 50%; margin-bottom: 14px; }
.footer-name { font-family: var(--font-mincho); color: var(--navy); line-height: 1.5; margin-bottom: 12px; }
.footer-name strong { font-size: 1.15rem; }
.footer-addr { font-size: .82rem; color: var(--ink-soft); margin-bottom: 14px; }
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-social a { display: inline-flex; align-items: center; gap: 7px; font-size: .84rem; color: var(--sage-deep); }
.footer-social .icon { width: 1.1em; height: 1.1em; }
.footer-col h3 { font-family: var(--font-hand); font-size: .92rem; color: var(--sage-deep); margin-bottom: 12px; }
.footer-col a { display: block; font-size: .84rem; color: var(--ink-soft); padding: 5px 0; }
.footer-col a:hover { color: var(--sage-deep); }
.footer-bottom { display: flex; justify-content: space-between; padding: 24px 0; margin-top: 40px; border-top: 1px solid var(--line); font-size: .76rem; color: var(--ink-soft); }

/* ---------- フローティングLINE ---------- */
.floating-line {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: inline-flex; align-items: center; gap: 8px;
  background: #06C755; color: #fff; padding: 12px 20px; border-radius: 999px;
  box-shadow: 0 12px 30px -10px rgba(6,199,85,.6); font-size: .88rem; font-weight: 500;
}
.floating-line .icon { width: 1.2em; height: 1.2em; }
.floating-line:hover { opacity: 1; transform: translateY(-2px); }

/* ---------- プロフィール ---------- */
.profile-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: start; }
.profile-media { position: relative; }
.profile-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.profile-caption { display: block; text-align: center; margin-top: 12px; font-family: var(--font-mincho); color: var(--sage-deep); letter-spacing: .08em; }
.profile-body h2 { font-size: clamp(1.4rem, 3.6vw, 1.9rem); margin-bottom: .7em; }
.profile-body p { margin-bottom: 1em; font-size: .96rem; }
.profile-sign { font-family: var(--font-mincho); color: var(--sage-deep); letter-spacing: .08em; margin-top: 20px; }

.salon-info { background: var(--sage-bg); }
.info-table { width: 100%; border-collapse: collapse; max-width: 760px; }
.info-table th, .info-table td { text-align: left; padding: 16px 12px; border-bottom: 1px solid var(--line); font-size: .92rem; vertical-align: top; }
.info-table th { width: 34%; font-weight: 500; color: var(--navy); font-family: var(--font-mincho); }
.info-table td { color: var(--ink); }

/* ---------- 規約ページ ---------- */
.legal-body h2 { font-size: 1.15rem; margin: 32px 0 10px; color: var(--navy); }
.legal-body p, .legal-body li { font-size: .92rem; color: var(--ink); margin-bottom: 10px; }
.legal-body ul { padding-left: 1.3em; margin-bottom: 14px; }
.legal-small { font-size: .82rem; color: var(--ink-soft); }
.legal-date { margin-top: 32px; font-size: .84rem; color: var(--ink-soft); }

/* ---------- 記事詳細 ---------- */
.post-detail { max-width: 720px; margin-inline: auto; }
.post-meta { display: flex; gap: 12px; align-items: center; margin: 10px 0; }
.post-meta time { font-family: var(--font-mincho); color: var(--sage-deep); font-size: .88rem; }
.post-title { font-size: clamp(1.4rem, 4vw, 1.9rem); margin-bottom: 20px; }
.post-thumb { width: 100%; border-radius: var(--radius); margin-bottom: 24px; }
.post-content p { margin-bottom: 1.1em; font-size: .96rem; }
.post-content h2 { font-size: 1.2rem; margin: 1.4em 0 .5em; }
.post-content ul, .post-content ol { padding-left: 1.4em; margin-bottom: 1.1em; }
.post-content a { color: var(--sage-deep); text-decoration: underline; }

/* ---------- 管理画面 ---------- */
.admin-body { background: #f2f0ea; }
.admin-login { max-width: 380px; margin: 10vh auto; background: #fff; padding: 40px 34px; border-radius: 16px; box-shadow: var(--shadow); text-align: center; }
.admin-login h1 { font-size: 1.3rem; margin-bottom: .2em; }
.admin-login .sub { font-size: .82rem; color: var(--ink-soft); margin-bottom: 20px; }
.admin-shell { display: grid; grid-template-columns: 220px 1fr; min-height: 100vh; }
.admin-side { background: var(--navy); color: #d8d3c6; padding: 26px 18px; display: flex; flex-direction: column; gap: 4px; }
.admin-brand { font-family: var(--font-mincho); font-size: 1.05rem; color: #fff; margin-bottom: 16px; }
.admin-side a { padding: 9px 12px; border-radius: 8px; font-size: .86rem; color: #d8d3c6; }
.admin-side a:hover, .admin-side a.active { background: rgba(255,255,255,.12); color: #fff; }
.admin-main { padding: 34px; }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 14px; }
.admin-toolbar h1 { font-size: 1.4rem; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-table th, .admin-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: .88rem; }
.admin-table thead th { background: var(--sage-bg); color: var(--navy); }
.status-badge { font-size: .74rem; padding: 3px 10px; border-radius: 999px; }
.status-badge.published { background: #e2efe0; color: #4a7a45; }
.status-badge.draft { background: #eee; color: #888; }
.row-actions { display: flex; gap: 10px; }
.row-actions a { font-size: .82rem; color: var(--sage-deep); }
.admin-form { background: #fff; border-radius: 12px; padding: 28px; box-shadow: var(--shadow-sm); max-width: 760px; }
.admin-form-row { display: grid; grid-template-columns: 1fr 200px; gap: 18px; }
.admin-form-actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 6px; }
.field input[type=text], .field input[type=password], .field input[type=date], .field textarea, .field select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-body); font-size: .92rem; background: #fdfcf9; color: var(--ink);
}
.error-box { background: #fdeceb; color: #b23c3c; padding: 10px 14px; border-radius: 8px; font-size: .85rem; margin-bottom: 16px; }
.success-box { background: #e6f2e4; color: #4a7a45; padding: 10px 14px; border-radius: 8px; font-size: .85rem; margin-bottom: 16px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
  .feature-grid, .voice-grid { grid-template-columns: 1fr; }
  .concept-grid, .profile-grid, .access-grid { grid-template-columns: 1fr; gap: 32px; }
  .menu-preview-add, .menu-cols, .admin-form-row { grid-template-columns: 1fr; }
  .sprig-tl { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1000px) {
  .header-inner { height: 64px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed; inset: 64px 0 0; background: var(--ivory);
    flex-direction: column; align-items: stretch; gap: 0; padding: 20px 24px 40px;
    transform: translateX(100%); transition: transform .3s; overflow-y: auto;
  }
  .main-nav.open { transform: none; }
  .main-nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .main-nav a:not(.btn)::after { display: none; }
  .nav-cta { margin-top: 18px; border: none; justify-content: center; }
  .hero { min-height: 88vh; }
  .hero::after { background: linear-gradient(180deg, rgba(246,242,233,.9) 0%, rgba(246,242,233,.8) 55%, rgba(246,242,233,.62) 100%); }
  .hero-inner { padding: 60px 0; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { flex-direction: row; flex-wrap: wrap; }
  .admin-main { padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .floating-line span { display: none; }
  .floating-line { padding: 14px; border-radius: 50%; }
  .price-table th { width: 50%; }
}

/* =============================================================
   2026 visual refinement — Instagram botanical editorial layer
   ============================================================= */

body {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 15% 12%, rgba(139,160,126,.06) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 55%, rgba(176,154,106,.045) 0 1px, transparent 1.5px);
  background-size: 22px 22px, 29px 29px;
}

.page-botanical {
  position: fixed;
  z-index: 35;
  top: 18vh;
  width: clamp(150px, 17vw, 300px);
  height: min(70vh, 720px);
  background: url('/assets/img/botanical-dried-side.png') right center / contain no-repeat;
  opacity: .2;
  pointer-events: none;
  transform-origin: bottom center;
  filter: saturate(.38) sepia(.08) contrast(.92);
  animation: botanical-sway 11s ease-in-out infinite alternate;
}
.page-botanical-left { left: -5.5vw; transform: scaleX(-1) rotate(-1.2deg); }
.page-botanical-right { right: -5.5vw; animation-delay: -5.5s; }

@keyframes botanical-sway {
  from { translate: 0 0; rotate: -.35deg; }
  to { translate: 0 -10px; rotate: .55deg; }
}

.site-header { z-index: 110; }
main, .site-footer { position: relative; z-index: 20; }

.hand-label {
  letter-spacing: .11em;
  transform: rotate(-1deg);
}
.hand-label::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 18%, var(--gold) 82%, transparent);
}

.gold-sprig-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 92px;
  height: 16px;
  margin: 4px 0 15px;
  color: var(--gold);
}
.gold-sprig-divider::before,
.gold-sprig-divider::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transform: rotate(-5deg);
  box-shadow: 6px -3px 0 -0.25px currentColor;
}
.gold-sprig-divider::after { transform: scaleX(-1) rotate(-5deg); }
.gold-sprig-divider i {
  width: 5px;
  height: 5px;
  border: 1px solid currentColor;
  border-radius: 70% 30% 70% 30%;
  transform: rotate(45deg);
}
.text-center .gold-sprig-divider,
.menu-preview .gold-sprig-divider,
.calendar .gold-sprig-divider,
.instagram .gold-sprig-divider { margin-inline: auto; }

.section-head { position: relative; }
.section-head h2 { letter-spacing: .08em; }
.section-head h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: .5em;
  background: var(--gold);
  transform: rotate(-2deg);
}
.section-head .gold-sprig-divider + .section-lead { margin-top: -5px; }
.menu-preview .section-head h2::after,
.calendar .section-head h2::after,
.instagram .section-head h2::after { display: none; }

/* Hero — airy arch, real salon photo and botanical corners */
.hero {
  min-height: min(860px, calc(100vh - 68px));
  background: var(--ivory);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 4% 2.5%;
  border: 1px solid rgba(176,154,106,.32);
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  background:
    linear-gradient(90deg, rgba(246,242,233,.99) 0%, rgba(246,242,233,.97) 36%, rgba(246,242,233,.68) 51%, rgba(246,242,233,.05) 70%),
    linear-gradient(180deg, transparent 70%, rgba(63,75,88,.12));
}
.hero-media {
  inset: 34px 4vw 50px 46%;
  border: 1px solid rgba(176,154,106,.65);
  border-radius: 48% 48% 24px 24px / 34% 34% 24px 24px;
  padding: 9px;
  background: rgba(251,249,243,.8);
  overflow: hidden;
  box-shadow: 0 30px 70px -36px rgba(63,75,88,.5);
}
.hero-media img {
  border-radius: inherit;
  object-position: 54% center;
  filter: saturate(.82) contrast(.92) brightness(1.04);
}
.hero-photo-caption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  color: rgba(255,255,255,.88);
  font-family: var(--font-mincho);
  font-size: .67rem;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}
.hero-inner { max-width: var(--wrap); padding: 95px 0 84px; }
.hero-inner > * { max-width: 590px; }
.hero-eyebrow {
  display: inline-block;
  padding: 7px 14px 6px;
  border: 1px solid rgba(139,160,126,.5);
  border-radius: 58% 42% 52% 48% / 47% 53% 45% 55%;
  background: rgba(251,249,243,.58);
  transform: rotate(-1deg);
}
.hero-title {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.75;
  text-shadow: 0 1px rgba(255,255,255,.7);
}
.hero-line2 {
  display: inline !important;
  padding-bottom: .13em;
  background: linear-gradient(transparent 78%, rgba(176,154,106,.22) 78%);
}
.hero .gold-sprig-divider { justify-content: flex-start; margin-bottom: 20px; }
.hero-botanical {
  position: absolute;
  z-index: 3;
  width: 125px;
  color: var(--navy);
  opacity: .23;
  pointer-events: none;
}
.hero-botanical svg { width: 100%; height: auto; }
.hero-botanical-left { left: 1.2%; bottom: 0; transform: rotate(-20deg); }
.hero-botanical-right { right: 1%; top: 0; transform: rotate(158deg); }
.hero-seal {
  position: absolute;
  z-index: 4;
  right: calc(4vw - 9px);
  bottom: 28px;
  width: 92px;
  border-radius: 50%;
  box-shadow: 0 12px 30px -15px rgba(63,75,88,.55);
}
.hero-seal img { border-radius: 50%; }
.hero-facts li {
  padding: 5px 10px;
  border-bottom: 1px dashed rgba(139,160,126,.5);
  color: var(--navy);
}

/* Welcome arch */
.intro { position: relative; background: linear-gradient(180deg, #e9eee4, var(--sage-bg)); overflow: hidden; }
.intro-inner { position: relative; padding: 42px clamp(18px, 6vw, 68px) 30px; }
.intro-arch {
  position: absolute;
  inset: 0 8% auto;
  height: 120px;
  border: 1px solid rgba(63,75,88,.19);
  border-bottom: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}
.intro-text { position: relative; }

/* About — editorial portrait photo + stacked illustrated benefits */
.about .wrap {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  grid-template-rows: auto 1fr;
  gap: 30px 58px;
  align-items: start;
}
.about .section-head { grid-column: 2; margin-bottom: 0; }
.about-figure { grid-column: 1; grid-row: 1 / 3; margin: 0; border-radius: 46% 46% 20px 20px / 22% 22% 20px 20px; padding: 8px; background: var(--ivory); border: 1px solid rgba(176,154,106,.5); }
.about-figure img { aspect-ratio: 4 / 5.25; border-radius: inherit; object-position: 50% 62%; filter: saturate(.82) contrast(.92) brightness(1.04); }
.about-figure-note { left: 8px; right: 8px; bottom: 8px; border-radius: 0 0 15px 15px; padding: 70px 24px 20px; }
.feature-grid { grid-column: 2; grid-template-columns: 1fr; gap: 12px; }
.feature-card {
  display: grid;
  grid-template-columns: 94px 1fr;
  column-gap: 20px;
  align-items: center;
  min-height: 126px;
  padding: 18px 24px;
  border-color: rgba(176,154,106,.32);
  border-radius: 4px 22px 4px 22px;
  box-shadow: 0 16px 38px -29px rgba(63,75,88,.5);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(139,160,126,.14);
  border-radius: inherit;
  pointer-events: none;
}
.feature-icon-generated {
  grid-row: 1 / 3;
  width: 88px;
  height: 88px;
  margin: 0;
  background: transparent;
  border-radius: 0;
}
.feature-icon-generated img { width: 100%; height: 100%; object-fit: contain; filter: saturate(.56) sepia(.04); }
.feature-card h3 { align-self: end; }
.feature-card p { align-self: start; }

.variation-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
}
.variation-list li > img { width: 68px; height: 68px; object-fit: contain; filter: saturate(.56) sepia(.04); }
.variation-list li > span { display: flex; flex-direction: column; gap: 2px; }

/* Treatment and price cards */
.concept { position: relative; }
.concept-media::after {
  content: "";
  position: absolute;
  inset: 13px -13px -13px 13px;
  border: 1px solid rgba(176,154,106,.52);
  border-radius: var(--radius);
  z-index: -1;
}
.concept-media img { filter: brightness(1.16) saturate(.7) contrast(.88); }
.concept-points li { border-bottom: 1px dotted rgba(176,154,106,.38); }

.trial-banner {
  position: relative;
  overflow: hidden;
  border-radius: 110px 110px 18px 18px / 44px 44px 18px 18px;
  padding-block: 27px;
  border: 1px solid rgba(176,154,106,.85);
  background:
    linear-gradient(105deg, rgba(176,154,106,.1), transparent 32%),
    var(--navy);
}
.trial-banner::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(246,242,233,.18);
  border-radius: inherit;
  pointer-events: none;
}
.trial-ornament { position: absolute; width: 80px; color: var(--gold); opacity: .2; }
.trial-ornament svg { width: 100%; }
.trial-ornament-left { left: 3px; bottom: -40px; transform: rotate(-28deg); }
.trial-ornament-right { right: 3px; top: -42px; transform: rotate(154deg); }
.trial-label { transform: rotate(-2deg); border: 1px solid rgba(255,255,255,.35); }
.course-card, .menu-variations, .add-item, .menu-block {
  position: relative;
  border: 1px solid rgba(176,154,106,.42);
  box-shadow: 0 22px 52px -38px rgba(63,75,88,.58);
}
.course-card::before, .voice-card::after, .hours-card::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(139,160,126,.17);
  border-radius: calc(var(--radius) - 5px);
  pointer-events: none;
}
.course-card-head { background: linear-gradient(135deg, var(--sage-bg), rgba(246,242,233,.86)); }
.price-row { border-bottom-style: dotted; }
.add-item:nth-child(1) { border-radius: 26px 5px 20px 5px; }
.add-item:nth-child(2) { border-radius: 5px 26px 5px 20px; }

/* Hand-drawn flow */
.flow { overflow: hidden; }
.flow-steps { max-width: 820px; }
.flow-steps::before { left: 34px; width: 1px; background: repeating-linear-gradient(var(--gold) 0 4px, transparent 4px 10px); opacity: .65; }
.flow-step { gap: 30px; padding: 22px 0; }
.flow-num {
  width: 68px;
  height: 61px;
  border: 1.5px solid var(--sage);
  border-radius: 52% 48% 45% 55% / 49% 55% 45% 51%;
  font-family: var(--font-hand);
  font-size: 1.55rem;
  box-shadow: 4px 4px 0 rgba(176,154,106,.14);
  transform: rotate(-3deg);
}
.flow-step:nth-child(even) .flow-num { transform: rotate(3deg); }
.flow-step > div { background: rgba(255,255,255,.58); border-bottom: 1px solid rgba(176,154,106,.28); padding: 3px 4px 20px; flex: 1; }
.flow-step h3 { letter-spacing: .07em; }

/* Real-photo gallery */
.gallery-band { grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 8px; background: var(--ivory); }
.gallery-band figure { position: relative; }
.gallery-band figure:nth-child(even) { margin-top: 28px; }
.gallery-band img { aspect-ratio: 3 / 4; filter: saturate(.78) brightness(1.07) contrast(.9); }

/* Voice and FAQ */
.voice-card {
  border: 1px solid rgba(176,154,106,.4);
  border-radius: 42px 8px 35px 8px;
  box-shadow: 0 18px 45px -34px rgba(63,75,88,.55);
}
.voice-card:nth-child(2) { transform: translateY(18px); border-radius: 8px 42px 8px 35px; }
.voice-card::before { color: rgba(176,154,106,.45); }
.faq-list { border-top: 1px solid var(--gold); }
.faq-item { border-color: rgba(176,154,106,.35); }
.faq-item summary { padding-left: 46px; }
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 5px;
  top: 20px;
  font-family: var(--font-hand);
  color: var(--sage-deep);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--sage-soft);
  border-radius: 53% 47% 45% 55%;
  transform: rotate(-5deg);
}
.faq-a { padding-left: 46px; }

/* Instagram floral arch */
.instagram-card {
  position: relative;
  width: min(100%, 540px);
  max-width: 540px;
  min-height: 310px;
  justify-content: center;
  overflow: hidden;
  border-radius: 50% 50% 20px 20px / 28% 28% 20px 20px;
  border-color: rgba(176,154,106,.5);
  background: rgba(251,249,243,.88);
}
.instagram-arch { position: absolute; inset: 18px 25px; border: 1px solid rgba(63,75,88,.15); border-bottom-color: transparent; border-radius: 50% 50% 0 0 / 40% 40% 0 0; }
.instagram-sprig { position: absolute; width: 120px; color: var(--navy); opacity: .18; }
.instagram-sprig svg { width: 100%; }
.instagram-sprig-left { left: -20px; bottom: -42px; transform: rotate(-20deg); }
.instagram-sprig-right { right: -18px; top: -44px; transform: rotate(160deg); }
.instagram-card-icon, .instagram-card-user, .instagram-card-cta { position: relative; z-index: 2; }

/* Availability board */
.availability-panel {
  max-width: 980px;
  margin: 0 auto 26px;
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(176,154,106,.48);
  border-radius: 38px 8px 32px 8px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.availability-panel::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 190px;
  right: -52px;
  top: -48px;
  background: url('/assets/img/botanical-dried-side.png') right top / contain no-repeat;
  opacity: .12;
  transform: rotate(-8deg);
  filter: saturate(.38) sepia(.08);
  pointer-events: none;
}
.availability-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 22px; position: relative; }
.availability-kicker { font-family: var(--font-hand); color: var(--sage-deep); font-size: .82rem; letter-spacing: .08em; }
.availability-head h3 { font-size: 1.45rem; }
.availability-legend { display: flex; flex-wrap: wrap; gap: 14px; font-size: .76rem; color: var(--ink-soft); }
.availability-legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot { width: 9px; height: 9px; border-radius: 50%; }
.legend-dot.is-open { background: var(--sage); box-shadow: 0 0 0 3px rgba(139,160,126,.13); }
.legend-dot.is-busy { background: #c8c3b9; }
.calendar-sync-note { background: #f4eee1; border-left: 3px solid var(--gold); padding: 10px 14px; margin-bottom: 18px; font-size: .82rem; }
.availability-days {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(134px, 1fr);
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 4px 2px 14px;
  scrollbar-color: var(--sage-soft) transparent;
}
.availability-day {
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 18px 5px 15px 5px;
  background: rgba(251,249,243,.9);
  overflow: hidden;
}
.availability-day.is-today { border-color: var(--sage); box-shadow: 0 0 0 2px rgba(139,160,126,.12); }
.availability-day header { text-align: center; padding: 11px 8px 9px; background: var(--sage-bg); border-bottom: 1px solid var(--line); }
.availability-date { display: block; font-family: var(--font-mincho); font-size: 1.12rem; color: var(--navy); }
.availability-weekday { display: block; font-size: .7rem; color: var(--sage-deep); }
.availability-slots { display: grid; gap: 7px; padding: 10px; }
.availability-slot {
  min-height: 51px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 9px;
  border: 1px solid transparent;
  line-height: 1.25;
}
.availability-slot > span { font-family: var(--font-mincho); font-size: .98rem; }
.availability-slot small { font-size: .66rem; letter-spacing: .04em; }
.availability-slot.is-open { background: #e5ede0; border-color: rgba(103,121,91,.38); color: var(--sage-deep); box-shadow: 0 5px 14px -12px rgba(63,75,88,.6); }
.availability-slot.is-open:hover { background: var(--sage); color: #fff; opacity: 1; transform: translateY(-1px); }
.availability-slot.is-busy, .availability-slot.is-ended { background: #f1efea; color: #aaa59a; text-decoration: line-through; text-decoration-thickness: 1px; }
.availability-slot.is-unknown { background: #f5efe1; color: #8d8066; }
.availability-updated { margin-top: 10px; font-size: .74rem; color: var(--ink-soft); text-align: right; }
.calendar-details { max-width: 820px; margin: 0 auto 16px; }
.calendar-details > summary {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 8px 18px;
  list-style: none;
  cursor: pointer;
  border-bottom: 1px dashed var(--sage);
  font-family: var(--font-hand);
  color: var(--sage-deep);
  font-size: .9rem;
}
.calendar-details > summary::-webkit-details-marker { display: none; }
.calendar-details > summary::after { content: " ＋"; }
.calendar-details[open] > summary::after { content: " −"; }
.calendar-details:not([open]) .calendar-tabs { display: none; }
.calendar-embed { border-radius: 26px 6px 22px 6px; border-color: rgba(176,154,106,.45); }

/* Access map with map-like line treatment */
.access-map { position: relative; border: 8px solid rgba(251,249,243,.8); outline: 1px solid rgba(176,154,106,.45); border-radius: 34px 8px 28px 8px; }
.access-info { background: rgba(255,255,255,.5); padding: 28px; border-left: 1px solid rgba(176,154,106,.45); }
.hours-card { position: relative; margin-inline: auto; border-color: rgba(176,154,106,.45); border-radius: 38px 8px 30px 8px; }
.slot { border: 1px solid rgba(139,160,126,.2); }
.wave { height: 72px; opacity: .94; filter: drop-shadow(0 -1px 0 rgba(176,154,106,.12)); }

@media (max-width: 1180px) {
  .page-botanical { opacity: .12; }
  .hero-media { inset-inline-start: 49%; }
}

@media (max-width: 900px) {
  .page-botanical { display: none; }
  .hero { min-height: auto; display: block; padding-top: 48vh; }
  .hero::before { inset: 18px; }
  .hero::after { background: linear-gradient(180deg, rgba(246,242,233,.02) 0%, rgba(246,242,233,.18) 35%, rgba(246,242,233,.98) 50%, var(--ivory) 100%); }
  .hero-media { inset: 22px 22px auto; height: 52vh; min-height: 350px; border-radius: 48% 48% 18px 18px / 20% 20% 18px 18px; }
  .hero-inner { padding: 56px 0 70px; }
  .hero-inner > * { max-width: 100%; }
  .hero-seal { right: 20px; top: calc(48vh - 28px); bottom: auto; width: 74px; }
  .hero-botanical { width: 80px; }
  .hero-botanical-right { display: none; }
  .about .wrap { display: block; }
  .about .section-head, .about-figure, .feature-grid { margin-bottom: 34px; }
  .about-figure { max-width: 620px; margin-inline: auto; }
  .about-figure img { aspect-ratio: 4 / 4.4; }
  .feature-grid { grid-template-columns: 1fr; }
  .voice-card:nth-child(2) { transform: none; }
  .gallery-band { grid-template-columns: repeat(2, 1fr); }
  .gallery-band figure:first-child { grid-column: auto; }
  .availability-days { grid-auto-columns: minmax(142px, 42%); }
}

@media (max-width: 600px) {
  .wrap, .wrap-narrow { width: min(100% - 30px, var(--wrap)); }
  .section { padding-block: 70px; }
  .hero { padding-top: 44vh; }
  .hero-media { height: 48vh; min-height: 305px; }
  .hero-inner { padding-top: 48px; }
  .hero-title { font-size: clamp(1.8rem, 8.2vw, 2.35rem); line-height: 1.72; }
  .hero-eyebrow { font-size: .82rem; }
  .hero-lead { font-size: .94rem; line-height: 1.95; }
  .hero-btns { display: grid; }
  .hero-btns .btn { width: 100%; }
  .hero-facts { gap: 6px; }
  .hero-facts li { font-size: .78rem; }
  .hero-seal { top: calc(44vh - 25px); width: 68px; }
  .intro-inner { padding-inline: 8px; }
  .intro-text { font-size: 1rem; }
  .feature-card { grid-template-columns: 72px 1fr; padding: 16px; column-gap: 13px; }
  .feature-icon-generated { width: 70px; height: 70px; }
  .feature-card h3 { font-size: 1rem; }
  .feature-card p { font-size: .82rem; }
  .variation-list li { grid-template-columns: 58px 1fr; }
  .variation-list li > img { width: 54px; height: 54px; }
  .trial-banner { display: grid; gap: 8px; border-radius: 48px 48px 16px 16px / 28px 28px 16px 16px; }
  .trial-price { justify-content: center; }
  .course-card-head, .course-card-body { padding: 25px 22px; }
  .flow-step { gap: 14px; }
  .flow-steps::before { left: 25px; }
  .flow-num { width: 51px; height: 48px; font-size: 1.25rem; }
  .gallery-band { gap: 5px; padding: 5px; }
  .gallery-band figure:nth-child(even) { margin-top: 16px; }
  .availability-panel { margin-inline: -2px; padding: 20px 15px; border-radius: 25px 6px 22px 6px; }
  .availability-head { align-items: flex-start; flex-direction: column; }
  .availability-days { grid-auto-columns: minmax(132px, 70%); }
  .availability-updated { text-align: left; }
  .access-info { padding: 22px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-botanical { animation: none; }
}

/* =============================================================
   2026-09-03 botanical asset upgrade
   ============================================================= */

html, body { max-width: 100%; overflow-x: clip; }
body { position: relative; }

/* ページに固定せず、本文と一緒に流れる両サイドのドライフラワー */
.page-botanical {
  display: block;
  position: absolute;
  top: 360px;
  bottom: 0;
  height: auto;
  width: clamp(150px, 13vw, 235px);
  background-image: url('/assets/img/botanical-side-blue-v2.png');
  background-position: right top;
  background-size: 100% auto;
  background-repeat: repeat-y;
  opacity: .66;
  filter: saturate(1.08) contrast(1.05);
  animation: none;
  mix-blend-mode: multiply;
}
.page-botanical-left {
  left: clamp(-76px, -4vw, -34px);
  transform: scaleX(-1);
}
.page-botanical-right {
  right: clamp(-76px, -4vw, -34px);
  transform: none;
}

/* 旧SVGの代わりに高精細な生成ボタニカル素材を使用 */
.hero-botanical img,
.sprig img,
.trial-ornament img,
.instagram-sprig img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(.88) contrast(1.03);
}

.hero-botanical {
  width: clamp(128px, 13vw, 205px);
  color: initial;
  opacity: .72;
}
.hero-botanical-left { left: -.8%; bottom: -16px; transform: rotate(-15deg); }
.hero-botanical-right { right: -.6%; top: -18px; transform: scale(-1) rotate(-14deg); }

.sprig {
  width: clamp(145px, 16vw, 210px);
  color: initial;
  opacity: .76;
}
.sprig-tl { top: -78px; left: -92px; transform: rotate(-17deg); }

.trial-ornament {
  width: 148px;
  color: initial;
  opacity: .34;
}
.trial-ornament-left { left: -52px; bottom: -32px; transform: rotate(-10deg); }
.trial-ornament-right { right: -48px; top: -38px; transform: scale(-1) rotate(-10deg); }

.instagram-sprig {
  width: 190px;
  color: initial;
  opacity: .38;
}
.instagram-sprig-left { left: -66px; bottom: -28px; transform: rotate(-13deg); }
.instagram-sprig-right { right: -64px; top: -30px; transform: scale(-1) rotate(-13deg); }

.availability-panel::before {
  background-image: url('/assets/img/botanical-side-blue-v2.png');
  opacity: .2;
  filter: saturate(.9) contrast(1.02);
}

@media (max-width: 900px) {
  .page-botanical {
    display: block;
    top: 260px;
    width: clamp(102px, 19vw, 138px);
    opacity: .6;
    background-size: 100% auto;
  }
  .page-botanical-left { left: clamp(-58px, -7vw, -28px); }
  .page-botanical-right { right: clamp(-58px, -7vw, -28px); }
  .hero-botanical { width: clamp(92px, 18vw, 140px); opacity: .65; }
  .hero-botanical-right { display: block; right: -16px; top: 2px; }
  .hero-botanical-left { left: -17px; bottom: 2px; }
  .sprig-tl { display: block; width: 145px; top: -58px; left: -42px; opacity: .68; }
}

@media (max-width: 600px) {
  .page-botanical {
    top: 210px;
    width: 112px;
    opacity: .58;
  }
  .page-botanical-left { left: -57px; }
  .page-botanical-right { right: -57px; }
  .hero-botanical { width: 90px; opacity: .58; }
  .hero-botanical-left { left: -30px; }
  .hero-botanical-right { right: -30px; }
  .sprig-tl { width: 112px; top: -39px; left: -29px; opacity: .62; }
  .trial-ornament { width: 106px; opacity: .3; }
  .instagram-sprig { width: 130px; opacity: .32; }
}
