@charset "UTF-8";
/* =========================================================
   なつめ塾 公式サイト  共通スタイル（モバイルファースト）
   カラー・余白・角丸はすべてCSS変数で管理する
   ========================================================= */

:root {
  /* カラー */
  --c-main:      #A52840; /* なつめレッド：見出し・CTA・重要箇所のみ */
  --c-main-dark: #8C2136;
  --c-sub:       #858571; /* オリーブグレー：小見出し・補助 */
  --c-sub-dark:  #5E5E4D;
  --c-base:      #F8F5EE; /* やさしいアイボリー：背景 */
  --c-pink:      #F6E8EB; /* 淡いピンク：CTA導線・強調カード */
  --c-olive:     #EFF0E8; /* 淡いオリーブ：理念・安心系セクション */
  --c-text:      #3F3B38;
  --c-text-sub:  #716C67;
  --c-white:     #FFFFFF;
  --c-border:    #E3DFD4;

  /* タイポグラフィ */
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-head: "Zen Maru Gothic", "Noto Sans JP", sans-serif;

  /* 余白・角丸 */
  --space-section: 56px;
  --space-inner: 20px;
  --radius-card: 16px;
  --radius-btn: 999px;
  --width-content: 1024px;

  /* スマホ固定バーの高さ（本文が隠れないよう余白確保に使用） */
  --fixed-bar-h: 54px;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-text);
  background: var(--c-base);
  padding-bottom: calc(var(--fixed-bar-h) + env(safe-area-inset-bottom, 0px));
  overflow-wrap: anywhere;
}
body.is-nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
a { color: var(--c-main); }
h1, h2, h3, h4 { margin: 0; line-height: 1.5; }
table { border-collapse: collapse; width: 100%; }
button { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--c-main);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

.sp-only { display: inline; }
@media (min-width: 768px) { .sp-only { display: none; } }

.skip-link {
  position: absolute; left: 8px; top: -48px;
  background: var(--c-white); color: var(--c-text);
  padding: 10px 16px; border-radius: 8px; z-index: 300;
  transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* ---------- レイアウト共通 ---------- */
.inner {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 0 var(--space-inner);
}
.section { padding: var(--space-section) 0; }
.section--pink  { background: var(--c-pink); }
.section--olive { background: var(--c-olive); }
.section--white { background: var(--c-white); }

.section-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-main);
  text-align: center;
  margin-bottom: 8px;
}
.section-title__en {
  display: block;
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--c-sub);
  letter-spacing: .15em;
  margin-bottom: 4px;
}
.section-lead {
  text-align: center;
  color: var(--c-text-sub);
  margin-bottom: 32px;
  padding: 0 8px;
}

.h3-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--c-sub-dark);
  border-left: 5px solid var(--c-sub);
  padding-left: 12px;
  margin-bottom: 16px;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  min-width: 220px;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.btn:hover { opacity: .85; }
.btn--primary { background: var(--c-main); color: var(--c-white); }
.btn--secondary { background: var(--c-white); color: var(--c-sub-dark); border-color: var(--c-sub); }
.btn--line { background: #06C755; color: var(--c-white); }
.btn--large { padding: 18px 32px; font-size: 17px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- ヘッダー ---------- */
.site-header {
  background: var(--c-white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(63, 59, 56, .08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 10px var(--space-inner);
  gap: 12px;
}
.site-logo { flex-shrink: 0; }
.site-logo img { width: auto; height: 44px; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 56px;
  height: 52px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}
.menu-toggle__bar {
  width: 26px; height: 3px;
  background: var(--c-sub-dark);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.menu-toggle__label {
  font-size: 10px;
  color: var(--c-sub-dark);
  line-height: 1;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* モバイル：ドロワーメニュー */
.global-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(78vw, 320px);
  height: 100dvh;
  background: var(--c-white);
  z-index: 120;
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
  padding: 76px 0 32px;
  visibility: hidden;
}
.global-nav.is-open { transform: translateX(0); visibility: visible; }
.global-nav__list li { border-bottom: 1px solid var(--c-border); }
.global-nav__link {
  display: block;
  padding: 16px 24px;
  color: var(--c-text);
  text-decoration: none;
  font-weight: 500;
}
.global-nav__link[aria-current="page"] {
  color: var(--c-main);
  background: var(--c-pink);
}
.global-nav__link--cta { color: var(--c-main); font-weight: 700; }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(63, 59, 56, .45);
  z-index: 110;
  border: 0;
}
.nav-overlay[hidden] { display: none; }

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
  .global-nav {
    position: static;
    width: auto; height: auto;
    transform: none;
    visibility: visible;
    padding: 0;
    background: transparent;
    overflow: visible;
  }
  .global-nav__list { display: flex; gap: 4px; align-items: center; }
  .global-nav__list li { border-bottom: 0; }
  .global-nav__link {
    padding: 10px 12px;
    font-size: 15px;
    border-radius: 8px;
  }
  .global-nav__link[aria-current="page"] { background: transparent; position: relative; }
  .global-nav__link[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 12px; right: 12px; bottom: 4px;
    height: 3px;
    background: var(--c-main);
    border-radius: 2px;
  }
  .global-nav__link--cta {
    background: var(--c-main);
    color: var(--c-white);
    border-radius: var(--radius-btn);
    padding: 10px 20px;
    margin-left: 8px;
  }
  .global-nav__link--cta[aria-current="page"]::after { display: none; }
  .nav-overlay { display: none !important; }
}

/* ---------- パンくず ---------- */
.breadcrumb { background: var(--c-white); border-bottom: 1px solid var(--c-border); }
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 8px var(--space-inner);
  font-size: 12px;
  color: var(--c-text-sub);
}
.breadcrumb__list li:not(:last-child)::after { content: "›"; margin-left: 4px; }
.breadcrumb__list a { color: var(--c-text-sub); }

/* ---------- ページタイトル ---------- */
.page-header {
  background: var(--c-olive);
  padding: 40px 0;
  text-align: center;
}
.page-header--pink { background: var(--c-pink); }
.page-header__title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-main);
}
.page-header__lead { color: var(--c-text-sub); margin-top: 8px; padding: 0 var(--space-inner); }

/* ---------- ファーストビュー ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, var(--c-pink) 0, transparent 32%),
    radial-gradient(circle at 88% 78%, var(--c-olive) 0, transparent 36%),
    var(--c-base);
  padding: 56px 0 48px;
  overflow: hidden;
}
.hero__inner { text-align: center; }
.hero__tagline {
  display: inline-block;
  background: var(--c-white);
  color: var(--c-sub-dark);
  border: 1px solid var(--c-sub);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  padding: 4px 16px;
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--c-main);
  line-height: 1.6;
  margin-bottom: 16px;
}
.hero__lead {
  color: var(--c-text);
  margin: 0 auto 28px;
  max-width: 34em;
}
.hero__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .hero { padding: 88px 0 72px; }
  .hero__title { font-size: 42px; }
  .hero__buttons { flex-direction: row; justify-content: center; }
}

/* ---------- カード ---------- */
.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--c-white);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  box-shadow: 0 2px 10px rgba(63, 59, 56, .06);
}
.card__title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--c-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-pink);
  color: var(--c-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.card__text { font-size: 15px; color: var(--c-text-sub); }

/* チェックリスト（このようなお子さまに 等） */
.check-list { display: grid; gap: 10px; }
@media (min-width: 768px) { .check-list--2col { grid-template-columns: repeat(2, 1fr); } }
.check-list li {
  background: var(--c-white);
  border-radius: 12px;
  padding: 12px 16px 12px 44px;
  position: relative;
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-sub);
  color: var(--c-white);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- 指導の流れ ---------- */
.flow-list { display: grid; gap: 12px; counter-reset: flow; }
.flow-list li {
  background: var(--c-white);
  border-radius: 12px;
  padding: 16px 16px 16px 64px;
  position: relative;
  counter-increment: flow;
}
.flow-list li::before {
  content: counter(flow);
  position: absolute;
  left: 14px; top: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-main);
  color: var(--c-white);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-list__title { font-weight: 700; color: var(--c-text); display: block; }
.flow-list__text { font-size: 14px; color: var(--c-text-sub); }

/* ---------- 料金 ---------- */
.price-cards { display: grid; gap: 16px; }
@media (min-width: 768px) { .price-cards { grid-template-columns: repeat(2, 1fr); } }
.price-card {
  background: var(--c-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(63, 59, 56, .06);
}
.price-card--feature { border: 2px solid var(--c-main); }
.price-card__name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--c-sub-dark);
  margin-bottom: 4px;
}
.price-card__unit { font-size: 13px; color: var(--c-text-sub); display: block; margin-bottom: 12px; }
.price-card__price {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--c-main);
  line-height: 1.2;
}
.price-card__price small { font-size: 14px; font-weight: 500; color: var(--c-text-sub); }
.price-card__note { font-size: 13px; color: var(--c-text-sub); margin-top: 12px; text-align: left; }

.price-table-wrap { overflow-x: auto; }
.price-table th, .price-table td {
  border: 1px solid var(--c-border);
  padding: 14px 16px;
  background: var(--c-white);
  text-align: left;
  font-size: 15px;
}
.price-table th { background: var(--c-olive); font-weight: 700; width: 38%; }
.price-table .price-num { color: var(--c-main); font-weight: 700; }

.referral-box {
  background: var(--c-pink);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  text-align: center;
}
.referral-box__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--c-main);
  font-size: 18px;
  margin-bottom: 8px;
}

/* ---------- FAQ（details/summary：JS無効でも動作） ---------- */
.faq-item {
  background: var(--c-white);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 52px;
  font-weight: 700;
  position: relative;
  line-height: 1.6;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "Q";
  position: absolute;
  left: 14px; top: 14px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c-main);
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--c-sub);
  font-size: 18px;
  font-weight: 700;
}
.faq-item[open] summary::after { content: "－"; }
.faq-item__answer {
  padding: 0 20px 18px 52px;
  position: relative;
  color: var(--c-text-sub);
  font-size: 15px;
}
.faq-item__answer::before {
  content: "A";
  position: absolute;
  left: 14px; top: 2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--c-sub);
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- お知らせ ---------- */
.news-list li { border-bottom: 1px solid var(--c-border); }
.news-list a {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  padding: 16px 8px;
  text-decoration: none;
  color: var(--c-text);
}
.news-list a:hover .news-list__title { text-decoration: underline; }
.news-list__date { font-size: 13px; color: var(--c-text-sub); }
.news-list__cat {
  font-size: 12px;
  background: var(--c-olive);
  color: var(--c-sub-dark);
  border-radius: 999px;
  padding: 2px 12px;
}
.news-list__title { width: 100%; font-weight: 500; }
@media (min-width: 768px) {
  .news-list__title { width: auto; flex: 1; }
}

.news-article { background: var(--c-white); border-radius: var(--radius-card); padding: 28px 20px; }
.news-article__meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.news-article__title {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--c-main);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-olive);
}
@media (min-width: 768px) { .news-article { padding: 40px; } }

/* ---------- アクセス ---------- */
.info-table th, .info-table td {
  border-bottom: 1px solid var(--c-border);
  padding: 14px 8px;
  text-align: left;
  font-size: 15px;
  vertical-align: top;
}
.info-table th { width: 34%; color: var(--c-sub-dark); font-weight: 700; }
.map-placeholder {
  background: var(--c-olive);
  border-radius: var(--radius-card);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-sub);
  text-align: center;
  padding: 20px;
}
.map-embed { border-radius: var(--radius-card); overflow: hidden; aspect-ratio: 16 / 10; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

.notice-box {
  background: var(--c-pink);
  border-radius: 12px;
  padding: 16px 20px;
  font-weight: 500;
  color: var(--c-main-dark);
}

/* ---------- フォーム ---------- */
.form-note { font-size: 14px; color: var(--c-text-sub); }
.form-field { margin-bottom: 24px; }
.form-field__label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}
.badge-req, .badge-opt {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: middle;
}
.badge-req { background: var(--c-main); color: var(--c-white); }
.badge-opt { background: var(--c-olive); color: var(--c-sub-dark); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  font-size: 16px;
  font-family: inherit;
  color: var(--c-text);
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: 10px;
  padding: 13px 14px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--c-sub);
}
.form-textarea { min-height: 160px; resize: vertical; }
.form-field--error .form-input,
.form-field--error .form-select,
.form-field--error .form-textarea { border-color: var(--c-main); background: #FDF4F6; }
.form-error {
  color: var(--c-main);
  font-size: 14px;
  font-weight: 700;
  margin-top: 6px;
}
.form-error::before { content: "！"; margin-right: 4px; }

.radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 15px;
}
.radio-group input { accent-color: var(--c-main); width: 18px; height: 18px; }
.radio-group label:has(input:checked) { border-color: var(--c-main); background: var(--c-pink); }

.agree-box {
  background: var(--c-white);
  border-radius: 12px;
  padding: 18px 20px;
}
.agree-box label { display: flex; gap: 10px; align-items: flex-start; font-weight: 700; cursor: pointer; }
.agree-box input { accent-color: var(--c-main); width: 20px; height: 20px; margin-top: 4px; flex-shrink: 0; }

.error-summary {
  background: #FDF4F6;
  border: 2px solid var(--c-main);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
}
.error-summary__title { color: var(--c-main); font-weight: 700; margin-bottom: 8px; }
.error-summary ul { list-style: disc; padding-left: 20px; font-size: 14px; color: var(--c-main-dark); }

/* 確認画面 */
.confirm-table th, .confirm-table td {
  border-bottom: 1px solid var(--c-border);
  padding: 14px 8px;
  text-align: left;
  font-size: 15px;
  vertical-align: top;
}
.confirm-table th { width: 36%; color: var(--c-sub-dark); }

.form-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}
@media (min-width: 768px) { .form-buttons { flex-direction: row-reverse; justify-content: center; } }

.complete-box {
  background: var(--c-white);
  border-radius: var(--radius-card);
  padding: 40px 24px;
  text-align: center;
}
.complete-box__title {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--c-main);
  margin-bottom: 12px;
}

.prep-notice {
  background: var(--c-olive);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--c-sub-dark);
  margin-bottom: 24px;
}

/* ---------- CTAバンド・フッター ---------- */
.cta-band { background: var(--c-pink); padding: 48px 0; text-align: center; }
.cta-band__inner { padding: 0 var(--space-inner); }
.cta-band__lead {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--c-main);
  margin-bottom: 8px;
}
.cta-band__note { color: var(--c-text-sub); margin-bottom: 20px; font-size: 15px; }

.site-footer { background: var(--c-olive); }
.site-footer__inner {
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 40px var(--space-inner) 32px;
  display: grid;
  gap: 28px;
}
.site-footer__logo { width: 200px; height: auto; border-radius: 8px; }
.site-footer__catch {
  font-family: var(--font-head);
  color: var(--c-sub-dark);
  font-weight: 700;
  margin-top: 12px;
}
.site-footer__hours { font-size: 14px; color: var(--c-text-sub); }
.site-footer__sns { display: flex; gap: 12px; margin-top: 14px; }
.site-footer__sns-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-white);
  text-decoration: none;
  border-radius: 999px;
  padding: 7px 16px;
  transition: opacity .2s;
}
.site-footer__sns-link:hover { opacity: .85; }
.site-footer__sns-link--line { background: #06C755; }
.site-footer__sns-link--instagram { background: linear-gradient(45deg, #F58529, #DD2A7B 60%, #8134AF); }
.site-footer__nav ul { display: grid; gap: 4px; }
.site-footer__nav a {
  display: inline-block;
  color: var(--c-text);
  text-decoration: none;
  padding: 6px 0;
  font-size: 15px;
}
.site-footer__nav a:hover { color: var(--c-main); }
.site-footer__bottom {
  background: var(--c-sub-dark);
  color: var(--c-white);
  text-align: center;
  padding: 14px;
  font-size: 13px;
}
@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; align-items: start; }
  .site-footer__nav ul { grid-template-columns: repeat(2, auto); gap: 4px 32px; justify-content: start; }
}

/* ---------- スマホ下部固定バー ---------- */
.fixed-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  background: var(--c-white);
  box-shadow: 0 -2px 10px rgba(63, 59, 56, .12);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.fixed-bar__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  white-space: nowrap;
  padding: 14px 4px;
}
.fixed-bar__icon { flex-shrink: 0; width: 15px; height: 15px; }
.fixed-bar__item--contact { color: var(--c-white); background: var(--c-main); }
.fixed-bar__item--line { color: var(--c-white); background: #06C755; }
.fixed-bar__item--instagram { color: var(--c-white); background: linear-gradient(45deg, #F58529, #DD2A7B 60%, #8134AF); }
.fixed-bar__item--line[aria-disabled="true"] { cursor: default; }
@media (min-width: 1024px) {
  .fixed-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- その他 ---------- */
.about-block { margin-bottom: 40px; }
.about-lead {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-main);
  text-align: center;
  line-height: 2;
  margin-bottom: 24px;
}
.philosophy-card {
  background: var(--c-white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(63, 59, 56, .06);
}

.target-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .target-grid { grid-template-columns: repeat(4, 1fr); } }
.target-grid li {
  background: var(--c-white);
  border-radius: 12px;
  text-align: center;
  padding: 18px 8px;
  font-weight: 700;
  color: var(--c-sub-dark);
  border-top: 4px solid var(--c-sub);
}

.more-link { text-align: center; margin-top: 28px; }
