/* ============================================================
   pcwants-fukui.com — Main Stylesheet
   Design: 案B改良（若草グリーン＋ウォンツオレンジ限定アクセント）
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* 2026-08-15 トップページ(home.css)と配色・余白を統一。変数名は従来のまま */
  --green: #2f6a5c;
  --green-dark: #244f46;
  --green-soft: #dfe9e4;
  --green-pale: #eef4f1;
  --orange: #c0622a;
  --orange-dark: #a4501f;
  --orange-soft: #f6ece2;
  --base: #faf8f4;        /* ページ地：白に近い温かいアイボリー */
  --paper: #f3f0e8;       /* 交互配置のセクション地 */
  --sand: #e9e1d3;        /* 第3のニュートラル */
  --surface: #ffffff;
  --ink: #17201f;         /* 見出し */
  --text: #3a3f3e;        /* 本文（白地で9.7:1） */
  --muted: #5c6260;
  --line: #dce2df;
  --line-green: #06C755;
  --radius-sm: 10px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-full: 999px;
  --shadow: 0 28px 80px rgb(20 38 34 / .12);
  --shadow-sm: 0 8px 32px rgb(20 38 34 / .08);
  --font-serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --container: 1180px;
  --header-height: 74px;
}

html { scroll-behavior: smooth; }

body {
  letter-spacing: .02em;
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  background: var(--base);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.nowrap { white-space: nowrap; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  line-height: 1.45;
  font-weight: 600;
}

.section-kicker {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 12px 0 0;
  letter-spacing: -0.02em;
}

.accent-underline {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  padding: 16px 36px;
  font-size: 1rem;
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 20px rgba(47, 122, 92, 0.2);
}
.btn--primary:hover { box-shadow: 0 10px 28px rgba(47, 122, 92, 0.28); }

.btn--line {
  padding: 12px 24px;
  font-size: 0.88rem;
  background: transparent;
  border: 1.5px solid var(--line-green);
  color: var(--line-green);
}

.btn--tel {
  padding: 12px 24px;
  font-size: 0.88rem;
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
}

.btn--ghost {
  padding: 12px 24px;
  font-size: 0.88rem;
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  height: var(--header-height);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
}
.site-logo img {
  height: 44px;
  width: auto;
}


.header-tel {
  font-weight: 700;
  font-size: 1rem;
  color: var(--orange);
}
.header-tel::before { content: "\260E\FE0E "; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 0;
  transition: transform 0.25s;
}
.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }

/* --- Hero --- */
.hero {
  padding: 80px 0 72px;
  background: var(--base);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.6;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 1rem;
  line-height: 2.2;
  color: var(--text);
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.cta-sub {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-photo {
  width: 100%;
  aspect-ratio: 4/3.2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ede8de;
  border: 1.5px solid #d8d2c6;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Section spacing --- */
.section-space {
  padding: 80px 0;
}

/* --- Dekita section (right after hero) --- */
.section-dekita {
  padding: 56px 0;
  background: var(--surface);
  text-align: center;
}
.section-dekita h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}
.section-dekita h2 em {
  font-style: normal;
  color: var(--green);
}
.section-dekita p {
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

/* --- Facts / Numbers --- */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  overflow: hidden;
}
.fact {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.fact:last-child { border-right: none; }
.fact__value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  color: var(--ink);
}
.fact__label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}

/* --- Card grid --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.card__title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.card__text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text);
}
.card__price {
  margin-top: 16px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
  font-family: var(--font-serif);
}
.card__price span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
}
.card__badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.card__badge--orange {
  background: var(--orange-soft);
  color: var(--orange);
}
.card__badge--green {
  background: var(--green-soft);
  color: var(--green);
}

/* --- Staff --- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.staff-card {
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--line);
}
.staff-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--green-soft);
  overflow: hidden;
}
.staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staff-card__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}
.staff-card__role {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
}
.staff-card__text {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text);
  margin-top: 12px;
}

/* --- Event list --- */
.event-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  align-items: start;
}
.event-item__date {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.event-item__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.event-item__desc {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
}

/* --- Blog list --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
.blog-card__thumb {
  aspect-ratio: 16/9;
  background: var(--green-soft);
  overflow: hidden;
}
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 24px; }
.blog-card__date { font-size: 0.82rem; color: var(--muted); }
.blog-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
  line-height: 1.5;
}

/* --- Table --- */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.info-table th,
.info-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.info-table th {
  width: 140px;
  font-weight: 600;
  color: var(--ink);
  background: var(--base);
}

/* --- Contact CTA (全ページ共通フッター上) --- */
.contact-cta {
  padding: 72px 0;
  background: var(--green);
  color: #fff;
  text-align: center;
}
.contact-cta h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 12px;
}
.contact-cta p {
  font-size: 0.92rem;
  opacity: 0.85;
  margin-bottom: 28px;
}
.contact-cta .btn--primary {
  background: #fff;
  color: var(--green);
}
.contact-cta .cta-sub .btn--line {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.contact-cta .cta-sub .btn--tel {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* --- Footer --- */
.site-footer {
  padding: 48px 0 32px;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-info { line-height: 2; }
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-copy {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* --- LINE floating --- */
.line-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--line-green);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  transition: transform 0.2s;
}
.line-float:hover { transform: scale(1.08); }

/* --- Placeholder (for photos not yet available) --- */
.ph {
  background: #ede8de;
  border: 1.5px dashed #d0c9ba;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: #8a8272;
  font-size: 0.82rem;
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

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

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero { padding: 48px 0 40px; }
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fact:nth-child(2) { border-right: none; }
  .fact:nth-child(1), .fact:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 700px) {
  body { font-size: 17px; }
  .container { width: calc(100% - 32px); }

  .nav-list { display: none; }
  .nav-toggle { display: block; }

  /* Mobile nav open */
  .site-header.nav-open .nav-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }

  .hero h1 { font-size: 1.5rem; }
  .hero-cta { align-items: stretch; }
  .btn--primary { width: 100%; }
  .cta-sub { flex-direction: column; gap: 10px; }
  .cta-sub .btn { width: 100%; }

  .section-space { padding: 56px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .event-item { grid-template-columns: 1fr; gap: 8px; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact { border-right: none; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: none; }

  .footer-inner { flex-direction: column; }

  .line-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
}

/* ============================================================
   PAGE-SPECIFIC COMPONENTS
   ============================================================ */

/* --- Page Hero (subpages) --- */
.page-hero {
  padding: 64px 0 56px;
  background: var(--base);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 12px 0 0;
  letter-spacing: -0.02em;
}
.page-hero .hero-lead {
  max-width: 640px;
  margin: 20px auto 0;
}

/* --- Photo block --- */
.photo-block {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* --- Feature items (numbered) --- */
.feature-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}
.feature-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.feature-item__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.feature-item p { font-size: 0.95rem; }

/* --- Staff card extras --- */
.staff-card__cert {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 6px;
}

/* --- Message block (representative greeting) --- */
.message-block {
  max-width: 720px;
  margin-top: 28px;
}
.message-block p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 2;
}
.message-block__signature {
  margin-top: 24px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.88rem;
}

/* --- Contact methods (trial page) --- */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.contact-method {
  padding: 32px 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
}
.contact-method h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}
.contact-method .btn { margin-bottom: 12px; }
.contact-method__note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 8px;
}

/* --- Map & Access --- */
.map-wrap {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.map-note {
  margin-top: 16px;
  font-size: 0.92rem;
}
.access-photo {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.parking-info {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  font-size: 0.92rem;
}
.parking-info p + p {
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* --- Blog article --- */
.breadcrumb ol {
  display: flex;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.breadcrumb li + li::before {
  content: "\203A";
  margin-right: 8px;
}
.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-header { margin-top: 24px; }
.article-header time {
  font-size: 0.82rem;
  color: var(--muted);
}
.article-header h1 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-top: 8px;
  line-height: 1.6;
}
.article-body {
  margin-top: 32px;
  font-size: 0.95rem;
  line-height: 2;
}
.article-body h2 {
  font-size: 1.2rem;
  margin: 40px 0 16px;
}
.article-body p + p { margin-top: 20px; }
.article-body ul {
  margin-top: 16px;
  padding-left: 1.4em;
  list-style: disc;
}
.article-body li { margin-bottom: 8px; }
.related-guides {
  margin-top: 48px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid #e5d8cb;
  border-radius: 18px;
  background: #fffaf5;
}
.related-guides h2 {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: var(--green-dark);
}
.related-guides ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.related-guides a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.related-guides a::after { content: " →"; }
.article-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* --- Text link --- */
.text-link {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link:hover { color: var(--green-dark); }

/* --- Draft notice --- */
.draft-notice {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* ---- 2026-08-15 コースカードの高さ揃え ------------------------
   画像のアスペクト比が不揃いでカードの段が崩れていたため、
   画像を 16:10 に固定し、カードを縦フレックスで揃える。 */
.card { display: flex; flex-direction: column; }
.card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}
.card__price { margin-top: auto; padding-top: 8px; }


/* ============================================================
   2026-08-15 下層ページをトップの設計に寄せる追補
   （既存クラスの上書き。HTMLは変更しない）
   ============================================================ */

/* --- 見出し：明朝・行間を広く・詰めすぎない --- */
.section-heading,
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.55;
  color: var(--ink);
}
h3, .card__title, .staff-card__name {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* --- ラベル（旧 section-kicker）：英字をやめた分、字間を落ち着かせる --- */
.section-kicker {
  font-size: 0.86rem;
  letter-spacing: .12em;
  font-weight: 700;
  color: var(--orange);
}

/* --- ページ上部のヒーロー：トップの静かさに合わせる --- */
.page-hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

/* --- セクション余白を可変に --- */
.section-space { padding-block: clamp(56px, 7vw, 94px); }

/* --- カード：影を消し、罫線と角丸で見せる --- */
.card, .staff-card, .event-item, .blog-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: none;
}
.card:hover, .blog-card:hover { box-shadow: var(--shadow-sm); }

/* --- ボタン：トップと同じ大きさ・形 --- */
.btn {
  min-height: 56px;
  padding-inline: 32px;
  border-radius: var(--radius-full);
  font-size: 1.03rem;
  font-weight: 700;
}
.btn--primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn--line { background: #fff; color: var(--green); border: 1.5px solid var(--green); }
.btn--line:hover { background: var(--green-soft); }
.btn--tel { border: 1.5px solid var(--orange); color: var(--orange); background: #fff; }

/* --- 小さすぎる文字の底上げ（シニア配慮：14px未満を作らない） --- */
.card__text, .staff-card__role, .event-item__desc,
.contact-method__note, .info-table td, .info-table th {
  font-size: 1rem;
  line-height: 1.8;
}
.card__price { font-size: 1.12rem; font-weight: 700; color: var(--ink); }

/* --- 情報テーブル --- */
.info-table th { color: var(--ink); font-weight: 600; }
.info-table th, .info-table td { padding-block: 16px; border-bottom: 1px solid var(--line); }

/* --- フッター上のCTA：トップの緑帯に合わせる --- */
.contact-cta { background: var(--green); }
.contact-cta .btn--primary { background: #fff; color: var(--green); border-color: #fff; }
.contact-cta .btn--primary:hover { background: var(--green-soft); }


/* ---------- AI×3Dプリンター講座（料金構造が他コースと異なるため独立） ---------- */
.ai3d__lead { margin-top: 16px; max-width: 44em; }
.ai3d {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  margin-top: 36px;
  align-items: start;
}
.ai3d__box, .ai3d__fee {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 30px;
}
.ai3d__fee { border-top: 3px solid var(--orange); }
.ai3d h3 { font-size: 1.15rem; margin: 0 0 18px; }
.ai3d__list { list-style: none; margin: 0; padding: 0; }
.ai3d__list li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.ai3d__list li:last-child { border-bottom: 0; }
.ai3d__list b { color: var(--ink); font-weight: 600; font-size: .95rem; }
.ai3d__note { margin-top: 18px; font-size: .95rem; color: var(--muted); }
.ai3d__tbl { width: 100%; border-collapse: collapse; }
.ai3d__tbl th {
  text-align: left; font-weight: 600; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1rem;
}
.ai3d__tbl td {
  text-align: right; padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 1.15rem; font-weight: 700; color: var(--ink); white-space: nowrap;
}
.ai3d__tbl td span { display: block; font-size: .85rem; font-weight: 400; color: var(--muted); }
.ai3d__equip {
  margin-top: 20px; padding: 18px 20px;
  background: var(--orange-soft); border-radius: var(--radius-sm);
  font-size: .97rem; line-height: 1.8;
}
.ai3d__equip b { color: var(--ink); }
.ai3d__cta { margin-top: 22px; }
.ai3d__cta .btn { width: 100%; }
.ai3d__foot { margin-top: 24px; font-size: .95rem; color: var(--muted); }
@media (max-width: 900px) {
  .ai3d { grid-template-columns: 1fr; }
}


/* ---------- グローバルナビの現在地 ---------- */


/* ---------- インラインstyleから移したユーティリティ ---------- */
.card__note { margin-top: 8px; font-size: .9rem; color: var(--muted); }
.sec__note  { margin-bottom: 40px; font-size: .95rem; color: var(--muted); }
.mb-lg { margin-bottom: 40px; }
.mb-sm { margin-bottom: 12px; }
.mt-sm { margin-top: 14px; }
.items-center { align-items: center; }


/* ---------- ヘッダーをトップページと揃える ---------- */
.header-inner { display: flex; align-items: center; gap: 26px; }
.site-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; text-decoration: none; }
.site-logo img { height: 33px; width: auto; }
/* ロゴ画像は文字部分が箱の中心より約3.8px下にある（マスコットの触角が上に伸びるため）。
   「福井本校」をロゴの文字の高さに合わせるため、同じだけ下げる。 */
.site-branch {
  font-size: .8rem; font-weight: 700; color: var(--ink); letter-spacing: .04em;
  padding-left: 11px; border-left: 1px solid var(--line); line-height: 1.2;
  white-space: nowrap; transform: translateY(3.8px);
}

.header-tel { font-size: 1rem; color: var(--text); font-weight: 600; text-decoration: none; white-space: nowrap; }
.header-cta { min-height: 48px; padding-inline: 24px; font-size: .97rem; flex-shrink: 0; }

@media (max-width: 900px) {
  .header-tel, .header-cta { display: none; }
  .site-branch { font-size: .72rem; padding-left: 9px; }
}

/* ============================================================
   グローバルナビ（トップの .hd__nav と同じ見え方に揃える）
   リンクと現在地で箱の作りを同じにしないと、現在地だけ
   上下にずれるため、両方に同じ padding と border を持たせる。
   ============================================================ */
.nav-list {
  margin-left: auto;
  margin-block: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: .95rem;
  font-weight: 500;
}
.nav-list li { display: flex; }
.nav-list a,
.nav-list .nav-current {
  display: inline-block;
  padding-block: 7px;
  line-height: 1.4;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color: var(--text);
  transition: color .2s, border-color .2s;
}
.nav-list a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.nav-list .nav-current {
  color: var(--orange);
  font-weight: 700;
  border-bottom-color: var(--orange);
  cursor: default;
}


/* ============================================================
   無料体験のWeb予約フォーム（/trial/）
   シニアの方が使う前提。文字は大きめ、押す場所は広く、
   チェックは「押せる面」を作って指でも当てやすくする。
   ============================================================ */
.yform {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 28px;
  max-width: 720px;
}
.yform__req { color: var(--muted); font-size: .92rem; margin: 0 0 20px; }
.yform__label {
  display: block; font-weight: 700; color: var(--ink);
  font-size: 1.02rem; margin: 22px 0 8px;
}
.yform__must { color: var(--orange); margin-left: 2px; }
.yform__in {
  width: 100%; padding: 15px 16px; font: inherit; font-size: 1.05rem;
  border: 1.5px solid var(--line); border-radius: var(--radius-md);
  background: #fff; color: var(--text);
}
.yform__in:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(47 106 92 / .15);
}
.yform__in::placeholder { color: #a9b2ae; }
.yform__area { min-height: 130px; line-height: 1.8; resize: vertical; }
.yform__hint { color: var(--muted); font-size: .89rem; margin: 8px 0 0; }
.yform__set { border: 0; padding: 0; margin: 0; }
.yform__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.yform__chips label {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 20px; border: 1.5px solid var(--line); border-radius: 999px;
  background: #fff; cursor: pointer; font-size: 1rem;
  transition: border-color .15s, background .15s;
}
.yform__chips label:hover { border-color: var(--green); }
.yform__chips input { width: 20px; height: 20px; accent-color: var(--green); margin: 0; }
.yform__chips input:checked + span { font-weight: 700; color: var(--green); }
.yform__chips label:has(input:checked) { border-color: var(--green); background: #eef4f1; }
.yform__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.yform__privacy {
  color: var(--muted); font-size: .89rem; line-height: 1.75;
  margin: 26px 0 0; padding-top: 18px; border-top: 1px solid var(--line);
}
.yform__send { width: 100%; margin-top: 20px; font-size: 1.1rem; min-height: 60px; }
.yform__alt { margin-top: 18px; color: var(--muted); font-size: .95rem; }
.yform__alt a { color: var(--green); font-weight: 700; }

@media (max-width: 640px) {
  .yform { padding: 22px 18px; }
  .yform__chips label { padding: 12px 16px; }
}


/* ============================================================
   暗い帯の中のボタン（.contact-cta）
   あとから足した .btn--line / .btn--tel が background:#fff を持つため、
   濃い緑の上で「白い丸に白い文字」になっていた。ここで打ち消す。
   **この塊はファイル末尾に置くこと。**前に戻すとまた負ける。
   ============================================================ */
.contact-cta .btn--line,
.contact-cta .btn--tel {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgb(255 255 255 / .55);
}
.contact-cta .btn--line:hover,
.contact-cta .btn--tel:hover {
  background: rgb(255 255 255 / .12);
  border-color: #fff;
}
.contact-cta .btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgb(255 255 255 / .55);
}
.contact-cta .btn--ghost:hover {
  background: rgb(255 255 255 / .12);
  border-color: #fff;
}



/* --- 創業時の写真（沿革として小さく添える） --- */
.origin {
  margin: 40px 0 0;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.origin__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  filter: saturate(.92);
}
.origin__cap {
  font-size: .93rem;
  line-height: 1.85;
  color: var(--muted);
}
.origin__cap b {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.origin--doc { grid-template-columns: 210px 1fr; align-items: start; }
.origin--doc .origin__img { border: 1px solid var(--line); filter: none; }
.origin__zoom { display: block; line-height: 0; }
.origin__zoom:hover .origin__img { opacity: .88; }
.origin__note {
  display: block; margin-top: 10px; font-size: .84rem; color: var(--muted);
}

.origin--rev { grid-template-columns: 1fr 300px; }
.origin--rev .origin__img { order: 2; }
.origin--rev .origin__cap { order: 1; }

@media (max-width: 700px) {
  .origin--doc { grid-template-columns: 1fr; }
  .origin--rev { grid-template-columns: 1fr; }
  .origin--rev .origin__img { order: 1; }
  .origin--rev .origin__cap { order: 2; }
  .origin { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .origin__br { display: none; }
}


/* ============================================================
   ★旧ページをトップの体裁に揃える（デザイン統一）

   トップと教室ページを作り直した結果、コース・初めての方へ・
   イベント・ブログ・プライバシーだけ余白と大きさが違っていた。
   HTMLは触らず、見え方だけをここで揃える。

   実測にもとづく共通値
     セクション上下  clamp(78px, 9vw, 124px)   ← 旧94px固定から
     中身の幅        min(100% - 48px, 1160px)
     見出し          38px / 行間1.45 / 明朝
     リード文        16px / 行間2.0
     カード          角丸22px・影は控えめ
     ボタン          高さ54px・角丸12px
   ============================================================ */

/* --- セクションの余白 --- */
.section-space {
  padding-block: clamp(78px, 9vw, 124px);
}

/* --- 中身の幅 --- */
.container {
  width: min(calc(100% - 48px), 1160px);
}

/* --- 見出しまわり --- */
.section-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  color: var(--orange);
  margin-bottom: 13px;
}
.section-heading {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .01em;
  color: var(--ink);
  text-wrap: balance;
  line-break: strict;
}
.page-hero h1 {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  line-height: 1.45;
  text-wrap: balance;
  line-break: strict;
}
.hero-lead,
.sec__note {
  font-size: 16px;
  line-height: 2;
  color: var(--muted);
}

/* --- カードの質感（角丸・影・枠） --- */
.card,
.event-item,
.blog-card,
.contact-method,
.feature-item,
.staff-card,
.info-table {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 38px rgb(23 35 31 / .06);
}
.card,
.contact-method,
.event-item {
  padding: 32px 30px;
}
.card__title,
.event-item__title,
.blog-card__title,
.contact-method h3 {
  font-family: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  line-height: 1.55;
}

/* --- ボタン --- */
.btn {
  min-height: 54px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  padding-inline: 25px;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { box-shadow: 0 11px 28px rgb(201 104 45 / .23); }
.btn--sm { min-height: 48px; padding-inline: 20px; font-size: 14px; }

/* --- ページ上部の帯（各ページのタイトル部分） --- */
.page-hero {
  padding-block: clamp(56px, 6vw, 92px);
  background: linear-gradient(140deg, #fffaf4 0%, #f7eee2 100%);
}


/* --- おまけ（/trial/ の最後・くまひげ先生） --- */
.omake { background: var(--surface); }
.omake__tag {
  display: inline-block; margin-bottom: 22px; padding: 5px 14px;
  border-radius: 999px; background: var(--orange-soft); color: var(--orange-dark);
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
}
.omake__grid {
  display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: start;
}
.omake__fig { margin: 0; }
.omake__fig img {
  width: 100%; height: auto; display: block;
  border-radius: 22px; box-shadow: 0 12px 38px rgb(23 35 31 / .08);
}
.omake__ttl { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 18px; }
.omake__body p { font-size: 15px; line-height: 2; color: var(--muted); margin-bottom: 1em; }
.omake__body p b { color: var(--ink); }
.omake__quote {
  margin: 22px 0 !important; padding: 16px 20px;
  border-left: 3px solid var(--orange); background: #fff;
  border-radius: 0 10px 10px 0;
  color: var(--ink) !important; font-size: 15px !important;
}
.omake__links { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; }
.omake__links a {
  color: var(--green); font-weight: 700; font-size: 14px;
  text-decoration: none; border-bottom: 1px solid currentColor;
}
@media (max-width: 700px) {
  .omake__grid { grid-template-columns: 1fr; gap: 24px; }
  .omake__fig { max-width: 240px; }
  .omake__br { display: none; }
}


/* ============================================================
   ★シニア向けの文字サイズ底上げ（DON指示 2026-08-16）
   本文16px以上・補助14px以上・行間2.0。
   実測で11〜13pxが多数あり、シニアには小さすぎたため。
   ============================================================ */
body { font-size: 17px; line-height: 2; }
p, li, dd, td { font-size: 16px; line-height: 2; }
.section-kicker { font-size: 14px; letter-spacing: .1em; }
.hero-lead, .sec__note, .card__text, .contact-method__note,
.event-item__desc, .blog-card__title, .info-table td, .info-table th,
.card__note, .card__price, .access-row, .feature-item p
{ font-size: 16px; line-height: 1.95; }
.card__badge, .blog-card__date, .footer-info, .footer-copy,
.staff-card__cert, .map-note, .parking-info
{ font-size: 14px; }
.btn { font-size: 16px; }
.btn--sm { font-size: 15px; }
input, textarea, select { font-size: 16px; }
@media (max-width: 700px) {
  body { font-size: 17px; }
  p, li, dd, td { font-size: 16px; }
}
/* 取りこぼしの底上げ（クラス指定の無い小さな文字） */
main span, main small, main figcaption, main dt, main dd, main cite,
.card__badge, .blog-card__date { font-size: max(14px, 1em); }

/* 縦の余白を増やす（DON指示 2026-08-16） */
.section-space { padding-block: clamp(92px, 10vw, 144px); }
.page-hero { padding-block: clamp(64px, 7vw, 104px); }
.section-heading { margin-bottom: 8px; }
.sec__note, .hero-lead { margin-top: 18px; }
.card-grid, .staff-grid, .feature-items { gap: 26px; }

/* ロゴ横「福井本校」を全ページで統一（DON指摘 2026-08-16）
   トップだけゴシック、他5ページは明朝だった。DON判断で明朝に統一する
   （清潔感がある）。細く見えないよう15px・太さ600にしている。 */
.site-branch, .hd__branch {
  font-family: "Shippori Mincho","Noto Serif JP","Hiragino Mincho ProN","Yu Mincho",serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  color: var(--ink, #17201f) !important;
}

/* kickerなどの下限（シニア向け・DON指示） */
.section-kicker, [class*="kicker"], [class*="badge"], [class*="tag"],
[class*="note"], [class*="caption"], small, figcaption { font-size: 14px; }

/* ★文字の下限を全体に（シニア向け・DON指示 2026-08-16）
   クラス名の無い span なども含め、本文領域の文字を14px未満にしない。
   見出しやロゴは対象外（別途サイズを持っている）。 */
main *:not(h1):not(h2):not(h3):not(h4) { font-size: max(14px, 1em); }

/* フッターの文字を明るく（向川さん指摘・シニアに読みづらい）
   著作権表示が実測3.75（基準4.5）だった。 */
.site-footer .footer-copy, .site-footer .footer-copy a,
.ft2__cp, .ft2__cp a { color: rgba(255,255,255,.82) !important; }
.site-footer .footer-info, .ft2 p { color: rgba(255,255,255,.86) !important; }

/* 操作性の共通基準：キーボード・タッチ・シニア向け */
:where(a,button,input,textarea,select,summary):focus-visible {
  outline: 3px solid #e58a4f;
  outline-offset: 3px;
}
.skip-link {
  position: fixed; z-index: 10000; top: 10px; left: 10px;
  translate: 0 -160%; padding: 12px 18px; border-radius: 10px;
  color: #fff; background: var(--ink); font-weight: 700;
  text-decoration: none; box-shadow: 0 8px 24px rgb(0 0 0 / .18);
}
.skip-link:focus { translate: 0; }
.nav-list a, .nav-list .nav-current, .footer-nav a,
.footer-info a, .header-tel {
  display: inline-flex; min-height: 44px; align-items: center;
}
.footer-nav { row-gap: 6px; }
.footer-copy, .footer-copy a { font-size: 14px !important; }
@media (max-width: 700px) {
  .line-float { width: 60px; height: 60px; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; column-gap: 18px; }
  .footer-nav a { min-height: 48px; }
}


/* ============================================================
   日本語の見出しを「文節」で折る（2026-08-16）
   「質問しやすい先生た／ちが」「教室の、最／近のこと」のように
   語の途中で改行する事故が全ページで31件あった。
   word-break:auto-phrase は、ブラウザが日本語を文節に区切って
   その切れ目で折ってくれる。lang="ja" が付いていることが条件で、
   全ページに付いているのを確認ずみ。
   対応していないブラウザ（Safari・Firefox）では今までどおりで、
   悪くはならない。
   ★この区画は画面幅で変えない指定なので、下のメディアクエリより前に置く。
   ============================================================ */
/* --- 意味のかたまりを、途中で切らせない -----------------------
   .nb を付けた範囲は、行の途中で割られず丸ごと次の行へ移る。
   文節で折る指定（word-break:auto-phrase）は、
   その文節自体が枠に入らないと効かない。そこで
   「ここは絶対に割らない」と決めたい所にだけ、これを使う。      */
.nb { display: inline-block; }
.staff-realname { display: inline-block; }

h1, h2, h3, h4,
.section-heading, .page-hero h1, .hero-lead, .sec__note,
.card__title, .blog-card__title, .sp-title, .tr-title, .tx-title,
.blog-guide__lead strong, .contact-cta h2, dt, .faq__q {
  word-break: auto-phrase;
}

/* ============================================================
   ★スマホのときの打ち消し（このファイルの最後に置くこと）

   このCSSは長い期間に何度も追記してきたため、あとから足した
   素の指定が、前の方にあるメディアクエリを打ち消す事故が3回起きた。
     ・.nav-list        → スマホでナビが畳まれず横にはみ出した
     ・.btn--line/tel   → 濃い緑の帯で白地に白文字になった
   詳細度が同じなら「後ろにある方が勝つ」ため、
   **画面幅で変える指定は、必ずこの区画にまとめる。**
   新しい指定を足すときは、この区画より前に書くこと。
   ============================================================ */
@media (max-width: 700px) {
  .nav-list { display: none; }
  .nav-toggle { display: block; }

  .site-header.nav-open .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    margin-left: 0;
    background: var(--surface);
    padding: 20px 24px;
    gap: 6px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 24px rgb(0 0 0 / .08);
    z-index: 50;
  }
  .site-header.nav-open .nav-list a,
  .site-header.nav-open .nav-list .nav-current {
    display: block;
    padding-block: 12px;
    border-bottom: 1px solid var(--line);
  }
  .site-header.nav-open .nav-list li:last-child a,
  .site-header.nav-open .nav-list li:last-child .nav-current {
    border-bottom: 0;
  }
}
/* 学び方の選び方：直営校インタビュー反映 2026-08-21 */
.learning-style{background:#fffaf5}
.learning-style__lead{max-width:760px;margin:0 0 28px;color:var(--text-sub,#5f625f);line-height:1.9}
.learning-style__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.learning-style__card{padding:28px;border:1px solid #dfd6cc;border-radius:20px;background:#fff;box-shadow:0 12px 30px rgba(62,48,37,.06)}
.learning-style__card--warm{background:#fff2e6;border-color:#e9c6a9}
.learning-style__card--plain{background:#f3f5ef;border-color:#d5dbce}
.learning-style__label{margin:0 0 10px;color:#a64f20;font-size:.82rem;font-weight:700;letter-spacing:.05em}
.learning-style__card h3{margin:0 0 14px;font-size:clamp(1.25rem,2vw,1.55rem);line-height:1.5;color:#49382e}
.learning-style__card p:last-child{margin:0;line-height:1.9;color:#585c58}
.learning-style__note{margin:18px 0 0;color:#6e716d;font-size:.85rem}
@media (max-width:820px){.learning-style__grid{grid-template-columns:1fr}.learning-style__card{padding:23px}}

/* 生徒さんの声を追加した5項目ナビを1行で読みやすく表示 */
@media (min-width:901px){
  .header-inner{gap:18px}
  .nav-list{gap:16px;font-size:.88rem}
  .nav-list a,.nav-list .nav-current{white-space:nowrap}
  .header-tel{font-size:.9rem}
  .header-cta{padding-inline:18px;font-size:.88rem;white-space:nowrap}
}

/* ============================================================
   検索で「福井 パソコン教室」を戦うための調整（2026-08-24）

   分かったこと: title と 構造化データ（住所・電話・営業時間）は
   もともとよくできていた。穴は h1 だけだった。
   h1のすぐ上にあった地域入りのリード文を、h1の**中**へ移した。
   同じクラス名のまま span にしたので、**見た目は変わらない**。
   ============================================================ */
h1 > .tx-hero__sub,
h1 > .school-hero__eyebrow,
h1 > .tr-kicker,
h1 > .stories-kicker { display: block; }

/* ★ここが要点
   style.css には「本文の文字を14px以上にする」という全体指定がある。
       main *:not(h1):not(h2):not(h3):not(h4) { font-size: max(14px, 1em) }
   1em は**親の文字サイズ**なので、h1（46〜76px）の中に入れた小見出しは
   max(14px, 76px) = 76px になってしまう。本文向けの指定なので、
   h1の中だけは元の大きさを明示して打ち消す。数値は各ページの元CSSの実測値。 */
h1 > .tx-hero__sub          { font-size: 14px !important; }
h1 > .school-hero__eyebrow  { font-size: 14px !important; }
h1 > .tr-kicker             { font-size: 14px !important; }
h1 > .stories-kicker        { font-size: 13px !important; letter-spacing: .12em; }

/* ページ名だけのh1（コース・料金／ブログ）に添える地域の一行 */
.h1-locale {
  display: block;
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", sans-serif;
  font-size: 14px !important;
  font-weight: 500;
  letter-spacing: .04em;
  color: #6b7671;
}
