@charset "UTF-8";
/* ==========================================================================
   多機能型事業所 ひかりワークス - デザインシステム & スタイル
   アース＆ポップ（生成り背景 × くすみパステル × モダンタイポグラフィ）
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500;700;800&family=Noto+Sans+JP:wght@400;500;700&family=Plus+Jakarta+Sans:wght@600;800&display=swap');

:root {
  --bg-main: #FBF9F5;
  --bg-paper: #FFFFFF;
  --bg-sub: #F3EFE6;
  --text-main: #2C3539;
  --text-muted: #64748B;
  --text-light: #94A3B8;

  --color-primary: #38A169;
  --color-primary-soft: #E6FFFA;
  --color-mint: #38B2AC;
  --color-mint-light: #E6FFFA;
  --color-coral: #ED8936;
  --color-coral-light: #FEEBC8;
  --color-pink: #ED64A6;
  --color-pink-light: #FED7E2;
  --color-yellow: #ECC94B;
  --color-yellow-light: #FEFCBF;

  --shadow-sm: 0 4px 12px rgba(44, 53, 57, 0.05);
  --shadow-md: 0 12px 32px rgba(44, 53, 57, 0.08);
  --shadow-lg: 0 20px 48px rgba(44, 53, 57, 0.12);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;

  --font-round: 'M PLUS Rounded 1c', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-en: 'Plus Jakarta Sans', sans-serif;

  --sample-bar-bg: linear-gradient(135deg, #38B2AC, #319795);
  --sample-bar-solid: #38B2AC;
  --sample-bar-fg: #ffffff;
  --sample-bar-h: 40px;
  --sample-font: "Noto Sans JP", sans-serif;
  --laxis-band-bg: #F8F5EE;
  --laxis-band-fg: #2C3539;
  --laxis-band-line: rgba(56, 178, 172, 0.25);
  --z-sample-bar: 3000;
  --z-sample-modal: 4000;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--sample-bar-h, 40px);
}

/* 汎用クラス */
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 背景インタラクティブキャンバス */
#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

main, header, footer {
  position: relative;
  z-index: 1;
}

/* ヘッダー */
.header {
  position: fixed;
  top: calc(16px + var(--sample-bar-h, 40px));
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1140px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-main);
}

.header__logo-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--color-mint), var(--color-coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.header__nav-link:hover {
  color: var(--color-primary);
}

.header__cta {
  background: linear-gradient(135deg, var(--color-coral), #E53E3E);
  color: #fff;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(237, 137, 54, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 137, 54, 0.45);
}

/* ヒーローセクション */
.hero {
  padding-top: 150px;
  padding-bottom: 90px;
  overflow: hidden;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-mint-light);
  color: #2C7A7B;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  border: 1px solid rgba(56, 178, 172, 0.3);
}

.hero__title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__title-highlight {
  background: linear-gradient(120deg, rgba(56, 178, 172, 0.25) 0%, rgba(237, 137, 54, 0.25) 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 88%;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-mint), #319795);
  color: #fff;
  box-shadow: 0 8px 24px rgba(56, 178, 172, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(56, 178, 172, 0.45);
}

.btn--secondary {
  background: var(--bg-paper);
  color: var(--text-main);
  border: 2px solid #E2E8F0;
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  border-color: var(--color-mint);
  color: var(--color-mint);
  transform: translateY(-3px);
}

.hero__visual {
  position: relative;
}

.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
  transition: transform 0.5s ease;
}

.hero__img-wrap:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero__float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  animation: float 4s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.hero__float-icon {
  width: 44px;
  height: 44px;
  background: var(--color-coral-light);
  color: var(--color-coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.hero__float-text p {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.hero__float-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* セクション共通 */
.section {
  padding: 100px 0;
}

.sec-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 60px;
}

.sec-head__sub {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--color-mint);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.sec-head__title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.35;
  margin-bottom: 16px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.sec-head__desc {
  font-size: 1rem;
  color: var(--text-muted);
}

/* コンセプト / 3つの強み */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fcard {
  background: var(--bg-paper);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.fcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.fcard--1::before { background: var(--color-mint); }
.fcard--2::before { background: var(--color-coral); }
.fcard--3::before { background: var(--color-yellow); }

.fcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.fcard__num {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 2.2rem;
  color: rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}

.fcard__title {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.fcard__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* サービス紹介 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.scard {
  background: var(--bg-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.scard:hover {
  transform: translateY(-6px);
}

.scard__img-wrap {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.scard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.scard:hover .scard__img {
  transform: scale(1.05);
}

.scard__tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.scard__tag--work { color: #2C7A7B; border: 1px solid var(--color-mint); }
.scard__tag--care { color: #C05621; border: 1px solid var(--color-coral); }

.scard__body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.scard__title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.scard__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.scard__list {
  list-style: none;
  margin-bottom: 30px;
  margin-top: auto;
}

.scard__list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.scard__list-item svg {
  color: var(--color-mint);
  flex-shrink: 0;
}

/* タイムライン (1日の流れ) */
.timeline-wrap {
  background: var(--bg-sub);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 110px;
  width: 3px;
  background: rgba(56, 178, 172, 0.3);
  border-radius: 2px;
}

.titem {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
}

.titem__time {
  width: 90px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-mint);
  background: var(--bg-paper);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-align: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  z-index: 2;
}

.titem__card {
  background: var(--bg-paper);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  flex: 1;
}

.titem__title {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.titem__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* 施設案内 */
.facility-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.facility__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.facility__img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.facility__content h3 {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.facility__content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.facility__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ffeature {
  background: var(--bg-paper);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-family: var(--font-round);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ffeature-icon {
  color: var(--color-coral);
}

/* 利用までのステップ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--bg-paper);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-card__num {
  width: 36px;
  height: 36px;
  background: var(--color-mint);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card__title {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.step-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-q {
  padding: 24px 28px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--color-mint);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: none;
  line-height: 1.8;
}

.faq-item.active .faq-a {
  display: block;
}

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, #2C7A7B, #234E52);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(237, 137, 54, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.cta-banner__desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn--cta-coral {
  background: linear-gradient(135deg, var(--color-coral), #DD6B20);
  color: #fff;
  box-shadow: 0 8px 24px rgba(237, 137, 54, 0.4);
}

.btn--cta-coral:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(237, 137, 54, 0.5);
}

.btn--cta-white {
  background: #fff;
  color: #234E52;
}

.btn--cta-white:hover {
  background: #F7FAFC;
  transform: translateY(-3px);
}

/* フッター */
.footer {
  background: var(--bg-sub, #F3EFE6);
  color: var(--text-muted, #64748B);
  padding: 60px 0 40px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(56, 178, 172, 0.2);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.footer__logo {
  font-family: var(--font-round);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main, #2C3539);
}

.footer__copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted, #64748B);
}

/* レスポンシブ */
@media (max-width: 960px) {
  .hero__inner, .facility-block {
    grid-template-columns: 1fr;
  }
  .features, .services-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline::before {
    left: 20px;
  }
  .titem {
    flex-direction: column;
    gap: 12px;
  }
  .titem__time {
    width: auto;
  }
  .header__nav {
    display: none;
  }
}

@media (max-width: 580px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 120px;
  }
}

/* ================================================================
   sample-notice:v1 — サンプル表記
   帯 / 商品CTAのモーダル / ラクシス導線 / フッター注記
   ================================================================ */

/* ---- 1. 最上部の固定帯 ---- */
.sample-bar {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-sample-bar, 3000);
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  min-height: 40px; padding: 8px 14px;
  background: var(--sample-bar-bg, #14405c); color: var(--sample-bar-fg, #ffffff);
  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, #ffffff); color: var(--sample-bar-solid, #38B2AC);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em;
  padding: 3px 9px; border-radius: 3px; white-space: nowrap;
}
.sample-bar__text b { color: inherit; font-weight: 700; }
.sample-bar__by { opacity: 0.85; }

@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, 4000);
  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-solid, #38B2AC);
}
.sample-modal__tag {
  display: inline-block; background: var(--sample-bar-bg, #38B2AC); color: var(--sample-bar-fg, #ffffff);
  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, #14405c); color: var(--sample-bar-fg, #ffffff); text-decoration: none;
  font-size: 15px; font-weight: 700; padding: 16px 20px; border-radius: 11px; text-align: center;
}
.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. 最下部の案内帯（架空フッターの下） ---- */
.laxis-band {
  position: relative; z-index: 1;
  background: var(--laxis-band-bg, #f2f4f6); color: var(--laxis-band-fg, #1f2933);
  border-top: 1px solid var(--laxis-band-line, rgba(0, 0, 0, 0.1));
  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, #14405c); color: var(--sample-bar-fg, #ffffff);
  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(0, 0, 0, 0.08);
}
.sample-note p {
  font-family: var(--sample-font); font-size: 12px; line-height: 1.95;
  color: var(--text-muted, #64748B); opacity: 0.9; margin: 0; text-align: left;
}

/* ---- 5. 固定バッジ ---- */
.sample-badge {
  position: fixed; left: 16px; bottom: 16px; z-index: var(--z-fixed, 1000);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 10px; border-radius: 999px;
  background: rgba(31,41,51,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(31,41,51,0.16); transition: background 0.3s;
}
.sample-badge:hover { background: rgba(31,41,51,0.98); }
.sample-badge__tag {
  background: #38B2AC; color: #06222f; 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本と同じ扱い）
   ボタンは reduced-motion の環境にだけ出す。既定では隠しておく
   ========================================================================== */
.motion-stop {
  display: none;
  position: fixed; right: 16px; bottom: 16px; z-index: 200;
  padding: 10px 16px; font: inherit; font-size: 12px;
  background: var(--bg-paper); color: var(--text-main);
  border: 1px solid var(--color-mint); border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm); cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .motion-stop { display: block; }
  /* main.js が .reveal に opacity:0 をインラインで当てるので、!important で戻す */
  .reveal { opacity: 1 !important; transform: none !important; }
}
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 .reveal { opacity: 1 !important; transform: none !important; }
html.is-motion-off #bgCanvas { display: none; }

