@charset "UTF-8";
/* ============================================================
   てらこや教室 — デザインサンプル（架空ブランド）
   方向: マキシマル/ポップ（図形の散布・斜め・原色）
   シグネチャー: 1日のながれ＝スタンプカード
   ============================================================ */

/* ---------- 1. トークン ---------- */
:root {
  --c-cream:  #fffdf7;   /* 地 */
  --c-tone:   #fff6e0;   /* 一段沈めた面 */
  --c-white:  #ffffff;
  --c-yellow: #ffc93c;   /* 主張色 */
  --c-blue:   #4fc3f7;
  --c-coral:  #ff7b7b;
  --c-green:  #7ed49b;
  --c-ink:    #2e2a26;
  --c-muted:  #7c7469;
  --c-line:   #ece3cf;

  --font-jp: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", sans-serif;
  --font-en: "Baloo 2", "M PLUS Rounded 1c", sans-serif;

  --section-pad: clamp(72px, 10vw, 132px);
  --container: 1140px;
  --container-narrow: 740px;
  --gutter: clamp(20px, 4.5vw, 52px);

  --z-header: 100;
  --z-nav: 200;
  --z-fixed: 1000;

  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.8s;
}

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

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

body {
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--c-ink);
  background: var(--c-cream);
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
  overflow-x: hidden;   /* 斜め・散布した図形のはみ出し対策 */
}

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

:focus-visible { outline: 3px solid var(--c-blue); outline-offset: 3px; }

h1, h2, h3 { font-weight: 800; line-height: 1.5; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: var(--z-fixed);
  background: var(--c-ink); color: #fff; padding: 10px 18px; font-size: 13px; border-radius: 999px;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
.sp-br { display: none; }
@media (max-width: 560px) { .sp-br { display: inline; } }
.pc-br { display: none; }
@media (min-width: 860px) { .pc-br { display: inline; } }

.note { margin-top: 26px; font-size: 12.5px; color: var(--c-muted); line-height: 1.9; text-align: center; }

/* ---------- 3. レイアウト ---------- */
.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }
.container--narrow { width: min(var(--container-narrow), 100% - var(--gutter) * 2); margin-inline: auto; }

.section { padding-block: var(--section-pad); position: relative; }
.section--tone { background: var(--c-tone); }

.sec-head { margin-bottom: clamp(38px, 5vw, 62px); }
.sec-head--center { text-align: center; }
.sec-head__en {
  font-family: var(--font-en); font-weight: 800; font-size: 15px;
  letter-spacing: 0.1em; color: var(--c-blue); margin-bottom: 6px;
}
.sec-head__title { font-size: clamp(26px, 4.2vw, 42px); }
.sec-head__lead { margin-top: 18px; font-size: 14.5px; color: var(--c-muted); line-height: 2; }

/* ---------- 4. ヘッダー ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px var(--gutter);
  transition: background 0.4s, box-shadow 0.4s;
}
.site-header.is-scrolled {
  background: rgba(255,253,247,0.92); backdrop-filter: blur(10px);
  box-shadow: 0 2px 14px rgba(46,42,38,0.07);
}
.site-header__logo { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 17px; }
.site-header__mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c-yellow); box-shadow: 9px 0 0 -4px var(--c-coral);
}

.global-nav { display: flex; align-items: center; gap: 24px; }
.global-nav ul { display: flex; gap: 20px; }
.global-nav a { font-size: 13.5px; font-weight: 700; }
.global-nav ul a {
  padding: 5px 2px; border-bottom: 3px solid transparent; transition: border-color 0.3s;
}
.global-nav ul a:hover { border-bottom-color: var(--c-yellow); }

.nav-toggle {
  display: none; width: 44px; height: 44px; background: none; border: none;
  cursor: pointer; position: relative; z-index: calc(var(--z-nav) + 1);
}
.nav-toggle span {
  display: block; width: 24px; height: 3px; margin: 5px auto; border-radius: 2px;
  background: var(--c-ink); transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- 5. ボタン ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; min-height: 52px;
  background: var(--c-ink); color: var(--c-cream);
  border: none; border-radius: 999px;
  font-family: var(--font-jp); font-weight: 800; font-size: 15px;
  cursor: pointer; box-shadow: 0 4px 0 rgba(46,42,38,0.28);
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 7px 0 rgba(46,42,38,0.28); }
.button:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(46,42,38,0.28); }
.button--sm { padding: 10px 20px; min-height: 44px; font-size: 13px; box-shadow: 0 3px 0 rgba(46,42,38,0.25); }
.button--lg {
  padding: 19px 44px; min-height: 62px; font-size: 17px;
  background: var(--c-yellow); color: var(--c-ink);
  box-shadow: 0 5px 0 #d9a41f;
}
.button--lg:hover { box-shadow: 0 8px 0 #d9a41f; }
.button--lg:active { box-shadow: 0 2px 0 #d9a41f; }
.button--ghost {
  background: var(--c-white); color: var(--c-ink);
  box-shadow: 0 4px 0 var(--c-line);
}
.button--ghost:hover { box-shadow: 0 7px 0 var(--c-line); }

/* ---------- 6. ヒーロー（マキシマル・図形の散布） ---------- */
.hero { position: relative; padding: clamp(108px, 14vw, 156px) 0 clamp(56px, 8vw, 96px); overflow: hidden; }
.blobs { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; opacity: 0.5; }
.blob--1 { width: 220px; height: 220px; background: var(--c-yellow); top: -60px; left: -70px; }
.blob--2 { width: 130px; height: 130px; background: var(--c-blue); top: 22%; right: 6%; opacity: 0.35; }
/* 大きめにして深く沈める。浅い弧だけ覗かせないと「切れた半円」に見える */
.blob--3 {
  width: 300px; height: 300px; background: var(--c-coral); bottom: -230px; left: 8%;
  border-radius: 42% 58% 55% 45% / 52% 44% 56% 48%;   /* 有機的な形で"手描き感" */
  opacity: 0.26;
}
.blob--4 {
  width: 90px; height: 90px; background: var(--c-green); top: 12%; left: 46%; opacity: 0.3;
  border-radius: 56% 44% 38% 62% / 45% 52% 48% 55%;
}

.hero__grid {
  position: relative; z-index: 1;
  width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto;
  display: grid; gap: clamp(30px, 4vw, 52px); align-items: center;
}
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.05fr 1fr; } }
.hero__cap {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  background: var(--c-white); border: 2px solid var(--c-ink);
  padding: 5px 16px; border-radius: 999px; margin-bottom: 20px;
}
.hero__title { font-size: clamp(30px, 5.6vw, 58px); line-height: 1.42; }
.hero__pop {
  display: inline-block; color: var(--c-ink);
  background: var(--c-yellow); padding: 0 10px; border-radius: 10px;
  transform: rotate(-2.5deg);   /* 斜めの破調 */
}
.hero__lead { margin-top: 22px; font-size: 15px; color: var(--c-muted); line-height: 2.05; }
.hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badge {
  margin-top: 18px; font-size: 13px; font-weight: 700; color: var(--c-coral);
}
.hero__visual { margin: 0; }
.hero__visual img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 26px; border: 3px solid var(--c-ink);
  box-shadow: 10px 10px 0 var(--c-blue);
  transform: rotate(1.4deg);
}

/* ---------- 7. 3つの約束 ---------- */
.promises { display: grid; gap: clamp(20px, 3vw, 28px); grid-template-columns: repeat(auto-fit, minmax(266px, 1fr)); }
.promise {
  background: var(--c-white); border: 3px solid var(--c-ink); border-radius: 22px;
  padding: 34px 26px 30px; position: relative;
  transition: transform 0.3s var(--ease-bounce);
}
.promise:hover { transform: translateY(-6px); }
.promise__icon {
  position: absolute; top: -24px; left: 24px;
  width: 52px; height: 52px; border-radius: 50%;
  border: 3px solid var(--c-ink);
  display: grid; place-content: center;
  font-family: var(--font-en); font-weight: 800; font-size: 24px; color: var(--c-ink);
}
.promise--a .promise__icon { background: var(--c-yellow); }
.promise--b .promise__icon { background: var(--c-blue); }
.promise--c .promise__icon { background: var(--c-coral); }
.promise--a { box-shadow: 7px 7px 0 var(--c-yellow); }
.promise--b { box-shadow: 7px 7px 0 var(--c-blue); }
.promise--c { box-shadow: 7px 7px 0 var(--c-coral); }
.promise__title { font-size: 19px; margin: 16px 0 12px; }
.promise__text { font-size: 13.5px; color: var(--c-muted); line-height: 2; }

/* ---------- 8. シグネチャー: スタンプカード ---------- */
.card {
  background: var(--c-white);
  border: 3px solid var(--c-ink); border-radius: 22px;
  padding: clamp(24px, 3.4vw, 40px);
  box-shadow: 10px 10px 0 var(--c-yellow);
  max-width: 940px; margin-inline: auto;
}
.card__head {
  display: flex; align-items: baseline; gap: 12px;
  font-size: 13px; font-weight: 700; color: var(--c-muted);
  padding-bottom: 18px; border-bottom: 2px dashed var(--c-line); margin-bottom: 26px;
}
.card__line { flex: 1; border-bottom: 2px solid var(--c-line); }
.card__date { white-space: nowrap; }

.stamps { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.stamp {
  text-align: center; padding: 20px 8px 16px;
  border: 2px dashed var(--c-line); border-radius: 16px;
  transition: border-color 0.3s, background 0.3s;
}
.stamp:hover { border-color: var(--c-yellow); background: #fffaf0; }
.stamp__mark {
  display: grid; place-content: center;
  width: 46px; height: 46px; margin: 0 auto 12px;
  border-radius: 50%; background: var(--c-green); color: #fff;
  font-size: 22px; font-weight: 800;
  transform: rotate(-8deg);
  box-shadow: 0 3px 0 rgba(46,42,38,0.18);
}
.stamp:nth-child(2n) .stamp__mark { background: var(--c-blue); transform: rotate(6deg); }
.stamp:nth-child(3n) .stamp__mark { background: var(--c-coral); transform: rotate(-3deg); }
.stamp__min {
  display: block; font-family: var(--font-en); font-weight: 800;
  font-size: 15px; color: var(--c-muted);
}
.stamp__title { display: block; margin-top: 4px; font-size: 13.5px; font-weight: 700; }

.card__foot {
  margin-top: 26px; padding-top: 20px; border-top: 2px dashed var(--c-line);
  font-size: 13.5px; color: var(--c-muted); font-weight: 700;
}
.card__hand {
  color: var(--c-ink);
  background: linear-gradient(transparent 64%, rgba(255,201,60,0.55) 64%);
  padding: 0 2px;
}

/* ---------- 9. コースと月謝 ---------- */
.courses { display: grid; gap: clamp(20px, 3vw, 26px); grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.course {
  background: var(--c-white); border: 3px solid var(--c-ink); border-radius: 22px;
  padding: 32px 26px 28px; position: relative;
  transition: transform 0.3s var(--ease-bounce);
}
.course:hover { transform: translateY(-6px); }
.course--pick { box-shadow: 9px 9px 0 var(--c-coral); }
.course__badge {
  position: absolute; top: -17px; left: 50%; transform: translateX(-50%);
  background: var(--c-coral); color: #fff; font-weight: 800; font-size: 12.5px;
  padding: 4px 18px; border-radius: 999px; border: 3px solid var(--c-ink); white-space: nowrap;
}
.course__grade {
  display: inline-block; font-size: 12.5px; font-weight: 700;
  background: var(--c-tone); padding: 3px 14px; border-radius: 999px; color: var(--c-muted);
}
.course__name { font-size: 22px; margin: 12px 0 10px; }
.course__price {
  font-family: var(--font-en); font-weight: 800; font-size: 40px; line-height: 1.1; color: var(--c-ink);
}
.course__price small { font-family: var(--font-jp); font-size: 14px; font-weight: 700; color: var(--c-muted); margin-left: 3px; }
.course__spec { margin-top: 20px; padding-top: 18px; border-top: 2px dashed var(--c-line); display: grid; gap: 9px; }
.course__spec li { position: relative; padding-left: 24px; font-size: 13.5px; color: var(--c-muted); line-height: 1.8; }
.course__spec li::before {
  content: ""; position: absolute; left: 2px; top: 0.62em;
  width: 11px; height: 11px; border-radius: 50%; background: var(--c-yellow);
}

/* ---------- 10. 保護者の声 ---------- */
.voices { display: grid; gap: clamp(18px, 2.6vw, 24px); grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.voice {
  background: var(--c-white); border-radius: 20px; padding: 28px 24px 24px; position: relative;
  border: 2px solid var(--c-line);
}
/* 吹き出しのしっぽ */
.voice::after {
  content: ""; position: absolute; left: 34px; bottom: -13px;
  width: 22px; height: 22px; background: var(--c-white);
  border-right: 2px solid var(--c-line); border-bottom: 2px solid var(--c-line);
  transform: rotate(45deg);
}
.voice__text { font-size: 13.5px; line-height: 2.05; }
.voice__who { margin-top: 16px; font-size: 12.5px; font-weight: 700; color: var(--c-blue); }
.voice-photo { margin: clamp(42px, 6vw, 64px) 0 0; }
.voice-photo img {
  width: 100%; border-radius: 22px; border: 3px solid var(--c-ink);
  aspect-ratio: 16 / 7; object-fit: cover;
}

/* ---------- 11. 最終CTA ---------- */
.cta {
  padding-block: clamp(76px, 11vw, 136px); text-align: center;
  background: var(--c-yellow); position: relative; overflow: hidden;
}
.cta::before, .cta::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.cta::before { width: 260px; height: 260px; background: #ffd66b; top: -90px; left: -80px; }
.cta::after  { width: 190px; height: 190px; background: #ffd66b; bottom: -70px; right: -50px; }
.cta > * { position: relative; z-index: 1; }
.cta__cap { font-family: var(--font-en); font-weight: 800; font-size: 15px; letter-spacing: 0.1em; margin-bottom: 8px; }
.cta__title { font-size: clamp(28px, 4.6vw, 50px); line-height: 1.4; }
.cta__text { margin-top: 22px; font-size: 14.5px; line-height: 2.05; color: #6b5514; }
.cta__actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .button--lg { background: var(--c-ink); color: var(--c-yellow); box-shadow: 0 5px 0 rgba(0,0,0,0.3); }
.cta .button--lg:hover { box-shadow: 0 8px 0 rgba(0,0,0,0.3); }
.cta .button--ghost { background: var(--c-white); color: var(--c-ink); box-shadow: 0 4px 0 rgba(0,0,0,0.16); }
.cta__note { margin-top: 26px; font-size: 13px; font-weight: 700; color: #6b5514; }

/* ---------- 12. フッター ---------- */
.site-footer { padding: 40px 0 34px; background: var(--c-ink); color: rgba(255,253,247,0.66); }
.site-footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap; font-size: 12.5px;
}
.site-footer__logo { font-size: 16px; font-weight: 800; color: var(--c-cream); }

/* ---------- 13. サンプル明示バッジ（全サンプル共通仕様） ---------- */
.sample-badge {
  position: fixed; left: 16px; bottom: 16px; z-index: var(--z-fixed);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px; border-radius: 999px;
  background: rgba(46,42,38,0.9); backdrop-filter: blur(8px);
  color: #fff; font-size: 11.5px; letter-spacing: 0.02em; line-height: 1.5;
  box-shadow: 0 4px 18px rgba(46,42,38,0.2);
  transition: background 0.3s;
}
.sample-badge:hover { background: rgba(46,42,38,0.98); }
.sample-badge__tag {
  background: var(--c-yellow); color: #2e2a26; font-weight: 800;
  padding: 2px 8px; border-radius: 999px; font-size: 10px; letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .sample-badge { left: 10px; bottom: 10px; padding: 6px 12px 6px 8px; font-size: 10.5px; }
  .sample-badge__text { max-width: 15em; }
}

/* ---------- 14. SPナビ ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .global-nav {
    position: fixed; inset: 0; z-index: var(--z-nav);
    background: var(--c-cream);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 38px;
    opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
  }
  .global-nav.is-open { opacity: 1; visibility: visible; }
  .global-nav ul { flex-direction: column; text-align: center; gap: 24px; }
  .global-nav ul a { font-size: 20px; }
}

/* ---------- 15. モーション基盤（ポップなので弾ませる） ---------- */
.js-reveal {
  opacity: 0; transform: translateY(24px) scale(0.985);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-bounce);
}
.js-reveal.is-inview { opacity: 1; transform: none; }
.js-reveal[data-delay="1"] { transition-delay: 0.1s; }
.js-reveal[data-delay="2"] { transition-delay: 0.2s; }
.js-reveal[data-delay="3"] { transition-delay: 0.3s; }
/* ヒーロー画像は傾きを保つ（reveal の transform で相殺されないよう上書き） */
.hero__visual.js-reveal { transform: translateY(24px) rotate(1.4deg); }
.hero__visual.js-reveal.is-inview { transform: rotate(1.4deg); }

/* ---------- 16. モーション停止（reduced-motion環境のみボタン表示） ---------- */
.motion-stop {
  display: none;
  position: fixed; right: 16px; bottom: 16px; z-index: var(--z-fixed);
  padding: 10px 16px; font: inherit; font-size: 12px;
  background: var(--c-white); color: var(--c-ink);
  border: 2px solid var(--c-ink); border-radius: 999px; cursor: pointer;
}
@media (prefers-reduced-motion: reduce) { .motion-stop { display: block; } }
html.is-motion-off *, html.is-motion-off *::before, html.is-motion-off *::after {
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  scroll-behavior: auto !important;
}
html.is-motion-off .js-reveal { opacity: 1; transform: none; }
html.is-motion-off .hero__visual.js-reveal { transform: rotate(1.4deg); }

/* ================================================================
   sample-notice:v1 — サンプル表記（14本共通・apply_sample_notice.py が生成）
   帯 / 商品CTAのモーダル / ラクシス導線 / フッター注記
   ================================================================ */
:root {
  --sample-bar-bg: #ffc93c;
  --sample-bar-fg: #2e2a26;
  --sample-bar-h: 40px;
  --sample-font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --laxis-band-bg: #262320;
  --laxis-band-fg: #fffdf7;
  --laxis-band-line: rgba(255, 255, 255, 0.12);
  --z-sample-bar: 3000;
  --z-sample-modal: 4000;
}

/* ---- 1. 最上部の固定帯 ---- */
.sample-bar {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-sample-bar);
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  min-height: 40px; padding: 8px 14px;
  background: var(--sample-bar-bg); color: var(--sample-bar-fg);
  font-family: var(--sample-font); font-size: 12.5px; font-weight: 500;
  line-height: 1.6; letter-spacing: 0.02em; text-align: center;
}
.sample-bar__tag {
  flex: none; background: var(--sample-bar-fg); color: var(--sample-bar-bg);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em;
  padding: 3px 9px; border-radius: 3px; white-space: nowrap;
}
.sample-bar__text b { font-weight: 700; }
.sample-bar__by { opacity: 0.72; }
body { padding-top: var(--sample-bar-h); }
.site-header { top: var(--sample-bar-h); }
.skip-link:focus { top: calc(var(--sample-bar-h) + 12px); }
@media (max-width: 640px) {
  :root { --sample-bar-h: 54px; }
  .sample-bar { font-size: 11px; gap: 6px; padding: 7px 12px; }
  .sample-bar__tag { font-size: 9.5px; padding: 2px 7px; }
  .sample-bar__by { display: block; width: 100%; }
}

/* ---- 2. 商品CTAのモーダル ---- */
.sample-modal {
  position: fixed; inset: 0; z-index: var(--z-sample-modal);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  font-family: var(--sample-font);
}
.sample-modal[hidden] { display: none; }
.sample-modal__backdrop { position: absolute; inset: 0; background: rgba(8, 10, 14, 0.66); backdrop-filter: blur(3px); }
.sample-modal__panel {
  position: relative; width: min(480px, 100%); background: #fff; color: #1f2933;
  border-radius: 16px; padding: 34px 30px 28px; text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35); border-top: 4px solid var(--sample-bar-bg);
}
.sample-modal__tag {
  display: inline-block; background: var(--sample-bar-bg); color: var(--sample-bar-fg);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em;
  padding: 4px 10px; border-radius: 3px; margin-bottom: 18px;
}
.sample-modal__title { font-size: 20px; font-weight: 700; line-height: 1.6; margin-bottom: 14px; color: #1f2933; }
.sample-modal__text { font-size: 13.5px; line-height: 2; color: #56606b; margin-bottom: 26px; text-align: left; }
.sample-modal__actions { display: flex; flex-direction: column; gap: 10px; }
.sample-modal__button {
  display: block; background: var(--sample-bar-bg); color: var(--sample-bar-fg); text-decoration: none;
  font-size: 15px; font-weight: 700; padding: 16px 20px; border-radius: 11px;
}
.sample-modal__close {
  display: block; width: 100%; background: none; border: 1px solid #d5dbe1; color: #56606b;
  font-family: inherit; font-size: 13.5px; padding: 14px 20px; border-radius: 11px; cursor: pointer;
}
.sample-modal__close:hover { background: #f2f4f6; }

/* ---- 3. 最下部の案内帯（架空フッターの下） ---- */
/* 下の余白は、左下に固定されている SAMPLE バッジに文字が隠されないための逃げ */
.laxis-band {
  position: relative; z-index: 1;
  background: var(--laxis-band-bg); color: var(--laxis-band-fg);
  border-top: 1px solid var(--laxis-band-line);
  font-family: var(--sample-font); text-align: center;
  padding: 32px 6vw 58px;
}
.laxis-band__text { font-size: 12.5px; line-height: 1.95; opacity: 0.85; margin: 0 0 18px; }
.laxis-band__text b { font-weight: 700; }
.laxis-band__text .nb { display: inline-block; }
.laxis-band__actions { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: center; align-items: center; }
.laxis-band__button {
  display: inline-flex; align-items: center; background: var(--sample-bar-bg); color: var(--sample-bar-fg);
  font-size: 13.5px; font-weight: 700; text-decoration: none; padding: 13px 28px; border-radius: 10px;
}
.laxis-band__back {
  color: inherit; font-size: 12px; opacity: 0.68;
  text-decoration: underline; text-underline-offset: 3px;
}
.laxis-band__back:hover { opacity: 1; }
@media (max-width: 640px) {
  .laxis-band { padding: 28px 20px 82px; }
}

/* ---- 4. フッターの注記 ---- */
.sample-note {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(128, 128, 128, 0.3);
}
.sample-note p {
  font-family: var(--sample-font); font-size: 12px; line-height: 1.95;
  opacity: 0.9; margin: 0; text-align: left;
}
