/* ==========================================================================
   片岡FP事務所 コーポレートサイト
   デザイン正本: docs/デザイン.md ＋ project/片岡FP事務所 トップページ.dc.html
   モバイルファースト（〜639 / 640〜1023 / 1024〜）
   ========================================================================== */

:root {
  /* カラートークン（承認済み試作の実測値） */
  --primary: #3D5AA5;
  --primary-deep: #4A6BAE;
  --accent: #F2A65C;
  --accent-hover: #EC9A4A;
  --bg: #E9F1F8;
  --bg-sub: #C9DFF2;
  --surface: #FFFFFF;
  --sub-blue: #A8C4E5;
  --muted: #8CA5C8;
  --border: #D6E4F0;
  --shadow-card: 0 4px 16px rgba(61, 90, 165, .06);
  --shadow-btn: 0 2px 8px rgba(61, 90, 165, .08);
  --font-jp: "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", sans-serif;
  --font-en: "Poppins", "Montserrat", system-ui, sans-serif;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--primary);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 2;
  letter-spacing: .08em;
  /* モバイル固定ボトムバーに本文が隠れないための余白 */
  padding-bottom: 96px;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-deep); }
img { max-width: 100%; display: block; }

.en { font-family: var(--font-en); }

/* ---------- セクション共通 ---------- */
.section { padding: 72px 24px; }
.section--white { background: var(--surface); }
.section__inner { max-width: 1168px; margin: 0 auto; }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  margin-bottom: 40px;
}
.section-head .label-en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .34em;
  color: var(--muted);
  text-transform: uppercase;
}
.section-head h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.8;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 9999px;
  font-weight: 700;
  letter-spacing: .1em;
  box-shadow: var(--shadow-btn);
  transition: transform .2s ease, background-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--accent {
  background: var(--accent);
  color: var(--primary);
  padding: 16px 40px;
  font-size: 15px;
}
.btn--accent:hover { background: var(--accent-hover); color: var(--primary); }

.btn--white {
  background: var(--surface);
  color: var(--primary);
  padding: 13px 32px 13px 13px;
  font-size: 14px;
  font-weight: 500;
}
.btn__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  flex: none;
}

/* ---------- バッジ・ドット ---------- */
.badge {
  display: inline-block;
  background: var(--bg-sub);
  border-radius: 9999px;
  padding: 8px 20px;
  font-size: 12.5px;
  letter-spacing: .08em;
}
.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex: none;
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.header__logo { display: flex; flex-direction: column; gap: 4px; }
.header__logo-jp { font-size: 18px; font-weight: 700; letter-spacing: .18em; }
.header__logo-en {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--muted);
  text-transform: uppercase;
}
.header__nav { display: none; }
.header__cta { display: none; }

/* --- モバイル: MENUボタン（白い正円・右上固定） --- */
.menu-btn {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 60;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  font-family: var(--font-en);
}
.menu-btn__line {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transition: transform .25s ease, opacity .25s ease;
}
.menu-btn__label { font-size: 8px; letter-spacing: .2em; margin-top: 2px; }
.menu-btn[aria-expanded="true"] .menu-btn__line:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__line:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* --- モバイル: ドロワーナビ --- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer a {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.drawer .btn--accent { margin-top: 20px; }

/* ==========================================================================
   モバイル固定ボトムバー（電話番号は載せない方針 → LINE＋WEB予約）
   ========================================================================== */
.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  height: 72px;
  box-shadow: 0 -4px 16px rgba(61, 90, 165, .12);
}
.bottom-bar__line,
.bottom-bar__reserve {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-weight: 700;
  letter-spacing: .08em;
}
.bottom-bar__line { background: var(--surface); }
.bottom-bar__line .bottom-bar__main { font-size: 13.5px; }
.bottom-bar__reserve { background: var(--accent); }
.bottom-bar__reserve:hover { background: var(--accent-hover); color: var(--primary); }
.bottom-bar__reserve .bottom-bar__main { font-size: 14.5px; }
.bottom-bar__sub { font-size: 10px; font-weight: 500; letter-spacing: .12em; color: var(--muted); }
.bottom-bar__reserve .bottom-bar__sub { color: var(--primary); opacity: .75; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { overflow: hidden; }
.hero__inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px 72px;
}
.hero__circle-bg {
  position: absolute;
  right: -180px;
  top: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--bg-sub);
  z-index: -1;
}
.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
/* モバイルは「円形写真 → キャッチコピー」の順（デザイン.md §6） */
.hero__photo { order: -1; }
.hero__copy { display: flex; flex-direction: column; gap: 24px; }
.hero__title {
  margin: 0;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.9;
  text-align: center;
}
.hero__checks { display: flex; flex-direction: column; gap: 12px; }
.hero__check {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border-radius: 24px;
  padding: 14px 20px;
  font-size: 13.5px;
  line-height: 1.9;
  letter-spacing: .06em;
  box-shadow: 0 2px 8px rgba(61, 90, 165, .06);
}
.hero__check-mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex: none;
}
.hero__lead { font-size: 14px; line-height: 2.3; letter-spacing: .08em; margin: 0; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero__photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero__photo-frame {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--surface);
  padding: 10px;
  box-shadow: 0 4px 16px rgba(61, 90, 165, .08);
}
.hero__photo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.hero__name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border-radius: 9999px;
  padding: 9px 24px;
  font-size: 13px;
  letter-spacing: .12em;
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   REASON
   ========================================================================== */
.reason__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.reason-card {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reason-card__no {
  font-family: var(--font-en);
  font-size: 20px;
  letter-spacing: .2em;
  color: var(--muted);
  text-align: center;
}
.reason-card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.8;
  margin: 0;
}
.reason-card__body { font-size: 14px; line-height: 2.2; letter-spacing: .05em; margin: 0; }
.reason__closing {
  margin: 44px 0 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 2.2;
  text-align: center;
}
.reason__closing small { font-size: 13px; font-weight: 500; }

/* ==========================================================================
   SERVICE
   ========================================================================== */
.service__grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1080px; margin: 0 auto; }
.service-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.service-card__no {
  font-family: var(--font-en);
  font-size: 20px;
  letter-spacing: .2em;
  color: var(--muted);
}
.service-card__title { font-size: 17px; font-weight: 700; letter-spacing: .12em; margin: 0; line-height: 1.8; }
.service-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
}
.service-card__body { font-size: 14px; line-height: 2.2; letter-spacing: .05em; margin: 0; text-align: left; }
.service__cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  font-size: 14px;
}

/* ==========================================================================
   PRICE
   ========================================================================== */
.price__table {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  max-width: 760px;
  margin: 0 auto;
  overflow: hidden;
}
.price__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
  letter-spacing: .06em;
  line-height: 1.8;
}
.price__row:last-child { border-bottom: none; }
.price__label { display: flex; align-items: center; gap: 12px; }
.price__value { font-family: var(--font-en); font-size: 21px; font-weight: 600; flex: none; }
.price__why {
  background: var(--bg-sub);
  border-radius: 24px;
  max-width: 760px;
  margin: 28px auto 0;
  padding: 30px 26px;
}
.price__why-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  margin: 0 0 14px;
}
.price__why-body { font-size: 14px; line-height: 2.3; letter-spacing: .06em; margin: 0; }

/* ==========================================================================
   VOICE
   ========================================================================== */
.voice__grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1080px; margin: 0 auto; }
.voice-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.voice-card__quote { font-family: var(--font-en); font-size: 30px; line-height: 1; color: var(--muted); }
.voice-card__body { font-size: 14px; line-height: 2.2; letter-spacing: .06em; margin: 0; }
.voice-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}
.voice-card__who { font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.voice-card__note { font: 10px ui-monospace, Menlo, monospace; color: var(--muted); flex: none; }

/* ==========================================================================
   PROFILE
   ========================================================================== */
.profile__grid {
  display: flex;
  flex-direction: column;
  gap: 44px;
  max-width: 1104px;
  margin: 0 auto;
}
.profile__side { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.profile__photo-frame {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--surface);
  padding: 10px;
  box-shadow: 0 4px 16px rgba(61, 90, 165, .08);
}
.profile__photo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.profile__motto {
  background: var(--bg-sub);
  border-radius: 20px;
  padding: 18px 30px;
  text-align: center;
  font-size: 13.5px;
  line-height: 2.1;
  letter-spacing: .08em;
  font-weight: 700;
}
.profile__sns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.profile__sns a {
  background: var(--surface);
  border-radius: 9999px;
  padding: 8px 22px;
  font-size: 12px;
  letter-spacing: .1em;
  box-shadow: 0 2px 8px rgba(61, 90, 165, .06);
}
.profile__main { display: flex; flex-direction: column; gap: 20px; }
.profile__label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .34em;
  color: var(--muted);
}
.profile__name { margin: 0; font-size: 26px; font-weight: 900; letter-spacing: .2em; }
.profile__name-en {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--muted);
  margin-left: 14px;
  font-weight: 500;
}
.profile__role { font-size: 14px; letter-spacing: .1em; }
.profile__lead { font-size: 14.5px; line-height: 2.4; letter-spacing: .08em; margin: 0; }
.profile__rows { border-top: 1px solid var(--border); }
.profile__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  letter-spacing: .06em;
  line-height: 2;
}
.profile__row dt { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.profile__row dd { margin: 0; }

/* ==========================================================================
   COLUMN（トップページ内）
   ========================================================================== */
.column__grid { display: grid; grid-template-columns: 1fr; gap: 20px; max-width: 1104px; margin: 0 auto; }
.column-card {
  border-radius: 24px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .2s ease;
}
.column-card:hover { transform: translateY(-4px); color: var(--primary); }
.section--white .column-card { background: var(--bg); }
.column-card__meta { display: flex; align-items: center; gap: 12px; }
.column-card__cat {
  background: var(--sub-blue);
  color: #fff;
  border-radius: 9999px;
  padding: 5px 16px;
  font-size: 11.5px;
  letter-spacing: .08em;
}
.column-card__date {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--muted);
}
.column-card__title { font-size: 15.5px; font-weight: 700; letter-spacing: .06em; line-height: 1.9; margin: 0; }
.column-card__read {
  margin-top: auto;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .2em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.column-card__read .btn__circle { width: 26px; height: 26px; font-size: 12px; }
.column__empty {
  text-align: center;
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: .08em;
  margin: 0;
  background: var(--bg);
  border-radius: 24px;
  padding: 36px 26px;
  max-width: 760px;
  margin: 0 auto;
}
.column__empty--card { background: var(--surface); box-shadow: var(--shadow-card); }
.column__more { margin-top: 40px; display: flex; justify-content: center; }
.column__more .btn--white { background: var(--bg); box-shadow: none; padding: 12px 36px 12px 12px; letter-spacing: .12em; }

/* ==========================================================================
   FAQ（LLMO必須・JSON-LDと文言完全一致で運用）
   ========================================================================== */
.faq__list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}
.faq__q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.8;
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-sub);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  flex: none;
}
.faq__toggle {
  margin-left: auto;
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 15px;
  transition: transform .25s ease;
}
.faq__item[open] .faq__toggle { transform: rotate(45deg); }
.faq__a {
  padding: 0 26px 24px 70px;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: .06em;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: var(--primary-deep); color: #fff; }
.contact .section-head .label-en { color: var(--bg-sub); }
.contact__lead {
  font-size: 14px;
  line-height: 2.4;
  letter-spacing: .08em;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.contact__ctas { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.contact__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-radius: 24px;
  padding: 22px 44px;
  width: 100%;
  max-width: 340px;
  transition: transform .2s ease, background-color .2s ease;
}
.contact__cta:hover { transform: translateY(-2px); }
.contact__cta--line { background: var(--surface); color: var(--primary); }
.contact__cta--reserve { background: var(--accent); color: var(--primary); }
.contact__cta--reserve:hover { background: var(--accent-hover); color: var(--primary); }
.contact__cta-main { font-size: 15px; font-weight: 700; letter-spacing: .08em; }
.contact__cta-sub { font-size: 11.5px; letter-spacing: .1em; opacity: .8; }

/* ==========================================================================
   ACCESS
   ========================================================================== */
.access__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1104px;
  margin: 0 auto;
  align-items: stretch;
}
.access__info {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 8px 26px;
}
.access__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  letter-spacing: .05em;
  line-height: 2;
}
.access__row:last-child { border-bottom: none; }
.access__row dt { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.access__row dd { margin: 0; }
.access__map {
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  background: repeating-linear-gradient(-45deg, var(--border) 0 12px, var(--surface) 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.access__map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
.access__map-note {
  font: 12px ui-monospace, Menlo, monospace;
  color: var(--primary);
  background: rgba(255, 255, 255, .9);
  border-radius: 8px;
  padding: 6px 12px;
}

/* ==========================================================================
   フッター
   ========================================================================== */
.footer {
  background: var(--surface);
  border-radius: 48px 48px 0 0;
  padding: 80px 28px 32px;
  position: relative;
  /* overflow:hidden にすると上辺に跨る顔写真が切れるため、
     装飾円のクリップは .footer__bg 側で行う */
  margin-top: 72px;
}
.footer__bg {
  position: absolute;
  inset: 0;
  border-radius: 48px 48px 0 0;
  overflow: hidden;
  pointer-events: none;
}
.footer__circle-bg {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--bg-sub);
}
.footer__inner {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 32px;
  max-width: 1104px;
  margin: 0 auto;
  text-align: center;
}
.footer__info { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.footer__logo-jp { font-size: 20px; font-weight: 700; letter-spacing: .18em; }
.footer__logo-en {
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: .3em;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
}
.footer__company { font-size: 12.5px; line-height: 2.2; letter-spacing: .06em; }
/* 「技能士」「B-1」等の語中改行を防ぐ折り返し単位 */
.nb { display: inline-block; }
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 13px;
  letter-spacing: .1em;
  max-width: 640px;
  justify-content: center;
}
.footer__nav a { display: flex; align-items: center; gap: 8px; }
.footer__nav .dot { width: 6px; height: 6px; }
.footer__sns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.footer__sns a {
  background: var(--bg);
  border-radius: 9999px;
  padding: 7px 20px;
  font-family: var(--font-en);
  font-size: 11.5px;
  letter-spacing: .1em;
}
.footer__face {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--surface);
  padding: 8px;
  box-shadow: 0 4px 16px rgba(61, 90, 165, .08);
  flex: none;
  /* モバイルでは白フッターの上辺に「跨る」配置 */
  margin-top: -145px;
}
.footer__face img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.footer__copy {
  position: relative;
  text-align: center;
  margin-top: 56px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .28em;
  color: var(--muted);
}

/* ==========================================================================
   コラム一覧ページ
   ========================================================================== */
.page-title {
  position: relative;
  padding: 48px 24px 40px;
  text-align: center;
  overflow: hidden;
}
.page-title__circle {
  position: absolute;
  left: 50%;
  top: -260px;
  transform: translateX(-50%);
  width: 900px;
  height: 560px;
  border-radius: 50%;
  background: var(--bg-sub);
  opacity: .5;
}
.page-title__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.page-title h1 { margin: 0; font-size: 24px; font-weight: 900; letter-spacing: .2em; line-height: 1.7; }
.page-title__lead { font-size: 14px; line-height: 2.2; letter-spacing: .09em; margin: 0; }

.cat-chips {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 24px 40px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* スクロールバーは隠す（スワイプは可） */
}
.cat-chips::-webkit-scrollbar { display: none; }
.cat-chip {
  flex: none;
  background: var(--surface);
  border-radius: 9999px;
  padding: 9px 24px;
  font-size: 13px;
  letter-spacing: .1em;
  box-shadow: 0 2px 8px rgba(61, 90, 165, .06);
}
.cat-chip--active { background: var(--primary); color: #fff; }

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1104px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.article-card {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
}
.article-card:hover { transform: translateY(-4px); color: var(--primary); }
.article-card__thumb {
  height: 180px;
  background: repeating-linear-gradient(-45deg, var(--border) 0 12px, var(--bg) 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-card__thumb-note {
  font: 11px ui-monospace, Menlo, monospace;
  color: var(--primary);
  background: rgba(255, 255, 255, .9);
  border-radius: 6px;
  padding: 4px 10px;
}
.article-card__body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.pagination { display: flex; justify-content: center; gap: 12px; padding: 0 0 96px; }
.pagination__page {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(61, 90, 165, .06);
}
.pagination__page--active { background: var(--primary); color: #fff; }

/* ==========================================================================
   法務ページ（プライバシーポリシー等）
   ========================================================================== */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 72px;
}
.legal__card {
  background: var(--surface);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 36px 26px;
}
.legal__intro { font-size: 14px; line-height: 2.2; letter-spacing: .06em; margin: 0 0 8px; }
.legal h2 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.8;
  margin: 40px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal h2 .dot { flex: none; }
.legal p, .legal li { font-size: 14px; line-height: 2.2; letter-spacing: .06em; }
.legal p { margin: 0 0 12px; }
.legal ul { margin: 0 0 12px; padding-left: 22px; }
.legal li { margin-bottom: 4px; }
.legal__date { font-size: 13px; color: var(--muted); letter-spacing: .08em; margin-top: 32px; text-align: right; }

@media (min-width: 640px) {
  .legal { padding: 0 40px 90px; }
  .legal__card { padding: 48px 48px; }
}

/* ==========================================================================
   タブレット（640px〜）
   ========================================================================== */
@media (min-width: 640px) {
  .section { padding: 90px 40px; }
  .section-head h2 { font-size: 24px; }

  .hero__inner { padding: 24px 40px 90px; }
  .hero__title { font-size: 30px; }

  .reason__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .voice__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .column__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 40px 56px; }
  .cat-chips { justify-content: center; flex-wrap: wrap; overflow: visible; }

  .price__row { padding: 24px 40px; font-size: 14.5px; }
  .price__why { padding: 36px 44px; }

  .profile__row { grid-template-columns: 150px minmax(0, 1fr); gap: 16px; }
  .access__row { grid-template-columns: 120px minmax(0, 1fr); gap: 14px; align-items: baseline; }

  .contact__ctas { flex-direction: row; justify-content: center; }
  .contact__cta { width: auto; }

  .page-title { padding: 64px 40px 52px; }
  .page-title h1 { font-size: 28px; }
}

/* ==========================================================================
   デスクトップ（1024px〜）
   ========================================================================== */
@media (min-width: 1024px) {
  body { padding-bottom: 0; }

  /* モバイル専用UIを消し、ヘッダーナビを出す */
  .menu-btn, .drawer, .bottom-bar { display: none; }

  .header { padding: 32px 56px; }
  .header__logo-jp { font-size: 20px; }
  .header__logo-en { font-size: 10px; }
  .header__nav {
    display: flex;
    gap: 22px;
    font-size: 13.5px;
    letter-spacing: .08em;
    align-items: center;
  }
  .header__right { display: flex; align-items: center; gap: 28px; }
  .header__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    border-radius: 9999px;
    padding: 13px 28px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: .08em;
    box-shadow: var(--shadow-btn);
    transition: transform .2s ease, background-color .2s ease;
  }
  .header__cta:hover { background: var(--accent-hover); color: var(--primary); transform: translateY(-2px); }

  .section { padding: 110px 56px 120px; }
  .section-head { gap: 20px; margin-bottom: 44px; }
  .section-head h2 { font-size: 28px; }

  /* HERO: 左コピー／右円形写真の2カラム */
  .hero__inner { padding: 48px 56px 100px; }
  .hero__circle-bg { right: -160px; top: -40px; width: 640px; height: 640px; }
  .hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 64px;
    align-items: start;
  }
  .hero__copy { gap: 32px; }
  .hero__title { font-size: 40px; text-align: left; }
  .hero__check { border-radius: 9999px; padding: 16px 28px; font-size: 14.5px; }
  .hero__lead { font-size: 14.5px; }
  .hero__badges { justify-content: flex-start; }
  .hero__ctas { flex-direction: row; justify-content: flex-start; gap: 18px; }
  .hero__photo { padding-top: 30px; gap: 22px; order: 0; }
  .hero__photo-frame { width: 400px; height: 400px; padding: 14px; }
  .hero__name { padding: 10px 28px; font-size: 13.5px; }

  .reason__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
  .reason-card { padding: 44px 36px; gap: 18px; }
  .reason-card__title { font-size: 19px; }
  .reason__closing { font-size: 16px; }

  .service__grid { gap: 28px; }
  .service-card { padding: 40px 36px; gap: 18px; }
  .service-card__title { font-size: 19px; }
  .service-card__img { height: 180px; }
  .service-card__body { text-align: center; }

  .voice__grid { gap: 28px; }
  .voice-card { padding: 38px 36px; gap: 16px; }

  .profile__grid {
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 80px;
    align-items: start;
  }
  .profile__photo-frame { width: 380px; height: 380px; padding: 12px; }
  .profile__name { font-size: 30px; }
  .profile__name-en { font-size: 12px; margin-left: 18px; }
  .profile__main { gap: 28px; }

  .column__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
  .column-card { padding: 32px 30px; }

  .contact__lead { font-size: 14.5px; }
  .contact__cta { padding: 22px 48px; }

  .access__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 32px; }
  .access__info { padding: 16px 40px; }
  .access__row { padding: 16px 0; }
  .access__map { min-height: 420px; }

  .footer { padding: 90px 88px 40px; margin-top: 0; }
  .footer__circle-bg { right: -60px; bottom: -120px; width: 340px; height: 340px; }
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
  }
  .footer__info { align-items: flex-start; }
  .footer__logo-jp { font-size: 22px; }
  .footer__nav { justify-content: flex-start; }
  .footer__face { width: 150px; height: 150px; margin-top: 0; }
  .footer__copy { margin-top: 70px; }

  .page-title { padding: 70px 56px 60px; }
  .page-title h1 { font-size: 32px; }
  .article-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; padding: 0 56px 60px; }
  .article-card__thumb { height: 190px; }
  .pagination { padding-bottom: 120px; }
}
