@charset "UTF-8";
/* ===========================================================
   陰陽師 Takuya・Timur  サンプルサイト C案
   A案とB案の合成。地色はお客様のブログ（現行Wix）の #11E8F0 に合わせた。
   ブログの料理写真（赤いランチョンマット×ターコイズのクロス）と並んでも
   違和感が出ないよう、差し色は朱にしている。

   ■ #11E8F0 を扱うときの決めごと
   　1. この色の上の文字は必ず濃色（--ink）。白文字は1.5:1で読めない。
   　   お客様のブログも「トルコブルーの地＋黒文字」で組まれている
   　2. 本文は白いカードに載せる。地色は彩度0.88と強く、長文を直接置くと目が疲れる
   　   （ブログも白カード方式）
   　3. 白文字を載せたい面（ヒーローの膜・帯・フッター）は深い青緑 #055F66 を使う
   =========================================================== */

/* ---------- カラートークン ---------- */
:root {
  --cyan:       #11E8F0; /* 主役。お客様のブログの地色 */
  --cyan-pale:  #E3FBFC; /* 白カードの中の淡い面 */
  --band:       #055F66; /* 白文字を載せる面 */
  --band-deep:  #044A50;
  --tq-deep:    #067A80; /* 白地の上で文字に使う青緑 */

  --shu:        #C6462F; /* 朱。主ボタンと必須バッジ */
  --shu-light:  #DB5B43;

  --ink:        #0B2A30; /* 本文・見出し。トルコブルーの上でも9.9:1 */
  --ink-2:      #2A474E; /* 補助文字。白地専用。2026-09-17 ご要望で濃くした（象牙色の上で9.1:1） */
  --line-light: #CFE9EB;
  --line-cyan:  rgba(11, 42, 48, .14);
  --line-band:  rgba(255, 255, 255, .28);

  /* 白い面（09-15 クリーム → 09-17 象牙色 → 09-18 薄いレモンイエロー）。
     象牙色は赤みが強くベージュに見えたため、黄緑寄りに振って黄色そのものが出る色にした */
  --card:       #FFFCDE;
  --card-alt:   #F5EEC2; /* レモンイエローの面の中の縞 */
  --text-mute:  #E2F8F6; /* 濃い帯の上の補助文字 */

  --wrap: 1120px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(4, 60, 66, .14);
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
/* ページが画面より短いとき、フッターの下にトルコブルーがはみ出さないようにする */
html { scroll-behavior: smooth; background: var(--band-deep); }
body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 17px;
  font-weight: 500; /* 説明文をやや濃く（2026-09-17 ご要望） */
  line-height: 1.95;
  color: var(--ink);
  background: var(--cyan);
  -webkit-text-size-adjust: 100%;
}
/* 右クリック抑止（js/main.js）とセットで、画像の長押し保存とドラッグ持ち出しも塞ぐ */
img {
  max-width: 100%; height: auto; vertical-align: middle;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  user-select: none;
}
a { color: var(--tq-deep); }
h1, h2, h3, h4 {
  font-family: "Shippori Mincho B1", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
  letter-spacing: .02em;
}
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
/* 別ページで開くリンクの目印 */
.ext { font-size: .8em; margin-left: .25em; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 15px 30px;
  border: 1px solid transparent; border-radius: 999px;
  font-size: .96rem; font-weight: 700; letter-spacing: .04em;
  text-decoration: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background-color .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--shu); color: #fff; box-shadow: 0 8px 22px rgba(198, 70, 47, .30); }
.btn-gold:hover { background: var(--shu-light); }
.btn-tq { background: var(--band); color: #fff; }
.btn-tq:hover { background: var(--band-deep); }
.btn-outline { border-color: rgba(255, 255, 255, .8); color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255, 255, 255, .16); }
.btn-outline-dark { border-color: var(--ink); color: var(--ink); background: var(--card); }
.btn-outline-dark:hover { background: var(--cyan-pale); }
.btn-lg { padding: 18px 40px; font-size: 1.02rem; }

/* ---------- ヘッダー ---------- */
/* ブログと同じくトルコブルーの帯に黒文字 */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cyan);
  border-bottom: 1px solid var(--line-cyan);
}
.header-inner {
  width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto;
  display: flex; align-items: center; gap: 20px; min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
/* 2026-09-17 ご要望でロゴと屋号を大きくした（38px / 1.12rem → 48px / 1.36rem）。
   ヘッダーの高さ 74px は変えない。スマホのメニューの開く位置（inset: 74px）と、
   ページ内移動の scroll-margin-top がこの高さを前提にしているため */
.brand img { width: 48px; height: 48px; }
.brand-name {
  font-family: "Shippori Mincho B1", "Yu Mincho", serif;
  color: var(--ink); font-size: 1.36rem; font-weight: 800; letter-spacing: .06em; line-height: 1.25;
  white-space: nowrap; /* 「Timur」だけ2行目に落ちると屋号として読めない */
}
.brand-name small { display: block; font-size: .5rem; letter-spacing: .24em; color: var(--band); font-family: inherit; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a {
  color: var(--ink); text-decoration: none; font-size: .92rem; font-weight: 500;
  padding: 6px 0; border-bottom: 2px solid transparent; white-space: nowrap;
}
.main-nav a:hover { border-bottom-color: rgba(11, 42, 48, .45); }
.main-nav a.is-active { border-bottom-color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { padding: 11px 22px; font-size: .88rem; white-space: nowrap; }

.nav-toggle {
  display: none; width: 46px; height: 46px; padding: 0;
  background: transparent; border: 1px solid rgba(11, 42, 48, .35); border-radius: 10px; cursor: pointer;
  position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: ""; position: absolute; left: 12px; width: 22px; height: 2px;
  background: var(--ink); transition: transform .25s, opacity .25s;
}
.nav-toggle::before { top: 15px; }
.nav-toggle span { top: 22px; }
.nav-toggle::after { top: 29px; }
.nav-toggle.is-open::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span { opacity: 0; }
.nav-toggle.is-open::after { transform: translateY(-7px) rotate(-45deg); }

/* ---------- ヒーロー ---------- */
.hero { position: relative; overflow: hidden; background: var(--band); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 68% 50%; }
/* 写真に重ねる膜は深い青緑。黒にすると色が濁る */
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(4, 74, 80, .94) 0%,
    rgba(5, 95, 102, .86) 40%,
    rgba(17, 232, 240, .22) 72%,
    rgba(17, 232, 240, .06) 100%);
}
.hero-inner { position: relative; padding: 112px 0 122px; max-width: 630px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .8rem; letter-spacing: .2em; font-weight: 700; color: var(--ink);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.hero .eyebrow, .section-dark .eyebrow, .section-ink2 .eyebrow { color: #fff; }
.hero h1 {
  color: #fff; font-size: clamp(2rem, 5.2vw, 3.15rem); line-height: 1.5; margin-bottom: 26px;
  text-shadow: 0 2px 18px rgba(3, 50, 55, .45);
}
.hero p { color: #fff; font-size: 1.02rem; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-note {
  position: relative; background: var(--band);
  border-top: 1px solid rgba(255, 255, 255, .22); padding: 22px 0;
}
.hero-note .container { display: flex; flex-wrap: wrap; gap: 10px 34px; justify-content: center; }
.hero-note span { color: #fff; font-size: .92rem; display: flex; align-items: center; gap: .55em; }
.hero-note span::before { content: "\2726"; color: var(--cyan); font-size: .85em; }

/* ---------- セクション共通 ---------- */
.section { padding: 92px 0; }

/* 深い青緑の帯。白文字を載せられるのはこの色 */
/* 地紋（青海波）は 2026-09-15 お客様のご要望で外した。どの面も無地 */
.section-dark, .section-ink2 {
  background: var(--band);
  color: #fff;
}
/* トルコブルーの地。文字は濃色、本文は白カードに載せる */
.section-light { background: var(--cyan); }
.section-white { background: var(--card); }
.section-dark h2, .section-ink2 h2, .section-dark h3, .section-ink2 h3 { color: #fff; }
.section-dark p, .section-ink2 p { color: #fff; }

.section-head { text-align: center; margin-bottom: 54px; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); color: var(--ink); }
/* 見出しの折り返しで1文字だけ次の行に落ちるのを防ぐ（対応ブラウザのみ。非対応でも表示は崩れない） */
.hero h1, .page-head h1, .section-head h2, .cta-banner h2, .blog-card h3 { text-wrap: balance; word-break: auto-phrase; }
/* トルコブルーの上では補助色（--ink-2）だと4.5:1を割るので本文色を使う */
.section-head .lead { margin: 18px auto 0; max-width: 760px; color: var(--ink); }
.section-white .section-head .lead { color: var(--ink-2); }
.section-dark .section-head .lead, .section-ink2 .section-head .lead { color: var(--text-mute); }

.section-head h2::after {
  content: "\2726"; display: block; margin-top: 14px;
  font-size: .62em; color: var(--shu); line-height: 1;
}
/* 見出しの濃色指定（.section-head h2）は帯用の白指定より後ろにあるため、帯の中は詳細度を上げて白に戻す */
.section-dark .section-head h2, .section-ink2 .section-head h2 { color: #fff; }
.section-dark .section-head h2::after, .section-ink2 .section-head h2::after { color: var(--cyan); }

/* 2026-09-18 ご要望：概要・注意事項・特記事項も、屋号と同じ明朝体にそろえる。
   入力欄のラベルやボタンはゴシックのまま（操作する部分は視認性を優先する） */
.plan p, .plan .detail-list li,
.pillar p,
.section-head .lead,
.notes p, .notes li,
.price-table .note,
.plan-price p,
.blog-first p, .blog-hint {
  font-family: "Shippori Mincho B1", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

/* 深い青緑の帯（.section-dark）の中に置いたカードは、帯の「文字を白に」の指定を受けてしまう。
   レモンイエローのカードに白文字が乗り読めなくなるので、カードの中は濃い文字に戻す。
   （2026-09-18 トップの大脱走コースで発生。柱カードには .pillar h3 / .pillar p で戻してあったが、.plan には無かった） */
.section-dark .plan h3, .section-dark .plan p { color: var(--ink); }
.section-dark .plan .price-tag { font-family: "Shippori Mincho B1", serif; color: var(--tq-deep); font-weight: 700; }
.section-dark .plan .price-tag strong { font-size: 1.35rem; }

/* ---------- 3つの柱カード ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillar {
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.pillar-img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--cyan-pale); }
.pillar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.pillar:hover .pillar-img img { transform: scale(1.05); }
.pillar-body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.pillar h3 { font-size: 1.24rem; margin-bottom: 12px; color: var(--ink); }
.pillar p { font-size: .95rem; color: var(--ink-2); }
.pillar .price-tag {
  margin-top: auto; padding-top: 16px; border-top: 1px dashed var(--line-light);
  font-family: "Shippori Mincho B1", serif; color: var(--tq-deep); font-weight: 700;
}
.pillar .price-tag strong { font-size: 1.35rem; }

/* ---------- 悩みリスト ---------- */
/* 帯の上のカードは白を重ねず暗く沈める（白を足すと白文字のコントラストが落ちる） */
.worries { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 26px; max-width: 900px; margin-inline: auto; }
.worries li {
  display: flex; gap: .8em; align-items: flex-start;
  background: rgba(3, 50, 55, .40); border: 1px solid rgba(255, 255, 255, .30);
  border-radius: 10px; padding: 16px 20px; font-size: .97rem; color: #fff;
}
.worries li::before { content: "\2726"; color: var(--cyan); flex: none; line-height: 1.9; }

/* ---------- ブログ ---------- */
/* お客様は「相談者には必ずブログを読んでもらう」運用。サイトからブログへの導線を太くする */
.blog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  display: flex; flex-direction: column;
  background: var(--card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); color: var(--ink); text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(4, 60, 66, .20); }
.blog-card-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cyan-pale); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card time { font-size: .82rem; color: var(--ink-2); letter-spacing: .04em; }
.blog-card h3 { font-size: 1.06rem; line-height: 1.65; margin: 6px 0 16px; }
.blog-card .more { margin-top: auto; font-size: .88rem; font-weight: 700; color: var(--tq-deep); }
.blog-more { text-align: center; margin-top: 44px; }
.blog-hint { margin: 12px 0 0; font-size: .86rem; color: var(--ink); }

/* お問い合わせフォームの手前に置く「先にブログを」の案内 */
.blog-first {
  max-width: 780px; margin: 0 auto 30px;
  background: var(--card); border-left: 5px solid var(--shu);
  border-radius: var(--radius); padding: 26px 30px; box-shadow: var(--shadow);
}
.blog-first .blog-first-title { color: var(--ink); font-family: "Shippori Mincho B1", serif; font-size: 1.15rem; font-weight: 700; margin: 0 0 8px; }
.blog-first p { color: var(--ink-2); font-size: .95rem; }
.blog-first .btn { padding: 12px 26px; font-size: .92rem; }

/* ---------- プラン詳細 ---------- */
/* 本文は白いカードに載せる。地色はカードとカードの間で見せる */
.plan {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 42px 46px 44px;
  margin-bottom: 26px;
}
.plan:last-of-type { margin-bottom: 0; }
.plan-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px; margin-bottom: 22px; }
.plan-badge {
  display: inline-block; background: var(--band); color: #fff;
  font-size: .78rem; letter-spacing: .14em; font-weight: 700;
  padding: 5px 14px; border-radius: 999px;
}
.plan-badge.is-limited { background: var(--shu); color: #fff; }
.plan h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
.plan-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: start; }
/* 写真と料金を右列にまとめる。本文だけが長いと右が空いて間延びするため */
.plan-side { display: flex; flex-direction: column; gap: 24px; }
.plan-figure { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-light); }
.plan-price {
  background: var(--cyan-pale); border: 1px solid var(--line-light); border-top: 4px solid var(--cyan);
  border-radius: var(--radius); padding: 24px 26px;
}
.plan-price dl { margin: 0; }
.plan-price div { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 11px 0; border-bottom: 1px dashed var(--line-light); }
.plan-price div:last-child { border-bottom: none; }
.plan-price dt { font-size: .92rem; color: var(--ink-2); }
.plan-price dd { margin: 0; font-family: "Shippori Mincho B1", serif; font-weight: 700; color: var(--tq-deep); white-space: nowrap; }
.plan-price dd strong { font-size: 1.3rem; }
.detail-list li { position: relative; padding-left: 1.5em; margin-bottom: .5em; font-size: .96rem; color: var(--ink-2); }
.detail-list li::before { content: "\2726"; position: absolute; left: 0; color: var(--shu); font-size: .8em; top: .35em; }

/* ---------- 料金表 ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--card); box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.price-table caption { caption-side: top; text-align: left; padding: 0 0 12px; font-weight: 700; color: var(--ink); }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-light); font-size: .95rem; vertical-align: top; }
.price-table thead th { background: var(--band); color: #fff; font-family: "Shippori Mincho B1", serif; font-weight: 700; letter-spacing: .06em; border-bottom: none; }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) { background: var(--card-alt); }
.price-table tbody th { font-weight: 700; color: var(--ink); width: 34%; }
.price-table .amount { font-family: "Shippori Mincho B1", serif; font-weight: 700; color: var(--tq-deep); white-space: nowrap; font-size: 1.05rem; }
.price-table .note { color: var(--ink-2); font-size: .88rem; }

/* ---------- 流れ ---------- */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; list-style: none; margin: 0; padding: 0; }
.flow li {
  counter-increment: step; position: relative;
  background: rgba(3, 50, 55, .40); border: 1px solid rgba(255, 255, 255, .30);
  border-radius: var(--radius); padding: 30px 22px 26px;
}
.flow li::before {
  content: "0" counter(step);
  display: block; font-family: "Shippori Mincho B1", serif; font-size: 1.5rem;
  color: var(--cyan); margin-bottom: 10px; letter-spacing: .04em;
}
.flow h3 { font-size: 1.08rem; margin-bottom: 8px; }
.flow p { font-size: .9rem; color: var(--text-mute); margin: 0; }

/* ---------- 注意事項 ---------- */
.notes { background: var(--card); border-left: 4px solid var(--shu); border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow); }
.notes h3 { font-size: 1.15rem; margin-bottom: 16px; color: var(--ink); }
.notes li { position: relative; padding-left: 1.4em; margin-bottom: .7em; font-size: .95rem; color: var(--ink-2); }
.notes li::before { content: "\25CB"; position: absolute; left: 0; color: var(--shu); font-size: .8em; top: .3em; }
.notes li strong { color: var(--ink); }
.section-white .notes { border: 1px solid var(--line-light); border-left: 4px solid var(--shu); }

/* ---------- プロフィール ---------- */
.profile-lead { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.profile-figure img { border-radius: var(--radius); box-shadow: var(--shadow); }
/* 長文を帯の上に直接置くと読み疲れるので、一段沈めた下地を敷く */
.history {
  max-width: 880px; margin-inline: auto;
  background: rgba(3, 50, 55, .34);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 48px 50px 44px;
}
.history-item { position: relative; padding: 0 0 44px 34px; border-left: 1px solid var(--line-band); }
.history-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.history-item::before {
  content: ""; position: absolute; left: -6px; top: 12px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 5px rgba(17, 232, 240, .22);
}
.history-year { display: block; font-family: "Shippori Mincho B1", serif; color: var(--cyan); font-size: 1.05rem; letter-spacing: .08em; margin-bottom: 6px; }
.history-item h3 { font-size: 1.2rem; margin-bottom: 10px; }
.history-item p { font-size: .96rem; color: var(--text-mute); }
.sign { text-align: right; font-family: "Shippori Mincho B1", serif; font-size: 1.2rem; color: #fff; letter-spacing: .1em; }

/* ---------- CTA ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--band-deep) 0%, var(--band) 100%);
  border-radius: 20px; padding: 52px 46px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; font-size: clamp(1.45rem, 3.4vw, 1.95rem); margin-bottom: 14px; }
.cta-banner p { color: #fff; max-width: 620px; margin-inline: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 26px; }
.cta-mail { display: inline-block; margin-top: 18px; color: #fff; font-size: .95rem; word-break: break-all; }

/* ---------- フォーム ---------- */
.form-wrap { max-width: 780px; margin-inline: auto; background: var(--card); border-top: 5px solid var(--band); border-radius: var(--radius); padding: 40px 44px; box-shadow: var(--shadow); }
.form-row { margin-bottom: 26px; }
.form-row > label, .form-legend { display: block; font-weight: 700; font-size: .95rem; margin-bottom: 8px; color: var(--ink); }
.req, .any { display: inline-block; font-size: .72rem; font-weight: 700; padding: 2px 9px; border-radius: 4px; margin-left: 8px; vertical-align: middle; letter-spacing: .08em; }
.req { background: var(--shu); color: #fff; }
.any { background: #DDEFF0; color: var(--ink-2); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 14px 16px; font-size: 1rem; font-family: inherit; color: var(--ink);
  background: #fff; border: 1px solid #B6D9DC; border-radius: 8px; transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--tq-deep); box-shadow: 0 0 0 3px rgba(17, 232, 240, .35);
}
.form-row textarea { min-height: 170px; resize: vertical; }
.form-hint { font-size: .85rem; color: var(--ink-2); margin: 6px 0 0; }
.form-error { display: none; color: #A23B3B; font-size: .86rem; margin-top: 6px; font-weight: 700; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { text-align: center; margin-top: 34px; }
.form-msg { border-radius: 10px; padding: 18px 22px; margin-bottom: 30px; font-weight: 700; font-size: .96rem; }
.form-msg.ok { background: #E0F8F8; border: 1px solid #8FD5D8; color: #05585E; }
.form-msg.ng { background: #FBEBEB; border: 1px solid #E3B7B7; color: #8E2F2F; }
.privacy-check { display: flex; align-items: flex-start; gap: .7em; font-size: .93rem; }
.privacy-check input { width: auto; margin-top: .45em; flex: none; }

/* ---------- 本文ブロック（規約・ポリシー） ---------- */
.doc {
  max-width: 880px; margin-inline: auto;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px 52px 44px;
}
.doc h2 { font-size: 1.4rem; margin: 42px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--cyan); color: var(--ink); }
.doc h2:first-of-type { margin-top: 0; }
.doc ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1.2em; }
.doc li { margin-bottom: .4em; }

/* ---------- ページヘッダー ---------- */
/* ブログのページ見出しと同じく、トルコブルーの地に黒文字 */
.page-head {
  background: var(--cyan);
  position: relative; overflow: hidden;
}
.page-head .container { position: relative; padding: 74px 0 62px; }
.page-head h1 { color: var(--ink); font-size: clamp(1.75rem, 4.4vw, 2.5rem); }
.page-head p { color: var(--ink); margin: 16px 0 0; max-width: 700px; }
.breadcrumb { position: relative; background: var(--card); border-bottom: 1px solid var(--line-light); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .5em; list-style: none; margin: 0; padding: 12px 0; font-size: .82rem; color: var(--ink-2); }
.breadcrumb a { color: var(--tq-deep); text-decoration: none; }
.breadcrumb li + li::before { content: "\203A"; margin-right: .5em; color: var(--ink-2); }

/* ---------- フッター ---------- */
.site-footer { background: var(--band-deep); color: var(--text-mute); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-brand img { width: 36px; height: 36px; }
.footer-brand span { font-family: "Shippori Mincho B1", serif; color: #fff; font-size: 1.08rem; font-weight: 800; letter-spacing: .06em; }
.site-footer p { font-size: .9rem; margin-bottom: .6em; }
.site-footer a { color: var(--text-mute); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-col h4 { color: #fff; font-size: .98rem; margin-bottom: 14px; }
.footer-col li { margin-bottom: .55em; font-size: .9rem; }
.footer-bottom { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .22); text-align: center; font-size: .82rem; }

/* ---------- スクロール表示 ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn:hover, .blog-card:hover { transform: none; }
}

/* ===========================================================
   レスポンシブ
   =========================================================== */
/* ナビに「ブログ」が増えて6項目になったので、A・B案より早めにハンバーガーへ切り替える */
/* 09-17 屋号を大きくしたので 1100px → 1199px に上げた。
   1101〜1199px だと屋号・ナビ6項目・ボタンが横幅に収まらず、屋号が2行に折れていた */
@media (max-width: 1199px) {
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
  .main-nav {
    position: fixed; inset: 74px 0 auto; display: block;
    background: var(--cyan); border-bottom: 1px solid var(--line-cyan);
    box-shadow: 0 14px 24px rgba(4, 60, 66, .16);
    padding: 10px 0 24px; max-height: calc(100dvh - 74px); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all .25s;
  }
  .main-nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .main-nav a {
    display: block; padding: 16px 22px; border-bottom: 1px solid var(--line-cyan);
    font-size: 1rem; width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto;
  }
  .main-nav a.is-active { border-bottom-color: var(--line-cyan); font-weight: 700; }
}

@media (max-width: 980px) {
  .pillars, .blog-cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; gap: 24px; }
  .profile-lead { grid-template-columns: 1fr; gap: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; line-height: 1.9; }
  .container, .header-inner { width: calc(100% - 32px); }
  .section { padding: 62px 0; }
  .section-head { margin-bottom: 38px; }
  .section-head h2 { font-size: 1.42rem; }
  .hero-inner { padding: 76px 0 82px; }
  /* スマホは横に回り込む余白が無いので、膜を上下方向のグラデーションに切り替える */
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(4, 74, 80, .82) 0%, rgba(4, 74, 80, .93) 55%, rgba(4, 74, 80, .97) 100%);
  }
  .hero h1 { line-height: 1.6; }
  .hero-actions .btn { width: 100%; }
  .hero-note .container { flex-direction: column; gap: 8px; align-items: flex-start; }
  .worries { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-banner { padding: 38px 24px; border-radius: 16px; }
  .cta-actions .btn, .blog-more .btn { width: 100%; }
  .form-wrap { padding: 28px 22px; }
  .notes { padding: 24px 22px; }
  .history { padding: 30px 20px 26px; }
  .plan { padding: 26px 20px 28px; margin-bottom: 18px; }
  .doc { padding: 28px 22px 26px; }
  .blog-first { padding: 22px 20px; }
  .page-head .container { padding: 54px 0 46px; }
  .brand img { width: 42px; height: 42px; }
  /* 390px幅でハンバーガーボタンと重ならない上限 */
  .brand-name { font-size: 1.18rem; }

  /* 料金表は横スクロールにせず、1行ずつ縦に積む。
     横スクロールは「隠れている列があること」に気づいてもらえないため。 */
  .price-table { min-width: 0; display: block; border-radius: var(--radius); }
  /* 表を block にすると caption だけ表組みの幅計算に取り残され、1文字ずつ縦に折り返す。caption も block にする */
  .price-table caption { display: block; padding: 20px 20px 4px; }
  .price-table thead { display: none; }
  .price-table tbody { display: block; }
  .price-table tbody tr { display: block; padding: 18px 20px; border-bottom: 1px solid var(--line-light); }
  .price-table tbody tr:last-child { border-bottom: none; }
  .price-table tbody th, .price-table tbody td { display: block; width: auto; padding: 0; border-bottom: none; }
  .price-table tbody th { font-size: 1.02rem; margin-bottom: 6px; }
  .price-table .amount { font-size: 1.2rem; margin-bottom: 6px; white-space: normal; }
  .price-table .note { font-size: .9rem; }
}
/* 360px前後の小さめのスマホ。1.18rem のままだとハンバーガーボタンにぶつかる。
   640px のブロックの途中に差し込むと、後ろの料金表の指定がこちらへ移って黙って壊れるので、必ず外に置く */
@media (max-width: 380px) {
  .brand img { width: 38px; height: 38px; }
  .brand-name { font-size: 1.04rem; }
}

/* ===========================================================
   C案-2：ヒーローに本人写真（2026-09-14 作成／09-15 お客様のご要望で修正）
   写真は縦横比1.30で、背景に敷き詰めるとスマホで顔が切れるため、
   左に文字・右に写真を丸ごと表示する分割レイアウトにしている。
   09-15：白い額をやめて写真を大きくし、ふちをぼかしてトルコブルーの地になじませた。
   ぼかしはCSSの mask で行い、画像ファイルはメールの原本のまま（お客様のご指示）。
   =========================================================== */
.hero-portrait { background: var(--cyan); }
/* 09-17：トップの最初は「写真のみ」（ご要望）。見出し h1 は検索エンジンと読み上げ用に残し、画面には出さない */
.hero-solo { padding: 40px 0 8px; }
.hero-solo .hero-photo { width: min(100%, 1040px); margin-inline: auto; }
.hero-photo { margin: 0; }

/* 写真の直下に「必ずお読みください」の3つの入口。
   お客様は相談者に、プロフィール・ブログ・注意事項を必ず読んでもらう運用。
   トップを開いてすぐ押せる位置に置く */
.must-read { text-align: center; padding: 20px 0 64px; }
/* .hero p（白文字）より強くしないと、トルコブルーの上に白文字で出て読めない */
.hero .must-read-title { font-family: "Shippori Mincho B1", "Yu Mincho", serif; font-weight: 700; font-size: 1.2rem; color: var(--ink); margin: 0 0 18px; }
.must-read-links { display: grid; grid-template-columns: repeat(3, minmax(0, 230px)); justify-content: center; gap: 14px; }
.must-read-links a {
  display: flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 62px; padding: 0 18px; border-radius: 12px;
  background: var(--band); color: #fff; font-weight: 700; font-size: 1.02rem; letter-spacing: .06em;
  text-decoration: none; box-shadow: var(--shadow); transition: background-color .2s, transform .2s;
}
.must-read-links a::after { content: "\2193"; font-size: .9em; } /* ページ内の下へ移動することを示す */
.must-read-links a:hover { background: var(--band-deep); transform: translateY(-2px); }
/* 固定ヘッダーの下に見出しが潜らないようにする */
#profile, #blog, #notice { scroll-margin-top: 84px; }
/* 四辺をぼかす。右端は髪、下端は肩がかかるので、その2辺はぼかし幅を控えめにして人物を残す。
   mask 非対応の古いブラウザでは、ふちがくっきりした写真のまま表示される（崩れはしない） */
.hero-photo img {
  display: block; width: 100%; height: auto;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0, rgba(0,0,0,.55) 7%, #000 16%, #000 91%, rgba(0,0,0,.55) 96%, transparent 100%),
    linear-gradient(to bottom, transparent 0, rgba(0,0,0,.55) 6%, #000 14%, #000 88%, rgba(0,0,0,.55) 95%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0, rgba(0,0,0,.55) 7%, #000 16%, #000 91%, rgba(0,0,0,.55) 96%, transparent 100%),
    linear-gradient(to bottom, transparent 0, rgba(0,0,0,.55) 6%, #000 14%, #000 88%, rgba(0,0,0,.55) 95%, transparent 100%);
  mask-composite: intersect;
}
/* ホームの人物紹介欄は、ヒーローと同じ写真の重複を避けて文章のみ */
.profile-lead-solo { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }

@media (max-width: 640px) {
  .hero-solo { padding: 12px 0 4px; }
  /* ふちがぼけているので、画面の端まで広げても窮屈に見えない */
  .hero-solo .hero-photo { width: auto; margin-inline: -16px; }
  .must-read { padding: 16px 0 48px; }
  .must-read-links { grid-template-columns: 1fr; }
}