/* ============================================
   STRETCHHOLIC v2 — UI/UX Redesign
   ============================================ */

/* --- RESET & VARIABLES --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --primary: #1A2F3A;
  --primary-mid: #264653;
  --primary-light: #3A7D8C;
  /* Accent — warm copper/sand */
  --accent: #B8926A;
  --accent-hover: #CBA67E;
  --accent-soft: rgba(184, 146, 106, 0.12);
  /* Neutrals */
  --bg: #F7F6F3;
  --bg-alt: #EFEDE8;
  --bg-dark: #F0EEE9;
  --white: #FFFFFF;
  --text: #1C1C1E;
  --text-mid: #4A4A4C;
  --text-muted: #7C7C80;
  --text-light: rgba(255,255,255,0.7);
  --border: #E2E0DB;
  --border-light: #ECEAE5;
  /* Sizing */
  --container: 1140px;
  --container-narrow: 760px;
  --nav-h: 72px;
  --section-pad: clamp(80px, 10vw, 120px);
  --radius: 8px;
  --radius-lg: 16px;
  /* Transition */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.35s;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Noto Sans JP', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

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

/* --- CONTAINER --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 2rem; }

/* --- TYPOGRAPHY --- */
.label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.label--light { color: var(--accent-hover); }

.heading {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.heading--lg { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.heading em {
  font-style: normal;
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--accent);
  font-weight: 700;
}
.heading--white { color: var(--white); }

.text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.9; }
.text--lead { font-size: 1.1rem; font-weight: 400; color: var(--text); margin-bottom: 1.2rem; }
.text--sub { max-width: 480px; margin-left: auto; margin-right: auto; }
.text--light { color: var(--text-light); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  padding: 0.85rem 2rem;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,146,106,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}
.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}
.btn--white {
  background: var(--white);
  color: var(--primary);
}
.btn--white:hover {
  background: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn--lg { padding: 1rem 2.4rem; font-size: 0.92rem; }
.btn--full { width: 100%; }

/* --- SECTION BASE --- */
.section { padding: var(--section-pad) 0; }
.section--alt { background: var(--bg-alt); }

.section__header { margin-bottom: 3.5rem; }
.section__header--center { text-align: center; }
.section__header--center .text--sub { margin-top: 1rem; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background var(--duration), box-shadow var(--duration);
}
.nav.scrolled,
.nav.nav--solid {
  background: rgba(26, 47, 58, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { text-decoration: none; display: flex; align-items: center; }
.nav__logo-img { height: 24px; width: auto; }
.nav__logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.15em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}
.nav__links a:hover { color: var(--white); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius) !important;
  font-weight: 500 !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover { background: var(--accent-hover) !important; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; z-index: 200;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 95; opacity: 0;
  transition: opacity 0.3s;
}
.nav__overlay.open { display: block; opacity: 1; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('images/hero-stretch.webp');
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,47,58,0.88) 0%,
    rgba(38,70,83,0.75) 40%,
    rgba(58,125,140,0.65) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

/* Tag */
.hero__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.hero__tag-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-hover);
}
.hero__tag-line {
  width: 40px; height: 1px;
  background: rgba(184,146,106,0.4);
}

/* Title */
.hero__title {
  margin-bottom: 1.5rem;
}
.hero__title-line {
  display: block;
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.04em;
}
.hero__title-line--accent {
  color: var(--accent-hover);
  font-style: italic;
}

.hero__sub {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  line-height: 2;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
}
.hero__stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.2rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  min-width: 140px;
}
.hero__stat-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-hover);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero__stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}
.hero__scroll span {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); transform-origin: top; }
}

/* ============================================
   CONCEPT
   ============================================ */
.section--concept { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }

.concept__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.concept__left .heading {
  margin-top: 0.5rem;
}
.concept__right .text {
  margin-bottom: 1.2rem;
}
.concept__right .text:last-child { margin-bottom: 0; }

/* ============================================
   FEATURES
   ============================================ */
.features {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.feature--reverse {
  grid-template-columns: 1fr 1.1fr;
}
.feature--reverse .feature__image { order: 2; }
.feature--reverse .feature__body { order: 1; }

.feature__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.feature:hover .feature__image img {
  transform: scale(1.04);
}
.feature__num {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  pointer-events: none;
}
.feature__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.feature__title em {
  font-style: normal;
  color: var(--accent);
}
.feature__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.9;
}
/* Feature BG - full-width background image sections */
.feature-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.feature-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,47,58,0.88) 0%, rgba(26,47,58,0.65) 45%, rgba(26,47,58,0.15) 100%);
}
.feature-bg__content {
  position: relative;
  z-index: 1;
  padding: 4rem 6rem;
  max-width: 600px;
}
.feature-bg__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}
.feature-bg__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.feature-bg__title em {
  font-style: normal;
  color: var(--accent);
}
.feature-bg__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 2;
}

/* ============================================
   SERVICE
   ============================================ */
.section--service { background: var(--bg); }

.service__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.service__visual {
  position: relative;
}
.service__visual-inner {
  background: linear-gradient(145deg, var(--primary-mid), var(--primary));
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  overflow: hidden;
}
.service__visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service__visual-accent {
  display: none;
  pointer-events: none;
}
.service__content .heading { margin-bottom: 1.2rem; }
.service__content .text { margin-bottom: 2rem; }
.service__list {
  list-style: none;
  margin-bottom: 2rem;
}
.service__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  font-size: 0.92rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-light);
}
.service__list li:last-child { border-bottom: none; }
.service__list svg { color: var(--accent); flex-shrink: 0; }

/* ============================================
   PRICING
   ============================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing__card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all var(--duration) var(--ease);
}
.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,47,58,0.08);
}
.pricing__card--featured {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 8px 32px rgba(26,47,58,0.1);
}
.pricing__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing__head { margin-bottom: 2rem; }
.pricing__plan {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.pricing__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  margin-bottom: 0.3rem;
}
.pricing__yen {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}
.pricing__amount {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.pricing__per {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 0.2rem;
}
.pricing__unit {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.pricing__features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}
.pricing__features li {
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pricing__features li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--accent-soft);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23B8926A' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.pricing__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2rem;
}

/* ============================================
   TRIAL MID-PAGE BANNER
   ============================================ */
.section--trial {
  padding: 0;
}
.trial-mid {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto;
}
.trial-mid__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  font-weight: 600;
  line-height: 1.3;
}
.trial-mid__title strong {
  color: var(--accent-hover);
  font-weight: 700;
}
.trial-mid__tax {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}
.trial-mid__pair-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-top: 0.7rem;
  box-shadow: 0 4px 12px rgba(184, 146, 106, 0.35);
}
.trial-fixed__pair {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-left: 0.4rem;
  letter-spacing: 0.02em;
}
.trial-mid__text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

/* ============================================
   STAFF
   ============================================ */
.staff-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.staff {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--duration);
}
.staff:hover {
  box-shadow: 0 12px 40px rgba(26,47,58,0.08);
}
.staff--reverse { grid-template-columns: 1fr 300px; }
.staff--reverse .staff__photo { order: 2; }
.staff--reverse .staff__info { order: 1; padding-left: 2.5rem; padding-right: 0; }

.staff__photo {
  background: linear-gradient(145deg, var(--primary-mid), var(--primary));
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  overflow: hidden;
}
.staff__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.staff__info { padding: 2.5rem 2.5rem 2.5rem 0; }
.staff__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.staff__name {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.staff__name-en {
  display: inline-block;
  margin-left: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  vertical-align: baseline;
}
.staff__bio {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.staff__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.tag {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.75rem;
  padding: 0.25rem 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}
.tag--dark {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.staff__stores {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.staff__stores-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   LOCATIONS
   ============================================ */
.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.location {
  text-decoration: none;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
  display: block;
  position: relative;
}
.location:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26,47,58,0.08);
  border-color: var(--primary-light);
}
.location__accent {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
}
.location__content { padding: 2rem; }
.location__area {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.location__name {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.8rem;
}
.location__address {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-light);
}
.location__access {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.location__access span {
  font-size: 0.8rem;
  color: var(--text-mid);
}
.location__link {
  font-size: 0.82rem;
  color: var(--primary-light);
  font-weight: 500;
  transition: color 0.2s;
}
.location:hover .location__link { color: var(--accent); }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--accent); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 1.5rem;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary-light); }
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 1.5rem 1.3rem;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.9;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

/* ============================================
   CONTACT / FORM
   ============================================ */
.section--contact {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-mid) 100%);
}
.form {
  margin-top: 2.5rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form__group { margin-bottom: 1.2rem; min-width: 0; }
.form__label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.form__required {
  color: var(--accent-hover);
  font-size: 0.7rem;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--accent-hover);
  background: rgba(255,255,255,0.1);
}
.form__input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
}
.form__input::placeholder,
.form__textarea::placeholder { color: rgba(255,255,255,0.25); }
.form__select option { background: var(--primary); color: var(--white); }
.form__textarea { resize: vertical; min-height: 100px; }

.form__datetime {
  display: none;
  margin-bottom: 0.5rem;
}
.form__datetime.visible { display: block; }
.form__datetime-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
}
.form__datetime-sub {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}
.form__note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0F1F29;
  padding: 4rem 0 0;
}
.footer__upper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__logo {
  margin-bottom: 0.5rem;
}
.footer__logo-img { height: 24px; width: auto; }
.footer__tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__nav-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__nav-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer__nav-col a:hover { color: rgba(255,255,255,0.8); }

.footer__lower {
  padding: 1.5rem 0;
  text-align: center;
}
.footer__lower p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* ============================================
   FIXED TRIAL BANNER
   ============================================ */
.trial-fixed {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--accent);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  transform: translateY(0);
}
.trial-fixed__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.85rem 2rem;
  position: relative;
}
.trial-fixed__text {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.trial-fixed__text strong {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 0.3rem;
}
.trial-fixed__btn {
  background: var(--white);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}
.trial-fixed__btn:hover {
  background: var(--primary);
  color: var(--white);
}
.trial-fixed__close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  line-height: 1;
}
.trial-fixed__btn--line {
  background: #06C755;
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  white-space: nowrap;
}
.trial-fixed__btn--line:hover {
  background: #05b34c;
  color: var(--white);
}
.trial-fixed__close:hover { color: var(--white); }

/* ============================================
   LINE CTA (共通)
   ============================================ */
.line-cta {
  background: #06C755;
  color: #fff !important;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem;
  box-shadow: 0 4px 18px rgba(6,199,85,0.18);
  text-decoration: none !important;
  transition: transform .15s, box-shadow .15s;
}
.line-cta:hover,
.line-cta:visited,
.line-cta:active,
.line-cta:focus {
  color: #fff !important;
  text-decoration: none !important;
}
.line-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(6,199,85,0.28);
}
.line-cta > span { color: #fff !important; text-decoration: none !important; }
.line-cta .line-cta__icon { color: #06C755 !important; }
.line-cta .line-cta__body span { color: #fff !important; text-decoration: none !important; }
.line-cta__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #fff;
  color: #06C755;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.line-cta__body { flex: 1; }
.line-cta__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  line-height: 1.4;
}
.line-cta__sub {
  font-size: 0.78rem;
  opacity: 0.92;
  margin: 0;
  line-height: 1.5;
}
.line-cta__arrow {
  font-size: 1.2rem;
  flex-shrink: 0;
  opacity: 0.9;
}
.btn--line {
  background: #06C755;
  color: #fff;
  border: 2px solid #06C755;
}
.btn--line:hover {
  background: #05b34c;
  border-color: #05b34c;
  color: #fff;
}
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.cta-stack .btn { margin: 0; }
.footer__nav-col a.footer__line {
  color: #06C755;
  font-weight: 600;
}
.footer__nav-col a.footer__line:hover { color: #4ee08d; }

.footer__nav-col a.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #e1306c;
  font-weight: 600;
}
.footer__nav-col a.footer__instagram:hover { color: #f56991; }
.footer__nav-col a.footer__instagram .footer__sns-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: currentColor;
}

/* ============================================
   PAGE HERO (sub pages)
   ============================================ */
.page-hero {
  background: linear-gradient(160deg, #0F1F29 0%, var(--primary) 40%, var(--primary-mid) 100%);
  padding: calc(var(--nav-h) + 3rem) 2rem 3.5rem;
  text-align: center;
}
.page-hero__inner { max-width: 720px; margin: 0 auto; }
.page-hero__label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-hover);
  border: 1px solid rgba(184,146,106,0.35);
  padding: 0.35rem 1.2rem;
  margin-bottom: 1.2rem;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', 'Noto Sans JP', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.page-hero p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 90;
  background: rgba(247,246,243,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}
.breadcrumb__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.45rem 2rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.breadcrumb__inner a { color: var(--text-muted); text-decoration: none; transition: color 0.15s; }
.breadcrumb__inner a:hover { color: var(--accent); }
.breadcrumb__inner span { margin: 0 0.35rem; color: var(--border); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.92rem;
}
.about-table th {
  width: 200px;
  padding: 1.1rem 1.5rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-weight: 500;
  color: var(--primary);
  text-align: left;
  vertical-align: top;
}
.about-table td {
  padding: 1.1rem 1.5rem;
  border: 1px solid var(--border);
  color: var(--text-mid);
  line-height: 1.8;
}
.about-table a { color: var(--accent); text-decoration: none; }
.about-table a:hover { text-decoration: underline; }

.group-section { margin-top: 4rem; }
.group-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.group-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--duration) var(--ease);
}
.group-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26,47,58,0.08);
}
.group-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.group-card h3 a { color: var(--primary); text-decoration: none; }
.group-card h3 a:hover { color: var(--accent); }
.group-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.8; }

/* ============================================
   BEFORE & AFTER PAGE
   ============================================ */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.ba-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.ba-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26,47,58,0.08);
}
.ba-card img { width: 100%; display: block; }
.ba-body { padding: 1.4rem 1.8rem 1.8rem; }
.ba-profile { font-size: 0.75rem; color: var(--accent); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 0.4rem; }
.ba-comment { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; }

/* ============================================
   CONTACT PAGE (light form)
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-top: 2rem;
  align-items: start;
}
.contact-info-item { margin-bottom: 2rem; }
.contact-info-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.contact-info-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }

.form--light .form__label { color: var(--text-muted); }
.form--light .form__required { color: var(--accent); }
.form--light .form__input,
.form--light .form__select,
.form--light .form__textarea {
  background: var(--white);
  border-color: var(--border);
  color: var(--text);
}
.form--light .form__input:focus,
.form--light .form__select:focus,
.form--light .form__textarea:focus { border-color: var(--primary-light); }
.form--light .form__input::placeholder,
.form--light .form__textarea::placeholder { color: var(--text-muted); opacity: 0.5; }
.form--light .form__select option { background: var(--white); color: var(--text); }
.form--light .form__note { color: var(--text-muted); }
.form--light .form__datetime-label { color: var(--text-muted); }
.form--light .form__datetime-sub { color: var(--text-muted); opacity: 0.7; }

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  background: linear-gradient(160deg, #0F1F29 0%, var(--primary) 50%, var(--primary-mid) 100%);
}
.thanks-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  max-width: 480px;
  width: 100%;
}
.thanks-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.8rem;
}
.thanks-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.thanks-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem; }
.thanks-divider { width: 40px; height: 2px; background: var(--accent); margin: 1.5rem auto; }

/* ============================================
   STORE DETAIL PAGES
   ============================================ */
.store-top__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}
.store-top__info .section__header { margin-bottom: 2rem; }
.store-top__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
}
.store-top__map iframe { width: 100%; height: 100%; border: none; }

/* Store info dl */
.store-info { margin-bottom: 2rem; }
.store-info__row { margin-bottom: 1.4rem; }
.store-info__row dt {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.store-info__row dd { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }
.store-info__row a { color: var(--accent); text-decoration: none; }
.store-info__row a:hover { text-decoration: underline; }
.station-badges { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.station-badge {
  display: inline-block;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  padding: 0.25rem 0.85rem;
  color: var(--text-mid);
}

/* Legacy compat */
.info-block { margin-bottom: 1.8rem; }
.info-block h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.info-block p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; }
.store-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 360px;
}
.store-map iframe { width: 100%; height: 100%; border: none; }

/* Recommend grid */
.recommend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}
.recommend-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.recommend-num {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.recommend-title { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 0.4rem; }
.recommend-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

/* Service steps */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}
.service-visual-placeholder {
  background: linear-gradient(145deg, var(--primary-mid), var(--primary));
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
}
.service-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.service-step { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.step-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 0.3rem; }
.step-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

/* Pricing toggle (solo / pair) */
.pricing-toggle {
  display: inline-flex;
  gap: 0;
  margin: 0 auto 2.5rem;
  padding: 0.5rem;
  background: rgba(26, 47, 58, 0.06);
  border: 1px solid rgba(184, 146, 106, 0.25);
  border-radius: 999px;
  justify-content: center;
  max-width: 100%;
}
.pricing-toggle-wrap { text-align: center; }
.pricing-toggle__btn {
  padding: 1.15rem 3rem;
  border: none;
  background: transparent;
  color: var(--primary-mid);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  white-space: nowrap;
  min-width: 200px;
}
.pricing-toggle__btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: var(--accent-hover);
  box-shadow: 0 8px 22px rgba(26, 47, 58, 0.3);
}
@media (max-width: 640px) {
  .pricing-toggle {
    display: flex;
    width: 100%;
    max-width: 420px;
    padding: 0.4rem;
  }
  .pricing-toggle__btn {
    flex: 1;
    min-width: 0;
    padding: 0.95rem 0.6rem;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
  }
}
.pricing-panel { display: none; }
.pricing-panel.active { display: block; animation: fadeSlide 0.35s ease; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.pricing-panel__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0 0 1.2rem;
  font-weight: 600;
}

/* Pair stretch (WORKOUTHOLIC-style) */
.pair-stretch {
  position: relative;
  margin-top: 3.5rem;
  padding: 0;
  border-radius: var(--radius-md);
  background: #fff;
  color: #3a3530;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(230, 120, 150, 0.12);
  border: 1px solid #fce4ec;
}
.pair-stretch__header {
  background: linear-gradient(135deg, #e91e63 0%, #ec407a 50%, #f06292 100%);
  padding: 1.6rem 2rem;
  text-align: center;
  color: #fff;
  position: relative;
}
.pair-stretch__ribbon {
  position: absolute;
  top: 1rem;
  right: -2.6rem;
  transform: rotate(35deg);
  background: #fff;
  color: #e91e63;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.3rem 3rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.pair-stretch__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}
.pair-stretch__heading {
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}
.pair-stretch__sub {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  margin: 0;
}
.pair-stretch__body {
  padding: 2.5rem 2rem 2.5rem;
  text-align: center;
}
.pair-stretch__plans {
  max-width: 760px;
  margin: 0 auto 2rem;
  background: #fff;
  border-top: 1px solid #fce4ec;
  border-bottom: 1px solid #fce4ec;
}
.pair-stretch__plan {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid #fce4ec;
  text-align: left;
}
.pair-stretch__plan:last-child { border-bottom: none; }
.pair-stretch__plan--featured {
  background: #fff5f8;
}
.pair-stretch__plan-badge {
  position: absolute;
  top: 50%;
  left: 1.8rem;
  transform: translateY(-50%) translateX(-120%);
  background: linear-gradient(135deg, #f5a3b3 0%, #f2c87a 100%);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  display: none;
}
.pair-stretch__plan-namewrap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pair-stretch__plan-name {
  font-size: 0.95rem;
  color: #4a3f38;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.pair-stretch__plan-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: linear-gradient(135deg, #f5a3b3 0%, #f2c87a 100%);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
}
.pair-stretch__plan-pricebox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.pair-stretch__plan-perlabel {
  font-size: 0.72rem;
  color: #9a8a7a;
  letter-spacing: 0.05em;
}
.pair-stretch__plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  color: #e91e63;
  font-weight: 700;
}
.pair-stretch__plan-price .yen { font-size: 1.3rem; }
.pair-stretch__plan-price .amount {
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1;
  letter-spacing: 0.01em;
}
.pair-stretch__plan-price .tax { font-size: 0.72rem; color: #9a8a7a; margin-left: 0.4rem; font-weight: 500; }
.pair-stretch__plan-price .per { font-size: 0.8rem; color: #9a8a7a; margin-left: 0.1rem; font-weight: 500; }
.pair-stretch__plan-total {
  font-size: 0.78rem;
  color: #9a8a7a;
  font-weight: 500;
  margin-top: 0.15rem;
}
.pair-stretch__plan-name { color: #3a3530; }
.pair-stretch__plan-tag {
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
}
.pair-stretch__plan-perlabel { color: #9a8a7a; }
@media (max-width: 560px) {
  .pair-stretch__plan {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.3rem 1.2rem;
    text-align: center;
  }
  .pair-stretch__plan-pricebox { align-items: center; }
  .pair-stretch__plan-namewrap { align-items: center; }
}
.pair-stretch__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.9rem;
  max-width: 720px;
  margin: 0 auto 2rem;
  list-style: none;
  padding: 0;
}
.pair-stretch__features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  background: #fff5f8;
  border: 1px solid #fce4ec;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: #5a4f45;
  text-align: left;
}
.pair-stretch__features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}
.pair-stretch__cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}
.pair-stretch__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(233, 30, 99, 0.45);
}
.pair-stretch__note {
  font-size: 0.75rem;
  color: #9a8a7a;
  margin-top: 1.2rem;
  line-height: 1.7;
}
@media (max-width: 640px) {
  .pair-stretch__header { padding: 1.3rem 1.2rem; }
  .pair-stretch__body { padding: 2rem 1rem; }
  .pair-stretch__ribbon { font-size: 0.6rem; right: -2.8rem; padding: 0.25rem 3rem; }
  .pair-stretch__plan { padding: 1.3rem 1.2rem; }
}

/* CTA box */
.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  margin-top: 2rem;
}
.cta-box h2,
.cta-box__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 1.2rem;
}
.cta-box p,
.cta-box__text { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

/* Other stores */
.other-stores { margin-top: 3rem; }
.other-stores__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.other-stores__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.other-store-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: all var(--duration) var(--ease);
}
.other-store-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26,47,58,0.08);
  border-color: var(--primary-light);
}
.other-store-card__area {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.other-store-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}
.other-store-card__access {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.other-store-card__link {
  font-size: 0.82rem;
  color: var(--primary-light);
  font-weight: 500;
}
.other-store-card:hover .other-store-card__link { color: var(--accent); }

/* Store list page */
.store-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.store-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--duration) var(--ease);
  position: relative;
}
.store-card::before {
  content: '';
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,47,58,0.12);
}
.store-card__area {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 1.8rem 2rem 0;
}
.store-card__body { padding: 0.5rem 2rem 2rem; }
.store-card__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.store-card__info { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.store-card__row { display: flex; gap: 0.8rem; font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }
.store-card__label {
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  min-width: 4.5em;
  font-size: 0.78rem;
}
.store-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--duration) var(--ease);
}
.store-card:hover .store-card__link { color: var(--primary); }
.store-thumb {
  background: linear-gradient(145deg, var(--primary-mid), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
}
.store-body { padding: 2rem; }
.store-area-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.store-title { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 0.6rem; }
.store-address { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0.5rem; }
.store-access { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 0.3rem; }
.store-hours { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.8rem; }
.store-link { font-size: 0.85rem; color: var(--primary-light); font-weight: 500; }

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all var(--duration) var(--ease);
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26,47,58,0.08);
}
.blog-card__thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, var(--primary-mid), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: 1.4rem 1.6rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.blog-card__title { font-size: 0.92rem; font-weight: 700; color: var(--primary); line-height: 1.5; margin-bottom: 0.5rem; }
.blog-card__date { font-size: 0.72rem; color: var(--text-muted); margin-top: auto; }

/* Blog post */
.post-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 2rem 4rem;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.post-cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
}
.post-date { font-size: 0.78rem; color: var(--text-muted); }
.post-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.post-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.post-thumb img { width: 100%; display: block; }

.post-body h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-soft);
}
.post-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-mid);
  margin: 1.8rem 0 0.8rem;
}
.post-body p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 1rem;
}
.post-body ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.post-body li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 0.3rem;
}

.post-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.post-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--white) !important;
  margin: 0 0 0.6rem !important;
  padding: 0 !important;
  border: none !important;
}
.post-cta p { color: rgba(255,255,255,0.6) !important; margin-bottom: 1.5rem !important; }

.post-nav {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.post-nav a {
  font-size: 0.88rem;
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 500;
}
.post-nav a:hover { color: var(--accent); }

/* ============================================
   RELATED POSTS
   ============================================ */
.related-posts {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.related-posts__heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.related-posts__heading::before {
  content: '';
  width: 3px;
  height: 1em;
  background: var(--accent);
  border-radius: 2px;
}
.related-posts__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.related-posts__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg-alt);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--duration) var(--ease);
}
.related-posts__item:hover {
  background: var(--white);
  border-color: var(--accent);
  transform: translateX(4px);
}
.related-posts__cat {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.related-posts__title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-posts__item:hover .related-posts__title {
  color: var(--primary);
}

/* ============================================
   AREA ACCESS (周辺エリアからのアクセス)
   ============================================ */
.area-access__intro {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 640px;
}
.area-access__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.area-access__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.area-access__station {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}
.area-access__time {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

/* ============================================
   LOCAL CONCERNS (地域のお客様のお悩み傾向)
   ============================================ */
.concerns__intro {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.concerns__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.concern-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
}
.concern-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.concern-card__text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ============================================
   STORE BEFORE & AFTER (店舗別ビフォーアフター)
   ============================================ */
.store-ba__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.store-ba__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.store-ba__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(26,47,58,0.08);
}
.store-ba__card img { width: 100%; display: block; }
.store-ba__body { padding: 1.4rem 1.8rem 1.8rem; }
.store-ba__profile {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.store-ba__comment {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.store-ba__more {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================
   VOICE (お客様の声)
   ============================================ */
.voice__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.voice-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  position: relative;
}
.voice-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  line-height: 1;
}
.voice-card__text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.voice-card__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}
.voice-card__avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.voice-card__info {
  display: flex;
  flex-direction: column;
}
.voice-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
}
.voice-card__detail {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.voice-card__stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-left: auto;
}

/* ============================================
   SUB-PAGE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .store-top { grid-template-columns: 1fr; }
  .store-top__grid { grid-template-columns: 1fr; }
  .recommend-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .other-stores__grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .store-list { grid-template-columns: 1fr; }
  .store-card { flex-direction: column; }
  .store-thumb { min-height: 200px; }
  .about-table th { width: 120px; }
  .area-access__grid { grid-template-columns: 1fr; }
  .concerns__grid { grid-template-columns: 1fr; }
  .store-ba__grid { grid-template-columns: 1fr; }
  .voice__grid { grid-template-columns: 1fr; }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .concept__layout { grid-template-columns: 1fr; gap: 2rem; }
  .feature, .feature--reverse { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature--reverse .feature__image { order: 0; }
  .feature--reverse .feature__body { order: 0; }
  .feature-bg { min-height: 320px; }
  .feature-bg__content { padding: 2.5rem 2rem; }
  .feature-bg__overlay { background: linear-gradient(0deg, rgba(26,47,58,0.92) 0%, rgba(26,47,58,0.6) 60%, rgba(26,47,58,0.25) 100%); }
  .feature-bg__title { font-size: 1.5rem; }
  .feature-bg__num { font-size: 3.5rem; }
  .service__layout { grid-template-columns: 1fr; gap: 3rem; }
  .service__visual-accent { display: none; }
  .pricing { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .locations { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .staff, .staff--reverse { grid-template-columns: 1fr; }
  .staff--reverse .staff__photo { order: 0; }
  .staff--reverse .staff__info { order: 0; padding-left: 2rem; }
  .staff__info { padding: 2rem; }
  .staff__photo { min-height: 250px; }
  .trial-mid { flex-direction: column; text-align: center; padding: 3rem 2rem; }
  .footer__upper { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: clamp(56px, 8vw, 80px) 0; }
  .container, .container--narrow { padding: 0 1.5rem; }

  .nav__hamburger { display: flex; }
  .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 300px; height: 100vh;
    background: var(--primary);
    z-index: 150;
    padding: 80px 0 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
    overflow-y: auto;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__links a {
    display: block !important;
    padding: 1rem 1.5rem !important;
    font-size: 0.95rem !important;
    color: rgba(255,255,255,0.85) !important;
    background: none !important;
    border-radius: 0 !important;
  }
  .nav__links a::after { display: none; }
  .nav__links a:hover { background: rgba(255,255,255,0.04) !important; }
  .nav__cta {
    margin: 1rem 1.5rem 0 !important;
    text-align: center !important;
    border-radius: var(--radius) !important;
  }

  .hero__stats { flex-direction: column; gap: 0.7rem; }
  .hero__stat-box { flex-direction: row; gap: 0.8rem; min-width: 0; padding: 0.9rem 1.5rem; }
  .hero__scroll { display: none; }

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

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

  .trial-fixed__inner { gap: 0.4rem; padding: 0.55rem 0.5rem; }
  .trial-fixed__text {
    font-size: 0.68rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25;
    min-width: 0;
  }
  .trial-fixed__text strong { font-size: 0.8rem; margin-left: 0; }
  .trial-fixed__pair {
    font-size: 0.58rem;
    margin-left: 0;
    margin-top: 0.15rem;
    padding: 0.1rem 0.35rem;
  }
  .trial-fixed__btn,
  .trial-fixed__btn--line { font-size: 0.7rem; padding: 0.45rem 0.65rem; }
}

/* ============================================
   ブログ記事内バナー統一オーバーライド
   (11記事のintro-box / mid-CTAを一元管理)
   ============================================ */

/* Intro Box — 記事冒頭のリード */
.blog-premium-intro,
.blog-cmp-intro {
  position: relative !important;
  margin: 2rem 0 2.5rem !important;
  padding: 2.5rem 2rem !important;
  background: linear-gradient(135deg, #1A2F3A 0%, #264653 100%) !important;
  color: #fff !important;
  border-radius: var(--radius-lg) !important;
  border: none !important;
  box-shadow: 0 15px 40px rgba(26, 47, 58, 0.2) !important;
  overflow: hidden !important;
}
.blog-premium-intro::before,
.blog-cmp-intro::before {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0;
  height: 3px !important;
  background: linear-gradient(90deg, #B8926A 0%, #CBA67E 50%, #B8926A 100%) !important;
}
.blog-premium-intro__label,
.blog-cmp-intro__label {
  display: inline-block !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  color: #CBA67E !important;
  border: 1px solid rgba(203, 166, 126, 0.5) !important;
  background: transparent !important;
  padding: 0.35rem 1rem !important;
  border-radius: 999px !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase !important;
}
.blog-premium-intro__lead,
.blog-cmp-intro__lead {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem) !important;
  line-height: 1.85 !important;
  font-weight: 400 !important;
  margin: 0 !important;
}

/* Mid CTA Banner — 記事中盤のCTA */
.blog-premium-midcta,
.blog-cmp-midcta {
  position: relative !important;
  margin: 3rem 0 !important;
  padding: 2.8rem 2rem !important;
  background: linear-gradient(135deg, #1A2F3A 0%, #264653 100%) !important;
  color: #fff !important;
  text-align: center !important;
  border-radius: var(--radius-lg) !important;
  border: none !important;
  box-shadow: 0 15px 40px rgba(26, 47, 58, 0.2) !important;
  overflow: hidden !important;
}
.blog-premium-midcta::before,
.blog-cmp-midcta::before {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0;
  height: 3px !important;
  background: linear-gradient(90deg, #B8926A 0%, #CBA67E 50%, #B8926A 100%) !important;
}
.blog-premium-midcta__eyebrow,
.blog-premium-midcta__label,
.blog-cmp-midcta__label {
  display: inline-block !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  color: #CBA67E !important;
  border: 1px solid rgba(203, 166, 126, 0.5) !important;
  background: transparent !important;
  padding: 0.35rem 1rem !important;
  border-radius: 999px !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase !important;
}
.blog-premium-midcta__title,
.blog-cmp-midcta__title {
  color: #fff !important;
  font-size: clamp(1.3rem, 3vw, 1.7rem) !important;
  font-weight: 700 !important;
  margin: 0 0 0.6rem !important;
  letter-spacing: 0.03em !important;
}
.blog-premium-midcta__sub,
.blog-premium-midcta__desc,
.blog-cmp-midcta__sub,
.blog-cmp-midcta__desc {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.92rem !important;
  line-height: 1.8 !important;
  margin: 0 auto 1.5rem !important;
  max-width: 560px !important;
}
.blog-premium-midcta__price {
  display: inline-block !important;
  color: #CBA67E !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  padding: 0.4rem 1rem !important;
  border: 1px solid rgba(203, 166, 126, 0.35) !important;
  border-radius: 999px !important;
}
.blog-premium-midcta__btns {
  display: flex !important;
  gap: 0.75rem !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  margin-top: 0.5rem !important;
}
.blog-premium-midcta__btn,
.blog-premium-midcta__btn--primary,
.blog-cmp-midcta__btn {
  display: inline-block !important;
  padding: 0.95rem 2.4rem !important;
  background: linear-gradient(135deg, #B8926A 0%, #CBA67E 100%) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  letter-spacing: 0.05em !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  border: none !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 8px 20px rgba(184, 146, 106, 0.35) !important;
}
.blog-premium-midcta__btn:hover,
.blog-premium-midcta__btn--primary:hover,
.blog-cmp-midcta__btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(184, 146, 106, 0.5) !important;
}
.blog-premium-midcta__btn--line {
  background: #06C755 !important;
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.3) !important;
}
.blog-premium-midcta__btn--line:hover {
  box-shadow: 0 12px 28px rgba(6, 199, 85, 0.45) !important;
}

@media (max-width: 640px) {
  .blog-premium-intro, .blog-cmp-intro,
  .blog-premium-midcta, .blog-cmp-midcta {
    padding: 2rem 1.3rem !important;
  }
}

/* Price Showcase — ペア記事の料金カード可読性UP */
.blog-premium-price {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 1.2rem !important;
  margin: 2rem 0 !important;
}
.blog-premium-price__card {
  background: #fff !important;
  border: 1px solid #e8dcc8 !important;
  border-radius: var(--radius-md) !important;
  padding: 1.8rem 1.4rem !important;
  text-align: center !important;
  box-shadow: 0 6px 18px rgba(26, 47, 58, 0.06) !important;
  position: relative !important;
}
.blog-premium-price__card--featured,
.blog-premium-price__card--reco {
  background: linear-gradient(180deg, #FFF8EE 0%, #fff 100%) !important;
  border: 2px solid #B8926A !important;
  box-shadow: 0 12px 32px rgba(184, 146, 106, 0.22) !important;
  transform: translateY(-4px) !important;
}
.blog-premium-price__badge {
  display: inline-block !important;
  background: linear-gradient(135deg, #1A2F3A 0%, #264653 100%) !important;
  color: #CBA67E !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
  padding: 0.3rem 0.9rem !important;
  border-radius: 999px !important;
  margin-bottom: 0.8rem !important;
  text-transform: uppercase !important;
}
.blog-premium-price__name {
  display: block !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #1A2F3A !important;
  margin-bottom: 0.9rem !important;
  letter-spacing: 0.02em !important;
}
.blog-premium-price__total {
  display: block !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #B8926A !important;
  font-family: 'Cormorant Garamond', serif !important;
  line-height: 1.1 !important;
  margin-bottom: 0.3rem !important;
}
.blog-premium-price__per,
.blog-premium-price__each,
.blog-premium-price__unit {
  display: block !important;
  font-size: 0.78rem !important;
  color: #5a4f45 !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
}
.blog-premium-price__each {
  margin-top: 0.4rem !important;
  padding-top: 0.5rem !important;
  border-top: 1px dashed #e8dcc8 !important;
  color: #1A2F3A !important;
  font-weight: 600 !important;
}
@media (max-width: 640px) {
  .blog-premium-price { grid-template-columns: 1fr 1fr !important; gap: 0.8rem !important; }
  .blog-premium-price__card { padding: 1.3rem 0.8rem !important; }
  .blog-premium-price__total { font-size: 1.35rem !important; }
}
