/* ==========================================================================
   LP Mini Framework v2 (lp.css)
   ========================================================================== */

/*
 * TABLE OF CONTENTS
 * -----------------
 * 1. RESET
 * 2. DESIGN TOKENS
 * 3. BASE STYLES
 * 4. LAYOUT
 * 5. COMPONENTS
 * 6. UTILITIES
 * 7. RESPONSIVE STYLES
 */


/* ==========================================================================
   1. RESET
   ========================================================================== */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
ul, ol { margin: 0; padding: 0 0 0 1.25rem; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: inherit; font-size: inherit; }


/* ==========================================================================
   2. DESIGN TOKENS (CSS Custom Properties)
   ========================================================================== */

:root {
  /* Fonts */
  --font-sans: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-serif: "Noto Serif JP", serif;

  /* Layout */
  --container-max: 800px;
  --leading: 1.9;

  /* Colors */
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-muted: #555555;
  --color-primary: #3c72a1;
  --color-accent: #FF5A1F;
  --color-border: #e6e6e6;

  /* Spacing */
  --sp-0: 0;
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 1rem;
  --sp-4: 1.5rem;
  --sp-5: 2rem;
  --sp-6: 3rem;

  /* Breakpoints */
  --bp-sm: 480px;
  --bp-md: 768px;
  --bp-lg: 1024px;

  /* Font Sizes */
  --font-base: 20px;
  --font-xs: 0.75rem;    /* 12px */
  --font-sm: 0.95rem;    /* ~15px */
  --font-md: 1rem;       /* 16px */
  --font-lg: 1.125rem;   /* 18px */
  --font-xl: 1.25rem;    /* 20px */
  --font-2xl: 1.5rem;    /* 24px */
  --font-3xl: 2rem;      /* 32px */

  /* Component-specific Font Sizes */
  --font-heading-band: clamp(1.5rem, 3.5vw, 2.5rem);
  --font-lead: var(--font-lg);
  --font-small-note: var(--font-sm);
  --font-voices-body: 18px;
  --font-voices-h1: clamp(22px, 3.2vw, 32px);
  --font-profile-jp: clamp(28px, 6vw, 48px);
  --font-profile-en: 12px;
  --font-profile-titleSub: 14px;
  --font-st-title: var(--font-xl);
  --font-pricing-title: 2em;
  --font-pricing-th: 1.2em;
  --font-pricing-td: 1.05em;
  --font-pricing-price: 1.2em;
  --font-bonus-hero-h1: clamp(28px, 4.2vw, 52px);
  --font-bonus-hero-desc: clamp(14px, 1.8vw, 18px);
  --font-fab: clamp(12px, 2.5vw, 14px);
  --font-schedule-cell: clamp(16px, 2.2vw, 24px);
  --font-schedule-btn: clamp(16px, 2vw, 24px);
}


/* ==========================================================================
   3. BASE STYLES
   ========================================================================== */

html { font-size: var(--font-base); }
body { background: var(--color-bg); color: var(--color-text); font-family: var(--font-sans); line-height: var(--leading); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
p { margin: var(--sp-3) 0; }
h1, h2, h3 { line-height: 1.3; margin: var(--sp-4) 0 var(--sp-2); }
a { color: inherit; text-decoration: none; }
.full-width { width: 100%; height: auto; display: block; }


/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.container { max-width: var(--container-max); margin-left: auto; margin-right: auto; padding-left: var(--sp-3); padding-right: var(--sp-3); }
.section {  padding-bottom: var(--sp-6); }
.section--tight { padding-top: var(--sp-4); padding-bottom: var(--sp-4); }
.hr { height: 1px; background: var(--color-border); margin: var(--sp-5) 0; border: 0; }


/* ==========================================================================
   5. COMPONENTS
   ========================================================================== */

/* Heading Band */
.c-headingBand { display: block; width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; padding: 1rem; background: var(--color-primary); color: #fff; text-align: center; font-size: var(--font-heading-band); font-weight: 700; }
.c-headingBand--left  { text-align: left;  padding-left: 2rem; }
.c-headingBand--right { text-align: right; padding-right: 2rem; }

/* Lead Paragraph */
.c-lead { font-size: var(--font-lead); color: var(--color-muted); }

/* Box */
.c-box { background: var(--color-bg); border-radius: .5rem; padding: var(--sp-3); }
.c-box p { margin: 0; }
.c-box .c-floatRight { float: right; margin: 0 0 var(--sp-2) var(--sp-3); max-width: 45%; }
.c-box::after { content: ""; display: table; clear: both; }

/* Lists */
.c-bullets { margin: var(--sp-4) 0; }
.c-bullets li { margin: var(--sp-2) 0; }
.c-bullets--check li { list-style: "✔  "; }
.c-bullets--ng li { list-style: "✘  "; font-weight: 700; }
.c-listNote { color: var(--color-muted); font-size: var(--font-small-note); margin-top: .25rem; }

/* Figure */
.c-figure { margin: var(--sp-4) 0; text-align: center; }
.c-figure figcaption { margin-top: var(--sp-2); color: var(--color-muted); font-size: var(--font-small-note); }

/* CTA */
.c-cta { text-align: center; margin: var(--sp-6) 0; }
.c-cta__sub { margin-top: .5rem; color: var(--color-muted); font-size: var(--font-small-note); }

/* Button */
.btn { display: inline-block; padding: .9rem 1.25rem; border-radius: .5rem; background: #ff7a1f; color: #fff; font-weight: 700; transition: filter .2s, transform .3s ease; }
.btn:hover { filter: brightness(.95); transform: scale(1.05); }
.btn:active { transform: scale(1.02) translateY(1px); }

/* Deadline Banner */
.c-deadline { background: linear-gradient(0deg, rgba(0,0,0,.04), rgba(0,0,0,.04)); border: 1px solid var(--color-border); border-radius: .5rem; padding: var(--sp-3); text-align: center; font-weight: 700; }
.c-deadline__date { color: var(--color-accent); }

/* Testimonials / Voices */
.c-voices { --v-bg: #fff; --v-text: #0b1220; --v-line: #e5e7eb; --v-brand: #0f2a56; --v-card: #fff; color: var(--v-text); background: var(--v-bg); line-height: 1.8; font-family: var(--font-sans); }
.c-voices__wrap { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.c-voices__header { border-bottom: 1px solid var(--v-line); background: var(--v-bg); }
.c-voices__h1 { margin: 0; padding: 56px 0 40px; font-weight: 800; letter-spacing: .02em; color: var(--v-brand); font-size: var(--font-voices-h1); }
.c-voices__stack { display: flex; flex-direction: column; gap: 20px; margin: 32px 0 64px; }
.c-voices__card { background: var(--v-card); border: 1px solid var(--v-line); border-radius: 8px; padding: 20px; }
.c-voices blockquote { margin: 0; }
.c-voices blockquote p { margin: 0 0 12px; font-size: var(--font-voices-body); }

/* Profile Card */
.c-profile { --p-ink: #1f2937; --p-muted: #4b5563; --p-line: #d1d5db; --p-bg: #f9fafb; --p-badge: #111827; color: var(--p-ink); background: var(--p-bg); font-family: var(--font-sans); }
.c-profile__wrap { max-width: 980px; margin: 24px auto; padding: 0; }
.c-profile__sheet { background: #fff; border: 1px solid #000; border-radius: 2px; }
.c-profile__top { display: grid; grid-template-columns: 1fr 320px; gap: 24px; padding: 24px 24px 8px; }
.c-profile__left { padding-top: 6px; }
.c-profile__fullname { margin-top: 12px; }
.c-profile__jp { font-size: var(--font-profile-jp); font-weight: 800; letter-spacing: .1em; }
.c-profile__en { margin-top: 4px; font-size: var(--font-profile-en); letter-spacing: .25em; color: var(--p-muted); }
.c-profile__titleSub { margin-top: 6px; font-size: var(--font-profile-titleSub); }
.c-profile__photo { justify-self: end; }
.c-profile__frame { width: 220px; aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.c-profile__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.c-profile__note { padding: 0 24px 8px; text-align: right; font-size: 14px; }
.c-profile__divider { border-top: 1px solid var(--p-line); margin: 8px 0 0; }
.c-profile__body { display: grid; grid-template-columns: 1fr; padding: 8px 24px 24px; }
.c-profile__list { margin: 0; padding-left: 0; list-style: none; }
.c-profile__list li { padding: 8px 0; border-bottom: 1px dotted var(--p-line); }
.c-profile__list li:last-child { border-bottom: none; }
.c-profile__lead { font-weight: 700; }
.c-profile__badge { display: inline-block; margin-top: 8px; background: var(--p-badge); color:#fff; padding: 6px 10px; border-radius: 999px; font-size: 12px; }

/* Service Table */
.c-serviceTable { border: 1px solid var(--color-border); border-radius: 2px; overflow: hidden; background: var(--color-bg); }
.st__title { font-weight: 700; font-size: var(--font-st-title); padding: .75rem 1rem; }
.c-serviceTable .st__cols { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto 1fr; border-top: 1px solid var(--color-border); }
.c-serviceTable .st__col { display: grid; grid-row: 1 / -1; grid-template-rows: subgrid; min-height: 100%; }
.c-serviceTable .st__col + .st__col { border-left: 1px solid var(--color-border); }
.c-serviceTable .st__head { grid-row: 1; background: var(--color-primary); color: #fff; text-align: center; font-weight: 700; line-height: 1.4; padding: .75rem; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2); display: flex; align-items: center; justify-content: center; }
.c-serviceTable .st__cell { grid-row: 2; padding: 1rem; line-height: var(--leading); }
.c-serviceTable .st__meta { margin: 0 0 .75rem; font-weight: 700; }
.c-serviceTable ul { margin: .25rem 0 0; padding-left: 1.25rem; list-style: disc; }
.c-serviceTable li { margin: .5rem 0; }

/* Pricing Table */
.c-pricingSection { padding: 50px 0; color: #333; font-size: var(--font-small-note); }
.c-pricingTitle { text-align: center; font-size: var(--font-small-note); color: #1a3d7c; margin-bottom: 30px; letter-spacing: 1px; font-family: "Segoe UI", "Hiragino Kaku Gothic ProN", Meiryo, var(--font-sans); }
.c-pricingTable { width: min(100%, 920px); margin: 0 auto; border-collapse: collapse; box-shadow: 0 4px 20px rgba(0, 0, 0, .1); border-radius: 2px; overflow: hidden; background: #fff; font-family: "Segoe UI", "Hiragino Kaku Gothic ProN", Meiryo, var(--font-sans); font-size: var(--font-small-note); }
.c-pricingTable th { width: clamp(80px, 20vw, 180px); padding: clamp(5px, 2vw, 15px); background: linear-gradient(135deg, #66b2ff, #99ccff);
 color: #fff; font-size: var(--font-small-note); text-align: left; }
.c-pricingTable td { padding: 15px; font-size: var(--font-small-note); background-color: #fff; }
.c-pricingTable tr:nth-child(even) td { background-color: #f0f4f8; }
.c-pricingTable tr:hover td { background-color: #eaf2ff; transition: background-color .3s ease; }
.c-pricingTable .price { font-weight: 700; color: #d6336c; font-size: var(--font-small-note); }

/* Bonus Hero */
.c-bonusHero { --white:#fff; --blue-1:#0e66b5; --blue-2:#0a58a3; --blue-3:#0a4f99; font-family: var(--font-sans); color: var(--white); padding: clamp(16px, 3vw, 28px) 0; }
.c-bonusHero__inner { max-width: 1200px; margin: 0 auto; padding: clamp(16px, 3vw, 28px); }
.c-bonusHero__panel { position: relative; background: rgba(255,255,255,1); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(2px); box-shadow: 0 20px 40px rgba(0,0,0,.25); border-radius: 2px; overflow: hidden; }
.c-bonusHero__panelInner { position: relative; display: flex; flex-direction: column; align-items: center; padding: clamp(22px, 3.5vw, 38px); min-height: auto; background: radial-gradient(1200px 600px at 15% 10%, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, 0) 55%), radial-gradient(900px 420px at 60% 35%, rgba(255, 255, 255, .1) 0%, rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, #1b7bd3 0%, #0d5fb6 35%, #0a56a7 65%, #0c4d94 100%); }
.c-bonusHero__ribbon { display: inline-block; background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.75)); color: #0e3972; font-weight: 700; letter-spacing: .05em; padding: 1em; box-shadow: inset 0 6px 0 rgba(255,255,255,.15), 0 2px 8px rgba(0,0,0,.3); width: max-content; margin-left: clamp(8px, 1.5vw, 14px); }
.c-bonusHero__ribbon small { font-weight: 800; margin-right: .25em; }
.c-bonusHero__lead { width: 100%; position: relative; z-index: 2; margin-bottom: 30px; }
.c-bonusHero__lead h1 { margin: 0; font-weight: 800; line-height: 1.1; font-feature-settings: "palt" 1; text-shadow: 0 2px 0 rgba(0,0,0,.25); font-size: var(--font-bonus-hero-h1); }
.c-bonusHero__lead h2 { margin: 0; line-height: 1.1; }
.c-bonusHero__desc { margin: .6em 0 1.2em; font-size: var(--font-bonus-hero-desc); line-height: 1.9; }
.c-bonusHero__bullets { margin: 1em 0 0; padding: 1.1em 1.2em; }
.c-bonusHero__bullets li { padding-left: .3em; }
.c-bonusHero__photo { position: relative; width: 100%; height:auto; top:auto; transform:none; margin-top: 20px; opacity: 1; z-index: 1; }
.c-bonusHero__polaroid { position: relative; margin: 8px auto 0; max-width: 80%; height: auto; background: var(--white); border-radius: 10px; box-shadow: 0 25px 60px rgba(0,0,0,.55); }
.c-bonusHero__frame { position: relative; overflow: hidden; border-radius: 6px; }
.c-bonusHero__polaroid img { width: 100%; height: auto; display: block; }
.c-bonusHero__sheet { background: #fff; color: #000; padding: 10px; margin: -20px; }

/* Floating Apply Button (FAB) */
.c-applyFab { position: fixed; right: max(16px, env(safe-area-inset-right)); bottom: max(16px, env(safe-area-inset-bottom)); z-index: 1000; width: clamp(64px, 12vw, 90px); height: clamp(64px, 12vw, 90px); border-radius: 50%; border: 0; background: linear-gradient(145deg, #ff6b6b, #ee5a52); color: #fff; font-weight: 800; font-size: var(--font-fab); line-height: 1.2; text-align: center; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 16px rgba(238, 90, 82, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1); cursor: pointer; transition: transform .25s cubic-bezier(.4, 0, .2, 1), box-shadow .25s ease, filter .2s ease; overflow: hidden; }
.c-applyFab::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(255, 255, 255, .2), transparent); border-radius: 50%; opacity: 0; transition: opacity .25s ease; }
.c-applyFab:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(238, 90, 82, .4), 0 4px 8px rgba(0, 0, 0, .15); filter: brightness(1.02); }
.c-applyFab:hover::before { opacity: 1; }
.c-applyFab:active { transform: translateY(-1px); transition: transform .1s ease; }
.c-applyFab:focus-visible { outline: none; box-shadow: 0 12px 24px rgba(238, 90, 82, .4), 0 4px 8px rgba(0, 0, 0, .15), 0 0 0 3px rgba(255, 107, 107, .3); }

/* Highlight Marker */
.u-marker { background: linear-gradient(transparent 60%, rgba(255, 255, 0, 0.6) 60%); padding: 0 0.1em; }

/* Footer */
.c-footer { background: var(--color-primary); color: #fff; font-size: 0.9rem; padding: var(--sp-4) 0; }
.c-footer a { color: #fff; text-decoration: underline; }
.c-footer a:hover { text-decoration: none; }
.c-footer__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--sp-3); text-align: center; line-height: 1.6; }

/* Schedule Table */
.c-schedule { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--color-bg); border: 2px solid #0b3b2f; border-radius: 2px; overflow: hidden; box-shadow: 0 2px 8px rgba(0, 0, 0, .04); }
.c-schedule th, .c-schedule td { padding: 22px; vertical-align: middle; font-size: var(--font-schedule-cell); }
.c-schedule thead th { color: #fff; background: #006d84; font-weight: 800; text-align: center; border-right: 2px solid rgba(255, 255, 255, .15); }
.c-schedule thead th:last-child { border-right: 0; }
.c-schedule tbody td { border-top: 2px solid #0b3b2f; border-right: 2px solid #0b3b2f; }
.c-schedule tbody td:last-child { border-right: 0; }
.c-schedule .col-date, .c-schedule .col-time, .c-schedule .col-cta { text-align: center; }

/* Schedule Buttons */
.t-btn { display: inline-block; min-width: 200px; padding: 16px 24px; border-radius: 10px; text-align: center; font-weight: 800; font-size: var(--font-schedule-btn); letter-spacing: .02em; color: #fff; text-decoration: none; border: 0; box-shadow: 0 2px 4px rgba(0, 0, 0, .12); position: relative; overflow: hidden; transition: transform .25s cubic-bezier(.4, 0, .2, 1), box-shadow .25s ease, filter .2s ease; }
.t-btn:hover { transform: translateY(-2px); filter: brightness(1.03); box-shadow: 0 12px 24px rgba(0, 0, 0, .18), 0 4px 8px rgba(0, 0, 0, .10); }
.t-btn:active { transform: translateY(-1px); transition: transform .1s ease; }
.t-btn:focus-visible { outline: none; box-shadow: 0 12px 24px rgba(0, 0, 0, .18), 0 4px 8px rgba(0, 0, 0, .10), 0 0 0 3px rgba(255, 107, 107, .25); }
.t-btn::before { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(255, 255, 255, .22), transparent 55%); opacity: 0; transition: opacity .25s ease; pointer-events: none; border-radius: inherit; }
.t-btn:hover::before { opacity: 1; }
.t-btn--soldout, .t-btn[aria-disabled="true"] { filter: none !important; transform: none !important; box-shadow: 0 2px 4px rgba(0, 0, 0, .12) !important; cursor: not-allowed; }
.t-btn--soldout:hover::before, .t-btn[aria-disabled="true"]::before { opacity: 0 !important; }
.t-btn--low { background: linear-gradient(180deg, #f2bab9 0%, #cc3a34 60%, #a91010 100%); }
.t-btn--normal { background: linear-gradient(180deg, #ffcc80 0%, #ff9800 60%, #f57c00 100%); }


/* ==========================================================================
   6. UTILITIES
   ========================================================================== */

/* Spacing */
.mt-0 { margin-top: var(--sp-0); }
.mb-0 { margin-bottom: var(--sp-0); }
.mt-1 { margin-top: var(--sp-1); }
.mb-1 { margin-bottom: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mb-2 { margin-bottom: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mb-3 { margin-bottom: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mb-4 { margin-bottom: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mb-5 { margin-bottom: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mb-6 { margin-bottom: var(--sp-6); }

.pt-0 { padding-top: var(--sp-0); }
.pb-0 { padding-bottom: var(--sp-0); }
.pt-1 { padding-top: var(--sp-1); }
.pb-1 { padding-bottom: var(--sp-1); }
.pt-2 { padding-top: var(--sp-2); }
.pb-2 { padding-bottom: var(--sp-2); }
.pt-3 { padding-top: var(--sp-3); }
.pb-3 { padding-bottom: var(--sp-3); }
.pt-4 { padding-top: var(--sp-4); }
.pb-4 { padding-bottom: var(--sp-4); }
.pt-5 { padding-top: var(--sp-5); }
.pb-5 { padding-bottom: var(--sp-5); }
.pt-6 { padding-top: var(--sp-6); }
.pb-6 { padding-bottom: var(--sp-6); }

.my-0 { margin-top: var(--sp-0); margin-bottom: var(--sp-0); }
.my-1 { margin-top: var(--sp-1); margin-bottom: var(--sp-1); }
.my-2 { margin-top: var(--sp-2); margin-bottom: var(--sp-2); }
.my-3 { margin-top: var(--sp-3); margin-bottom: var(--sp-3); }
.my-4 { margin-top: var(--sp-4); margin-bottom: var(--sp-4); }
.my-5 { margin-top: var(--sp-5); margin-bottom: var(--sp-5); }
.my-6 { margin-top: var(--sp-6); margin-bottom: var(--sp-6); }

.py-0 { padding-top: var(--sp-0); padding-bottom: var(--sp-0); }
.py-1 { padding-top: var(--sp-1); padding-bottom: var(--sp-1); }
.py-2 { padding-top: var(--sp-2); padding-bottom: var(--sp-2); }
.py-3 { padding-top: var(--sp-3); padding-bottom: var(--sp-3); }
.py-4 { padding-top: var(--sp-4); padding-bottom: var(--sp-4); }
.py-5 { padding-top: var(--sp-5); padding-bottom: var(--sp-5); }
.py-6 { padding-top: var(--sp-6); padding-bottom: var(--sp-6); }

/* Text */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: var(--color-muted); }
.fw-bold { font-weight: 700; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inlineBlock { display: inline-block; }
.w-100 { width: 100%; }

/* Accessibility */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Responsive Display */
.pc-only, .sp-only { display: none; }


/* ==========================================================================
   7. RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 767px) {
  :root {
    --font-base: 18px;
    /* Pricing Table Mobile */
    --font-pricing-title: 1.2em;
    --font-pricing-th: 1.0em;
    --font-pricing-td: 0.9em;
    --font-pricing-price: 1.0em;
  }

  .c-box .c-floatRight { float: none; margin: 0 auto var(--sp-3); max-width: 100%; }
  .c-applyFab { width: clamp(100px, 18vw, 120px); height: clamp(100px, 18vw, 120px); font-size: calc(var(--font-fab) * 1.1); }
  .sp-only { display: inline; }
}

@media (max-width: 900px) {
  .c-profile__top { grid-template-columns: 1fr; }
  .c-profile__photo { justify-self: start; }
  .c-profile__note { text-align: left; }
}

@media (min-width: 768px) {
  .md\:d-block { display: block; }
  .md\:text-center { text-align: center; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:container-narrow { max-width: 640px; }
  .pc-only { display: inline; }
}

@media (max-width: 768px) {
  .c-serviceTable .st__cols { display: block; }
  .c-serviceTable .st__col { display: block; grid-row: auto; grid-template-rows: initial; }
  .c-serviceTable .st__head, .c-serviceTable .st__cell { grid-row: auto; }
  .c-serviceTable .st__col + .st__col { border-left: none; border-top: 1px solid var(--color-border); }
}

@media (max-width: 720px) {
  :root {
    --font-schedule-th-sm: clamp(12px, 3.6vw, 15px);
    --font-schedule-td-sm: clamp(12px, 3.8vw, 16px);
    --font-schedule-btn-sm: clamp(12px, 3.6vw, 16px);
  }

  .c-schedule { width: 100%; table-layout: fixed; border-width: 1px; }
  .c-schedule thead th { padding: 10px 8px; font-size: var(--font-schedule-cell); }
  .c-schedule td { padding: 10px 8px; font-size: var(--font-schedule-cell); border-top-width: 1px; border-right-width: 1px; white-space: normal; overflow-wrap: anywhere; }
  .c-schedule .col-date, .c-schedule .col-time { line-height: 1.6; }
  .t-btn { min-width: 0; padding: 10px 12px; font-size: var(--font-schedule-btn); border-radius: 8px; }
}

@media (prefers-color-scheme: dark) {
  .c-voices { --v-bg: #0b0f16; --v-text: #e8edf5; --v-line: #202836; --v-brand: #98b3ff; --v-card: #0f1420; }
}

@media (prefers-reduced-motion: reduce) {
  .c-applyFab, .t-btn { transition: none; }
  .t-btn:hover { transform: none; }
}

@media print {
  .c-voices__header { border: 0; }
  .c-voices__card { break-inside: avoid; }
  .c-voices__stack { gap: 12px; }
  .c-profile { background: #fff; }
  .c-profile__wrap { margin: 0; padding: 0; }
  .c-profile__sheet { border-color: #000; }
  .c-applyFab { display: none !important; }
}