@charset "UTF-8";
/* ==========================================================================
   よりそいモバイル - 共通スタイル
   全ページで読み込む土台。ページ固有の装飾は css/<ページ名>.css に記述する。

   配色・余白・角丸はすべて下の :root に集約している。
   サイト全体の色味を変えるときは、まずここを触ること。
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. デザイントークン
   -------------------------------------------------------------------------- */
:root {
  /* --- コーポレートカラー（面・装飾用） ---
     彩度の高いピンクと緑は「塗り」専用。文字にはこの下の濃い版を使う。 */
  --c-pink: #ffcce5;
  --c-pink-accent: #f0a2c8;
  --c-green: #3cb371;

  /* --- 背景の階調（うすい順） --- */
  --c-pink-bg: #fff7fb;
  --c-pink-soft: #ffeef6;
  --c-pink-mid: #ffdcec;
  --c-green-bg: #f2faf5;

  /* --- 文字にのせられる濃い版（白背景で 4.5:1 以上を確保している） --- */
  --c-pink-deep: #b8497e;
  --c-green-deep: #217d51;
  --c-green-dark: #185f3d;

  /* --- 文字と線 --- */
  --c-ink: #45383e;        /* 本文・見出し */
  --c-ink-mid: #71626a;    /* 補足文 */
  --c-ink-light: #7f7077;  /* 注釈。これより薄い色は文字に使わない */
  --c-ink-faint: #a99aa1;  /* 装飾専用（文字には使わない） */
  --c-line: #f0e2ea;
  --c-line-soft: #f7edf2;
  --c-white: #ffffff;

  /* --- LINE の指定色（ブランドカラーのため変更しない） --- */
  --c-line-brand: #06c755;
  --c-line-brand-dark: #05ad4a;

  /* --- 余白とレイアウト --- */
  --gap-section: clamp(4.5rem, 9vw, 8rem);
  --pad-side: clamp(1.25rem, 5vw, 2.5rem);
  --w-content: 1120px;
  --w-narrow: 800px;
  --w-text: 40em;          /* 読みやすい一行の長さ */

  /* --- 装飾 --- */
  --radius-s: 10px;
  --radius-m: 20px;
  --radius-l: 32px;
  --radius-pill: 999px;

  /* 影は二段重ねにして、近い影と遠い影で奥行きを出す */
  --shadow-card: 0 1px 2px rgba(69, 56, 62, 0.04), 0 8px 24px rgba(69, 56, 62, 0.06);
  --shadow-soft: 0 2px 6px rgba(184, 73, 126, 0.05), 0 14px 36px rgba(184, 73, 126, 0.10);
  --shadow-lift: 0 4px 10px rgba(184, 73, 126, 0.07), 0 20px 44px rgba(184, 73, 126, 0.14);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* ヘッダー高さ（スクロール位置合わせに使用） */
  --h-header: 88px;
}

@media (max-width: 1080px) { :root { --h-header: 80px; } }
@media (max-width: 900px) { :root { --h-header: 64px; } }

/* --------------------------------------------------------------------------
   2. リセットと基本
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--h-header) + 16px);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic Medium", "游ゴシック Medium", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.95;
  color: var(--c-ink);
  background: var(--c-white);
  letter-spacing: 0.045em;
  /* 和文の約物のアキを詰める。日本語の組版が一段しまって見える */
  font-feature-settings: "palt" 1;
  line-break: strict;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
img { border-radius: inherit; }

a {
  color: var(--c-green-deep);
  text-decoration: none;
  transition: color 0.25s var(--ease), opacity 0.25s var(--ease);
}
a:hover { color: var(--c-pink-deep); }

button { font: inherit; color: inherit; border: none; background: none; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

::selection { background: var(--c-pink-mid); color: var(--c-ink); }

:focus-visible {
  outline: 3px solid var(--c-green-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* キーボード操作時だけ現れる「本文へスキップ」 */
.skiplink {
  position: fixed; top: 0; left: 50%; z-index: 1200;
  transform: translate(-50%, -120%);
  padding: 0.75rem 1.75rem;
  border-radius: 0 0 var(--radius-m) var(--radius-m);
  background: var(--c-green-deep);
  color: var(--c-white);
  font-size: 0.875rem; font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s var(--ease);
}
.skiplink:focus { transform: translate(-50%, 0); color: var(--c-white); }

/* --------------------------------------------------------------------------
   3. レイアウト部品
   -------------------------------------------------------------------------- */
.l-inner {
  width: min(var(--w-content), 100%);
  margin-inline: auto;
  padding-inline: var(--pad-side);
}

.l-inner--narrow { width: min(var(--w-narrow), 100%); }

.l-section { padding-block: var(--gap-section); position: relative; }

/* 背景色つきセクション。うっすらとした水玉を敷いて質感を出す */
.l-section--pink { background: var(--c-pink-bg); }
.l-section--pinkmid { background: var(--c-pink-soft); }
.l-section--green { background: var(--c-green-bg); }

.l-section--pink,
.l-section--pinkmid,
.l-section--green,
.contact {
  background-image: radial-gradient(rgba(184, 73, 126, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 0 0;
}

/* 上下の辺をゆるやかなアーチにして、隣のセクションへやわらかくつなぐ。
   上辺と下辺を組み合わせられるよう、border-radius は角ごとに指定している。 */
.l-section--arch,
.l-section--arch-btm { position: relative; z-index: 1; }

.l-section--arch {
  border-top-left-radius: 50% 70px;
  border-top-right-radius: 50% 70px;
  margin-top: -50px;
}
.l-section--arch-btm {
  border-bottom-left-radius: 50% 70px;
  border-bottom-right-radius: 50% 70px;
  margin-bottom: -50px;
  padding-bottom: calc(var(--gap-section) + 50px);
}

@media (max-width: 700px) {
  .l-section--arch {
    border-top-left-radius: 50% 34px;
    border-top-right-radius: 50% 34px;
    margin-top: -28px;
  }
  .l-section--arch-btm {
    border-bottom-left-radius: 50% 34px;
    border-bottom-right-radius: 50% 34px;
    margin-bottom: -28px;
    padding-bottom: calc(var(--gap-section) + 28px);
  }
}

/* --------------------------------------------------------------------------
   4. 見出し
   -------------------------------------------------------------------------- */
.c-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.c-head--left { text-align: left; }

/* 欧文の小見出し。中央寄せのときは左右に細い罫を伸ばす */
.c-head__en {
  display: flex; align-items: center; justify-content: center; gap: 0.9em;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--c-green-deep);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.c-head__en::before,
.c-head__en::after {
  content: ""; width: 22px; height: 1.5px; border-radius: 2px;
  background: currentColor; opacity: 0.45;
}
.c-head--left .c-head__en { justify-content: flex-start; }
.c-head--left .c-head__en::before { display: none; }

.c-head__ja {
  display: block;
  font-size: clamp(1.4375rem, 3.6vw, 2.1875rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.06em;
  text-wrap: balance;
}

.c-head__lead {
  margin-top: 1.25rem;
  margin-inline: auto;
  max-width: var(--w-text);
  color: var(--c-ink-mid);
  font-size: 0.9375rem;
  line-height: 2.05;
}
.c-head--left .c-head__lead { margin-inline: 0; }

/* 見出し下の小さな丸ふたつ（ロゴマークと呼応する装飾） */
.c-head__mark {
  display: flex; justify-content: center; align-items: center;
  margin-top: 1rem;
}
.c-head--left .c-head__mark { justify-content: flex-start; }
.c-head__mark::before,
.c-head__mark::after { content: ""; width: 11px; height: 11px; border-radius: 50%; }
.c-head__mark::before { background: var(--c-pink); }
.c-head__mark::after { background: var(--c-green); opacity: 0.8; margin-left: -3px; }

.c-subhead {
  font-size: clamp(1.1875rem, 2.4vw, 1.4375rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   5. ボタン
   -------------------------------------------------------------------------- */
.c-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  min-height: 62px;
  padding: 0.75em 2.25em;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.c-btn:hover { transform: translateY(-2px); }
.c-btn:active { transform: translateY(0); }
.c-btn svg { width: 17px; height: 17px; flex: none; }
.c-btn--sm { min-height: 48px; padding-inline: 1.4em; font-size: 0.875rem; }

.c-btn--green {
  background: var(--c-green-deep); color: var(--c-white);
  box-shadow: 0 6px 18px rgba(33, 125, 81, 0.24);
}
.c-btn--green svg { fill: currentColor; }
.c-btn--green:hover {
  background: var(--c-green-dark); color: var(--c-white);
  box-shadow: 0 12px 26px rgba(33, 125, 81, 0.30);
}

.c-btn--pink {
  background: var(--c-pink); color: var(--c-ink);
  box-shadow: 0 6px 18px rgba(224, 127, 174, 0.22);
}
.c-btn--pink:hover {
  background: #ffbcdd; color: var(--c-ink);
  box-shadow: 0 12px 26px rgba(224, 127, 174, 0.30);
}

/* LINE のブランドカラー。指定色のため他のボタンとは別扱いにしている */
.c-btn--line {
  background: var(--c-line-brand); color: var(--c-white);
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.24);
}
.c-btn--line svg { stroke: currentColor; }
.c-btn--line:hover {
  background: var(--c-line-brand-dark); color: var(--c-white);
  box-shadow: 0 12px 26px rgba(6, 199, 85, 0.30);
}

.c-btn--ghost {
  background: var(--c-white); color: var(--c-ink);
  border: 1.5px solid var(--c-line);
  box-shadow: 0 1px 2px rgba(69, 56, 62, 0.03);
}
.c-btn--ghost:hover {
  background: var(--c-pink-bg); color: var(--c-ink);
  border-color: var(--c-pink); box-shadow: var(--shadow-card);
}

.c-btn__arrow { width: 16px; height: 16px; flex: none; }

/* テキストリンク（矢印つき） */
.c-more {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.9375rem; font-weight: 700; color: var(--c-green-deep);
  border-bottom: 1.5px solid currentColor; padding-bottom: 3px;
}
.c-more:hover { color: var(--c-pink-deep); }
.c-more svg { transition: transform 0.25s var(--ease); }
.c-more:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   6. ローダー（ロゴ配置エリア）
   -------------------------------------------------------------------------- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem;
  background: var(--c-white);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* ▼ ロゴ配置エリア（ローダー） */
/* ローダーだけは、タグラインまで入った縦組みのロゴを使う */
.loader__logo {
  width: min(190px, 52vw);
  animation: loaderLogoIn 0.9s ease both;
}
.loader__logo img { width: 100%; }

.loader__bar {
  width: 140px; height: 3px; border-radius: var(--radius-pill);
  background: var(--c-pink-soft); overflow: hidden;
}
.loader__bar::after {
  content: ""; display: block; width: 40%; height: 100%; border-radius: var(--radius-pill);
  background: var(--c-green);
  animation: loaderBar 1.1s ease-in-out infinite;
}

@keyframes loaderLogoIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes loaderBar {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(360%); }
}

/* --------------------------------------------------------------------------
   7. ヘッダー
   -------------------------------------------------------------------------- */
.header {
  /* ドロワー（z-index: 950）より前面に置き、開いている間も閉じるボタンを押せるようにする */
  position: fixed; inset-inline: 0; top: 0; z-index: 960;
  height: var(--h-header);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid rgba(240, 226, 234, 0.85);
}

.header__inner {
  width: min(1380px, 100%);
  margin-inline: auto;
  padding-inline: var(--pad-side);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}

/* ▼ ロゴ配置エリア（ヘッダー） */
.header__logo { flex: none; line-height: 0; }
.header__logo a { display: block; }
.header__logo img { width: clamp(178px, 20vw, 226px); }

.header__nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.75rem); }

.gnav { display: flex; align-items: center; gap: clamp(0.9rem, 1.7vw, 1.5rem); }
.gnav__link {
  position: relative;
  font-size: 0.875rem; font-weight: 700; letter-spacing: 0.05em; color: var(--c-ink);
  padding-block: 0.6rem;
  white-space: nowrap;
}
.gnav__link::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 0; height: 2px; border-radius: 2px; background: var(--c-green);
  transition: width 0.25s var(--ease);
}
.gnav__link:hover { color: var(--c-green-deep); }
.gnav__link:hover::after,
.gnav__link[aria-current="page"]::after { width: 100%; }
.gnav__link[aria-current="page"] { color: var(--c-green-deep); }

.header__tel {
  display: flex; flex-direction: column; align-items: flex-start;
  line-height: 1.35;
  padding-left: clamp(0.75rem, 1.5vw, 1.25rem);
  border-left: 1px solid var(--c-line);
}
.header__tel-num {
  display: flex; align-items: center; gap: 0.4em;
  font-size: 1.1875rem; font-weight: 700; color: var(--c-ink); letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.header__tel-num svg { width: 15px; height: 15px; fill: var(--c-green-deep); }
.header__tel-num:hover { color: var(--c-green-deep); }
.header__tel-note { font-size: 0.6875rem; color: var(--c-ink-light); letter-spacing: 0.02em; }

.header__cta { display: inline-flex; }

/* ハンバーガー */
.hamburger {
  display: none;
  position: relative; z-index: 1000;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--c-green-deep);
  flex: none;
}
.hamburger__bar, .hamburger::before, .hamburger::after {
  content: ""; position: absolute; left: 50%; margin-left: -10px;
  width: 20px; height: 2px; border-radius: 2px; background: var(--c-white);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.hamburger::before { top: 16px; }
.hamburger__bar { top: 22px; }
.hamburger::after { top: 28px; }
.hamburger[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.hamburger[aria-expanded="true"] .hamburger__bar { opacity: 0; }

/* ドロワー */
.drawer {
  position: fixed; inset: 0; z-index: 950;
  background: var(--c-white);
  padding: calc(var(--h-header) + 1.75rem) var(--pad-side) 3rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__inner { max-width: 520px; margin-inline: auto; }

/* ドロワーを開いている間は、ヘッダーの区切り線を消して一枚の面に見せる */
body.is-locked .header { border-bottom-color: transparent; background: var(--c-white); }

.drawer__list { display: grid; gap: 0.25rem; }
.drawer__link {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--c-line);
  font-size: 1rem; font-weight: 700; color: var(--c-ink);
}
.drawer__link::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--c-pink); flex: none;
}
.drawer__link[aria-current="page"] { color: var(--c-green-deep); }
.drawer__link[aria-current="page"]::before { background: var(--c-green); }

.drawer__contact { margin-top: 2.25rem; display: grid; gap: 0.75rem; }
.drawer__contact .c-btn { width: 100%; }
.drawer__note { text-align: center; font-size: 0.8125rem; color: var(--c-ink-light); margin-top: 0.5rem; line-height: 1.9; }

@media (max-width: 1180px) {
  .header__tel { display: none; }
}
@media (max-width: 900px) {
  .gnav, .header__cta { display: none; }
  .hamburger { display: block; }
  .header__logo img { width: 156px; }
}

/* --------------------------------------------------------------------------
   8. 下層ページ共通のヘッダー帯とパンくず
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  margin-top: var(--h-header);
  padding-block: clamp(3rem, 8vw, 5.5rem) clamp(3.5rem, 8vw, 6rem);
  background: var(--c-pink-bg);
  background-image: radial-gradient(rgba(184, 73, 126, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  border-radius: 0 0 50% 50% / 0 0 60px 60px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before,
.page-hero::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.page-hero::before { width: 240px; height: 240px; background: var(--c-pink-mid); opacity: 0.55; top: -84px; left: -66px; }
/* 下辺のアーチで切られたときに三日月に見えないよう、大きめに置いて外へ逃がす */
.page-hero::after { width: 260px; height: 260px; background: rgba(60, 179, 113, 0.09); bottom: -150px; right: -70px; }

.page-hero__inner { position: relative; z-index: 1; }
.page-hero__en {
  display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.3em;
  color: var(--c-green-deep); margin-bottom: 0.625rem;
}
.page-hero__title {
  font-size: clamp(1.625rem, 4.5vw, 2.375rem);
  font-weight: 700; line-height: 1.5; letter-spacing: 0.06em;
  text-wrap: balance;
}
.page-hero__lead {
  margin: 1.125rem auto 0; max-width: var(--w-text);
  color: var(--c-ink-mid); font-size: 0.9375rem; line-height: 2;
}
/* 見出しの下に、ロゴと呼応する丸ふたつ */
.page-hero__inner::after {
  content: ""; display: flex; justify-content: center;
  width: 44px; height: 11px; margin: 1.25rem auto 0;
  background:
    radial-gradient(circle 5.5px at 5.5px 5.5px, var(--c-pink) 100%, transparent 0),
    radial-gradient(circle 5.5px at 19.5px 5.5px, rgba(60, 179, 113, 0.8) 100%, transparent 0);
  background-repeat: no-repeat;
}

@media (max-width: 700px) {
  .page-hero { border-radius: 0 0 50% 50% / 0 0 30px 30px; }
}

.breadcrumb { padding-block: 1.125rem 0; }
/* パンくずのすぐ下は本文が始まるので、上の余白を詰める */
.breadcrumb + .l-section { padding-top: clamp(2.5rem, 5vw, 4rem); }
.breadcrumb__list {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 0.5rem;
  font-size: 0.75rem; color: var(--c-ink-light);
}
.breadcrumb__list li:not(:last-child)::after { content: "／"; margin-left: 0.5rem; color: var(--c-ink-faint); }
.breadcrumb a { color: var(--c-ink-mid); }
.breadcrumb a:hover { color: var(--c-green-deep); }

/* --------------------------------------------------------------------------
   9. 共通カード・テーブル・リスト
   -------------------------------------------------------------------------- */
.c-card {
  background: var(--c-white);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-card);
}

/* 写真をやわらかく見せる枠 */
.c-figure {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.c-table { font-size: 0.9375rem; }
.c-table th, .c-table td {
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid var(--c-line);
  text-align: left;
  vertical-align: top;
  line-height: 1.95;
}
.c-table tr:first-child th, .c-table tr:first-child td { border-top: 1px solid var(--c-line); }
.c-table th { width: 12em; font-weight: 700; color: var(--c-ink); background: var(--c-pink-bg); }
.c-table td { color: var(--c-ink-mid); }

@media (max-width: 640px) {
  .c-table, .c-table tbody, .c-table tr, .c-table th, .c-table td { display: block; width: 100%; }
  .c-table tr { margin-bottom: 0.75rem; }
  .c-table tr:first-child td { border-top: none; }
  .c-table th { border-bottom: none; padding-block: 0.75rem 0.5rem; border-radius: var(--radius-s) var(--radius-s) 0 0; }
  .c-table td { padding-top: 0.5rem; }
}

/* チェックリスト */
.c-checklist { display: grid; gap: 0.75rem; }
.c-checklist li { position: relative; padding-left: 2rem; font-size: 0.9375rem; line-height: 1.9; }
.c-checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-green); opacity: 0.15;
}
.c-checklist li::after {
  content: ""; position: absolute; left: 5.5px; top: 0.86em;
  width: 9px; height: 5px; border-left: 2px solid var(--c-green-deep); border-bottom: 2px solid var(--c-green-deep);
  transform: rotate(-45deg);
}

/* 注意書き */
.c-note {
  background: var(--c-white);
  border: 1.5px dashed var(--c-pink-accent);
  border-radius: var(--radius-m);
  padding: clamp(1.25rem, 3vw, 1.875rem);
  font-size: 0.875rem;
  color: var(--c-ink-mid);
  line-height: 1.95;
}
.c-note__title {
  display: flex; align-items: center; gap: 0.5em;
  font-weight: 700; color: var(--c-ink); margin-bottom: 0.5rem; font-size: 0.9375rem;
}
.c-note__title::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: var(--c-pink-accent);
}

/* --------------------------------------------------------------------------
   10. 共通お問い合わせセクション（電話 → LINE → Instagram の順）
   -------------------------------------------------------------------------- */
.contact {
  background: var(--c-pink-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact__lead {
  color: var(--c-ink-mid); font-size: 0.9375rem; line-height: 2.05;
  max-width: var(--w-text); margin: 0 auto 2.5rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  text-align: left;
}
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

.contact__card {
  background: var(--c-white);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-l);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.contact__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
/* いちばんに選んでほしい電話のカードだけ、枠で少し前に出す */
.contact__card--tel { border-color: var(--c-green); box-shadow: var(--shadow-soft); }

.contact__rank {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--c-green-deep); background: var(--c-green-bg);
  padding: 0.3em 0.95em; border-radius: var(--radius-pill);
}
.contact__icon {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c-pink-soft);
}
.contact__icon svg { width: 26px; height: 26px; }
.contact__card--tel .contact__icon { background: var(--c-green-bg); }
.contact__card--tel .contact__icon svg { fill: var(--c-green-deep); }
.contact__card--line .contact__icon { background: #e7f8ee; }
.contact__card--insta .contact__icon { background: var(--c-pink-soft); }

.contact__title { font-size: 1.0625rem; font-weight: 700; letter-spacing: 0.04em; }
.contact__num {
  font-size: 1.75rem; font-weight: 700; letter-spacing: 0.01em;
  color: var(--c-ink); line-height: 1.3;
  font-variant-numeric: tabular-nums;
}
a.contact__num:hover { color: var(--c-green-deep); }
.contact__desc { font-size: 0.8125rem; color: var(--c-ink-mid); line-height: 1.9; }
.contact__card .c-btn { width: 100%; margin-top: auto; }

/* --------------------------------------------------------------------------
   11. フッター
   -------------------------------------------------------------------------- */
.footer {
  background: var(--c-pink-soft);
  padding-top: clamp(3.5rem, 7vw, 5rem);
  border-radius: 50% 50% 0 0 / 60px 60px 0 0;
  position: relative;
}
@media (max-width: 700px) { .footer { border-radius: 50% 50% 0 0 / 30px 30px 0 0; } }

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: 3rem;
}
@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr; } }

/* ▼ ロゴ配置エリア（フッター） */
.footer__logo { display: inline-block; line-height: 0; margin-bottom: 1.25rem; }
.footer__logo img { width: 236px; }

.footer__tagline {
  font-size: 0.875rem; color: var(--c-ink-mid); line-height: 2;
  margin-bottom: 1.5rem;
}

.footer__info { font-size: 0.875rem; color: var(--c-ink-mid); line-height: 2.1; }
.footer__row { display: flex; gap: 0.75em; }
.footer__row dt { flex: none; min-width: 4.5em; font-weight: 700; color: var(--c-ink); }
.footer__row dd { margin: 0; }
.footer__row a { color: var(--c-green-deep); }

.footer__sns { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer__sns-ic {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c-white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.footer__sns-ic:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.footer__sns-ic svg { width: 20px; height: 20px; }
.footer__sns-ic--tel svg { fill: var(--c-green-deep); }

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}
@media (max-width: 560px) { .footer__links { grid-template-columns: 1fr; } }

.footer__title {
  font-size: 0.9375rem; font-weight: 700; margin-bottom: 1rem; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 0.5em;
}
.footer__title::before {
  content: ""; width: 16px; height: 2px; border-radius: 2px; background: var(--c-green); flex: none;
}
.footer__nav { display: grid; gap: 0.1rem; align-content: start; }
.footer__nav a {
  font-size: 0.875rem; color: var(--c-ink-mid);
  display: inline-flex; align-items: center; gap: 0.55em; padding-block: 0.35rem;
}
.footer__nav a::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--c-pink-accent); flex: none;
}
.footer__nav a:hover { color: var(--c-green-deep); }

.footer__cta { display: grid; gap: 0.625rem; }
.footer__cta .c-btn {
  width: 100%; min-height: 56px;
  padding-inline: 1rem; font-size: 0.875rem; white-space: nowrap;
}
.footer__cta-note { font-size: 0.75rem; color: var(--c-ink-light); margin-top: 0.75rem; line-height: 1.9; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  padding-block: 1.5rem;
  text-align: center;
}
.footer__copy { font-size: 0.75rem; color: var(--c-ink-light); letter-spacing: 0.06em; }
.footer__copy small { font-size: inherit; }

/* SP用固定CTA（電話 → LINE の優先順） */
.spcta { display: none; }
@media (max-width: 900px) {
  .spcta {
    position: fixed; inset-inline: 0; bottom: 0; z-index: 800;
    display: grid; grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 -4px 20px rgba(69, 56, 62, 0.10);
    padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
    gap: 0.5rem;
  }
  .spcta a {
    display: flex; align-items: center; justify-content: center; gap: 0.5em;
    min-height: 54px; border-radius: var(--radius-pill);
    font-size: 0.9375rem; font-weight: 700; color: var(--c-white);
    letter-spacing: 0.04em;
  }
  .spcta svg { width: 17px; height: 17px; }
  .spcta__tel { background: var(--c-green-deep); box-shadow: 0 4px 12px rgba(33, 125, 81, 0.28); }
  .spcta__tel svg { fill: currentColor; }
  .spcta__line { background: var(--c-line-brand); box-shadow: 0 4px 12px rgba(6, 199, 85, 0.28); }
  .spcta__line svg { stroke: currentColor; }
  body { padding-bottom: 78px; }
}

/* ページトップへ戻る */
.pagetop {
  position: fixed; right: 18px; bottom: 18px; z-index: 700;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  color: var(--c-green-deep);
  box-shadow: var(--shadow-soft);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.25s var(--ease);
}
.pagetop.is-visible { opacity: 1; visibility: visible; }
.pagetop:hover { transform: translateY(-3px); }
.pagetop svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .pagetop { bottom: 86px; } }

/* --------------------------------------------------------------------------
   12. ユーティリティ
   -------------------------------------------------------------------------- */
.u-center { text-align: center; }
.u-mt-l { margin-top: clamp(2rem, 4vw, 3rem); }
.u-nums { font-variant-numeric: tabular-nums; }

/* 改行の出し分け */
@media (max-width: 700px) { .u-pc { display: none; } }
.u-sp { display: none; }
@media (max-width: 700px) { .u-sp { display: inline; } }

/* --------------------------------------------------------------------------
   13. 画面に入ったときの表示

   JavaScript が動く環境でのみ、js/common.js が対象へ .js-reveal を付ける。
   対象の一覧は同ファイルの REVEAL にまとめてある。
   隠した初期状態はローダーの幕の裏で作られるため、一瞬でも見えることはない。
   prefers-reduced-motion の環境では、そもそも .js-reveal が付かない。
   -------------------------------------------------------------------------- */
.js-reveal { opacity: 0; transform: translateY(14px); }
.js-reveal.is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

/* 表示の途中で設定が変わった場合の保険 */
@media (prefers-reduced-motion: reduce) {
  .js-reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   14. 印刷
   ご相談内容や料金を紙に控えたい方がいるため、読める形で出力する
   -------------------------------------------------------------------------- */
@media print {
  .loader, .header, .drawer, .spcta, .pagetop, .skiplink,
  .breadcrumb, .footer__cta, .footer__sns { display: none !important; }

  body { padding: 0; font-size: 11pt; line-height: 1.7; color: #000; background: #fff; }
  .page-hero { margin-top: 0; border-radius: 0; padding-block: 1rem; background: #fff; }
  .page-hero::before, .page-hero::after { display: none; }
  .l-section { padding-block: 1rem; break-inside: avoid; }
  .l-section--arch { margin-top: 0; border-radius: 0; }
  .l-section--pink, .l-section--pinkmid, .l-section--green, .contact, .footer {
    background: #fff !important; background-image: none !important;
  }
  .footer { border-radius: 0; }
  .c-btn, .c-card, .contact__card, .trouble__item, .service__item { box-shadow: none !important; }
  .c-btn { border: 1px solid #999; color: #000 !important; background: #fff !important; }
  a { color: #000; text-decoration: underline; }
  /* リンク先が分かるように URL を添える */
  main a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; word-break: break-all; }
}
