@charset "UTF-8";
/* ============================================================
   保育園・こども園向け AIスキル実践活用研修 LP
   デザイン指針：hoikudesign.md 準拠
   - 明るいピーチ背景 × ビビッドティール文字 × 黄マーカー × ビビッドオレンジ差し色
   - 花装飾（オレンジ×黄×ティール）と同系のビビッド配色
   - 四角メイン・角丸はほどほど（4〜10px）
   - 強い影・グラデーションは使わない
   ============================================================ */

:root {
  --cream:  #FFF2DE;
  --paper:  #FFFDF7;
  --white:  #FFFFFF;
  --teal:   #0097A9;
  --teal-l: #3FB8C9;
  --gray:   #5C5A4C;
  --orange: #FF6A1F;
  --yellow: #FFC533;
  --beige:  #FFE0AE;
  --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--gray);
  background: var(--cream);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; }

/* SEO用テキスト（画像に文字が焼き込まれているため、視覚上は非表示） */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 800px; }

.pc-only { display: inline; }
.sp-only { display: none; }

/* ---------- 共通パーツ ---------- */

.sec-title {
  color: var(--teal);
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 48px;
}
.sec-title .sub { font-size: 18px; font-weight: 500; }

/* 見出しの折り返しを均等化し、1行が2文字以下にならないようにする。
   本文段落は最終行の孤立文字（ぶら下がり）を抑制する。
   （text-wrap 未対応ブラウザでは無害に無視される） */
.sec-title, .intro-catch, .pcband-box h2, .kouka-sub,
.cta-body h2, .katsuyo-visual-text h3, .cta-band-copy,
.kenshu-item h3, .ryokin-rate {
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* 意味のある改行を保ちつつ、各行内で折り返しを均等化するための行ブロック
   （見出し内に <br> があると text-wrap:balance が無効になるため、
   <br> の代わりに .ttl-line ブロックを重ねて使う） */
.ttl-line { display: block; text-wrap: balance; }

.sec-label {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  padding: 2px 18px;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
}

.marker {
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
  padding: 0 2px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 28px;
}
.dots i {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dots i:nth-child(1) { background: var(--teal); }
.dots i:nth-child(2) { background: var(--orange); }
.dots i:nth-child(3) { background: var(--yellow); }
.dots i:nth-child(4) { background: var(--teal-l); }

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 44px;
  border-radius: var(--radius);
  transition: opacity 0.2s;
}
.btn-primary::after { content: "→"; margin-left: 12px; font-weight: 400; }
.btn-primary:hover { opacity: 0.85; }

/* 左右余白の手描き風花装飾（07.png / 08.png）
   PC：コンテンツ幅（1080/800px）にアンカーして本文のすぐ外側に配置。
   画面が広くても端に離れず、本文に寄り添う位置に留まる */
.intro, .ryokin, .kenshu { position: relative; overflow: hidden; }
/* 本文を花より前面に置く（花は文字の背面レイヤー） */
.intro > .container, .ryokin > .container, .kenshu > .container {
  position: relative;
  z-index: 1;
}
.intro::before, .ryokin::before {
  content: "";
  position: absolute;
  left: max(20px, calc(50% - 600px));
  top: 48px;
  width: 170px; height: 240px;
  background: url("../images/07.png") no-repeat center / contain;
  pointer-events: none;
}
.intro::after, .kenshu::after {
  content: "";
  position: absolute;
  right: max(20px, calc(50% - 600px));
  bottom: 56px;
  width: 160px; height: 220px;
  background: url("../images/08.png") no-repeat center / contain;
  pointer-events: none;
}
/* タブレット：絶対配置のまま、コンテンツの角に寄せて小さく表示 */
@media (max-width: 1280px) {
  .intro::before, .intro::after,
  .ryokin::before, .kenshu::after {
    width: 120px; height: 168px;
  }
  .intro::before  { left: 12px;  top: 40px;    }
  .intro::after   { right: 12px; bottom: 48px; }
  .ryokin::before { left: 12px;  top: 40px;    }
  .kenshu::after  { right: 12px; bottom: 48px; }
}
/* スマホ：花を文字の背面レイヤーに置き、視認性を保つ低不透明度で
   角から少しだけ文字にかぶせる（section の overflow:hidden ではみ出しを隠す） */
@media (max-width: 767px) {
  .intro::before, .intro::after,
  .ryokin::before, .kenshu::after {
    width: 96px; height: 134px;
    opacity: 0.4;
    z-index: 0;
  }
  .intro::before  { left: -14px;  top: 28px;    }
  .intro::after   { right: -14px; bottom: 36px; }
  .ryokin::before { left: -14px;  top: 20px;    }
  .kenshu::after  { right: -14px; bottom: 36px; }
}

/* セクション境界のゆるい波形 */
.wave-top { line-height: 0; }
.wave-top svg { width: 100%; height: 48px; display: block; }

/* ---------- ヘッダー ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 242, 222, 0.95);
  border-bottom: 1px solid var(--beige);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-logo {
  color: var(--teal);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}
.header-logo span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
}
.header-nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 700;
}
.header-nav a:hover { color: var(--orange); }
.header-cta {
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius);
}
.header-cta:hover { opacity: 0.85; }

/* ---------- ファーストビュー ----------
   スマホ：横幅いっぱいフルブリード／PC：コンテナ幅いっぱい */

.fv {
  background: var(--cream);
  padding: 32px 0 0;
}
.fv-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.fv img { width: 100%; }

/* ---------- 導入メッセージ ---------- */

.intro {
  background: var(--cream);
  padding: 80px 0 100px;
  text-align: center;
}
.intro-catch {
  color: var(--teal);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.8;
}
.intro-catch em {
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
}
.intro-text {
  font-size: 16px;
  line-height: 2.4;
}
.intro-text strong { color: var(--teal); }

/* ---------- お悩み ---------- */

.nayami { background: var(--paper); padding-bottom: 100px; }
.nayami .container { padding-top: 72px; }

.nayami-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 48px;
  align-items: center;
}
.nayami-img img { border-radius: var(--radius); }

.nayami-list li {
  position: relative;
  padding: 14px 0 14px 40px;
  border-bottom: 1px dashed var(--teal-l);
  font-size: 15px;
  line-height: 1.8;
}
.nayami-list li::before {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 24px; height: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.nayami-close {
  margin-top: 56px;
  text-align: center;
  color: var(--teal);
  font-size: 24px;
  font-weight: 700;
}

/* ---------- 研修の特徴 ---------- */

.kenshu { background: var(--cream); padding: 96px 0 100px; }

.kenshu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.kenshu-item {
  background: var(--white);
  border: 2px solid var(--teal);
  padding: 32px 28px;
}
.kenshu-num {
  display: block;
  color: var(--orange);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.kenshu-item h3 {
  color: var(--teal);
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.kenshu-item p { font-size: 14.5px; line-height: 2; }

.kenshu-visual { max-width: 860px; margin: 0 auto 40px; }
.kenshu-visual img { border-radius: var(--radius); }

.kenshu-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.kenshu-badges li {
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: var(--radius);
}

/* ---------- 活用できる業務 ---------- */

.katsuyo { background: var(--paper); padding-bottom: 100px; }
.katsuyo .wave-top svg path { fill: var(--paper); }
.katsuyo .container { padding-top: 72px; }

.katsuyo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.katsuyo-item {
  background: var(--white);
  border-top: 4px solid var(--orange);
  border-bottom: 1px solid var(--beige);
  padding: 26px 24px;
}
.katsuyo-item:nth-child(even) { border-top-color: var(--yellow); }
.katsuyo-item h3 {
  color: var(--teal);
  font-size: 17px;
  margin-bottom: 10px;
}
.katsuyo-item p { font-size: 14px; line-height: 1.9; }

.katsuyo-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.katsuyo-visual-img img { border-radius: var(--radius); }
.katsuyo-visual-text h3 {
  color: var(--teal);
  font-size: 26px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.katsuyo-visual-text p { font-size: 15px; }

/* ---------- 料金・助成金 ---------- */

.ryokin { background: var(--cream); padding: 96px 0 100px; }

.ryokin-box {
  background: var(--white);
  border: 3px solid var(--teal);
  padding: 48px 40px;
  text-align: center;
}
.ryokin-rate {
  color: var(--teal);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
}
.ryokin-rate strong {
  color: var(--orange);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}
.ryokin-rate strong small { font-size: 28px; }
.ryokin-rate .note {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
}

.ryokin-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
.ryokin-before, .ryokin-after {
  padding: 24px 36px;
  min-width: 260px;
}
.ryokin-before {
  background: var(--paper);
  border: 1px solid var(--beige);
}
.ryokin-after { background: var(--teal); }
.ryokin-cap {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.ryokin-before .ryokin-cap { color: var(--gray); }
.ryokin-after .ryokin-cap { color: var(--yellow); }
.ryokin-price {
  font-size: 34px;
  font-weight: 900;
  color: var(--gray);
  line-height: 1.2;
  white-space: nowrap; /* 数字と「円（税込）」を同じ行に保つ */
}
.ryokin-price small { font-size: 14px; font-weight: 700; }
.ryokin-before .ryokin-price { text-decoration: line-through; text-decoration-thickness: 2px; }
/* 取り消し線は「154,000」の数字だけに乗せ、「円（税込）」には掛からないようにする
   （inline-block は先祖の text-decoration 線が引かれない） */
.ryokin-before .ryokin-price small { display: inline-block; text-decoration: none; vertical-align: baseline; }
.ryokin-after .ryokin-price { color: var(--white); }
.ryokin-after .ryokin-price em {
  font-size: 46px;
  color: var(--yellow);
}
.ryokin-arrow {
  align-self: center;
  color: var(--orange);
  font-size: 40px;
  font-weight: 900;
}
.ryokin-note {
  font-size: 13.5px;
  line-height: 2;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- 受講の流れ ---------- */

.nagare { background: var(--cream); padding: 0 0 100px; }

.nagare-list {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.nagare-list li {
  position: relative;
  background: var(--white);
  border: 1px solid var(--beige);
  padding: 28px 22px;
}
.nagare-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 0; height: 0;
  border-left: 10px solid var(--orange);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateY(-50%);
  z-index: 1;
}
.nagare-step {
  display: inline-block;
  background: var(--yellow);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 2px 12px;
  margin-bottom: 12px;
}
.nagare-list h3 {
  color: var(--teal);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
  min-height: 3.4em;
}
.nagare-list p { font-size: 13.5px; line-height: 1.9; }

/* ---------- 学習内容 ---------- */

.naiyo { background: var(--cream); padding: 0 0 100px; }

.naiyo-table {
  max-width: 880px;
  margin: 0 auto 32px;
  background: var(--white);
  border: 1px solid var(--beige);
}
.naiyo-table > div {
  display: grid;
  grid-template-columns: 200px 1fr;
}
.naiyo-table > div:not(:last-child) { border-bottom: 1px solid var(--beige); }
.naiyo-table dt {
  background: var(--paper);
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 24px;
  border-right: 1px solid var(--beige);
  display: flex;
  align-items: center;
}
.naiyo-table dt::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}
.naiyo-table dd {
  padding: 16px 24px;
  font-size: 14.5px;
}

.naiyo-target {
  text-align: center;
  font-size: 14px;
  color: var(--teal);
  font-weight: 700;
}

/* ---------- FAQ ---------- */

.faq { background: var(--paper); padding-bottom: 100px; }
.faq .container { padding-top: 72px; }

.faq-item { margin-bottom: 20px; }
.faq-item dt {
  position: relative;
  background: var(--white);
  border: 1px solid var(--teal-l);
  color: var(--teal);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 20px 16px 56px;
}
.faq-item dt::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--teal);
  color: var(--white);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.faq-item dd {
  position: relative;
  padding: 16px 20px 8px 56px;
  font-size: 15px;
}
.faq-item dd::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px; height: 28px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

/* ---------- CTA ---------- */

.cta { background: var(--paper); padding-bottom: 110px; }

.cta-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
  background: var(--white);
  border: 3px solid var(--teal);
  padding: 56px 48px;
}
.cta-img img { border-radius: var(--radius); }
.cta-body h2 {
  color: var(--teal);
  font-size: 27px;
  line-height: 1.8;
}
.cta-body .dots { justify-content: flex-start; }
.cta-body p { font-size: 15px; margin-bottom: 24px; }

.cta-tel span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 2px;
}
.cta-tel a {
  font-size: 34px;
  font-weight: 900;
  color: var(--teal);
  letter-spacing: 0.04em;
}

/* ---------- フッター ---------- */

.site-footer {
  background: var(--cream);
  padding: 72px 0 0;
  text-align: center;
}
.footer-logo {
  color: var(--teal);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 40px;
}
.footer-info {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 40px;
  text-align: left;
}
.footer-info h3 {
  color: var(--teal);
  font-size: 16px;
  margin-bottom: 8px;
}
.footer-info p { font-size: 13.5px; line-height: 1.9; }
.footer-info a { font-weight: 900; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 40px;
}
.footer-nav a { font-size: 13.5px; font-weight: 700; }
.footer-nav a:hover { color: var(--orange); }

.copyright {
  font-size: 11px;
  color: var(--gray);
  padding-bottom: 24px;
}

/* 最下部：黄色い帯＋手描きの木・花の連続装飾（09.png） */
.footer-deco {
  height: 88px;
  background-color: var(--yellow);
  background-image: url("../images/09.png");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 100%;
}

/* ============================================================
   レスポンシブ
   ============================================================ */

@media (max-width: 1024px) {
  .header-nav { display: none; }
  /* ナビ非表示時、CTAボタンを右端へ寄せる */
  .header-cta { margin-left: auto; }
  .kenshu-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .katsuyo-grid { grid-template-columns: repeat(2, 1fr); }
  .nagare-list { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .nagare-list li:not(:last-child)::after { display: none; }
}

@media (max-width: 767px) {
  body { font-size: 15px; }
  .pc-only { display: none; }
  .sp-only { display: inline; }

  /* ヘッダー：ロゴとCTAが1文字だけ改行されないよう詰める */
  .header-inner { padding: 10px 16px; gap: 12px; }
  .header-logo { font-size: 16px; white-space: nowrap; }
  .header-logo span { font-size: 10px; white-space: nowrap; }
  .header-cta { font-size: 13px; padding: 9px 14px; white-space: nowrap; }

  .sec-title { font-size: 23px; margin-bottom: 36px; }

  /* FV：スマホは横幅いっぱいフルブリード */
  .fv { padding-top: 0; }
  .fv-inner { max-width: none; padding: 0; }

  .intro { padding: 56px 0 72px; }
  .intro-catch { font-size: 25px; }
  .intro-text { text-align: left; line-height: 2.2; }

  .nayami { padding-bottom: 72px; }
  .nayami .container, .katsuyo .container, .faq .container { padding-top: 48px; }
  .nayami-grid { grid-template-columns: 1fr; gap: 32px; }
  .nayami-img { max-width: 400px; margin: 0 auto; }
  .nayami-close { font-size: 19px; margin-top: 40px; }

  .kenshu { padding: 64px 0 72px; }
  .kenshu-badges { flex-direction: column; align-items: center; }

  .katsuyo { padding-bottom: 72px; }
  .katsuyo-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; }
  .katsuyo-visual { grid-template-columns: 1fr; gap: 28px; }
  .katsuyo-visual-img { max-width: 400px; margin: 0 auto; }
  .katsuyo-visual-text h3 { font-size: 21px; text-align: center; }

  .ryokin { padding: 64px 0 72px; }
  .ryokin-box { padding: 32px 20px; }
  .ryokin-rate strong { font-size: 44px; }
  .ryokin-flow { flex-direction: column; align-items: center; gap: 8px; }
  .ryokin-before, .ryokin-after { width: 100%; min-width: 0; }
  .ryokin-arrow { transform: rotate(90deg); font-size: 32px; }

  .nagare { padding-bottom: 72px; }
  .nagare-list { grid-template-columns: 1fr; }
  .nagare-list h3 { min-height: 0; }

  .naiyo { padding-bottom: 72px; }
  .naiyo-table > div { grid-template-columns: 1fr; }
  .naiyo-table dt { border-right: none; border-bottom: 1px dashed var(--beige); padding: 12px 20px; }
  .naiyo-table dd { padding: 12px 20px 16px; }

  .faq { padding-bottom: 72px; }
  .faq-item dt { font-size: 15px; }

  .cta { padding-bottom: 80px; }
  .cta-grid { grid-template-columns: 1fr; gap: 32px; padding: 36px 24px; }
  .cta-img { max-width: 360px; margin: 0 auto; }
  .cta-body { text-align: center; }
  .cta-body h2 { font-size: 21px; }
  .cta-body .dots { justify-content: center; }
  .cta-tel a { font-size: 30px; }
  .btn-primary { display: block; padding: 16px 20px; }

  .footer-info { flex-direction: column; gap: 24px; text-align: center; }
  .footer-deco { height: 56px; }
}

/* ============================================================
   追加セクション（lp-hoikuphoto 由来・newLPデザイン準拠）
   ・PC無料貸出バンド／導入効果／中間CTAバンド／園さまの声
   ・研修ご担当者さまへ／お問い合わせフォーム／運営会社概要
   ============================================================ */

/* ---------- 共通：オレンジボタン ---------- */
.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}
.btn-orange::after { content: "→"; margin-left: 12px; font-weight: 400; }
.btn-orange:hover { opacity: 0.85; }

/* ---------- PC無料貸出バンド ---------- */
.pcband { background: var(--cream); padding: 0 0 100px; }
.pcband-box {
  background: var(--white);
  border: 3px solid var(--teal);
  padding: 44px 40px;
  text-align: center;
}
.pcband-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 2px 18px;
  margin-bottom: 16px;
}
.pcband-box h2 {
  color: var(--teal);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 14px;
}
.pcband-text { font-size: 14.5px; line-height: 2; }

/* ---------- 導入効果 ---------- */
.kouka { background: var(--paper); padding: 0 0 100px; }

.kouka-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto 72px;
}
.kouka-col { padding: 28px 28px 20px; }
.kouka-col h3 {
  font-size: 17px;
  text-align: center;
  margin-bottom: 16px;
}
.kouka-before {
  background: var(--white);
  border: 1px solid var(--beige);
}
.kouka-before h3 { color: var(--gray); }
.kouka-after {
  background: var(--white);
  border: 3px solid var(--teal);
}
.kouka-after h3 { color: var(--teal); }
.kouka-col li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px dashed var(--beige);
  font-size: 14px;
  line-height: 1.8;
}
.kouka-col li:last-child { border-bottom: none; }
.kouka-col li::before {
  position: absolute;
  left: 2px;
  top: 10px;
  width: 22px; height: 22px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.kouka-before li::before {
  content: "×";
  background: var(--beige);
  color: var(--gray);
}
.kouka-after li::before {
  content: "✓";
  background: var(--orange);
  color: var(--white);
}
.kouka-arrow {
  align-self: center;
  color: var(--orange);
  font-size: 40px;
  font-weight: 900;
}

.kouka-sub {
  text-align: center;
  color: var(--teal);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.kouka-lead {
  text-align: center;
  font-size: 14px;
  margin-bottom: 36px;
}
.kouka-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.kouka-card {
  background: var(--white);
  border-top: 4px solid var(--orange);
  border-bottom: 1px solid var(--beige);
  padding: 22px 22px 20px;
}
.kouka-card:nth-child(even) { border-top-color: var(--yellow); }
.kouka-card h4 {
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 14px;
}
.kouka-time {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.kouka-old {
  font-size: 12px;
  color: var(--gray);
}
.kouka-old b {
  font-size: 20px;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.kouka-yaji { color: var(--orange); font-size: 20px; font-weight: 900; }
.kouka-new {
  font-size: 12px;
  color: var(--teal);
  font-weight: 700;
}
.kouka-new em {
  font-size: 30px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.kouka-caption {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
}

/* ---------- 中間CTAバンド ---------- */
.cta-band {
  background: var(--teal);
  padding: 52px 0;
  text-align: center;
}
.cta-band-copy {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 24px;
}
.cta-band-copy em {
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
  color: var(--white);
  padding: 0 2px;
}

/* ---------- 受講された園さまの声 ---------- */
.voice { background: var(--cream); padding: 0 0 100px; }
.voice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto 28px;
}
.voice-item {
  background: var(--white);
  border: 1px solid var(--beige);
  border-top: 4px solid var(--teal);
  padding: 32px 30px 26px;
}
.voice-item blockquote {
  position: relative;
  font-size: 14.5px;
  line-height: 2.1;
  padding-top: 34px;
  margin-bottom: 20px;
}
.voice-item blockquote::before {
  content: "“";
  position: absolute;
  left: -4px;
  top: -12px;
  color: var(--teal-l);
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}
.voice-item figcaption {
  border-top: 1px dashed var(--teal-l);
  padding-top: 14px;
}
.voice-who {
  display: block;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
}
.voice-date {
  display: block;
  font-size: 11.5px;
  color: var(--gray);
  margin-top: 2px;
}
.voice-caption {
  text-align: center;
  font-size: 12px;
  color: var(--gray);
}

/* ---------- 研修ご担当者さまへ ---------- */
.tanto { background: var(--cream); padding: 0 0 100px; }
.tanto-box {
  background: var(--white);
  border: 3px solid var(--teal);
  padding: 44px 40px;
}
.tanto-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  margin-bottom: 32px;
}
.tanto-step {
  flex: 1;
  max-width: 220px;
  background: var(--paper);
  border: 1px solid var(--beige);
  color: var(--gray);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
  padding: 22px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tanto-step.is-goal {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.tanto-arrow {
  align-self: center;
  color: var(--orange);
  font-size: 26px;
  font-weight: 900;
}
.tanto-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.tanto-points li {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--beige);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  text-align: center;
  padding: 14px 8px 14px 30px;
}
.tanto-points li::before {
  content: "✓";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.tanto-cta { text-align: center; }

/* ---------- お問い合わせフォーム ---------- */
.contact-form { background: var(--cream); padding: 96px 0 100px; }
.cf-lead {
  text-align: center;
  font-size: 14px;
  margin: -24px 0 36px;
}
.cf-card {
  background: var(--white);
  border: 3px solid var(--teal);
  padding: 44px 40px;
}
.cf-hp {
  position: absolute;
  left: -9999px; top: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.cf-field { margin-bottom: 22px; }
.cf-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.cf-label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cf-req {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1px 10px;
  border-radius: 4px;
  line-height: 1.7;
}
.cf-note {
  font-weight: 500;
  color: var(--gray);
  font-size: 12px;
}
.cf-input, .cf-textarea {
  width: 100%;
  border: 1px solid var(--beige);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  transition: border-color 0.2s, background-color 0.2s;
}
.cf-textarea { resize: vertical; min-height: 120px; }
.cf-input:focus, .cf-textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
}
.cf-input:disabled { background: var(--beige); cursor: not-allowed; }
.cf-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}
.cf-check label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}
.cf-check input[type="checkbox"] {
  width: 18px; height: 18px;
  flex: 0 0 auto;
  accent-color: var(--teal);
  cursor: pointer;
  margin: 0;
}
.cf-check-other {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cf-other-toggle { flex: 0 0 auto; white-space: nowrap; }
.cf-other-input { flex: 1 1 auto; width: auto; padding: 9px 14px; }
.cf-agree {
  margin: 26px 0 8px;
  background: var(--cream);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.cf-agree label {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}
.cf-agree input[type="checkbox"] {
  width: 18px; height: 18px;
  flex: 0 0 auto;
  accent-color: var(--teal);
  cursor: pointer;
  margin: 0;
}
.cf-actions { margin-top: 26px; text-align: center; }
.cf-submit { padding: 16px 56px; }

/* ---------- 運営会社概要 ---------- */
.company { background: var(--cream); padding: 0 0 100px; }
.company-table dd a { font-weight: 700; }

/* ---------- 追加セクションのレスポンシブ ---------- */
@media (max-width: 1024px) {
  .kouka-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .pcband { padding-bottom: 72px; }
  .pcband-box { padding: 32px 20px; }
  .pcband-box h2 { font-size: 19px; }

  .kouka { padding-bottom: 72px; }
  .kouka-compare {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 56px;
  }
  .kouka-arrow { transform: rotate(90deg); font-size: 32px; justify-self: center; }
  .kouka-sub { font-size: 19px; }
  .kouka-grid { grid-template-columns: 1fr; gap: 14px; }

  .cta-band { padding: 44px 0; }
  .cta-band-copy { font-size: 18px; }
  .cta-band .btn-orange { display: block; padding: 16px 20px; }

  .voice { padding-bottom: 72px; }
  .voice-grid { grid-template-columns: 1fr; gap: 24px; }

  .tanto { padding-bottom: 72px; }
  .tanto-box { padding: 32px 20px; }
  .tanto-steps { flex-direction: column; align-items: stretch; gap: 8px; }
  .tanto-step { max-width: none; padding: 16px 12px; }
  .tanto-step br { display: none; }
  .tanto-arrow { transform: rotate(90deg); font-size: 22px; }
  .tanto-points { grid-template-columns: 1fr; width: 70%; margin-left: auto; margin-right: auto; }

  .contact-form { padding: 64px 0 72px; }
  .cf-lead { margin: -16px 0 28px; }
  .cf-card { padding: 32px 20px; }
  .cf-grid2 { grid-template-columns: 1fr; gap: 0; }
  .cf-checks { grid-template-columns: 1fr; }
  .cf-check-other { flex-wrap: wrap; }
  .cf-other-input { width: 100%; flex-basis: 100%; }
  .cf-submit { display: block; width: 100%; padding: 16px 20px; }

  .company { padding-bottom: 72px; }
}

/* ============================================================
   小型スマホ（iPhone SE 等 〜400px）
   見出しやヘッダーの文字を少し詰め、1文字だけの改行を防ぐ
   ============================================================ */
@media (max-width: 400px) {
  .header-inner { padding: 9px 12px; gap: 8px; }
  .header-logo { font-size: 14px; }
  .header-logo span { font-size: 10px; }
  .header-cta { font-size: 12px; padding: 8px 11px; letter-spacing: 0.02em; }

  .sec-title { font-size: 20px; }
  .intro-catch { font-size: 20px; }
  .pcband-box h2 { font-size: 17px; }
  .kouka-sub { font-size: 18px; }
  .cta-body h2 { font-size: 19px; }
  .cta-band-copy { font-size: 17px; }
  .ryokin-rate strong { font-size: 40px; }
  .ryokin-after .ryokin-price em { font-size: 40px; }
  .kenshu-badges li {  width:230px;  }
  .tanto-step { font-size:14px;}
}
