@charset "UTF-8";
/* ============================================================
   HITORIP — デザインサンプル（架空ブランド）
   方向: さわやか × 写真主役（写真に文字を最小限だけ乗せる）
   シグネチャー: 横に流れ続ける「旅のかけら」ストリップ（自動マーキー）
   ※ nagi の横スクロールは手で送るカード。こちらは止まらない自動送りで別物。
   ============================================================ */

/* ---------- 1. トークン ---------- */
:root {
  --c-white: #ffffff;
  --c-bg:    #fdfdfb;
  --c-tone:  #f1f7fa;
  --c-pale:  #e2eff6;
  --c-deep:  #12384f;   /* 深い海 */
  --c-sky:   #2b8cbe;   /* 主張色（favicon の空色を文字が乗る濃さに寄せた） */
  --c-sky-l: #4fa8d8;
  --c-cream: #fff6dc;   /* 陽の色 */
  --c-ink:   #16232b;
  --c-muted: #5d707b;
  --c-line:  #dfe7ec;

  --font-display: "Klee One", "Hiragino Mincho ProN", serif;
  --font-en: "Josefin Sans", Helvetica, Arial, sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;

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

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

  --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: 78px; }
body {
  font-family: var(--font-body); color: var(--c-ink); background: var(--c-bg);
  font-size: 16px; line-height: 1.95; letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased; overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--c-sky); outline-offset: 3px; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.55; letter-spacing: 0.01em; }
b { color: var(--c-deep); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: var(--z-fixed);
  background: var(--c-deep); color: #fff; padding: 10px 18px; font-size: 13px; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
.pc-br { display: none; }
@media (min-width: 860px) { .pc-br { display: inline; } }
/* 日本語が語の途中で折れないように、意味の塊で囲う */
.nb { display: inline-block; }
.note { margin-top: 24px; font-size: 12.5px; color: var(--c-muted); line-height: 1.95; }

/* ---------- 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); }
.section--tone { background: var(--c-tone); }

.sec-head { margin-bottom: clamp(36px, 5vw, 58px); }
.sec-head--center { text-align: center; }
.sec-head--center .sec-head__lead { margin-inline: auto; }
.sec-head__en {
  font-family: var(--font-en); font-weight: 600; font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-sky); margin-bottom: 10px;
}
.sec-head__title { font-size: clamp(25px, 3.8vw, 40px); text-wrap: balance; }
.sec-head__lead { margin-top: 16px; max-width: 46em; font-size: 14.5px; color: var(--c-muted); line-height: 2.05; }

/* ---------- 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: 14px var(--gutter);
  background: rgba(253,253,251,0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s;
}
.site-header.is-scrolled { border-bottom-color: var(--c-line); }
.site-header__logo {
  display: flex; align-items: baseline; gap: 9px;
  font-family: var(--font-en); font-weight: 600; font-size: 23px;
  letter-spacing: 0.1em; color: var(--c-deep);
}
.site-header__logo span {
  font-family: var(--font-display); font-weight: 400; font-size: 11.5px;
  letter-spacing: 0.08em; color: var(--c-muted);
}

.global-nav { display: flex; align-items: center; gap: 26px; }
.global-nav ul { display: flex; gap: 22px; }
.global-nav a { font-size: 13.5px; }
.global-nav ul a { position: relative; padding-bottom: 3px; }
.global-nav ul a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--c-sky); transition: width 0.3s var(--ease-out);
}
.global-nav ul a:hover::after { width: 100%; }

.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: 1.5px; margin: 6px auto;
  background: var(--c-deep); transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- 5. ボタン ---------- */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 32px; min-height: 52px; border-radius: 999px;
  background: var(--c-sky); color: #fff; border: 1px solid var(--c-sky);
  font-family: var(--font-body); font-weight: 700; font-size: 14.5px; letter-spacing: 0.05em;
  cursor: pointer; transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.button:hover { background: var(--c-deep); border-color: var(--c-deep); }
.button--sm { padding: 10px 22px; min-height: 44px; font-size: 13px; }
.button--lg { padding: 18px 42px; min-height: 58px; font-size: 15.5px; }
.button--ghost { background: transparent; color: var(--c-deep); border-color: var(--c-line); }
.button--ghost:hover { background: var(--c-pale); color: var(--c-deep); border-color: var(--c-sky); }

/* ---------- 6. ヒーロー: 全画面写真スライド ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  display: grid; align-items: center;
  padding: 120px 0 clamp(150px, 20vh, 200px);
  color: #fff;
}
.hero__slides { position: absolute; inset: 0; z-index: -2; background: var(--c-deep); }
.hero__slide { position: absolute; inset: 0; opacity: 0; }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; }
/* 3枚を7秒ずつ。負の遅延で、開いた瞬間から1枚目が出ている状態にする */
.hero__slide { animation: heroSlide 21s ease-in-out infinite; }
.hero__slide:nth-child(1) { animation-delay: -1s; }
.hero__slide:nth-child(2) { animation-delay: 6s; }
.hero__slide:nth-child(3) { animation-delay: 13s; }
@keyframes heroSlide {
  0%   { opacity: 0; transform: scale(1.04); }
  5%   { opacity: 1; }
  30%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.1); }
}
/* 文字を読ませるための帳。下に向かって濃くする */
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to bottom, rgba(18,56,79,0.5) 0%, rgba(18,56,79,0.18) 38%, rgba(18,56,79,0.72) 100%);
}
.hero__inner { position: relative; }
.hero__cap {
  display: inline-block; font-family: var(--font-display); font-size: 12.5px;
  letter-spacing: 0.14em; color: var(--c-cream);
  border: 1px solid rgba(255,246,220,0.5); border-radius: 999px;
  padding: 5px 18px; margin-bottom: 26px;
}
.hero__title {
  font-size: clamp(38px, 8.4vw, 88px); line-height: 1.28; letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(6,26,38,0.4);
}
.hero__lead {
  margin-top: 26px; max-width: 40em; font-size: 15px; line-height: 2.1;
  color: rgba(255,255,255,0.9); text-shadow: 0 1px 14px rgba(6,26,38,0.5);
}
.hero__actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .button--ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.hero .button--ghost:hover { background: #fff; color: var(--c-deep); border-color: #fff; }

/* 左下のSAMPLEバッジと重ならない高さまで逃がす */
.hero__scroll {
  position: absolute; left: 50%; bottom: 108px; transform: translateX(-50%);
  font-family: var(--font-en); font-size: 10.5px; letter-spacing: 0.34em;
  color: rgba(255,255,255,0.8); text-align: center;
}
.hero__scroll::after {
  content: ""; display: block; width: 1px; height: 46px; margin: 12px auto 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.85), rgba(255,255,255,0));
  animation: scrollDrop 2.4s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); opacity: 0; }
  35%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ---------- 7. シグネチャー: 流れ続ける旅のかけら ---------- */
.section--strip { padding-bottom: clamp(76px, 10vw, 136px); overflow: hidden; }
.strip {
  --item-h: clamp(210px, 26vw, 292px);
  --item-gap: clamp(14px, 1.8vw, 22px);
  margin-top: clamp(6px, 1.5vw, 14px);
  /* 両端をやわらかく消す。暗い写真で四角い縁が残らないよう早めに落とす */
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.strip__track {
  display: flex; align-items: stretch; width: max-content;
  animation: stripFlow 64s linear infinite;
}
/* gap ではなく margin で送り幅を作る。gap だと複製の継ぎ目で半コマぶんずれる */
.strip__track > * { margin-inline-end: var(--item-gap); flex: none; }
@keyframes stripFlow {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip:hover .strip__track { animation-play-state: paused; }

.strip__photo { position: relative; height: var(--item-h); width: calc(var(--item-h) * 1.6); overflow: hidden; border-radius: 3px; }
.strip__photo--tall { width: calc(var(--item-h) * 0.76); }
.strip__photo img { width: 100%; height: 100%; object-fit: cover; }
.strip__photo figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 11px;
  background: linear-gradient(to top, rgba(18,56,79,0.82), transparent);
  color: #fff; font-size: 11.5px; letter-spacing: 0.04em; line-height: 1.6;
}

.strip__voice {
  height: var(--item-h); width: calc(var(--item-h) * 1.02);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 26px 22px 20px; border-radius: 3px;
  background: var(--c-cream); border: 1px solid #f0e3c4;
}
.strip__voice--alt { background: var(--c-pale); border-color: #cfe3ee; }
.strip__voice p {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(16px, 1.7vw, 20px); line-height: 1.85; color: var(--c-deep);
  /* 引用は2行に折れる。放っておくと「出／た。」のように語が割れて最後の行が1字になる */
  text-wrap: balance;
}
.strip__voice p::before { content: "「"; margin-left: -0.5em; }
.strip__voice p::after { content: "」"; }
.strip__voice cite {
  font-style: normal; font-size: 11.5px; letter-spacing: 0.04em; color: var(--c-muted);
  padding-top: 12px; border-top: 1px solid rgba(18,56,79,0.14);
}

/* ---------- 8. ひとりぶんの心配ごと ---------- */
.care { display: grid; gap: clamp(16px, 2.2vw, 22px); }
@media (min-width: 880px) { .care { grid-template-columns: repeat(2, 1fr); } }
.care__item {
  background: var(--c-white); border: 1px solid var(--c-line); border-radius: 6px;
  padding: clamp(24px, 3vw, 32px);
}
.care__q {
  font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.7;
  color: var(--c-deep); padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px dashed var(--c-line);
}
.care__a { font-size: 13.5px; color: var(--c-muted); line-height: 2.05; }
.care__mark {
  display: inline-block; margin-right: 12px; vertical-align: 2px;
  font-family: var(--font-body); font-weight: 700; font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--c-muted); background: var(--c-tone);
  padding: 3px 10px; border-radius: 999px;
}
.care__mark--a { color: #fff; background: var(--c-sky); }

/* ---------- 9. 行き先 ---------- */
/* 3項目ちょうどで3列。auto-fit任せにすると2+1で最終行が落ち着かない */
.plans { display: grid; gap: clamp(20px, 2.6vw, 28px); }
@media (min-width: 900px) { .plans { grid-template-columns: repeat(3, 1fr); } }
.plans__item {
  border-top: 2px solid var(--c-deep); padding-top: 22px;
  display: flex; flex-direction: column;
}
.plans__no {
  font-family: var(--font-en); font-weight: 300; font-size: 34px;
  line-height: 1; color: var(--c-sky-l); letter-spacing: 0.04em;
}
.plans__name { margin-top: 12px; font-size: 21px; line-height: 1.6; }
.plans__text { margin-top: 14px; font-size: 13.5px; color: var(--c-muted); line-height: 2.05; flex: 1; }
.plans__meta {
  margin-top: 22px; display: grid; grid-template-columns: auto 1fr;
  gap: 0 16px; font-size: 13px;
}
.plans__meta dt {
  color: var(--c-muted); font-size: 11.5px; letter-spacing: 0.1em;
  padding: 9px 0; border-top: 1px solid var(--c-line);
}
.plans__meta dd {
  padding: 9px 0; border-top: 1px solid var(--c-line);
  font-weight: 500; color: var(--c-deep);
}

/* ---------- 10. 料金 ---------- */
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.fee { width: 100%; min-width: 660px; border-collapse: collapse; background: var(--c-white); }
.fee th, .fee td {
  border-bottom: 1px solid var(--c-line); padding: 16px 18px;
  text-align: left; font-weight: 400; font-size: 14px;
}
.fee thead th {
  font-family: var(--font-en); font-weight: 600; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-muted); border-bottom-width: 2px;
}
.fee tbody th { font-family: var(--font-display); font-weight: 600; font-size: 15px; white-space: nowrap; color: var(--c-deep); }
.fee__pick { background: var(--c-pale); }
.fee__pick th { color: var(--c-sky); }
.tag {
  display: inline-block; margin-left: 10px; padding: 2px 10px; border-radius: 999px;
  background: var(--c-sky); color: #fff;
  font-family: var(--font-body); font-weight: 700; font-size: 10.5px; letter-spacing: 0.06em;
}

/* ---------- 11. 最終CTA ---------- */
.cta {
  padding-block: clamp(76px, 10vw, 128px); text-align: center;
  background: var(--c-deep); color: #fff; position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 118%, rgba(79,168,216,0.42), transparent 60%);
}
.cta > * { position: relative; }
.cta__cap {
  font-family: var(--font-en); font-weight: 600; font-size: 11.5px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--c-cream); margin-bottom: 18px;
}
.cta__title { font-size: clamp(26px, 4.6vw, 46px); line-height: 1.5; }
.cta__text { margin-top: 24px; font-size: 14.5px; line-height: 2.1; color: rgba(255,255,255,0.78); }
.cta__actions { margin-top: 38px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .button { background: var(--c-cream); color: var(--c-deep); border-color: var(--c-cream); }
.cta .button:hover { background: #fff; border-color: #fff; }
.cta .button--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.42); }
.cta .button--ghost:hover { background: #fff; color: var(--c-deep); border-color: #fff; }

/* ---------- 12. フッター ---------- */
.site-footer { padding: 40px 0 34px; border-top: 1px solid var(--c-line); }
.site-footer__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--c-muted);
}
.site-footer__logo { font-family: var(--font-en); font-weight: 600; font-size: 19px; letter-spacing: 0.1em; color: var(--c-deep); }

/* ---------- 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(18,56,79,0.92); backdrop-filter: blur(8px);
  color: #fff; font-size: 11.5px; letter-spacing: 0.02em; line-height: 1.5;
  box-shadow: 0 4px 18px rgba(18,56,79,0.24); transition: background 0.3s;
}
.sample-badge:hover { background: rgba(18,56,79,1); }
.sample-badge__tag {
  background: var(--c-cream); color: #0d2b3d; font-weight: 700;
  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: 940px) {
  .nav-toggle { display: block; }
  .global-nav {
    position: fixed; inset: 0; z-index: var(--z-nav); background: var(--c-bg);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 38px;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  }
  .global-nav.is-open { opacity: 1; visibility: visible; }
  .global-nav ul { flex-direction: column; text-align: center; gap: 24px; }
  .global-nav ul a { font-family: var(--font-display); font-weight: 600; font-size: 19px; }
}

/* ---------- 15. モーション基盤 ---------- */
.js-reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.js-reveal.is-inview { opacity: 1; transform: none; }
.js-reveal[data-delay="1"] { transition-delay: 0.08s; }
.js-reveal[data-delay="2"] { transition-delay: 0.16s; }
.js-reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------- 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: 1px solid var(--c-line); 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; }

/* ヒーローのスライドとストリップは animation で見せているので、
   一律の停止をかけると「最終フレーム＝透明」になって真っ暗になる。個別に固定する */
html.is-motion-off .hero__slide,
html.is-motion-off .strip__track { animation: none !important; }
html.is-motion-off .hero__slide { opacity: 0; transform: none; }
html.is-motion-off .hero__slide:first-child { opacity: 1; }
html.is-motion-off .hero__scroll::after { animation: none !important; transform: none; opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__slide, .strip__track, .hero__scroll::after { animation: none !important; }
  .hero__slide { opacity: 0; transform: none; }
  .hero__slide:first-child { opacity: 1; }
}

/* ================================================================
   sample-notice:v1 — サンプル表記（14本共通・apply_sample_notice.py が生成）
   帯 / 商品CTAのモーダル / ラクシス導線 / フッター注記
   ================================================================ */
:root {
  --sample-bar-bg: #12384f;
  --sample-bar-fg: #ffffff;
  --sample-bar-h: 40px;
  --sample-font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --laxis-band-bg: #f1f7fa;
  --laxis-band-fg: #16232b;
  --laxis-band-line: rgba(0, 0, 0, 0.1);
  --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;
}
