/*
Theme Name: HARUBROW
Theme URI: https://artmakenishida.com/
Author: HARUBROW
Description: 医療アートメイクサロン HARUBROW 専用WordPressテーマ
Version: 1.0.0
License: Private
Text Domain: harubrow
*/

/* ─────────────────────────────────────────
   CSS変数
───────────────────────────────────────── */
:root {
  --cream: #faf8f5;
  --warm-white: #fffefb;
  --beige: #f2ede6;
  --deep-beige: #e8dfd4;
  --taupe: #c4b5a5;
  --brown: #8b7355;
  --dark-brown: #3d2e22;
  --rose: #c9967a;
  --rose-light: #f0e4dc;
  --gold: #b8936a;
  --line-green: #06C755;
  --text-main: #2a1f17;
  --text-sub: #6b5c50;
  --text-muted: #9e8e82;
}

/* ─────────────────────────────────────────
   リセット・ベース
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--cream);
  color: var(--text-main);
  font-weight: 300;
  overflow-x: hidden;
}

/* WordPressの管理バー対応 */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar nav { top: 46px; } }

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

/* ─────────────────────────────────────────
   ナビゲーション
───────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,245,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--deep-beige);
  padding: 0 5vw;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300; letter-spacing: .2em;
  color: var(--dark-brown); text-decoration: none; line-height: 1;
}
.nav-logo span {
  display: block; font-size: 9px; letter-spacing: .35em;
  color: var(--taupe); margin-top: 3px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 12px; letter-spacing: .1em; color: var(--text-sub);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--rose); }
.nav-cta {
  background: var(--line-green);
  color: #fff; border: none; padding: 10px 22px;
  font-size: 12px; letter-spacing: .12em;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 400;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 2px; transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #05a847; transform: translateY(-1px); }
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { padding: 9px 16px; font-size: 11px; }
}

/* ─────────────────────────────────────────
   ヒーローセクション
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 64px;
  background: var(--warm-white);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 55%; height: 100%;
  background: var(--beige);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-left {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6vw 5vw 6vw 8vw;
}
.hero-eyebrow {
  font-size: 10px; letter-spacing: .35em; color: var(--rose);
  margin-bottom: 1.5rem; display: flex; align-items: center; gap: 12px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 400;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 30px; height: 0.5px; background: var(--rose);
}
.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300; line-height: 1.12;
  color: var(--dark-brown); letter-spacing: .04em; margin-bottom: .5rem;
}
.hero-heading em { font-style: italic; color: var(--rose); }
.hero-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300; color: var(--dark-brown);
  letter-spacing: .08em; margin-bottom: 1.5rem; line-height: 1.4;
}
.hero-sub {
  font-size: 13px; color: var(--text-sub); line-height: 1.9;
  letter-spacing: .06em; margin-bottom: 2.5rem;
  border-left: 2px solid var(--rose-light); padding-left: 1rem;
}
.hero-badges { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.badge {
  background: var(--rose-light); color: var(--brown);
  font-size: 11px; padding: 5px 14px; letter-spacing: .08em;
  border-radius: 1px; font-weight: 400;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 4vw 4rem 6vw;
}
.hero-img-wrap {
  width: 100%; max-width: 420px;
  aspect-ratio: 3/4;
  background: var(--deep-beige);
  border-radius: 4px; overflow: hidden; position: relative;
  box-shadow: 24px 24px 0 var(--rose-light);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.rating-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--dark-brown); color: #fff;
  padding: 18px 22px; border-radius: 3px;
  text-align: center; box-shadow: 0 8px 24px rgba(61,46,34,.2);
}
.rating-badge .num {
  font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; line-height: 1;
}
.rating-badge .label { font-size: 9px; letter-spacing: .2em; color: var(--taupe); margin-top: 4px; }
.stars { color: var(--gold); font-size: 11px; margin-top: 4px; letter-spacing: 1px; }
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::before { display: none; }
  .hero-left { padding: 3rem 6vw 2rem; }
  .hero-right { padding: 2rem 6vw 4rem; }
  .hero-img-wrap { max-width: 100%; aspect-ratio: 4/3; box-shadow: 12px 12px 0 var(--rose-light); }
  .rating-badge { bottom: -15px; left: -10px; padding: 12px 16px; }
}

/* ─────────────────────────────────────────
   セクション共通
───────────────────────────────────────── */
section { padding: 7rem 8vw; }
.section-label {
  font-size: 10px; letter-spacing: .4em; color: var(--rose);
  margin-bottom: .75rem; font-family: 'Noto Sans JP', sans-serif;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; display: inline-block; width: 24px; height: 0.5px; background: var(--rose);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300; color: var(--dark-brown); letter-spacing: .05em;
  line-height: 1.2; margin-bottom: .6rem;
}
.section-title-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 300; color: var(--text-sub); letter-spacing: .1em; margin-bottom: 3rem;
}
@media (max-width: 768px) { section { padding: 5rem 6vw; } }

/* フェードイン */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────
   ボタン
───────────────────────────────────────── */
.btn-primary {
  background: var(--line-green); color: #fff;
  padding: 14px 32px; font-size: 13px; letter-spacing: .12em;
  text-decoration: none; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, transform .15s; font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-primary:hover { background: #05a847; transform: translateY(-2px); }
.btn-secondary {
  border: 0.5px solid var(--taupe); color: var(--text-sub);
  padding: 14px 32px; font-size: 13px; letter-spacing: .12em;
  text-decoration: none; border-radius: 2px; background: transparent;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .2s, color .2s; font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-secondary:hover { border-color: var(--rose); color: var(--rose); }
.btn-gold {
  background: var(--line-green); color: #fff; padding: 16px 40px; font-size: 13px;
  letter-spacing: .15em; text-decoration: none; border-radius: 2px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s; font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-gold:hover { background: #05a847; }
.btn-outline-light {
  border: 0.5px solid rgba(196,181,165,.4); color: var(--taupe);
  padding: 16px 40px; font-size: 13px; letter-spacing: .15em;
  text-decoration: none; border-radius: 2px; display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .2s, color .2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* ─────────────────────────────────────────
   ABOUTセクション
───────────────────────────────────────── */
.about-section { background: var(--warm-white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: center; }
.about-img-wrap {
  position: relative;
  aspect-ratio: 3/4; background: var(--deep-beige); border-radius: 4px; overflow: hidden;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-tag {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: var(--rose); color: #fff;
  font-size: 11px; padding: 6px 14px; letter-spacing: .1em; border-radius: 2px;
}
.about-name {
  font-family: 'Noto Serif JP', serif; font-size: clamp(22px,2.5vw,30px);
  font-weight: 300; color: var(--dark-brown); margin-bottom: .3rem;
}
.about-role { font-size: 12px; letter-spacing: .2em; color: var(--text-muted); margin-bottom: 2rem; }
.about-stats { display: flex; gap: 2rem; margin-bottom: 2rem; }
.about-stat .num {
  font-family: 'Cormorant Garamond', serif; font-size: 36px;
  color: var(--rose); font-weight: 300; line-height: 1;
}
.about-stat .lbl { font-size: 10px; letter-spacing: .15em; color: var(--text-muted); margin-top: 4px; }
.about-text { font-size: 13px; line-height: 2; color: var(--text-sub); margin-bottom: 1.5rem; }
.about-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.about-tag-item {
  border: 0.5px solid var(--taupe); color: var(--text-sub);
  font-size: 11px; padding: 4px 12px; border-radius: 1px; letter-spacing: .05em;
}
@media (max-width: 768px) { .about-inner { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   メニュー・料金セクション
───────────────────────────────────────── */
.menu-section { background: var(--dark-brown); color: #fff; }
.menu-section .section-label { color: var(--gold); }
.menu-section .section-label::before { background: var(--gold); }
.menu-section .section-title { color: #fff; }
.menu-section .section-title-jp { color: var(--taupe); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 3rem; }
@media (max-width: 768px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-card { background: rgba(255,255,255,.04); padding: 2.5rem 2rem; display: flex; flex-direction: column; }
.menu-card-label { font-size: 10px; letter-spacing: .4em; color: var(--gold); margin-bottom: .75rem; }
.menu-card-title {
  font-family: 'Noto Serif JP', serif; font-size: 22px;
  font-weight: 300; color: #fff; margin-bottom: 1.5rem;
}
.menu-card-img {
  width: 100%; aspect-ratio: 4/3; background: rgba(255,255,255,.08);
  border-radius: 2px; overflow: hidden; margin-bottom: 1.5rem;
}
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-text { font-size: 12px; color: var(--taupe); line-height: 1.9; margin-bottom: 1.5rem; }
.menu-card-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.menu-tag {
  border: 0.5px solid rgba(196,181,165,.4); color: var(--taupe);
  font-size: 11px; padding: 4px 12px; border-radius: 1px;
}
.menu-price-block { border-top: 0.5px solid rgba(255,255,255,.1); padding-top: 1.5rem; margin-top: auto; }
.price-monitor-highlight {
  background: rgba(255,255,255,.12);
  border: 0.5px solid var(--gold);
  border-radius: 4px; padding: 1rem 1.25rem; margin-bottom: 1rem;
}
.price-monitor-highlight .price-label { font-size: 11px; font-weight: 500; letter-spacing: .12em; color: var(--gold); }
.price-monitor-highlight .price-val { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #fff; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .6rem; }
.price-label { font-size: 11px; color: rgba(255,255,255,.45); letter-spacing: .08em; }
.price-val { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--gold); }
.price-note { font-size: 11px; color: rgba(255,255,255,.3); line-height: 1.8; margin-top: 1rem; }

/* 料金に含まれるもの */
.price-includes {
  background: rgba(255,255,255,.04); border: 0.5px solid rgba(255,255,255,.08);
  border-radius: 3px; padding: 2.5rem;
}
.pi-head { margin-bottom: 1.75rem; }
.pi-title { font-family: 'Noto Serif JP', serif; font-size: 17px; color: #f5ede6; letter-spacing: .1em; margin-bottom: .3rem; }
.pi-sub { font-size: 12px; color: var(--gold); letter-spacing: .12em; }
.pi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 1.5rem; }
.pi-item { display: flex; gap: .75rem; align-items: flex-start; }
.pi-item svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--gold); margin-top: 2px; }
.pi-item-title { font-size: 13px; color: #f5ede6; margin-bottom: 2px; letter-spacing: .05em; }
.pi-item-body { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.6; }
.pi-note { font-size: 11px; color: rgba(255,255,255,.3); line-height: 1.8; border-top: 0.5px solid rgba(255,255,255,.07); padding-top: 1.25rem; }
@media (max-width: 768px) { .pi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pi-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   ギャラリーセクション
───────────────────────────────────────── */
.gallery-section { background: var(--cream); }
.gallery-tabs { display: flex; gap: 0; margin-bottom: 2.5rem; border-bottom: 0.5px solid var(--deep-beige); }
.gallery-tab {
  padding: .75rem 1.5rem; font-size: 12px; letter-spacing: .12em;
  color: var(--text-muted); cursor: pointer; background: none; border: none;
  font-family: 'Noto Sans JP', sans-serif; transition: color .2s; position: relative;
}
.gallery-tab.active { color: var(--rose); }
.gallery-tab.active::after {
  content: ''; position: absolute; bottom: -0.5px; left: 0; right: 0;
  height: 1.5px; background: var(--rose);
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.gallery-item { aspect-ratio: 1; overflow: hidden; position: relative; background: var(--beige); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(61,46,34,.7));
  color: #fff; font-size: 11px; padding: 1rem .75rem .5rem;
  letter-spacing: .08em; opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 3rem; }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─────────────────────────────────────────
   お悩みセクション
───────────────────────────────────────── */
.concerns-section { background: var(--beige); }
.concerns-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem;
  max-width: 960px; margin: 0 auto;
}
.concern-item { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.concern-circle { width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; background: var(--deep-beige); }
.concern-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.concern-text { font-size: 13px; line-height: 1.8; color: var(--text-sub); text-align: center; letter-spacing: .04em; }
@media (max-width: 768px) { .concerns-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

/* ─────────────────────────────────────────
   選ばれる理由セクション
───────────────────────────────────────── */
.strengths-section { background: var(--warm-white); }
.strengths-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.strength-card {
  background: var(--beige); padding: 2.5rem 2rem;
  position: relative; overflow: hidden; transition: background .3s;
}
.strength-card:hover { background: var(--rose-light); }
.strength-card::before {
  content: attr(data-num);
  position: absolute; top: -10px; right: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 300; color: rgba(196,181,165,.18); line-height: 1;
}
.strength-icon {
  width: 40px; height: 40px; margin-bottom: 1.25rem;
  border: 0.5px solid var(--taupe); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.strength-icon svg { width: 18px; height: 18px; stroke: var(--brown); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.strength-title {
  font-family: 'Noto Serif JP', serif; font-size: 16px;
  font-weight: 400; color: var(--dark-brown); margin-bottom: .75rem; letter-spacing: .08em;
}
.strength-body { font-size: 12px; color: var(--text-sub); line-height: 1.9; }
@media (max-width: 768px) { .strengths-grid { grid-template-columns: 1fr; gap: 2px; } }

/* ─────────────────────────────────────────
   アクセスセクション
───────────────────────────────────────── */
.access-section { background: var(--cream); }
.access-lead { font-size: 13px; color: var(--text-sub); line-height: 2; letter-spacing: .06em; margin-bottom: 2.5rem; }
.clinic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.clinic-card {
  background: var(--warm-white); padding: 1.5rem 1.25rem;
  border-left: 2px solid var(--rose-light); transition: border-color .3s;
}
.clinic-card:hover { border-color: var(--rose); }
.clinic-area { font-size: 10px; letter-spacing: .2em; color: var(--rose); margin-bottom: .4rem; }
.clinic-name {
  font-family: 'Noto Serif JP', serif; font-size: 14px;
  color: var(--dark-brown); margin-bottom: .75rem; letter-spacing: .06em; font-weight: 300; line-height: 1.4;
}
.clinic-detail { font-size: 11px; color: var(--text-muted); line-height: 1.7; margin-bottom: .6rem; }
.clinic-days { font-size: 11px; color: var(--text-sub); display: flex; align-items: center; gap: 5px; margin-bottom: .4rem; }
.clinic-menu { font-size: 11px; color: var(--taupe); letter-spacing: .05em; }
@media (max-width: 900px) { .clinic-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .clinic-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   予約フロー
───────────────────────────────────────── */
.flow-section { background: var(--warm-white); }
.flow-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative;
}
.flow-steps::before {
  content: ''; position: absolute;
  top: 28px; left: calc(12.5% + 12px); right: calc(12.5% + 12px);
  height: 0.5px; background: var(--deep-beige);
}
.flow-step { text-align: center; }
.flow-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--rose-light); color: var(--rose);
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; position: relative; z-index: 1; font-weight: 300;
}
.flow-step-title {
  font-size: 14px; color: var(--dark-brown); margin-bottom: .4rem;
  letter-spacing: .08em; font-family: 'Noto Serif JP', serif; font-weight: 300;
}
.flow-step-body { font-size: 11px; color: var(--text-muted); line-height: 1.8; letter-spacing: .05em; }
@media (max-width: 768px) {
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-steps::before { display: none; }
}

/* ─────────────────────────────────────────
   FAQセクション
───────────────────────────────────────── */
.faq-section { background: var(--beige); }
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 0.5px solid var(--deep-beige); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.5rem 0; display: flex; align-items: flex-start; gap: 1rem;
  cursor: pointer; font-family: 'Noto Sans JP', sans-serif;
}
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--rose-light); color: var(--rose);
  font-size: 11px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-weight: 500;
}
.faq-q-text { font-size: 14px; color: var(--dark-brown); letter-spacing: .05em; line-height: 1.6; text-align: left; flex: 1; }
.faq-arrow { color: var(--taupe); font-size: 12px; margin-left: auto; padding-left: 1rem; flex-shrink: 0; transition: transform .3s; margin-top: 3px; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 1.5rem 3rem; font-size: 13px; color: var(--text-sub); line-height: 2; }
.faq-item.open .faq-a { display: block; }

/* ─────────────────────────────────────────
   ブログセクション（自動反映）
───────────────────────────────────────── */
.blog-section { background: var(--warm-white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.blog-card { background: var(--beige); text-decoration: none; transition: background .3s; display: block; }
.blog-card:hover { background: var(--deep-beige); }
.blog-thumb { aspect-ratio: 16/9; background: var(--deep-beige); overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-body { padding: 1.25rem 1.25rem 1.5rem; }
.blog-tag { font-size: 10px; letter-spacing: .2em; color: var(--rose); margin-bottom: .5rem; }
.blog-title { font-size: 14px; color: var(--dark-brown); line-height: 1.7; letter-spacing: .04em; }
.blog-no-thumb {
  width: 100%; height: 100%; background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--taupe);
}
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   代表あいさつ
───────────────────────────────────────── */
.greeting-section { background: var(--beige); }
.greeting-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5vw; align-items: start; }
.greeting-logo { font-size: 11px; letter-spacing: .3em; color: var(--rose); margin-bottom: .3rem; }
.greeting-role { font-size: 12px; color: var(--text-muted); margin-bottom: .2rem; }
.greeting-name { font-family: 'Noto Serif JP', serif; font-size: 24px; color: var(--dark-brown); margin-bottom: 2rem; letter-spacing: .1em; }
.greeting-text { font-size: 13px; color: var(--text-sub); line-height: 2.1; }
.greeting-quote { font-family: 'Noto Serif JP', serif; font-size: 16px; color: var(--rose); border-left: 2px solid var(--rose); padding-left: 1rem; margin: 1.5rem 0; line-height: 1.8; }
.greeting-img-wrap { width: 100%; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; background: var(--deep-beige); }
.greeting-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) { .greeting-inner { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   CTAセクション
───────────────────────────────────────── */
.cta-section { background: var(--dark-brown); text-align: center; padding: 7rem 8vw; }
.cta-section .section-label { justify-content: center; color: var(--gold); }
.cta-section .section-label::before { background: var(--gold); }
.cta-section .section-title { color: #fff; }
.cta-section .section-title-jp { color: var(--taupe); }
.cta-body { font-size: 13px; color: var(--taupe); line-height: 2.2; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   フッター
───────────────────────────────────────── */
.site-footer {
  background: #1a1208; color: var(--taupe);
  text-align: center; padding: 3rem 8vw; font-size: 11px; letter-spacing: .15em;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: #fff; margin-bottom: 1rem; letter-spacing: .3em; }
.footer-nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 1.5rem; }
.footer-nav a { font-size: 11px; color: var(--taupe); text-decoration: none; letter-spacing: .1em; }
.footer-nav a:hover { color: var(--rose); }

/* ─────────────────────────────────────────
   固定フッターCTA
───────────────────────────────────────── */
.fixed-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--dark-brown); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 5vw;
  transform: translateY(100%); transition: transform .4s ease;
}
.fixed-cta.visible { transform: translateY(0); }
.fixed-cta-text { font-size: 12px; color: var(--taupe); letter-spacing: .08em; }
.fixed-cta-btn {
  background: var(--line-green); color: #fff; padding: 10px 24px;
  font-size: 12px; letter-spacing: .12em; text-decoration: none; border-radius: 2px;
  transition: background .2s;
}
.fixed-cta-btn:hover { background: #05a847; }
@media (max-width: 500px) { .fixed-cta-text { display: none; } }

/* ─────────────────────────────────────────
   個別記事・アーカイブページ
───────────────────────────────────────── */
.page-hero {
  padding: 8rem 8vw 4rem;
  background: var(--warm-white);
  border-bottom: 0.5px solid var(--deep-beige);
}
.page-hero-label { font-size: 10px; letter-spacing: .4em; color: var(--rose); margin-bottom: .5rem; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px,4vw,48px); font-weight: 300; color: var(--dark-brown); }
.post-content { max-width: 740px; margin: 0 auto; padding: 5rem 8vw; }
.post-content h1,.post-content h2,.post-content h3 { font-family: 'Noto Serif JP', serif; color: var(--dark-brown); margin: 2rem 0 1rem; line-height: 1.5; font-weight: 400; }
.post-content h2 { font-size: 20px; border-left: 3px solid var(--rose); padding-left: 1rem; }
.post-content h3 { font-size: 17px; }
.post-content p { font-size: 14px; line-height: 2.1; color: var(--text-sub); margin-bottom: 1.5rem; }
.post-content img { border-radius: 3px; margin: 2rem 0; }
.post-content a { color: var(--rose); }
.post-meta { font-size: 11px; color: var(--text-muted); letter-spacing: .1em; margin-bottom: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.post-cats a { font-size: 10px; background: var(--rose-light); color: var(--brown); padding: 3px 10px; border-radius: 1px; text-decoration: none; letter-spacing: .08em; }
