/* ============================================================
   斉藤みきお 公式サイト — スタイルシート
   高齢者配慮: 大きい文字・高コントラスト・大きいタップ領域
   ============================================================ */

/* --- カスタムプロパティ（デザイントークン） --- */
:root {
  --primary-color: #960306;
  --primary-dark: #6e0205;
  --primary-light: #c80409;
  --accent-color: #E2D4BF;
  --secondary-color: #969696;
  --bg-color: #faf8f5;
  --bg-white: #ffffff;
  --text-color: #1a1a1a;
  --text-muted: #555555;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
  --heading-font: "Noto Serif JP", serif;
  --body-font: "Noto Sans JP", sans-serif;
  --radius: 12px;
  --transition: 0.3s ease;
}

/* --- リセット・ベース --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin: 0;
}

/* --- タイポグラフィ --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: var(--text-color);
}

h1 { font-size: 2.2rem; margin-bottom: 1.5rem; }
h2 { font-size: 1.8rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.4rem; margin-bottom: 1rem; }

p {
  margin-bottom: 1.2rem;
  color: var(--text-color);
}

a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color var(--transition);
}

a:hover,
a:focus {
  color: var(--primary-dark);
}

/* フォーカスインジケーター（アクセシビリティ） */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}

/* --- スキップリンク（アクセシビリティ） --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary-color);
  color: #fff;
  padding: 0.8rem 1.5rem;
  z-index: 9999;
  font-size: 1rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

/* ============================================================
   トップページ 統合案（2026-06 デザインリニューアル）
   案A 誠実エディトリアル × 案C フォワード・ボールド
   エンジ色 #960306 / 明朝見出し / 英字ラベル / →アクセント
   ============================================================ */

.home,
.sub {
  background-color: #fffdfa;
}

/* --- ヘッダー --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(255, 253, 250, 0.97);
  border-bottom: 1px solid #ece2d5;
  backdrop-filter: blur(8px);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-bar {
  width: 8px;
  height: 34px;
  background: var(--primary-color);
}

.brand-bar--sm {
  width: 6px;
  height: 28px;
}

.brand-name {
  font-family: var(--heading-font);
  font-size: 25px;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: 0.06em;
  text-decoration: none;
}

.brand-name:hover,
.brand-name:focus {
  color: var(--text-color);
}

.brand-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--primary-color);
  padding: 4px 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.site-nav__link {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--transition);
}

.site-nav__link:hover,
.site-nav__link:focus {
  color: var(--primary-color);
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  background: var(--primary-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color var(--transition);
}

.site-nav__cta:hover,
.site-nav__cta:focus {
  background: var(--primary-dark);
  color: #fff;
}

/* --- ヒーロー --- */
.hero-home {
  position: relative;
  height: 640px;
  overflow: hidden;
  padding: 0;
}

.hero-home::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: var(--primary-color);
}

.hero-home__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 28%;
}

.hero-home__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 253, 250, 0.97) 0%, rgba(255, 253, 250, 0.9) 34%, rgba(255, 253, 250, 0) 64%);
}

.hero-home__inner {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 48px 0;
}

.hero-home__badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #fff;
  background: var(--primary-color);
  padding: 7px 16px;
  margin: 0 0 26px;
}

.hero-home__title {
  font-family: var(--heading-font);
  font-size: 60px;
  font-weight: 900;
  line-height: 1.38;
  color: var(--text-color);
  letter-spacing: 0.03em;
  margin: 0 0 22px;
}

.hero-home__lead {
  font-size: 19px;
  line-height: 1.9;
  color: #333;
  margin: 0 0 36px;
  max-width: 440px;
}

.hero-home__btns {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-home__tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.tagline-rule {
  width: 48px;
  height: 2px;
  background: var(--primary-color);
}

.tagline-text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #777;
}

/* --- ボタン（統合案） --- */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 38px;
  background: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 4px 16px rgba(150, 3, 6, 0.3);
  text-decoration: none;
  transition: background-color var(--transition);
}

.btn-solid:hover,
.btn-solid:focus {
  background: var(--primary-dark);
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 38px;
  background: #fffdfa;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 900;
  border: 2.5px solid var(--text-color);
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: var(--text-color);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 36px;
  background: transparent;
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 900;
  border: 2.5px solid var(--primary-color);
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--primary-color);
  color: #fff;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 0 44px;
  background: #fff;
  color: var(--primary-color);
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color var(--transition);
}

.btn-white:hover,
.btn-white:focus {
  background: #f3e3d3;
  color: var(--primary-color);
}

/* --- セクション共通（統合案） --- */
.sec {
  padding: 88px 48px;
}

.sec--white {
  background: #fff;
}

.sec--paper {
  background: #faf7f2;
}

.sec__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.sec__inner--narrow {
  max-width: 980px;
}

.sec-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 56px;
}

.sec-head--mid {
  margin-bottom: 52px;
}

.sec-head--tight {
  margin-bottom: 20px;
}

.sec-head__title {
  font-family: var(--heading-font);
  font-size: 38px;
  font-weight: 900;
  color: var(--text-color);
  margin: 0;
}

.sec-head__en {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--primary-color);
}

.sec-head__rule {
  flex: 1;
  height: 1px;
  background: #e8dccb;
  align-self: center;
}

.sec__desc {
  font-size: 17px;
  color: #555;
  margin: 0 0 36px;
}

.sec__cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* --- 3つの信念 --- */
.belief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
}

.belief-card {
  background: #fffdfa;
  border: 1px solid #ece2d5;
  border-top: 5px solid var(--primary-color);
  padding: 38px 30px;
  transition: box-shadow var(--transition);
}

.belief-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.belief-card__num {
  font-family: var(--heading-font);
  font-size: 64px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 22px;
}

.belief-card h3 {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0 0 14px;
}

.belief-card p {
  font-size: 16px;
  line-height: 1.95;
  color: #555;
  margin: 0;
}

/* --- 重点テーマ --- */
.theme-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--text-color);
}

.theme-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 12px;
  border-bottom: 1px solid #ddd0bd;
  text-decoration: none;
  transition: background-color var(--transition);
}

.theme-row:hover,
.theme-row:focus {
  background: #fff;
}

.theme-row__num {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary-color);
  min-width: 52px;
}

.theme-row__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  flex: 1;
}

.theme-row__arrow {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-color);
}

/* --- 感謝メッセージ --- */
.message-sec {
  background: #faf7f2;
  padding: 80px 48px;
  border-top: 1px solid #ece2d5;
}

.message-sec__inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.message-sec__label {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--primary-color);
  margin: 0 0 14px;
}

.message-sec__title {
  font-family: var(--heading-font);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 24px;
}

.message-sec__body {
  font-size: 17px;
  line-height: 2.15;
  color: #444;
  margin: 0 0 20px;
}

.message-sec__sign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.sign-rule {
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.sign-name {
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 700;
  color: var(--primary-color);
}

/* --- CTA（統合案） --- */
.cta-home {
  background: var(--primary-color);
  padding: 72px 48px;
}

.cta-home__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-home__title {
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 10px;
}

.cta-home__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* --- フッター（統合案） --- */
.site-footer {
  background: var(--text-color);
  padding: 56px 48px 32px;
}

.site-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.site-footer__name {
  font-family: var(--heading-font);
  font-size: 21px;
  font-weight: 700;
  color: #fff;
}

.site-footer a {
  display: inline;
  min-height: 0;
  line-height: inherit;
}

.site-footer__addr {
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.site-footer__addr a {
  color: inherit;
  text-decoration: none;
}

.site-footer__addr a:hover,
.site-footer__addr a:focus {
  color: #fff;
  text-decoration: none;
}

.site-footer__label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 16px;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
  color: #fff;
  text-decoration: none;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__official {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
}

/* --- レスポンシブ（統合案） --- */
@media (max-width: 768px) {
  .site-header {
    flex-wrap: wrap;
    padding: 12px 16px;
    row-gap: 10px;
  }

  .site-nav {
    width: 100%;
    gap: 12px;
    justify-content: space-between;
  }

  .site-nav__link,
  .site-nav__cta {
    font-size: 14px;
  }

  .brand-badge {
    display: none;
  }

  .sec,
  .message-sec,
  .cta-home {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-home {
    height: auto;
  }

  .hero-home__overlay {
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.5) 0%, rgba(255, 253, 250, 0.9) 40%, rgba(255, 253, 250, 0.97) 70%);
  }

  .hero-home__inner {
    padding: 230px 20px 48px;
  }

  .hero-home__title {
    font-size: 34px;
  }

  .sec-head__title,
  .message-sec__title,
  .cta-home__title {
    font-size: 26px;
  }

  .hero-home__btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-home__btns a {
    justify-content: center;
  }

  .belief-grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .cta-home__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* --- 印刷スタイル --- */
@media print {
  .skip-link,
  .site-header,
  .site-footer,
  .cta-home {
    display: none;
  }

  .hero-home {
    height: auto;
  }

  .hero-home__img,
  .hero-home__overlay {
    display: none;
  }

  .hero-home__inner {
    padding: 1rem 0;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ============================================================
   下層ページ 統合案（2026-06 デザインリニューアル）
   政策・活動報告・プロフィール・FAQ・お問い合わせ・プライバシー
   ============================================================ */

/* --- ヘッダー（下層） --- */
a.site-header__brand {
  text-decoration: none;
}

.site-nav__link--active {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 3px;
}

.site-nav__cta--active {
  background: var(--primary-dark);
}

/* --- ページヘッダー --- */
.page-head {
  background: #faf7f2;
  border-bottom: 5px solid var(--primary-color);
  padding: 52px 48px 56px;
}

.page-head__inner {
  max-width: 1160px;
  margin: 0 auto;
}

.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  font-size: 13px;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #777;
  font-weight: 500;
}

.breadcrumbs li + li::before {
  content: "→" / "";
  color: #999;
}

.breadcrumbs a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.page-head__en {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--primary-color);
  margin: 0 0 14px;
}

.page-head__title {
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: 900;
  color: var(--text-color);
  letter-spacing: 0.03em;
  margin: 0;
}

.page-head__lead {
  font-size: 19px;
  line-height: 1.9;
  color: #555;
  margin: 18px 0 0;
  max-width: 640px;
}

/* --- セクション幅・見出しのバリエーション --- */
.sec__inner--tight {
  max-width: 880px;
}

.sec__inner--prose {
  max-width: 800px;
}

.sec__inner--profile {
  max-width: 1080px;
}

.sec-head--loose {
  margin-bottom: 64px;
}

.sec-head--md {
  margin-bottom: 48px;
}

.sec-head--form {
  margin-bottom: 36px;
}

.sec-head__title--sm {
  font-size: 32px;
}

.sec__note {
  font-size: 14px;
  color: #999;
  margin: 28px 0 0;
  text-align: center;
}

.sec__cta--back {
  margin-top: 72px;
}

/* --- 政策: 3つの信念 詳細 --- */
.belief-detail-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.belief-detail {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: start;
}

.belief-detail__num {
  font-family: var(--heading-font);
  font-size: 96px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 0.9;
  text-align: center;
}

.belief-detail__body {
  border-left: 1px solid #e8dccb;
  padding-left: 36px;
}

.belief-detail__body h3 {
  font-family: var(--heading-font);
  font-size: 27px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 16px;
}

.belief-detail__body p {
  font-size: 17px;
  line-height: 2.1;
  color: #444;
  margin: 0;
}

/* --- 政策: 5つの重点テーマ 詳細 --- */
.theme-detail-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--text-color);
}

.theme-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 12px;
  border-bottom: 1px solid #ddd0bd;
}

.theme-detail__num {
  font-size: 26px;
  font-weight: 900;
  color: var(--primary-color);
}

.theme-detail h3 {
  font-family: var(--body-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 12px;
}

.theme-detail p {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin: 0;
}

/* --- 活動報告: Instagram 埋め込み --- */
.insta-frame {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
  overflow: hidden;
}

/* --- プロフィール: 基本情報 --- */
.profile-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
}

.profile-photo-wrap {
  position: relative;
}

.profile-photo-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 62% 18%;
}

.profile-photo-name {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--primary-color);
  color: #fff;
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 22px;
}

.profile-en {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--primary-color);
  margin: 0 0 12px;
}

.profile-name {
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 900;
  color: var(--text-color);
  margin: 0 0 32px;
}

.profile-name__kana {
  font-size: 18px;
  font-weight: 700;
  color: #777;
  margin-left: 14px;
}

.info-list {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--text-color);
  margin: 0;
}

.info-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 22px 8px;
  border-bottom: 1px solid #e8dccb;
}

.info-row dt {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--primary-color);
}

.info-row dd {
  font-size: 17px;
  color: var(--text-color);
  margin: 0;
}

.info-row dd a {
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

/* --- プロフィール: 経歴タイムライン --- */
.bio-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 36px;
  border-left: 3px solid #e8dccb;
}

.bio-item {
  position: relative;
  padding-bottom: 36px;
}

.bio-item:last-child {
  padding-bottom: 0;
}

.bio-item::before {
  content: "";
  position: absolute;
  left: -45px;
  top: 6px;
  width: 15px;
  height: 15px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 3px solid #faf7f2;
}

.bio-item__title {
  font-family: var(--heading-font);
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 6px;
}

.bio-item__text {
  font-size: 16px;
  color: #888;
  margin: 0;
}

/* --- 情報カード（事務所・連絡手段） --- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
}

.info-card {
  background: #fffdfa;
  border: 1px solid #ece2d5;
  border-top: 5px solid var(--primary-color);
  padding: 32px 28px;
}

.info-card--white {
  background: #fff;
}

.info-card__label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--primary-color);
  margin: 0 0 14px;
}

.info-card h3 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 10px;
}

.info-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin: 0;
}

.info-card__tel {
  font-size: 19px;
  font-weight: 900;
  color: var(--primary-color);
  text-decoration: none;
}

.info-card__mail {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  word-break: break-all;
}

/* --- FAQ アコーディオン --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #ece2d5;
  background: #fffdfa;
}

.faq-item__q {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
  transition: background-color var(--transition);
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q:hover,
.faq-item__q:focus-visible {
  background: #faf7f2;
}

.faq-item__qmark {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 900;
  color: var(--primary-color);
}

.faq-item__text {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.6;
}

.faq-item__icon {
  width: 28px;
  font-size: 24px;
  font-weight: 400;
  color: var(--primary-color);
  text-align: center;
}

.faq-item__icon::before {
  content: "＋";
}

.faq-item[open] .faq-item__icon::before {
  content: "−";
}

.faq-item__a {
  padding: 0 28px 28px;
}

.faq-item__a-inner {
  display: flex;
  gap: 18px;
  border-top: 1px solid #ece2d5;
  padding-top: 22px;
}

.faq-item__amark {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 900;
  color: #b3a08a;
}

.faq-item__body {
  flex: 1;
}

.faq-item__body p {
  font-size: 17px;
  line-height: 2;
  color: #444;
  margin: 0;
}

.faq-item__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 2px;
}

/* --- お問い合わせ: フォーム --- */
.form-note {
  font-size: 15px;
  color: #777;
  margin: 0 0 28px;
}

.form-note a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--primary-color);
}

.form-box {
  border: 1px solid #ece2d5;
}

.form-box__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: var(--primary-color);
}

.form-box__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}

.form-box__open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 20px;
  background: #fff;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color var(--transition);
}

.form-box__open:hover,
.form-box__open:focus {
  background: #f3e3d3;
  color: var(--primary-color);
}

.form-box__frame {
  display: block;
  width: 100%;
  height: 1400px;
  border: none;
}

/* --- プライバシーポリシー --- */
.privacy-lead {
  font-size: 17px;
  line-height: 2.1;
  color: #444;
  margin: 0 0 56px;
}

.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.privacy-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
}

.privacy-item__num {
  font-family: var(--heading-font);
  font-size: 34px;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  text-align: center;
  border-right: 1px solid #e8dccb;
  padding-right: 20px;
}

.privacy-item h2 {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-color);
  margin: 0 0 12px;
}

.privacy-item p {
  font-size: 16px;
  line-height: 2;
  color: #555;
  margin: 0;
}

/* --- レスポンシブ（下層ページ） --- */
@media (max-width: 768px) {
  .page-head {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-head__title {
    font-size: 34px;
  }

  .belief-detail {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .belief-detail__num {
    text-align: left;
    font-size: 56px;
  }

  .belief-detail__body {
    border-left: none;
    padding-left: 0;
  }

  .theme-detail {
    grid-template-columns: 48px 1fr;
  }

  .profile-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-row {
    grid-template-columns: 110px 1fr;
    gap: 12px;
  }

  .privacy-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .form-box__bar {
    flex-wrap: wrap;
  }
}
