/* =============================================
   CSS Variables
============================================= */
:root {
  --color-main: #06c755;
  --color-main-dark: #05a848;
  --color-main-light: #f0fdf4;
  --color-accent: #ff7a00;
  --color-accent-dark: #e06d00;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-bg: #fdfdfd;
  --color-voice-bg: #eaffde;
  --color-faq-bg: #f8fdfb;
  --color-footer: #1e293b;
  --color-white: #ffffff;
  --color-border: #e2e8f0;

  --font-main: 'LINE Seed JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
  --font-monitto: 'Zen Maru Gothic', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  --container-max: 1280px;
  --section-py: 80px;
}

/* =============================================
   Reset & Base
============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

/* =============================================
   Fonts (LINE Seed JP — self-hosted)
============================================= */
@font-face {
  font-family: 'LINE Seed JP';
  src: url('../fonts/LINESeedJP_OTF_Rg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LINE Seed JP';
  src: url('../fonts/LINESeedJP_OTF_Bd.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =============================================
   Utilities
============================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 40px;
}

/* Tablet */
@media (max-width: 1024px) {
  .container {
    padding-inline: 32px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .container {
    padding-inline: 20px;
  }
}

.section-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.2em;
  text-align: center;
  margin-top: 4px;
  margin-bottom: 32px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0;
  text-align: center;
}

.section-title + .section-label {
  margin-top: 6px;
}

.section-title em {
  font-style: normal;
  color: var(--color-main);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-bottom: 48px;
  line-height: 1.8;
}

/* =============================================
   Buttons
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn--accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-main);
  border-color: var(--color-white);
}

.btn--white:hover {
  background: #f0fdf4;
}

.btn--outline {
  background: transparent;
  color: var(--color-main);
  border-color: var(--color-main);
}

.btn--outline:hover {
  background: var(--color-main);
  color: var(--color-white);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1.0625rem;
}

/* =============================================
   Header
============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.header__logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}

.header__logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
}

.header__logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.header__logo-text {
  font-weight: 700;
  font-size: 1.125rem;
  white-space: nowrap;
  line-height: 1;
}

.logo-line { color: var(--color-main); }
.logo-x    { color: var(--color-text); margin-inline: 2px; }
.logo-ai   { color: var(--color-main); }
.logo-store{ color: var(--color-text); font-size: 0.875em; margin-left: 2px; }

.header__nav ul {
  display: flex;
  gap: 24px;
}

.header__nav a {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text);
  transition: color 0.2s;
  white-space: nowrap;
}

.header__nav a:hover {
  color: var(--color-main);
}

.header__cta {
  flex-shrink: 0;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.header__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   Hero
============================================= */
.hero {
  background: var(--color-white);
  padding: 0;
  overflow: visible;
  position: relative;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: center;
}

.hero__content {
  padding: 48px 0 48px;
  color: var(--color-text);
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: var(--color-text);
}

.hero__title em {
  font-style: normal;
  color: var(--color-main);
}

/* 改行制御ユーティリティ */
@media (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

.hero__desc {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 36px;
  color: var(--color-text);
}

.hero__underline {
  text-decoration: underline;
  text-decoration-color: var(--color-main);
  text-underline-offset: 4px;
  font-weight: 700;
}

.hero__image {
  align-self: start;
  margin-left: -80px;
  margin-bottom: -40px;
  position: relative;
  z-index: 2;
}

.hero__image img {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
}

@media (max-width: 767px) {
  .hero {
    padding: 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__content {
    padding: 40px 0 24px;
    text-align: center;
  }

  .hero__image {
    max-width: 320px;
    margin-inline: auto;
    margin-bottom: -24px;
  }
}

/* =============================================
   Intro
============================================= */
.intro {
  background: var(--color-main);
  position: relative;
  overflow: hidden;
}

.intro__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  opacity: 0.25;
  pointer-events: none;
}

.intro__inner {
  position: relative;
  text-align: center;
  padding: 72px 0;
}

.intro__question {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.7;
  color: var(--color-white);
}

.intro__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.9;
}

/* =============================================
   Features
============================================= */
.features {
  padding: var(--section-py) 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.features > .container {
  text-align: center;
}

.features__heading {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 8px 0 48px;
}

.features__heading em {
  font-style: normal;
  color: var(--color-main);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.features__item {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.features__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
}

.features__badge {
  display: inline-block;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.features__body {
  width: 100%;
}

.features__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.55;
  color: var(--color-text);
  text-align: center;
}

.features__img-wrap {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  margin-bottom: 24px;
}

.features__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
}

.features__desc {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.9;
  width: 100%;
}

.features__more {
  margin-top: 80px;
  border-top: 1px solid var(--color-border);
  padding-top: 64px;
}

.features__more-heading {
  text-align: center;
  margin-bottom: 48px;
}

.features__more-heading p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.8;
}

.features__more-heading em {
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--color-main);
  text-underline-offset: 4px;
  color: var(--color-text);
}

.features__more-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.features__more-img {
  width: 100%;
}

.features__more-img img {
  width: 100%;
}

.features__more-content {
  text-align: left;
}

.features__more-title {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.4;
  text-align: left;
}

.features__more-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.features__more-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  text-decoration: underline;
  text-decoration-color: var(--color-main);
  text-underline-offset: 4px;
  line-height: 1.5;
}

.features__more-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.85;
}

@media (max-width: 1024px) {
  .features__more-body {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
    gap: 32px;
  }

  .features__more-img {
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .features__more-img {
    order: 2;
    max-width: 440px;
  }

  .features__more-content {
    order: 1;
  }
}

/* =============================================
   CTA Banner
============================================= */
.cta-banner {
  background: var(--color-main);
  padding: 56px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}

.cta-banner__text-wrap {
  color: var(--color-white);
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.cta-banner__sub {
  font-size: 0.875rem;
  opacity: 0.85;
}

.cta-banner__text-wrap {
  text-align: left;
}

.cta-banner__buttons {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  align-items: flex-end;
}

.cta-banner__btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
}

.cta-banner__btn-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  text-align: center;
  white-space: nowrap;
}

.cta-banner__btn-wrap {
  position: relative;
  width: 100%;
}

.cta-banner__btn-group .btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 767px) {
  .cta-banner__buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 20px;
  }
  .cta-banner__btn-group {
    width: 100%;
  }
}

/* =============================================
   Reasons
============================================= */
.reasons {
  padding: var(--section-py) 0;
  background: var(--color-main-light);
}

.reasons > .container {
  text-align: center;
}

.reasons__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
  text-align: left;
}

.reasons__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.reasons__item--reverse {
  grid-template-columns: auto auto 1fr;
}

.reasons__item--reverse .reasons__num {
  order: 0;
}

.reasons__item--reverse .reasons__img {
  order: 1;
}

.reasons__item--reverse .reasons__body {
  order: 2;
}

.reasons__num {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1;
  opacity: 0.25;
  min-width: 64px;
}

.reasons__title {
  font-size: clamp(1.0625rem, 2vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.reasons__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.85;
}

.reasons__img {
  width: 220px;
  flex-shrink: 0;
}

.reasons__img img {
  width: 100%;
  border-radius: var(--radius-md);
}

/* =============================================
   Voices (お客様の声)
============================================= */
.voices {
  padding: var(--section-py) 0;
  background: var(--color-voice-bg);
}

.voices > .container {
  text-align: center;
}

.voices > .container > .section-title {
  margin-bottom: 40px;
}

.voices__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  text-align: left;
}

.voices__card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.voice-highlight {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.voices__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.voices__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-main-light);
}

.voices__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voices__store-type {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.voices__store-name {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
}

.voices__store-name.monitto {
  font-family: var(--font-monitto);
}

.voices__store-logo img {
  max-height: 28px;
  width: auto;
}

.voices__body p {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 12px;
}

.voices__body p:last-child {
  margin-bottom: 0;
}

.voices__owner {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: right;
  margin-bottom: 8px !important;
  letter-spacing: 0.05em;
}

.voices__summary {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  line-height: 1.7 !important;
  color: var(--color-text) !important;
  margin-bottom: 16px !important;
}

.voices__more-wrap {
  margin-top: 12px;
}

.voices__more-text {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--color-border);
}

.voices__more-text.is-open {
  display: block;
}

.voices__more-text p {
  margin-bottom: 12px;
}

.voices__toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: none;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  font-family: var(--font-main);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.voices__toggle-btn:hover {
  background: var(--color-main);
  color: var(--color-white);
}

.voices__toggle-btn::after {
  content: '▼';
  font-size: 0.625rem;
  transition: transform 0.25s;
}

.voices__toggle-btn[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* =============================================
   Pricing
============================================= */
.pricing {
  padding: var(--section-py) 0;
  background: var(--color-white);
}

.pricing > .container {
  text-align: center;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.pricing__card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: box-shadow 0.2s;
  text-align: left;
}

.pricing__card:hover {
  box-shadow: var(--shadow-md);
}

.pricing__card--recommended {
  border-color: var(--color-main);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-main);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing__card-header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 20px;
  text-align: center;
}

.pricing__plan-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.pricing__card-header .pricing__price {
  justify-content: center;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.pricing__yen {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.pricing__amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.pricing__per {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 150px;
}

.pricing__features li {
  font-size: 0.875rem;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
  color: var(--color-text);
}

.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-main);
}

.pricing__card .btn {
  width: 100%;
  text-align: center;
}

.pricing__target {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-align: center;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
}

.pricing__tax {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-left: 4px;
}

.pricing__subtitle {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-main);
  line-height: 1.6;
  min-height: 2.6em;
  display: flex;
  align-items: center;
}

.pricing__result {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.8;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border);
  min-height: 4.6em;
}

.pricing__addon {
  position: relative;
  margin-top: 80px;
  background: var(--color-main);
  border-radius: var(--radius-lg);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pricing__addon::before {
  content: '+';
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: var(--color-main);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.3);
}

.pricing__addon-title {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  line-height: 1.6;
  min-width: 220px;
}

.pricing__addon-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}

.pricing__addon-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.9375rem;
  color: var(--color-white);
}

.pricing__addon-list li span:first-child::before {
  content: '・';
}

.pricing__addon-list li span:last-child {
  font-weight: 700;
  font-size: 1.0625rem;
  white-space: nowrap;
}

.pricing__ongoing-wrap {
  margin-top: 56px;
  text-align: center;
}

.pricing__ongoing-note {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.6;
}

.pricing__ongoing {
  display: inline-block;
  min-width: 420px;
  background: var(--color-white);
  border: 2px solid var(--color-main);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.pricing__ongoing-title {
  background: var(--color-main);
  color: var(--color-white);
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: center;
  padding: 14px 32px;
  margin: 0;
}

.pricing__ongoing-title span {
  font-size: 1.25rem;
  margin-left: 6px;
}

.pricing__ongoing-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 40px 22px;
}

.pricing__ongoing-list li {
  font-size: 0.9375rem;
  color: var(--color-text);
  padding-left: 28px;
  position: relative;
  font-weight: 500;
}

.pricing__ongoing-list li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  color: var(--color-main);
  font-weight: 700;
  font-size: 1.0625rem;
}

@media (max-width: 767px) {
  .pricing__addon {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
    margin-top: 72px;
  }

  .pricing__addon::before {
    top: -32px;
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }

  .pricing__addon-title {
    min-width: 0;
  }

  .pricing__ongoing-wrap {
    margin-top: 48px;
  }

  .pricing__ongoing {
    min-width: 0;
    display: block;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    text-align: left;
  }

  .pricing__ongoing-title {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .pricing__ongoing-title span {
    font-size: 1.125rem;
    margin-left: 4px;
  }

  .pricing__ongoing-list {
    gap: 8px;
    padding: 18px 24px 20px;
    width: fit-content;
    margin-inline: auto;
  }

  .pricing__ongoing-list li {
    font-size: 0.9375rem;
    padding-left: 24px;
    text-align: left;
  }

  .pricing__ongoing-note {
    font-size: 0.9375rem;
    text-align: center;
  }
}

/* =============================================
   Flow (導入・契約の流れ)
============================================= */
.flow {
  padding: var(--section-py) 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}

.flow > .container {
  text-align: center;
}

.flow__badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 8px 28px;
  border-radius: var(--radius-full);
  margin: 16px 0 48px;
}

.flow__badge strong {
  font-size: 1.25em;
}

.flow__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 180px;
  flex-shrink: 0;
}

.flow__step-num {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-main);
  min-width: 96px;
  height: 32px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(6, 199, 85, 0.25);
}

.flow__step-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.flow__step-img {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow__step-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flow__step-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.flow__step-desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  text-align: center;
}

.flow__arrow {
  color: var(--color-main);
  font-size: 1.5rem;
  margin-top: 88px;
  flex-shrink: 0;
}

/* =============================================
   Profile (きょういち)
============================================= */
.profile {
  padding: var(--section-py) 0;
  background: linear-gradient(to right, #d4f5e2 0%, #f0fdf4 40%, #ffffff 80%);
}

.profile__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  max-width: 860px;
  margin-inline: auto;
  margin-top: 32px;
}

.profile__img-wrap {
  flex-shrink: 0;
}

.profile__icon {
  width: 240px;
  height: 240px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.profile__eyebrow {
  display: inline-block;
  font-size: clamp(1.125rem, 2.2vw, 1.625rem);
  font-weight: 700;
  background: var(--color-white);
  color: var(--color-text);
  padding: 16px 40px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.profile__headline {
  display: inline-block;
  font-size: clamp(1.125rem, 2.2vw, 1.625rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 48px;
  background: var(--color-white);
  padding: 16px 40px;
  border-radius: var(--radius-full);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .profile__headline {
    white-space: normal;
  }
}

.profile__headline em {
  font-style: normal;
  color: var(--color-accent);
}

.profile__name {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.1em;
}

.profile__name-en {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.profile__tag {
  display: inline-block;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

.profile__desc {
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-text);
  max-width: 600px;
}

/* =============================================
   FAQ
============================================= */
.faq {
  padding: var(--section-py) 0;
  background: var(--color-faq-bg);
}

.faq > .container {
  text-align: center;
}

.faq > .container > .section-title {
  margin-bottom: 40px;
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}

.faq__q:hover {
  color: var(--color-main);
}

.faq__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.faq__toggle {
  margin-left: auto;
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq__toggle::before,
.faq__toggle::after {
  content: '';
  position: absolute;
  background: var(--color-main);
  border-radius: 2px;
  transition: transform 0.25s;
}

.faq__toggle::before {
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__toggle::after {
  width: 2px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item.is-open .faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__a {
  display: none;
  padding: 0 0 20px 48px;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: var(--color-text-muted);
}

.faq__item.is-open .faq__a {
  display: block;
}

/* =============================================
   Footer CTA
============================================= */
.footer-cta {
  padding: 64px 0;
  background: var(--color-main);
}

.footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.footer-cta__text-wrap {
  color: var(--color-white);
  flex: 1;
  min-width: 0;
}

.footer-cta__title {
  font-size: clamp(1.125rem, 2.5vw, 1.625rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-cta__sub {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin-bottom: 4px;
}

.footer-cta__main {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-white);
}

.footer-cta__right {
  flex-shrink: 0;
}

.footer-cta__note {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
}

.footer-cta__phone {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 0;
  width: 100px;
  pointer-events: none;
}

/* =============================================
   Footer
============================================= */
.footer {
  background: var(--color-white);
  padding: 56px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 40px;
}

.footer__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.footer__logo .logo-line {
  color: var(--color-main);
}

.footer__desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.85;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer__sns {
  display: flex;
  gap: 12px;
}

.footer__sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-text);
  color: var(--color-white);
  transition: background 0.2s, color 0.2s;
}

.footer__sns-icon:hover {
  background: var(--color-main);
  color: var(--color-white);
}

.footer__nav {
  display: flex;
  gap: 48px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 4px;
}

.footer__nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav a {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--color-main);
}

.footer__bottom {
  background: var(--color-footer);
  margin-top: 48px;
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, opacity 0.2s;
  position: relative;
}

.footer__legal a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.footer__legal a:hover {
  color: var(--color-white);
}

.footer__legal a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .footer-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-cta__phone {
    display: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__nav {
    flex-direction: column;
    gap: 24px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================================
   Responsive — Tablet (max 1024px)
============================================= */
@media (max-width: 1024px) {
  :root {
    --section-py: 64px;
  }

  .reasons__item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .reasons__item--reverse {
    grid-template-columns: 1fr;
  }

  .reasons__item--reverse .reasons__num,
  .reasons__item--reverse .reasons__img,
  .reasons__item--reverse .reasons__body {
    order: unset;
  }

  .reasons__num {
    font-size: 2.5rem;
  }

  .reasons__img {
    width: 180px;
    margin-inline: auto;
  }

  .flow__steps {
    gap: 4px;
  }

  .flow__step {
    width: 140px;
    gap: 12px;
  }

  .flow__step-img {
    width: 120px;
    height: 120px;
  }

  .flow__step-title {
    font-size: 0.9375rem;
  }

  .flow__arrow {
    margin-top: 72px;
    font-size: 1.25rem;
  }
}

/* =============================================
   Responsive — Mobile (max 767px)
============================================= */
@media (max-width: 767px) {
  :root {
    --section-py: 56px;
  }

  /* Typography */
  .section-title {
    font-size: 1.5rem;
    line-height: 1.35;
  }

  .section-subtitle {
    font-size: 0.875rem;
    margin-bottom: 32px;
  }

  /* Buttons — full width friendly */
  .btn--lg {
    padding: 14px 24px;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }

  /* Hero CTA — 引き締めてヘッドラインと明確に階層化 */
  .hero__cta {
    width: auto;
    max-width: none;
    padding: 12px 28px;
    font-size: 0.9375rem;
    box-shadow: 0 6px 16px rgba(255, 122, 0, 0.25);
  }

  /* Header */
  .header__inner {
    height: 60px;
  }

  .header__logo-img {
    height: 40px;
  }

  .header__logo-text {
    font-size: 0.9375rem;
  }

  .header__logo a {
    gap: 8px;
  }

  .header__nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }

  .header__nav.is-open {
    display: block;
  }

  .header__nav ul {
    flex-direction: column;
    gap: 0;
  }

  .header__nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
  }

  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 40px 0 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__content {
    padding-bottom: 0;
    text-align: center;
  }

  .hero__eyebrow {
    font-size: 0.875rem;
  }

  .hero__title {
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .hero__desc {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .hero__image {
    max-width: 300px;
    margin-inline: auto;
    margin-left: auto;
  }

  /* Features */
  .features__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features__item {
    padding: 24px 20px 28px;
    max-width: 340px;
    margin-inline: auto;
    width: 100%;
  }

  .features__body h3 {
    font-size: 1.0625rem;
    margin-bottom: 16px;
  }

  .features__img-wrap {
    height: 200px;
    margin-bottom: 16px;
  }

  .features__desc {
    font-size: 0.875rem;
    line-height: 1.85;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 48px 0;
  }

  .cta-banner__inner {
    flex-direction: column;
    gap: 24px;
  }

  .cta-banner__text-wrap {
    text-align: center;
  }

  .cta-banner__title {
    font-size: 1.125rem;
    line-height: 1.6;
  }

  .cta-banner__btn-label {
    font-size: 0.8125rem;
  }

  .cta-banner__btn-group .btn {
    max-width: none;
  }

  /* Reasons */
  .reasons__item {
    padding: 24px 20px 28px;
    gap: 16px;
    text-align: left;
  }

  .reasons__num {
    font-size: 2rem;
    min-width: auto;
    text-align: left;
    width: 100%;
    margin-bottom: 4px;
  }

  .reasons__title {
    font-size: 1.0625rem;
    text-align: left;
    line-height: 1.5;
  }

  .reasons__body {
    text-align: left;
  }

  .reasons__desc {
    font-size: 0.9rem;
    line-height: 1.9;
    text-align: left;
  }

  .reasons__img {
    width: 180px;
    margin-inline: auto;
  }

  /* Voices */
  .voices__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .voices__card {
    padding: 24px 20px;
  }

  .voices__card-header {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .voices__icon {
    width: 56px;
    height: 56px;
  }

  .voices__store-name {
    font-size: 0.9375rem;
  }

  .voices__body p {
    font-size: 0.875rem;
    line-height: 1.8;
  }

  .voices__summary {
    font-size: 1rem !important;
  }

  /* Pricing */
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
    gap: 32px;
  }

  .pricing__card {
    padding: 32px 22px 28px;
    gap: 18px;
  }

  .pricing__card--recommended {
    transform: none;
  }

  .pricing__amount {
    font-size: 2.25rem;
  }

  .pricing__features {
    min-height: auto;
  }

  .pricing__subtitle,
  .pricing__target,
  .pricing__result {
    min-height: auto;
  }

  .pricing__addon {
    padding: 24px 20px;
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .pricing__addon-list li {
    font-size: 0.875rem;
  }

  /* Flow */
  .flow__badge {
    font-size: 0.875rem;
    padding: 7px 22px;
    margin: 8px 0 32px;
  }

  .flow__steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .flow__arrow {
    transform: rotate(90deg);
    margin: 0;
    font-size: 1.125rem;
    line-height: 1;
  }

  .flow__step {
    width: 100%;
    max-width: 340px;
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
      "num   num"
      "img   title";
    justify-content: center;
    column-gap: 16px;
    row-gap: 10px;
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .flow__step-num {
    grid-area: num;
    justify-self: center;
    min-width: 84px;
    height: 28px;
    font-size: 0.9375rem;
    padding: 0 12px;
  }

  .flow__step-label {
    font-size: 0.625rem;
  }

  .flow__step-img {
    grid-area: img;
    width: 88px;
    height: 88px;
  }

  .flow__step-title {
    grid-area: title;
    text-align: left;
    font-size: 1rem;
    line-height: 1.45;
  }

  /* Profile */
  .profile {
    padding: 56px 0;
  }

  .profile__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .profile__eyebrow,
  .profile__headline {
    font-size: 0.9375rem;
    padding: 10px 20px;
    line-height: 1.5;
  }

  .profile__headline {
    padding: 14px 22px;
    display: block;
    margin-bottom: 32px;
  }

  .profile__icon {
    width: 180px !important;
    height: 180px !important;
  }

  .profile__name {
    font-size: 1.75rem;
  }

  .profile__tags {
    justify-content: center;
  }

  .profile__desc {
    font-size: 0.9rem;
    line-height: 1.85;
    margin-inline: auto;
    text-align: left;
  }

  .profile__img-wrap {
    margin-inline: auto;
  }

  /* FAQ */
  .faq__q {
    font-size: 0.9375rem;
    gap: 12px;
    padding: 16px 0;
  }

  .faq__icon {
    width: 28px;
    height: 28px;
    font-size: 0.8125rem;
  }

  .faq__a {
    padding: 0 0 16px 40px;
    font-size: 0.875rem;
  }

  /* Footer CTA */
  .footer-cta {
    padding: 48px 0;
  }

  .footer-cta__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-cta__title {
    font-size: 1.125rem;
    line-height: 1.6;
  }

  .footer-cta__phone {
    display: none;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer__desc {
    font-size: 0.8125rem;
  }

  .footer__nav {
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
  }

  .footer__nav-col {
    flex: 1;
    min-width: 120px;
  }

  .footer__nav ul {
    gap: 10px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer__copy {
    font-size: 0.75rem;
  }

  .footer__legal {
    gap: 16px;
    font-size: 0.8125rem;
  }
}

/* =============================================
   Legal Pages (privacy / tokushoho)
============================================= */
.legal-page {
  padding: 80px 0 100px;
  background: #fafafa;
  min-height: 70vh;
}

.legal-page .container {
  max-width: 820px;
  background: var(--color-white);
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-page__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-main);
  color: var(--color-text);
}

.legal-page__lead {
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 32px;
  color: var(--color-text);
}

.legal-page__section {
  margin-bottom: 28px;
}

.legal-page__section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 4px solid var(--color-main);
}

.legal-page__section p,
.legal-page__section li {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: var(--color-text);
}

.legal-page__section ul {
  padding-left: 1.2em;
  list-style: disc;
}

.legal-page__section a,
.legal-page__back a {
  color: var(--color-main);
  text-decoration: underline;
}

.legal-page__dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  border-top: 1px solid #e5e7eb;
}

.legal-page__dl dt,
.legal-page__dl dd {
  padding: 16px 12px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.legal-page__dl dt {
  font-weight: 700;
  background: #f9fafb;
  color: var(--color-text);
}

.legal-page__dl dd {
  color: var(--color-text);
}

.legal-page__date {
  margin-top: 32px;
  text-align: right;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.legal-page__back {
  margin-top: 40px;
  text-align: center;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .legal-page {
    padding: 48px 0 64px;
  }
  .legal-page .container {
    padding: 32px 20px;
    border-radius: var(--radius-md);
  }
  .legal-page__dl {
    grid-template-columns: 1fr;
  }
  .legal-page__dl dt {
    border-bottom: none;
    padding-bottom: 6px;
  }
  .legal-page__dl dd {
    padding-top: 6px;
  }
}

/* =============================================
   Scroll Reveal Animations（控えめな登場アニメ）
============================================= */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
    will-change: opacity, transform;
  }
  [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  [data-reveal-stagger] > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
  }
  [data-reveal-stagger].is-visible > * {
    opacity: 1;
    transform: translateY(0);
  }
  [data-reveal-stagger].is-visible > *:nth-child(1) { transition-delay: 0s; }
  [data-reveal-stagger].is-visible > *:nth-child(2) { transition-delay: 0.1s; }
  [data-reveal-stagger].is-visible > *:nth-child(3) { transition-delay: 0.2s; }
  [data-reveal-stagger].is-visible > *:nth-child(4) { transition-delay: 0.3s; }
  [data-reveal-stagger].is-visible > *:nth-child(5) { transition-delay: 0.4s; }
  [data-reveal-stagger].is-visible > *:nth-child(n+6) { transition-delay: 0.5s; }
}

