:root {
  --paper:        #f7f4ec;       /* 暖白（ベース背景） */
  --paper-light:  #fbfaf5;
  --paper-deep:   #eae5d6;
  --accent:       #a9c7bb;       /* ペールブルーグリーン（背景バンド・装飾のみ） */
  --accent-pale:  #dce9e2;
  --gold:         #b8974f;       /* 控えめゴールド（罫線・番号・小アイコンのみ・面使い禁止） */
  --gold-deep:    #8a6f36;
  --main:         #2f4a42;       /* 濃い墨緑（本文・CTA・ナビ基準色） */
  --main-deep:    #1e2f2a;
  --main-light:   #e4ede9;
  --ink:          #2b2f2d;       /* 本文色 */
  --ink-soft:     #63685f;
  --ink-light:    #9a9d95;
  --white:        #ffffff;
  --line-green:   #06C755;
  --line-green-d: #05a948;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  line-height: 2.0;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4 { font-weight: 500; line-height: 1.65; letter-spacing: 0.12em; }
a { color: inherit; text-decoration: none; }

.script {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* LINEボタン共通 */
.line-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--line-green); color: #fff;
  font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700;
  border-radius: 999px; box-shadow: 0 6px 18px rgba(6,199,85,0.32);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.line-btn:hover { background: var(--line-green-d); transform: translateY(-2px); box-shadow: 0 9px 24px rgba(6,199,85,0.42); }
.line-btn .ico { font-size: 1.05em; }

/* サンプル明示バー */
.sample-bar {
  background: var(--main-deep); color: #fff; font-size: 0.78rem; text-align: center;
  padding: 0.5rem 1rem; letter-spacing: 0.04em; position: sticky; top: 0; z-index: 200;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.sample-bar a { color: var(--accent-pale); margin-left: 0.5rem; }
@media (max-width: 720px) {
  .sample-bar { font-size: 0.7rem; padding: 0.4rem 0.6rem; }
  .sample-bar .sb-detail { display: none; }
}

.sample-banner {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--main-deep);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.ai-badge {
  position: absolute; z-index: 5; left: clamp(1.2rem,3vw,2.4rem); top: clamp(1rem,2.4vw,1.6rem);
  background: rgba(30,47,42,0.72); color: #fff; font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.04em; padding: 0.3rem 0.8rem; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ============================================================
   ヘッダー
============================================================ */
header.site {
  background: var(--paper-light); padding: 1rem 2rem; display: grid;
  grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center;
  position: sticky; top: 33px; z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.06);
}
header.site .logo-wrap { display: flex; align-items: center; gap: 0.8rem; }
header.site .logo-mark {
  width: 48px; height: 48px; background: var(--main); color: var(--paper);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif JP', serif; font-size: 1.3rem; font-weight: 600;
}
header.site .logo-text { line-height: 1.2; }
header.site .logo-text .small-jp { display: block; font-size: 0.66rem; color: var(--ink-soft); letter-spacing: 0.15em; }
header.site .logo-text .big-jp { font-size: 1.12rem; color: var(--ink); font-weight: 600; letter-spacing: 0.14em; white-space: nowrap; }

header.site nav.main-nav { justify-self: center; }
header.site nav.main-nav ul { list-style: none; display: flex; gap: 1.4rem; }
header.site nav.main-nav ul li a {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  font-size: 0.74rem; color: var(--ink); font-family: 'Zen Kaku Gothic New', sans-serif; letter-spacing: 0.06em;
  transition: color 0.3s;
}
header.site nav.main-nav ul li a:hover { color: var(--gold-deep); }
header.site nav.main-nav ul li a .icon { line-height: 1; font-size: 1.15rem; }
.main-nav ul li a.active { color: var(--gold-deep); }

header.site .header-cta { display: flex; align-items: center; gap: 1rem; }
header.site .header-tel { text-align: right; font-family: 'Zen Kaku Gothic New', sans-serif; }
header.site .header-tel .num { font-size: 1.05rem; color: var(--ink); font-weight: 600; letter-spacing: 0.03em; }
header.site .header-tel .num::before { content: 'TEL.'; font-size: 0.78rem; margin-right: 0.2rem; color: var(--ink-soft); }
header.site .header-tel .hours { font-size: 0.64rem; color: var(--ink-soft); letter-spacing: 0.04em; }
header.site .header-line {
  padding: 0.7rem 1.3rem; font-size: 0.84rem; letter-spacing: 0.03em;
  background: var(--line-green); color: #fff; border-radius: 999px; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: background 0.2s;
}
header.site .header-line:hover { background: var(--line-green-d); }

.nav-toggle { display: none; flex: 0 0 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; min-width: 44px; height: 44px; padding: 10px; background: transparent; border: none; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--main-deep); border-radius: 2px; transition: transform .25s, opacity .2s; }
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); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(30,47,42,0.45); z-index: 250; }

/* ナビ7本＋電話＋LINEボタンを1行に収めるには約1180px要る。1100pxまでPCナビを引っぱると
   1101〜1179pxでナビ各項目が2行に折り返してヘッダーが87→108pxに膨らむため、1180pxで切り替える。 */
@media (max-width: 1180px) {
  header.site { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; }
  .nav-toggle { display: flex; }
  header.site nav.main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(80vw, 300px);
    background: var(--paper-light); box-shadow: -8px 0 30px rgba(0,0,0,0.18);
    transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s;
    z-index: 300; padding: 4.8rem 1.3rem 2rem; overflow-y: auto;
  }
  header.site nav.main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  header.site nav.main-nav ul li a { flex-direction: row; justify-content: flex-start; gap: 0.8rem; padding: 0.95rem 0.5rem; border-bottom: 1px solid rgba(0,0,0,0.07); font-size: 0.96rem; }
  body.nav-open header.site nav.main-nav { transform: none !important; visibility: visible !important; }
  body.nav-open .nav-overlay { display: block; }
  body.nav-open header.site { z-index: 400; }
  body.nav-open { overflow: hidden; }
}
/* 電話番号＋受付時間＋LINEボタンが並びきらなくなるのは700px前後。640pxまで残すと
   641〜700pxで「TEL.0143-XX-／XXXX」「LINEで／相談」と2行に割れてヘッダーが141pxまで膨らむため、
   余裕を見て720pxで電話ブロックを畳む。 */
@media (max-width: 720px) {
  header.site .header-tel { display: none; }
}
@media (max-width: 640px) {
  header.site { padding: 0.7rem 1rem; gap: 0.8rem; }
  header.site .header-line { padding: 0.55rem 1rem; font-size: 0.76rem; }
  header.site .logo-mark { width: 38px; height: 38px; font-size: 1.05rem; }
  header.site .logo-text .big-jp { font-size: 0.86rem; letter-spacing: 0.06em; }
}
@media (max-width: 480px) {
  header.site .header-line { display: none; }
}

/* ============================================================
   ヒーロー（3枚スライド＋ズーム）
============================================================ */
/* 100svh のままだと上に載るサンプルバー＋ヘッダーの分（111〜139px）だけ画面をはみ出し、
   PCでは見出しの2行目・説明文・相談カードの電話番号がファーストビューから欠けていた。
   引く値は幅ごとの実測値（721px〜:44+87／641-720:44+82／515-640:44+67／〜514:72+67）。 */
.hero { position: relative; width: 100%; height: calc(100svh - 131px); min-height: 540px; background: var(--paper-light); overflow: hidden; }
@media (max-width: 720px) { .hero { height: calc(100svh - 126px); } }
@media (max-width: 640px) { .hero { height: calc(100svh - 111px); } }
@media (max-width: 514px) { .hero { height: calc(100svh - 139px); } }
.hero-image {
  position: absolute; inset: 0; background-size: cover; background-position: center center; background-repeat: no-repeat;
  filter: brightness(1.06) contrast(1.03) saturate(1.02);
  opacity: 0; animation: hero-cycle 24s infinite, hero-zoom 24s infinite;
  transform-origin: center center; will-change: opacity, transform;
}
.hero-image.slide-1 { background-image: url('images/hero-1.jpg'); animation-delay: 0s; }
.hero-image.slide-2 { background-image: url('images/hero-2.jpg'); animation-delay: 8s; }
.hero-image.slide-3 { background-image: url('images/hero-3.jpg'); animation-delay: 16s; }
@keyframes hero-cycle { 0% {opacity:1;} 28% {opacity:1;} 34% {opacity:0;} 94% {opacity:0;} 100% {opacity:1;} }
@keyframes hero-zoom { 0% {transform:scale(1.05);} 50% {transform:scale(1.15);} 100% {transform:scale(1.05);} }
@keyframes hero-zoom-mobile { 0% {transform:scale(1.15);} 50% {transform:scale(1.2);} 100% {transform:scale(1.15);} }
.hero::after {
  content: ''; position: absolute; inset: 0;
  /* 文字帯（下端〜約50%）まで濃さを届かせる。旧値では見出し・説明文・バッジの背景が明度105〜165
     までしか落ちず、コントラストが2.46〜4.06と基準（本文4.5・大見出し3.0）に届いていなかった */
  background: linear-gradient(180deg, rgba(20,30,26,0.05) 0%, rgba(20,30,26,0.05) 28%, rgba(20,30,26,0.26) 50%, rgba(20,30,26,0.52) 70%, rgba(20,30,26,0.66) 86%, rgba(20,30,26,0.70) 100%);
  z-index: 1; pointer-events: none;
}
.hero-inner { position: relative; width: 100%; height: 100%; z-index: 2; }
.hero h1 {
  position: absolute; top: auto; bottom: clamp(2rem, 5vw, 3.2rem); left: clamp(1.6rem, 4vw, 4rem); right: clamp(1.6rem, 4vw, 4rem);
  font-family: 'Noto Serif JP', serif; font-size: clamp(1.5rem, 3vw, 2.4rem); color: #fff;
  line-height: 1.4; font-weight: 600; letter-spacing: 0.08em;
  text-shadow: 0 2px 22px rgba(0,0,0,0.8), 0 1px 6px rgba(0,0,0,0.65), 0 0 36px rgba(0,0,0,0.4);
  z-index: 3; max-width: 760px;
}
.hero h1 .chip {
  /* 半透明の白地では明るい背景に埋もれて2.46まで落ちていたため、地色を暗くして白文字を保つ */
  display: inline-block; background: rgba(20,30,26,0.45); border: 1px solid rgba(255,255,255,0.5);
  padding: 0.3rem 0.9rem; border-radius: 999px; font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(0.72rem, 1.3vw, 0.86rem); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 0.6rem;
}
.hero h1 span.line { display: block; }
.hero h1 .sub {
  display: block; margin-top: 0.6rem; font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(0.84rem, 1.5vw, 1rem); font-weight: 500; letter-spacing: 0.04em; line-height: 1.6; opacity: 0.96;
}
@media (prefers-reduced-motion: reduce) {
  .hero-image { animation: none; opacity: 1; transform: none; }
  .hero-image.slide-2, .hero-image.slide-3 { display: none; }
}
.hero-card {
  background: var(--white); border-radius: 12px; padding: 1.8rem 2rem 1.8rem;
  position: absolute; right: clamp(1.4rem, 3vw, 3rem); bottom: clamp(1.4rem, 3vw, 3rem);
  width: clamp(260px, 30vw, 350px); box-shadow: 0 18px 42px rgba(0,0,0,0.24); z-index: 4;
}
.hero-card .lead { font-size: 1.0rem; color: var(--ink); text-align: center; margin-bottom: 1rem; line-height: 1.8; font-weight: 500; }
.hero-card .line-btn { display: flex; width: 100%; padding: 1rem; font-size: 0.96rem; margin-bottom: 0.7rem; }
.hero-card .line-sub { text-align: center; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.7rem; color: var(--ink-soft); margin-bottom: 1rem; }
.hero-card .tel-large { font-family: 'Zen Kaku Gothic New', sans-serif; text-align: center; border-top: 1px solid var(--paper-deep); padding-top: 0.9rem; }
.hero-card .tel-large .num { font-size: 1.45rem; color: var(--ink); font-weight: 700; letter-spacing: 0.02em; }
.hero-card .tel-large .num::before { content: 'TEL.'; font-size: 0.82rem; margin-right: 0.3rem; color: var(--ink-soft); }
.hero-card .hours { text-align: center; font-size: 0.72rem; color: var(--ink-soft); font-family: 'Zen Kaku Gothic New', sans-serif; }

@media (max-width: 860px) {
  /* 上の .hero で幅ごとに引いた値を打ち消さないよう height は指定しない（min-height だけ上書き） */
  .hero { min-height: 560px; overflow: hidden; }
  .hero-card { display: none; }
  .hero-image.slide-1 { background-image: url('images/hero-1-sp.jpg'); background-position: center center; transform-origin: center 60%; }
  .hero-image.slide-2 { background-image: url('images/hero-2-sp.jpg'); background-position: center center; transform-origin: center center; animation: hero-cycle 24s 8s infinite; }
  .hero-image.slide-3 { background-image: url('images/hero-3-sp.jpg'); background-position: center center; transform-origin: center 60%; }
  .hero-image { animation: hero-cycle 24s infinite, hero-zoom-mobile 24s infinite; }
  .hero h1 { top: 1.2rem; left: 1.2rem; right: 1.2rem; bottom: auto; font-size: clamp(1.1rem, 4.4vw, 1.4rem); line-height: 1.4; letter-spacing: 0.04em; max-width: 94%; }
  .hero h1 .chip { margin-bottom: 0.4rem; }
  .hero h1 .sub { font-size: 0.7rem; margin-top: 0.4rem; line-height: 1.5; }
  .ai-badge { top: auto; bottom: 1rem; left: 1.2rem; }
  /* スマホは天井など明るい背景が上部に来やすいため、上部の暗さを強化して文字・バッジの可読性を確保 */
  .hero::before {
    /* スマホは見出しが上寄せ。文字帯を覆う高さ・濃さに調整（旧値では説明文が2.96まで落ちていた） */
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 52%;
    background: linear-gradient(180deg, rgba(20,30,26,0.70) 0%, rgba(20,30,26,0.56) 46%, rgba(20,30,26,0.20) 78%, rgba(20,30,26,0) 100%);
    z-index: 1; pointer-events: none;
  }
}
@media (max-width: 860px) and (prefers-reduced-motion: reduce) {
  .hero-image { animation: none; opacity: 1; transform: none; }
  .hero-image.slide-2, .hero-image.slide-3 { display: none; }
}

/* 線アイコン */
.pro-icon { width: 1em; height: 1em; display: inline-block; object-fit: contain; }
.usecase-item .ic .pro-icon { width: 26px; height: 26px; filter: brightness(0) invert(1); }
.service-card .ic .pro-icon, .menu-card .m-icon .pro-icon { width: 42px; height: 42px; }
.trust-chip .ico .pro-icon { width: 30px; height: 30px; }
header.site nav.main-nav ul li a .icon .pro-icon { width: 21px; height: 21px; }
.flow-step .ic-wrap .pro-icon { width: 28px; height: 28px; }
.mobile-cta a .ico .pro-icon { width: 20px; height: 20px; }
.mobile-cta .m-tel .ico .pro-icon { filter: brightness(0) invert(1); }

/* 用件バー（ヒーロー直下） */
.usecase-bar { background: var(--main); padding: 1.4rem 1rem; }
.usecase-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 0.8rem; }
@media (max-width: 720px) { .usecase-grid { grid-template-columns: repeat(2,1fr); } }
.usecase-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px;
  padding: 1rem 0.6rem; color: #fff; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.02em; transition: background 0.2s;
}
.usecase-item:hover { background: rgba(255,255,255,0.16); }
.usecase-item .ic { font-size: 1.5rem; }

/* ============================================================
   共通：セクション
============================================================ */
section.section { padding: 6rem 2rem; position: relative; }
@media (max-width: 720px) { section.section { padding: 4rem 1.4rem; } }
.section-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.section-head { text-align: center; margin-bottom: 3.5rem; position: relative; }
.section-head .script { display: block; margin-bottom: 0.7rem; font-size: 0.8rem; }
.section-head h2 { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--ink); letter-spacing: 0.14em; font-weight: 500; line-height: 1.7; word-break: auto-phrase; position: relative; }
.section-head h2::after {
  content: ""; display: block; width: 56px; height: 3px; margin: .9rem auto 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0 45%, var(--accent) 45% 75%, var(--main) 75%);
}
.section-head p.intro { margin-top: 1.5rem; font-size: 0.94rem; color: var(--ink-soft); line-height: 2.1; max-width: 660px; margin-left: auto; margin-right: auto; }

/* お知らせ */
.news-section { background: var(--paper); }
.news-list { max-width: 800px; margin: 0 auto 2.2rem; list-style: none; }
.news-row { border-bottom: 1px solid rgba(0,0,0,0.08); }
.news-row:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.news-row a { display: grid; grid-template-columns: 7.5rem 6.5rem 1fr; align-items: center; gap: 0.6rem 1rem; padding: 1.05rem 0.4rem; transition: background 0.2s; }
.news-row a:hover { background: var(--paper-deep); }
.news-date { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.8rem; color: var(--ink-soft); letter-spacing: 0.02em; }
.news-cat { justify-self: start; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.02em; padding: 0.22rem 0.7rem; border-radius: 999px; white-space: nowrap; background: var(--main-light); color: var(--main-deep); }
.news-cat.cat-season { background: var(--accent-pale); color: var(--gold-deep); }
.news-title { font-size: 0.92rem; color: var(--ink); line-height: 1.6; }
.news-more { text-align: center; }
@media (max-width: 640px) {
  .news-row a { grid-template-columns: auto auto; grid-template-areas: "date cat" "title title"; padding: 0.9rem 0.3rem; }
  .news-date { grid-area: date; } .news-cat { grid-area: cat; } .news-title { grid-area: title; font-size: 0.88rem; }
}
.btn-teal-pill {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--main); color: #fff;
  padding: 1rem 3rem; border-radius: 999px; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.94rem; font-weight: 500;
  letter-spacing: 0.08em; transition: background 0.3s;
}
.btn-teal-pill:hover { background: var(--main-deep); }

/* できることメニュー */
.menu-section { background: var(--paper); }
.menu-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.3rem; }
@media (max-width: 900px) { .menu-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-card { background: var(--white); border-radius: 12px; text-align: center; padding: 2rem 1.4rem 1.8rem; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.menu-card::before { content: ""; position: absolute; top: 0; left: 1.2rem; right: 1.2rem; height: 4px; border-radius: 0 0 999px 999px; background: linear-gradient(90deg, var(--gold), var(--accent), var(--main)); opacity: .8; }
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(0,0,0,0.08); }
.menu-card .m-icon { font-size: 2.3rem; margin-bottom: 1rem; }
.menu-card h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 0.8rem; letter-spacing: 0.08em; font-weight: 500; }
.menu-card p { font-size: 0.82rem; line-height: 1.9; color: var(--ink-soft); text-align: left; }

/* 選ばれる理由（Point） */
.point-section { background: var(--paper-deep); }
.point-grid { max-width: 1100px; margin: 0 auto; display: grid; gap: 4rem; }
.point-item { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.point-item.reverse { direction: rtl; }
.point-item.reverse > * { direction: ltr; }
@media (max-width: 860px) { .point-item { grid-template-columns: 1fr; gap: 1.5rem; } .point-item.reverse { direction: ltr; } }
.point-img { aspect-ratio: 5/4; border-radius: 14px; box-shadow: 0 10px 26px rgba(0,0,0,0.12); background-size: cover; background-position: center; }
.point-text { position: relative; }
.point-text .num { font-family: 'Noto Serif JP', serif; color: var(--gold); font-size: 2.8rem; position: absolute; top: -1.7rem; left: -0.3rem; line-height: 1; opacity: 0.85; font-weight: 700; }
.point-text h3 { font-size: clamp(1.2rem,2.2vw,1.5rem); color: var(--ink); line-height: 1.7; letter-spacing: 0.08em; margin-bottom: 1.2rem; font-weight: 500; padding-top: 1.5rem; }
.point-text p { font-size: 0.92rem; line-height: 2.05; color: var(--ink); }

.trust-row { max-width: 1040px; margin: 4rem auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr)); gap: 1rem; }
.trust-chip { background: var(--white); border-radius: 10px; padding: 1.2rem 1rem; text-align: center; box-shadow: 0 6px 16px rgba(0,0,0,0.04); }
.trust-chip .ico { font-size: 1.6rem; display: block; margin-bottom: 0.5rem; }
.trust-chip .t { display: block; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.84rem; font-weight: 700; color: var(--main-deep); letter-spacing: 0.02em; line-height: 1.5; }
.trust-chip .d { display: block; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.7rem; color: var(--ink-soft); margin-top: 0.3rem; line-height: 1.6; }

/* 中盤CTA帯 */
.cta-strip { background: var(--main); color: #fff; padding: 4rem 2rem; text-align: center; position: relative; }
.cta-strip .script { color: var(--accent-pale); }
.cta-strip h2 { color: #fff; font-size: clamp(1.4rem,3vw,1.9rem); margin-bottom: 0.8rem; letter-spacing: 0.08em; font-weight: 500; }
.cta-strip p { font-size: 0.95rem; opacity: 0.92; margin-bottom: 1.8rem; line-height: 1.95; font-family: 'Zen Kaku Gothic New', sans-serif; }
.cta-strip .cta-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-strip .line-btn { padding: 1.1rem 2.2rem; font-size: 1.0rem; }
.cta-strip .btn-tel { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; color: var(--main-deep); padding: 1.1rem 2.2rem; border-radius: 999px; font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700; font-size: 1.0rem; }

/* ============================================================
   Flow（初診の流れ）
============================================================ */
.flow-section { background: var(--paper); }
.flow-steps { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(5,1fr); gap: 1.2rem; }
@media (max-width: 900px) { .flow-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px) { .flow-steps { grid-template-columns: 1fr; } }
.flow-step { background: var(--white); border-radius: 12px; padding: 1.6rem 1.2rem; box-shadow: 0 6px 16px rgba(0,0,0,0.04); position: relative; }
.flow-step .num { font-family: 'Noto Serif JP', serif; color: var(--gold); font-size: 1.7rem; line-height: 1; margin-bottom: 0.5rem; font-weight: 700; }
.flow-step h3 { font-size: 0.98rem; color: var(--main-deep); margin-bottom: 0.5rem; letter-spacing: 0.02em; font-weight: 500; }
.flow-step p { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.8rem; color: var(--ink-soft); line-height: 1.8; }

/* 案内カード（持ち物・配慮など） */
.info-cards { max-width: 900px; margin: 3rem auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 720px) { .info-cards { grid-template-columns: 1fr; } }
.info-card { background: var(--white); border-radius: 12px; padding: 1.8rem 1.8rem; box-shadow: 0 6px 16px rgba(0,0,0,0.04); }
.info-card h3 { font-size: 1rem; color: var(--main-deep); margin-bottom: 0.9rem; letter-spacing: 0.04em; font-weight: 500; }
.info-card ul { list-style: none; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.86rem; color: var(--ink-soft); line-height: 2.0; }
.info-card ul li::before { content: "・"; color: var(--gold); margin-right: 0.2rem; }
.info-card p { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.86rem; color: var(--ink-soft); line-height: 2.0; }

/* 再来院ハードル下げコールアウト */
.callout { max-width: 780px; margin: 3rem auto 0; background: var(--accent-pale); border-radius: 14px; padding: 2rem 2.2rem; text-align: center; }
.callout p { font-size: 1rem; color: var(--main-deep); line-height: 1.95; font-weight: 500; }

/* 診療内容の確認注記 */
.note-box { max-width: 900px; margin: 2.5rem auto 0; background: var(--white); border: 1px dashed var(--gold); border-radius: 12px; padding: 1.4rem 1.6rem; }
.note-box p { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.82rem; color: var(--ink-soft); line-height: 2.0; }

/* ============================================================
   Profile（院長紹介）
============================================================ */
.profile-section { background: var(--paper-deep); }
.profile-grid { max-width: 840px; margin: 0 auto; display: grid; grid-template-columns: 200px 1fr; gap: 2.8rem; align-items: center; }
@media (max-width: 720px) { .profile-grid { grid-template-columns: 1fr; text-align: center; gap: 1.6rem; } }
.profile-photo { width: 200px; height: 200px; border-radius: 16px; background: var(--paper-deep) url('images/portrait-in.jpg') center center / cover no-repeat; box-shadow: 0 10px 26px rgba(0,0,0,0.12); margin: 0 auto; }
.profile-content h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 0.4rem; letter-spacing: 0.06em; }
.profile-content .role { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.84rem; color: var(--gold-deep); margin-bottom: 1rem; letter-spacing: 0.02em; }
.profile-content p { font-size: 0.94rem; line-height: 2.05; margin-bottom: 0.7rem; }
.profile-content .placeholder-note { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.76rem; color: var(--ink-light); margin-top: 0.8rem; }

/* 院内ギャラリー */
.gallery-section { background: var(--paper); }
.gallery-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
.gallery-grid figure { margin: 0; }
.gallery-img { width: 100%; aspect-ratio: 4/3; background-size: cover; background-position: center; border-radius: 10px; box-shadow: 0 6px 18px rgba(30,47,42,0.1); }
.gallery-grid figcaption { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.76rem; color: var(--ink-soft); margin-top: 0.5rem; text-align: center; }

/* スタッフ紹介 */
.staff-grid { max-width: 900px; margin: 3rem auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
@media (max-width: 720px) { .staff-grid { grid-template-columns: 1fr; max-width: 420px; } }
.staff-card { text-align: center; }
.staff-photo { width: 100%; aspect-ratio: 1/1; border-radius: 14px; background-size: cover; background-position: center; box-shadow: 0 8px 20px rgba(0,0,0,0.08); margin-bottom: 0.8rem; }
.staff-card .role { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.78rem; color: var(--gold-deep); }
.staff-card h4 { font-size: 0.98rem; color: var(--ink); margin-top: 0.2rem; letter-spacing: 0.04em; font-weight: 500; }

/* FAQ */
.faq-section { background: var(--paper-deep); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 10px; margin-bottom: .8rem; box-shadow: 0 4px 12px rgba(0,0,0,.04); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.1rem 1.4rem; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: .92rem; font-weight: 700; color: var(--main-deep); display: flex; align-items: flex-start; gap: .6rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: 'Q'; color: var(--gold); font-size: 1.05rem; line-height: 1.1; font-weight: 700; }
.faq-item summary::after { content: '+'; margin-left: auto; color: var(--ink-light); font-size: 1.3rem; line-height: 1; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .a { padding: 0 1.4rem 1.2rem 2.7rem; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: .84rem; line-height: 1.95; color: var(--ink-soft); }

/* アクセス情報 */
.access-block { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: 14px; padding: 2rem 2.2rem; box-shadow: 0 8px 22px rgba(0,0,0,0.05); }
.access-block dl { display: grid; grid-template-columns: 130px 1fr; gap: 0.8rem 1.2rem; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.9rem; }
.access-block dt { color: var(--main-deep); font-weight: 700; }
.access-block dd { color: var(--ink-soft); line-height: 1.8; }
@media (max-width: 560px) { .access-block dl { grid-template-columns: 1fr; gap: 0.2rem; } .access-block dt { margin-top: 0.8rem; } }
.access-map-note { max-width: 700px; margin: 1.4rem auto 0; text-align: center; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.78rem; color: var(--ink-light); }
.map-wrap { max-width: 700px; margin: 1.5rem auto 0; aspect-ratio: 16/7; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 22px rgba(0,0,0,0.05); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 720px) { .map-wrap { aspect-ratio: 4/3; } }

/* このサンプルについて */
.about-sample { background: var(--paper-deep); }
.about-sample .lead { max-width: 720px; margin: 0 auto; text-align: center; font-size: 0.94rem; line-height: 2.05; color: var(--ink); }
.about-list { max-width: 760px; margin: 2rem auto 0; display: grid; grid-template-columns: 150px 1fr; gap: 0.7rem 1.6rem; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.88rem; }
.about-list dt { color: var(--main-deep); font-weight: 700; }
.about-list dd { color: var(--ink-soft); }
@media (max-width: 600px) { .about-list { grid-template-columns: 1fr; gap: 0.2rem; } .about-list dt { margin-top: 0.7rem; } }

/* ============================================================
   フッター
============================================================ */
footer.site { background: var(--main-deep); color: rgba(255,255,255,0.92); padding: 4rem 2rem 2rem; font-family: 'Noto Serif JP', serif; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; }
@media (max-width: 860px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand .small-jp { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.85); letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.footer-brand .big-jp { font-size: 1.28rem; letter-spacing: 0.08em; color: #fff; margin-bottom: 1.5rem; font-weight: 500; }
.footer-info { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.84rem; line-height: 2.0; color: rgba(255,255,255,0.85); }
.footer-col h4 { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.86rem; color: #fff; margin-bottom: 1rem; letter-spacing: 0.06em; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.82rem; line-height: 2.4; }
.footer-col ul li a { color: rgba(255,255,255,0.88); }
.footer-col ul li a:hover { color: var(--accent-pale); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 3rem; padding-top: 1.5rem; text-align: center; font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 0.76rem; color: rgba(255,255,255,0.75); line-height: 1.95; }
.footer-disclaimer { max-width: 1100px; margin: 0 auto 1rem; padding: 1rem 1.2rem; background: rgba(255,255,255,0.08); border-radius: 6px; text-align: left; font-size: 0.78rem; line-height: 2.0; }
.footer-disclaimer strong { color: #fff; }
.footer-disclaimer a { color: var(--accent-pale); }
.footer-bottom small { display: block; margin-top: 0.6rem; color: rgba(255,255,255,0.6); }

/* ============================================================
   スマホ固定CTAバー（電話・LINEの2ボタンのみ）
============================================================ */
.mobile-cta { display: none; }
@media (max-width: 860px) {
  body { padding-bottom: 5rem; }
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
    padding: 8px 14px max(8px, env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96); border-top: 1px solid var(--main-light);
    box-shadow: 0 -10px 26px rgba(30,47,42,0.1);
  }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 0.4rem; min-height: 50px; border-radius: 999px; font-family: 'Zen Kaku Gothic New', sans-serif; font-weight: 700; font-size: 0.9rem; text-decoration: none; }
  .mobile-cta .m-tel { background: var(--main); color: #fff; box-shadow: 0 6px 16px rgba(47,74,66,0.3); }
  .mobile-cta .m-line { background: #fff; color: var(--line-green-d); border: 1.5px solid var(--line-green); }
}

/* ===== 下層ページ共通 ===== */
.page-hero { background: var(--main); color:#fff; text-align:center; padding: 3.2rem 1.5rem 3rem; position:relative; }
.page-hero .script { color: var(--accent-pale); }
.page-hero h1 { font-size: clamp(1.5rem,3.4vw,2.1rem); color:#fff; letter-spacing:0.12em; font-weight:500; }
.page-hero .crumb { font-family:'Zen Kaku Gothic New',sans-serif; font-size:0.74rem; color:rgba(255,255,255,0.6); margin-top:0.8rem; }
.page-hero .crumb a { color:rgba(255,255,255,0.78); }

/* Web予約風UI（ダミー・入力欄なし・formタグなし・案内カードのみ） */
.reserve-mock { max-width:620px; margin:0 auto; background:var(--white); border:1px dashed var(--ink-light); border-radius:14px; padding:2rem; text-align:center; }
.reserve-mock h3 { font-size: 1rem; color: var(--main-deep); margin-bottom: 1rem; font-weight: 500; }
.reserve-mock p { font-family:'Zen Kaku Gothic New',sans-serif; font-size:0.86rem; color:var(--ink-soft); line-height: 1.95; margin-bottom: 1.2rem; }
.reserve-mock .rm-btn { display:block; width:100%; padding:1rem; border:none; border-radius:999px; background:var(--main); color:#fff; font-family:'Zen Kaku Gothic New',sans-serif; font-weight:700; font-size:0.96rem; cursor:pointer; }
.reserve-mock .rm-btn:hover { background: var(--main-deep); }
.reserve-mock .rm-caution { font-family:'Zen Kaku Gothic New',sans-serif; font-size:0.74rem; color: var(--gold-deep); margin-top:1rem; line-height: 1.8; }

/* 認証番号などの注記付き情報行 */
.info-note-row { font-family:'Zen Kaku Gothic New',sans-serif; font-size: 0.76rem; color: var(--ink-light); margin-top: 0.3rem; line-height: 1.8; }
