/* ============================================================
   富士看護師事務所 style.css
   モバイルファースト（〜480px基準 → 768 / 1024 で拡張）
   ============================================================ */

/* ---- デザイントークン ---------------------------------- */
:root {
  --color-primary:      #356b41;   /* 深い葉緑 */
  --color-primary-deep: #2a5434;   /* 濃色面 */
  --color-accent:       #d2694a;   /* 温かいコーラル（CTA） */
  --color-leaf:         #7cb342;   /* 新緑（装飾） */
  --color-base:         #f5faf2;   /* 若草白 */
  --color-text:         #233027;   /* 墨緑 */
  --color-subtext:      #5b6b5f;   /* 補助文 */
  --color-border:       rgba(35, 48, 39, 0.13);

  --header-h: 64px;
  --radius-pill: 999px;
  --radius-card: 16px;
  --maxw: 1080px;

  --font-head: "Zen Maru Gothic", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-latin: "Outfit", sans-serif;

  /* 告知バナー用（統一仕様） */
  --pn-bg: var(--color-primary-deep);
  --pn-fg: #f5faf2;
  --pn-fg-rgb: 245, 250, 242;
  --pn-accent: var(--color-leaf);
  --pn-font: var(--font-body);
}

/* ---- リセット / ベース --------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-base);
  line-height: 1.9;
  letter-spacing: 0.02em;
  font-size: 1.02rem;                         /* 高齢の読者を想定し大きめ */
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.5; font-weight: 700; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

.eyebrow {
  font-family: var(--font-latin);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}
.eyebrow--light { color: #bfe3a3; }

/* ---- ボタン -------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px;
  padding: 0.75rem 1.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.25s, background 0.25s, color 0.25s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(210, 105, 74, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(210, 105, 74, 0.4); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.6); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }

/* ============================================================
   告知バナー（統一仕様）
   ============================================================ */
.portfolio-notice {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--pn-bg);
  color: var(--pn-fg);
  padding: 0.55rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.6;
  border-bottom: 1px solid var(--pn-accent);
  font-family: var(--pn-font);
}
.portfolio-notice strong { color: var(--pn-accent); letter-spacing: 0.2em; margin-right: 0.6rem; font-weight: 700; }
.portfolio-notice .pn-close {
  background: transparent;
  border: 1px solid rgba(var(--pn-fg-rgb), 0.4);
  color: var(--pn-fg);
  font-size: 0.7rem; padding: 2px 8px; margin-left: 0.8rem;
  cursor: pointer; letter-spacing: 0.1em; transition: all 0.3s; font-family: inherit;
}
.portfolio-notice .pn-close:hover { background: var(--pn-accent); border-color: var(--pn-accent); color: var(--pn-bg); }

body.notice-visible { padding-top: calc(var(--header-h) + 44px); }
body.notice-visible .site-header { top: 44px; }
@media (max-width: 720px) {
  .portfolio-notice { font-size: 0.7rem; padding: 0.5rem 0.8rem; }
  body.notice-visible { padding-top: calc(var(--header-h) + 64px); }
  body.notice-visible .site-header { top: 64px; }
}

/* ============================================================
   ヘッダー（backdrop-filter は ::before に分離）
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 200;
  border-bottom: 1px solid var(--color-border);
  transition: top 0.3s;
}
.site-header::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(245, 250, 242, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
}
.header-inner {
  height: 100%; max-width: var(--maxw); margin: 0 auto;
  padding: 0 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--color-text); }
.logo-mark {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 50%;
  font-size: 1.05rem;
}
.logo-text { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; line-height: 1.25; }
.logo-text small {
  display: block; font-family: var(--font-latin); font-weight: 300;
  font-size: 0.58rem; letter-spacing: 0.16em; color: var(--color-subtext);
}
.pc-nav { display: none; }
.header-cta { display: none; }

/* ---- ハンバーガー ---- */
.hamburger {
  width: 44px; height: 44px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; position: relative; z-index: 220;
  background: transparent; border: 0; padding: 0; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--color-text); border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.35s;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- マスク / ドロワー（パターンB） ---- */
.drawer-mask {
  position: fixed; inset: 0;
  background: rgba(42, 84, 52, 0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.35s; z-index: 210;
}
.drawer-mask.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0;
  width: 80vw; max-width: 360px; height: 100dvh;
  background: var(--color-base);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  z-index: 215;
  padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
  overflow-y: auto; display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); box-shadow: -8px 0 32px rgba(42, 84, 52, 0.18); }
body.notice-visible .drawer { padding-top: calc(var(--header-h) + 44px + 1rem); }
@media (max-width: 720px) { body.notice-visible .drawer { padding-top: calc(var(--header-h) + 64px + 1rem); } }

.drawer-list { display: flex; flex-direction: column; gap: 0.1rem; margin-bottom: 2rem; list-style: none; }
.drawer-list a {
  display: block; padding: 0.95rem 0.4rem;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-head); font-weight: 500; font-size: 1.05rem;
  color: var(--color-text); text-decoration: none; transition: color 0.2s;
}
.drawer-list a:hover { color: var(--color-primary); }
.drawer-cta {
  margin-top: 0.8rem;
  background: var(--color-accent); color: #fff !important;
  border-radius: var(--radius-pill); text-align: center;
  padding: 0.95rem 1rem !important; border: none !important;
  font-weight: 700 !important; box-shadow: 0 4px 12px rgba(210, 105, 74, 0.4);
}
.drawer-footer { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--color-border); }
.drawer-tel { font-size: 0.85rem; color: var(--color-subtext); display: flex; flex-direction: column; gap: 0.15rem; }
.drawer-tel a { font-family: var(--font-latin); font-size: 1.3rem; font-weight: 600; color: var(--color-primary); text-decoration: none; }
.drawer-tel small { font-size: 0.7rem; }

/* ============================================================
   ヒーロー（署名：木漏れ日の葉フレーム）
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #3c7548 0%, var(--color-primary) 55%, #2f6b3e 100%);
  color: #fff;
  padding: clamp(3.5rem, 12vw, 6.5rem) 1.25rem clamp(3rem, 9vw, 5rem);
}
.leaf-frame { position: absolute; top: -10px; width: clamp(120px, 34vw, 240px); height: auto; pointer-events: none; }
.leaf-frame--left { left: -16px; }
.leaf-frame--right { right: -16px; }
.hero-inner { position: relative; max-width: var(--maxw); margin: 0 auto; }
.hero-media {
  margin: 2.5rem 0 0; max-width: 420px; margin-inline: auto;
}
.hero-media img {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius-card);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.hero-eyebrow {
  font-family: var(--font-latin); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.16em; color: #cfeab4; margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.1rem, 8vw, 3.5rem);
  line-height: 1.4; letter-spacing: 0.01em; margin-bottom: 1.3rem;
}
.hero-lead {
  font-size: 1rem; line-height: 2.05;
  color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; max-width: 36em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 2.4rem; }
.hero-actions .btn { flex: 1 1 auto; min-width: 220px; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.hero-badges li {
  font-size: 0.85rem; padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-pill); background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   セクション共通
   ============================================================ */
.section { padding: clamp(3.5rem, 9vw, 6rem) 0; }
.section-head { margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 0.8rem; }
.section-desc { color: var(--color-subtext); font-size: 0.96rem; }
.section-cta { margin-top: 2.5rem; text-align: center; }

/* ---- About ---- */
.section-about { background: #fff; }
.about-grid { display: flex; flex-direction: column; gap: 2rem; }
.about-photo img { border-radius: var(--radius-card); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.photo-caption { display: block; margin-top: 0.5rem; font-size: 0.72rem; color: var(--color-subtext); }
.about-body h2 { font-size: clamp(1.5rem, 5vw, 2rem); margin-bottom: 1rem; }
.about-body p { margin-bottom: 1rem; }
.about-facts { margin-top: 1.8rem; border-top: 1px solid var(--color-border); }
.about-facts > div {
  display: grid; grid-template-columns: 7rem 1fr; gap: 1rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--color-border); align-items: baseline;
}
.about-facts dt { font-family: var(--font-head); font-weight: 500; font-size: 0.85rem; color: var(--color-primary); }
.about-facts dd { font-size: 0.92rem; }
.about-facts small, .form-note { display: block; font-size: 0.72rem; color: var(--color-subtext); }

/* ---- Services ---- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--radius-card); overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(42, 84, 52, 0.12); }
.card-media img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card-body { padding: 1.3rem 1.3rem 1.6rem; }
.card-body h3 { font-size: 1.18rem; margin-bottom: 0.6rem; color: var(--color-primary); }
.card-body p { font-size: 0.92rem; }

/* ---- Price（表組み） ---- */
.section-price { background: #fff; }
.price-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 2rem;
  align-items: start;
}
.price-table {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.price-row { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; }
.price-row > span { padding: 1.1rem 1.3rem; text-align: center;}
.price-row:not(:last-child) { border-bottom: 1px solid var(--color-border); }
.price-row--head {
  background: var(--color-primary); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
}
.price-row--feature { background: rgba(210, 105, 74, 0.07); }
.price-figure { font-family: var(--font-latin); font-weight: 600; font-size: 1.7rem; color: var(--color-accent); text-align: right; }
.price-figure small { font-family: var(--font-body); font-size: 0.8rem; color: var(--color-subtext); margin-left: 0.2rem; }
.price-notes { margin-top: 1.4rem; padding-left: 1.1rem; }
.price-notes li { font-size: 0.82rem; color: var(--color-subtext); margin-bottom: 0.3rem; }

/* 料金イメージ（計算例カード） */
.price-example {
  background: var(--color-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem;
}
.price-example__label {
  display: inline-block;
  font-family: var(--font-head); font-weight: 500;
  font-size: 0.75rem; letter-spacing: 0.04em;
  color: #fff; background: var(--color-primary);
  padding: 0.25rem 0.8rem; border-radius: 999px;
  margin-bottom: 0.9rem;
}
.price-example__intro { font-size: 0.86rem; line-height: 1.8; color: var(--color-subtext); margin-bottom: 1.1rem; }

.price-case {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.price-case[open] { border-color: var(--color-accent); }
.price-case > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem;
  padding: 0.9rem 0.5rem;
  font-family: var(--font-head); font-weight: 500;
}
.price-case > summary::-webkit-details-marker { display: none; }
.price-case__name { position: relative; padding-left: 1.1rem; font-size: 0.95rem; color: var(--color-primary); }
.price-case__name::before {
  content: "+"; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-latin); color: var(--color-accent); font-size: 1.1rem; line-height: 1;
}
.price-case[open] .price-case__name::before { content: "−"; }
.price-case__sum {
  font-family: var(--font-latin); font-weight: 600; font-size: 1.35rem;
  color: var(--color-accent); line-height: 1; white-space: nowrap;
}
.price-case__sum small { font-family: var(--font-body); font-size: 0.72rem; color: var(--color-subtext); margin-left: 0.1rem; }
.price-case__body { padding: 0 1.1rem 1.1rem; }
.price-case__desc { font-size: 0.84rem; line-height: 1.8; margin-bottom: 0.6rem; }
.price-case__formula {
  font-size: 0.86rem; color: var(--color-subtext);
  padding: 0.7rem 0.9rem; background: var(--color-base); border-radius: 8px;
}
.price-case__formula strong { color: var(--color-accent); font-family: var(--font-latin); font-weight: 600; }
.price-example__note { font-size: 0.78rem; color: var(--color-subtext); margin-top: 0.9rem; }

@media (max-width: 720px) {
  .price-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ---- Flow（縦タイムライン） ---- */
.section-flow { background: var(--color-base); }
.flow-list {
  list-style: none;
  display: flex; flex-direction: column;
  max-width: 48rem; margin-inline: auto;
}
.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.8rem 1fr;
  column-gap: 1.2rem;
  padding-bottom: 1.8rem;
}
.flow-step:last-child { padding-bottom: 0; }
/* ステップをつなぐ縦線 */
.flow-step::before {
  content: "";
  position: absolute;
  left: 1.4rem; top: 3.2rem; bottom: -0.2rem;
  width: 2px; transform: translateX(-50%);
  background: var(--color-border);
}
.flow-step:last-child::before { display: none; }
.flow-num {
  grid-row: 1 / span 2;
  display: grid; place-items: center;
  width: 2.8rem; height: 2.8rem;
  border-radius: 50%;
  background: var(--color-leaf); color: #fff;
  font-family: var(--font-latin); font-weight: 600; font-size: 1.15rem;
  z-index: 1;
}
.flow-step h3 { font-size: 1.12rem; margin: 0.35rem 0 0.4rem; align-self: center; }
.flow-step p { font-size: 0.92rem; color: var(--color-subtext); }

/* ---- Voice ---- */
.section-voice { background: #fff; }
.voice-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.voice-card {
  background: var(--color-base);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--color-border);
  position: relative;
}
.voice-card::before {
  content: "“"; font-family: var(--font-head); font-size: 2.6rem;
  color: var(--color-leaf); line-height: 1; display: block; margin-bottom: 0.2rem;
}
.voice-card p { font-size: 0.95rem; margin-bottom: 0.9rem; }
.voice-card cite { font-style: normal; font-size: 0.8rem; color: var(--color-subtext); }

/* ---- FAQ ---- */
.section-faq { background: var(--color-base); }
.faq-list { display: grid; gap: 0.8rem; }
.faq-list details {
  border: 1px solid var(--color-border); border-radius: 12px;
  padding: 0 1.2rem; background: #fff;
}
.faq-list summary {
  font-family: var(--font-head); font-weight: 500; font-size: 1rem;
  padding: 1.1rem 2rem 1.1rem 0; cursor: pointer; position: relative; list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--font-latin); font-size: 1.4rem; color: var(--color-accent);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 0 1.1rem; font-size: 0.92rem; color: var(--color-subtext); }

/* ---- Contact ---- */
.section-contact { background: var(--color-primary-deep); color: #fff; }
.contact-inner h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); margin-bottom: 0.8rem; }
.contact-lead { color: rgba(255, 255, 255, 0.85); margin-bottom: 2.4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.4rem; }
.contact-info > div {
  padding: 0.85rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem; align-items: baseline;
}
.contact-info dt { font-family: var(--font-head); font-size: 0.85rem; color: #bfe3a3; }
.contact-info dd { font-size: 0.92rem; }
.contact-info dd a { font-family: var(--font-latin); font-size: 1.15rem; color: #fff; text-decoration: none; }
.contact-info small { display: block; font-size: 0.7rem; color: rgba(255, 255, 255, 0.6); }
.contact-form { display: grid; gap: 1rem; }
.contact-form label { display: grid; gap: 0.4rem; font-size: 0.85rem; font-family: var(--font-head); font-weight: 500; }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 0.85rem 0.9rem; border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08); color: #fff; width: 100%;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.45); }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--color-leaf); outline-offset: 1px; }
.contact-form .btn { margin-top: 0.4rem; }
.form-note { color: rgba(255, 255, 255, 0.55) !important; }

/* 案内文（電話 / LINE の使い分け） */
.contact-lead { margin-bottom: 0.5rem; }
.contact-guide {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem; line-height: 1.85;
  margin-bottom: 2.4rem;
}
.contact-guide strong { color: #bfe3a3; font-weight: 700; }

/* contact-info を整える */
.contact-info > div:last-child { border-bottom: none; }

/* ---- LINE 相談カード ---- */
.line-card {
  background: #fff; color: var(--color-text);
  border-radius: 18px;
  padding: 1.7rem 1.5rem 1.8rem;
  border-top: 4px solid #06c755;            /* LINE グリーン */
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
.line-card__label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-head); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.06em;
  color: #06a44c;
  background: rgba(6, 199, 85, 0.12);
  padding: 0.28rem 0.8rem; border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}
.line-card__label::before {
  content: ""; width: 0.62rem; height: 0.62rem; border-radius: 50%;
  background: #06c755;
}
.line-card__title {
  font-size: 1.28rem; color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.line-card__lead {
  font-size: 0.9rem; line-height: 1.85; color: var(--color-subtext);
  margin-bottom: 1.3rem;
}

/* 友だち追加バッジ */
.line-official-btn {
  display: block; width: fit-content; line-height: 0;
  margin: 0 auto 1.5rem; border-radius: 8px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.line-official-btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.line-official-btn img { height: 46px; }

/* チャット風テンプレート */
.line-template {
  border: 1px solid var(--color-border);
  border-radius: 14px; overflow: hidden;
  background: #f3f6f1;
}
.line-template__head {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  padding: 0.6rem 0.65rem 0.6rem 0.95rem;
  background: #eef2ea;
  border-bottom: 1px solid var(--color-border);
}
.line-template__head span {
  font-family: var(--font-head); font-weight: 500;
  font-size: 0.76rem; color: var(--color-subtext);
}
.line-copy-btn {
  flex: 0 0 auto; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 0.76rem;
  color: #fff; background: var(--color-primary);
  border: none; border-radius: var(--radius-pill);
  padding: 0.42rem 1.05rem;
  transition: filter 0.15s ease, transform 0.1s ease, background 0.2s ease;
}
.line-copy-btn:hover { filter: brightness(1.08); }
.line-copy-btn:active { transform: scale(0.96); }
.line-copy-btn.is-copied { background: #06c755; }
.line-template__body {
  margin: 0; padding: 1rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem; line-height: 1.95; color: var(--color-text);
  white-space: pre-wrap; word-break: break-word;
}

/* ---- Footer ---- */
.site-footer { background: #1f4029; color: rgba(255, 255, 255, 0.8); padding: 3rem 0 2.5rem; }
.footer-inner { display: grid; gap: 1.6rem; }
.footer-brand { display: flex; align-items: center; gap: 0.7rem; }
.footer-name { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: #fff; }
.footer-sub { font-family: var(--font-latin); font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(255, 255, 255, 0.6); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; }
.footer-nav a { font-size: 0.85rem; text-decoration: none; color: rgba(255, 255, 255, 0.8); }
.footer-nav a:hover { color: var(--color-leaf); }
.footer-copy { font-size: 0.72rem; color: rgba(255, 255, 255, 0.5); line-height: 1.8; border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 1.4rem; }

/* ---- フォーカス / モーション配慮 ---- */
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   タブレット（768px〜）
   ============================================================ */
@media (min-width: 768px) {
  .hamburger { display: none; }
  .pc-nav { display: block; }
  .pc-nav ul { display: flex; gap: 1.5rem; list-style: none; }
  .pc-nav a { font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; text-decoration: none; color: var(--color-text); }
  .pc-nav a:hover { color: var(--color-primary); }
  .header-cta {
    display: inline-flex; align-items: center;
    background: var(--color-accent); color: #fff;
    font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
    padding: 0.6rem 1.3rem; border-radius: var(--radius-pill); text-decoration: none;
  }
  .header-cta:hover { filter: brightness(1.05); }

  .hero-actions .btn { flex: 0 0 auto; }
  .hero-inner {
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
  }
  .hero-media { margin: 0; max-width: none; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { flex-direction: row; align-items: center; }
  .about-photo, .about-body { flex: 1 1 50%; }
  .contact-grid { grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: baseline; }
  .contact-info > div { padding: 1.3rem 0; }
  .footer-inner { grid-template-columns: 1fr auto; align-items: center; }
  .footer-copy { grid-column: 1 / -1; }
}

/* ============================================================
   デスクトップ（1024px〜）
   ============================================================ */
@media (min-width: 1024px) {
  .card-grid { grid-template-columns: repeat(4, 1fr); }
  .section-head { max-width: 43rem; }
}

/* ---- 代表紹介（Profile） ---- */
.section-profile { background: #fff; }
.profile-grid { display: grid; grid-template-columns: 1fr; gap: 1.6rem; }
.profile-photo { margin: 0; }
.profile-photo img {
  display: block; width: 100%;
  border-radius: var(--radius-card);
  aspect-ratio: 3 / 4; object-fit: cover; object-position: center top;
}
.profile-name {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.25rem; color: var(--color-primary);
  margin-bottom: 0.9rem;
}
.profile-body p { font-size: 0.95rem; line-height: 2; color: var(--color-text); margin-bottom: 1rem; }
.profile-history {
  margin-top: 2.4rem;
  background: var(--color-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem;
}
.profile-history h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  color: var(--color-primary); margin-bottom: 0.6rem;
}
.profile-history h4 + .profile-timeline { margin-bottom: 1.4rem; }
.profile-history .profile-timeline:last-child { margin-bottom: 0; }
.profile-timeline > div {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: 0.8rem;
  padding: 0.5rem 0; border-bottom: 1px dashed var(--color-border);
  align-items: baseline;
}
.profile-timeline > div:last-child { border-bottom: none; }
.profile-timeline dt {
  font-family: var(--font-latin); font-size: 0.85rem;
  color: var(--color-accent); letter-spacing: 0.03em;
}
.profile-timeline dd { font-size: 0.92rem; }

@media (min-width: 768px) {
  .profile-grid { grid-template-columns: 1.25fr 0.75fr; gap: 3rem; align-items: center; }
  .profile-photo { max-width: 320px; justify-self: end; }
  .profile-history { margin-top: 3rem; }
}

/* ---- 料金の目安リスト ---- */
.price-guide h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 0.88rem;
  color: var(--color-primary); margin: 1.1rem 0 0.4rem;
}
.price-guide h4:first-child { margin-top: 0; }
.price-guide ul { list-style: none; margin: 0; padding: 0; }
.price-guide li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.5rem 0.2rem; border-bottom: 1px dashed var(--color-border);
  font-size: 0.92rem;
}
.price-guide li:last-child { border-bottom: none; }
.price-guide__sum {
  font-family: var(--font-head); font-weight: 700;
  color: var(--color-primary); white-space: nowrap;
}

/* ---- LINE QRコード ---- */
.line-qr { margin: 0 auto 1.5rem; text-align: center; }
.line-qr a { display: block; width: fit-content; margin: 0 auto; }
.line-qr img {
  width: 180px; height: auto; max-width: 100%;
  margin: 0 auto;
  border: 1px solid var(--color-border); border-radius: 12px;
  padding: 0.5rem; background: #fff;
}
.line-qr figcaption {
  margin-top: 0.5rem;
  font-size: 0.76rem; color: var(--color-subtext);
}

/* ---- プライバシーポリシー・法令ページ（privacy.html） ---- */
.sp-only { display: none; }
@media (max-width: 720px) { .sp-only { display: inline; } }

.section-legal { background: #fff; }
.legal-container { max-width: 780px; }

.legal-block {
  margin-bottom: 3rem;
  padding: 1.8rem clamp(1.2rem, 4vw, 2.2rem) 2rem;
  background: var(--color-base);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
}
.legal-block:last-of-type { margin-bottom: 0; }

.legal-block h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid rgba(124, 179, 66, 0.4);
}
.legal-block h4 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--color-primary-deep);
  margin: 1.6rem 0 0.5rem;
}
.legal-block p { font-size: 0.95rem; margin-bottom: 0.8rem; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul {
  margin: 0.2rem 0 0.9rem;
  padding-left: 1.3em;
  font-size: 0.95rem;
}
.legal-block li { margin-bottom: 0.3rem; }
.legal-block a { color: var(--color-primary); }

.legal-contact { margin: 1rem 0 1.4rem; border-top: 1px solid var(--color-border); }
.legal-contact > div {
  display: grid; grid-template-columns: 6.5em 1fr; gap: 0.8rem;
  padding: 0.55rem 0.2rem; border-bottom: 1px solid var(--color-border);
}
.legal-contact dt {
  font-family: var(--font-head); font-weight: 500;
  font-size: 0.85rem; color: var(--color-primary);
}
.legal-contact dd { font-size: 0.92rem; }
.legal-contact dd a { text-decoration: none; color: var(--color-primary); font-weight: 500; }

.legal-date {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--color-subtext);
  text-align: right;
}
