/* ============================================================
   MYコンサルティング LP - style.css
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --c-primary: #FE6D03;
  --c-primary-light: #FFF1E2;
  --c-cta: #01C0A7;
  --c-cta-dark: #00A08B;
  --c-accent-bg: #FFD503;
  --c-hero-bg: #FFF9EE;
  --c-text: #343434;
  --c-text-light: #656565;
  --c-light-bg: #F9F7F3;
  --c-gray-card: #454545;
  --c-white: #fff;
  --c-dark: #2D2D2D;
  --c-border: #E1DED9;
  --ff-main: 'Noto Sans JP', sans-serif;
  --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);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --section-py: 80px;
  --inner-max: 1080px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-main);
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea { font: inherit; }

/* ---------- Utility ---------- */
.text-accent { color: var(--c-primary); }
.sp-only { display: none; }
.section-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ---------- Fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Section Heading ---------- */
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.section-heading__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.section-heading__icon--dark {
  background: var(--c-primary);
}
.section-heading__icon--light {
  background: var(--c-cta);
}
.section-heading__title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 12px;
}
.section-heading__title--dark { color: var(--c-text); }
.section-heading__title--light { color: var(--c-white); }
.section-heading__sub {
  font-size: 14px;
  color: var(--c-text-light);
  margin-bottom: 12px;
}
.section-heading__bar {
  width: 60px;
  height: 3px;
  background: var(--c-primary);
  margin: 0 auto;
  border-radius: 2px;
}

/* ---------- Section More Link ---------- */
.section-more {
  text-align: center;
  margin-top: 32px;
}
.section-more__link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-primary);
  text-decoration: none;
  padding: 12px 32px;
  border: 2px solid var(--c-primary);
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}
.section-more__link:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.4;
}
.btn__arrow {
  font-size: 0.7em;
  transition: transform 0.3s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--cta {
  background: var(--c-cta);
  color: var(--c-white);
  padding: 18px 48px;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(1,192,167,0.3);
}
.btn--cta:hover {
  background: var(--c-cta-dark);
  box-shadow: 0 6px 24px rgba(1,192,167,0.4);
  transform: translateY(-2px);
}

.btn--cta-banner {
  background: var(--c-cta);
  color: var(--c-white);
  padding: 16px 40px;
  font-size: 17px;
  border: 3px solid var(--c-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn--cta-banner:hover {
  background: var(--c-cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.btn--submit {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(1,192,167,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(1,192,167,0); }
}
.btn--pulse { animation: pulse 2s infinite; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
  height: 64px;
}
.header__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__logo-img {
  height: 32px;
  width: auto;
}
.header__logo-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.header__logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-text-light);
  border-left: 1px solid var(--c-border);
  padding-left: 10px;
  margin-left: 2px;
  line-height: 1.2;
}
.header__cta-btn {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.3s;
}
.header__cta-btn:hover { background: #DF5F02; }

/* Header Navigation */
.header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  transition: color 0.3s;
  white-space: nowrap;
}
.header__nav-link:hover {
  color: var(--c-primary);
}

/* Hamburger Button */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 1002;
}
.header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.header__mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - 64px);
  height: calc(100dvh - 64px);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 999;
  overflow-y: auto;
}
.header__mobile-menu.is-open {
  display: flex;
}
.header__mobile-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  transition: color 0.3s;
}
.header__mobile-link:hover {
  color: var(--c-primary);
}
.header__mobile-link--cta {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  margin-top: 8px;
}
.header__mobile-link--cta:hover {
  color: var(--c-white);
}

/* ============================================================
   HERO (new showcase design)
   ============================================================ */
.hero {
  position: relative;
  background: var(--c-light-bg);
  padding: calc(64px + 16px) 0 20px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Top section */
.hero__top {
  text-align: center;
  margin-bottom: 16px;
}

/* Appeal badges */
.hero__badges-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.hero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.hero__badge-small { font-size: 13px; font-weight: 700; }
.hero__badge-big { font-size: 36px; font-weight: 900; line-height: 1.1; }
.hero__badge--free {
  background: var(--c-primary);
  color: var(--c-white);
  transform: rotate(-6deg);
}
.hero__badge--price {
  background: var(--c-accent-bg);
  color: var(--c-text);
  transform: rotate(3deg) scale(1.1);
  width: 120px; height: 120px;
  box-shadow: 0 8px 32px rgba(255,214,0,0.3);
}
.hero__badge--price .hero__badge-big { font-size: 32px; }
.hero__badge--speed {
  background: var(--c-cta);
  color: var(--c-white);
  transform: rotate(5deg);
}

.hero__title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.35;
  color: var(--c-text);
  margin-bottom: 10px;
}
.hero__title-accent {
  color: var(--c-primary);
  position: relative;
}
.hero__title-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: rgba(254,109,3,0.12);
  border-radius: 5px;
  z-index: -1;
}
.hero__subtitle {
  font-size: 16px;
  color: var(--c-text-light);
  font-weight: 500;
}

/* Showcase - 3 cards */
.hero__showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 16px;
  height: 380px;
}
.showcase__card { position: relative; flex-shrink: 0; }
.showcase__card--side-left {
  width: 320px;
  transform: perspective(1000px) rotateY(6deg) scale(0.88);
  z-index: 1;
  margin-right: -40px;
  opacity: 0.85;
}
.showcase__card--center {
  width: 480px;
  z-index: 3;
  transform: translateY(-16px);
}
.showcase__card--side-right {
  width: 320px;
  transform: perspective(1000px) rotateY(-6deg) scale(0.88);
  z-index: 1;
  margin-left: -40px;
  opacity: 0.85;
}
.showcase__browser {
  background: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}
.showcase__card--center .showcase__browser {
  box-shadow: 0 30px 80px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.08);
}
.showcase__bar {
  background: #F5F5F3;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #E8E8E5;
}
.showcase__dot { width: 9px; height: 9px; border-radius: 50%; }
.showcase__dot--r { background: #FE6058; }
.showcase__dot--y { background: #FDBD30; }
.showcase__dot--g { background: #29C941; }
.showcase__url {
  margin-left: 12px;
  background: var(--c-white);
  border: 1px solid #E0E0DD;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: #999;
}
.showcase__screen {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.showcase__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.showcase__label {
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.showcase__tag {
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.showcase__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-light);
}

/* Phone overlays */
.showcase__phone {
  position: absolute;
  width: 100px;
  background: #111;
  border: 3px solid #222;
  border-radius: 18px;
  padding: 6px 4px 5px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  z-index: 5;
}
.showcase__phone--left { bottom: 40px; left: -30px; }
.showcase__phone--right { bottom: 60px; right: -30px; }
.showcase__phone-island {
  width: 28%; height: 5px;
  background: #000;
  border-radius: 8px;
  margin: 0 auto 3px;
}
.showcase__phone-screen {
  width: 100%;
  aspect-ratio: 9/19.5;
  overflow: hidden;
  border-radius: 4px;
}
.showcase__phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}
.showcase__phone-home {
  width: 36%; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
  margin: 5px auto 0;
}

/* Bottom CTA */
.hero__bottom {
  text-align: center;
  margin-bottom: 0;
}
.hero__tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.hero__tag-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-light);
}

/* ============================================================
   DEVICE MOCKUP (PC + Phone)
   ============================================================ */
.device-mockup {
  position: relative;
  padding-bottom: 30px;
}

/* PC Monitor - MacBook style */
.device-mockup__pc {
  position: relative;
  background: #1a1a1a;
  border: 3px solid #2a2a2a;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1);
}
.device-mockup__pc-bar {
  background: linear-gradient(180deg, #3a3a3a 0%, #2a2a2a 100%);
  padding: 8px 12px;
  display: flex;
  gap: 6px;
  align-items: center;
}
.device-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.device-mockup__dot--red { background: #FE6058; }
.device-mockup__dot--yellow { background: #FDBD30; }
.device-mockup__dot--green { background: #29C941; }

.device-mockup__pc-screen {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #fafafa;
}
.device-mockup__pc-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.device-mockup__pc-stand {
  width: 40%;
  height: 16px;
  background: linear-gradient(180deg, #c0c0c0 0%, #a0a0a0 100%);
  margin: 0 auto;
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
}
.device-mockup__pc-base {
  width: 55%;
  height: 5px;
  background: linear-gradient(180deg, #b0b0b0 0%, #909090 100%);
  margin: 0 auto;
  border-radius: 0 0 6px 6px;
}

/* Smartphone overlay - iPhone 15 style */
.device-mockup__phone {
  position: absolute;
  bottom: 8px;
  right: -6%;
  width: 28%;
  background: #111;
  border: 4px solid #222;
  border-radius: 22px;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.25),
    0 4px 12px rgba(0,0,0,0.15),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 3;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Dynamic Island */
.device-mockup__phone-island {
  width: 28%;
  height: 8px;
  background: #000;
  border-radius: 10px;
  margin-bottom: 5px;
  flex-shrink: 0;
}
.device-mockup__phone-screen {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  background: #fafafa;
  border-radius: 6px;
}
.device-mockup__phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}
/* Home Indicator */
.device-mockup__phone-home {
  width: 36%;
  height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 4px;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Hero-specific mockup sizing */
.device-mockup--hero .device-mockup__pc {
  border-width: 8px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--c-primary);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-banner__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.cta-banner__badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--c-accent-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  line-height: 1.2;
}
.cta-banner__badge-top {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
}
.cta-banner__badge-bottom {
  font-size: 22px;
  font-weight: 900;
  color: var(--c-primary);
}

.cta-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-banner__strip {
  background: var(--c-white);
  border-radius: var(--radius-pill);
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  box-shadow: var(--shadow-sm);
}
.cta-banner__highlight {
  color: var(--c-primary);
  font-size: 1.3em;
}

/* ============================================================
   WORKS (制作実績)
   ============================================================ */
.works {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--c-light-bg);
  overflow: hidden;
}

/* Dot pattern background */
.works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.works__illust {
  position: absolute;
  bottom: 40px;
  width: 140px;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}
.works__illust--left { left: 20px; }
.works__illust--right { right: 20px; }

.works__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.works__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.works__card {
  text-align: center;
}

.works__card-info {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.works__card-tag {
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
}
.works__card-name {
  font-size: 15px;
  font-weight: 700;
}

.works__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.works__tag {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text-light);
  transition: all 0.3s;
}
.works__tag:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

/* Industry grid */
.works__industries-title {
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--c-text);
  margin-bottom: 20px;
}
.works__industries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.works__industry {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  transition: all 0.3s;
}
.works__industry:hover {
  border-color: var(--c-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.works__industry-icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* ============================================================
   PROBLEMS (お悩み)
   ============================================================ */
.problems {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--c-white);
  overflow: hidden;
}

/* Geometric line pattern */
.problems__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(0,0,0,0.02) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.02) 87.5%),
    linear-gradient(150deg, rgba(0,0,0,0.02) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.02) 87.5%),
    linear-gradient(30deg, rgba(0,0,0,0.02) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.02) 87.5%),
    linear-gradient(150deg, rgba(0,0,0,0.02) 12%, transparent 12.5%, transparent 87%, rgba(0,0,0,0.02) 87.5%);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  pointer-events: none;
  z-index: 0;
}

.problems__illust {
  position: absolute;
  bottom: 60px;
  width: 120px;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}
.problems__illust--left { left: 20px; }
.problems__illust--right { right: 20px; }

.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.problems__card {
  background: var(--c-white);
  color: var(--c-text);
  padding: 28px 24px 24px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
  border-left: 4px solid var(--c-primary);
}
.problems__card:hover { transform: translateY(-4px); }

.problems__card-quote {
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 48px;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  font-weight: 900;
}

.problems__card p {
  font-size: 15px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.problems__card strong {
  color: var(--c-primary);
  font-weight: 700;
}

.problems__solution {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.6;
}

/* ============================================================
   POINTS (選ばれる理由)
   ============================================================ */
.points {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--c-accent-bg);
  overflow: hidden;
}

/* Hexagon network pattern */
.points__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23333' stroke-width='1'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='%23333' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.points__card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
}
.points__card:last-child { margin-bottom: 0; }

.points__card-stripe {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.points__card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.points__card-number {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.points__card-body {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
}

.points__card-text {
  flex: 1;
  min-width: 0;
}

.points__card-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 12px;
}

.points__card-desc {
  font-size: 15px;
  color: var(--c-text-light);
  line-height: 1.8;
}

.points__card-image {
  flex: 0 0 200px;
  max-width: 200px;
  min-height: 120px;
  background: var(--c-primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.points__card-image img {
  width: 100%;
  border-radius: var(--radius-md);
}

/* ============================================================
   PRICING PAGE V2 — 0ベース再設計（画像込み設計）
   ============================================================ */

/* ---------- Pricing Hero ---------- */
.pr-hero {
  background: linear-gradient(135deg, var(--c-hero-bg) 0%, #FFF3E0 50%, var(--c-white) 100%);
  padding: 100px 0 40px;
  overflow: hidden;
}
.pr-hero__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.pr-hero__title-block {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--c-primary);
  display: inline-block;
}
.pr-hero__title-en {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-primary);
  letter-spacing: 0.2em;
  margin-bottom: 4px;
}
.pr-hero__page-title {
  font-size: 42px;
  font-weight: 900;
  color: var(--c-text);
  line-height: 1.2;
}
.pr-hero__cheapest {
  display: inline-block;
  background: linear-gradient(135deg, #E53935, #FF5722);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  padding: 8px 28px;
  margin-bottom: -8px;
  transform: rotate(-3deg);
  box-shadow: 3px 3px 0 rgba(0,0,0,0.15), 0 0 20px rgba(229,57,53,0.25);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  position: relative;
  z-index: 2;
  overflow: hidden;
  letter-spacing: 0.05em;
}
.pr-hero__cheapest::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 70%, 100% { left: -100%; }
  40% { left: 150%; }
}
.pr-hero__prices {
  margin-bottom: 20px;
}
.pr-hero__price-line {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.5;
}
.pr-hero__price-note {
  font-size: 12px;
  color: var(--c-text-light);
  margin-bottom: 4px;
}
.pr-hero__accent {
  color: var(--c-primary);
  font-size: 48px;
}
.pr-hero__yen {
  font-size: 24px;
  font-weight: 700;
}
.pr-hero__sub {
  font-size: 15px;
  color: var(--c-text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}
.pr-hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pr-hero__badge {
  background: var(--c-white);
  border: 2px solid var(--c-cta);
  color: var(--c-cta-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.pr-hero__btn {
  display: inline-flex;
}
.pr-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pr-hero__img {
  max-width: 480px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(254,109,3,0.15));
}

/* ---------- Demo Free ---------- */
.pr-demo {
  padding: 32px 0 48px;
  background: var(--c-white);
}
.pr-demo__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: var(--c-primary-light);
  border: 2px solid var(--c-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow: hidden;
}
.pr-demo__badge {
  display: inline-block;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 900;
  padding: 2px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.pr-demo__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--c-text);
  margin-bottom: 12px;
}
.pr-demo__title strong {
  color: var(--c-primary);
}
.pr-demo__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-text-light);
  margin-bottom: 20px;
}
.pr-demo__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
  transition: opacity 0.3s;
}
.pr-demo__link:hover { opacity: 0.7; }
.pr-demo__link .btn__arrow {
  font-size: 0.7em;
  transition: transform 0.3s;
}
.pr-demo__link:hover .btn__arrow { transform: translateX(4px); }
.pr-demo__visual {
  display: flex;
  justify-content: center;
}
.pr-demo__img {
  max-width: 360px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* ---------- Production Plans (制作プラン) ---------- */
.pr-plans {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.pr-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.pr-plan {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.pr-plan:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pr-plan--recommended {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-md);
}
.pr-plan--recommended:hover {
  box-shadow: 0 12px 48px rgba(254,109,3,0.2);
}
.pr-plan--dark {
  border-color: var(--c-gray-card);
}
.pr-plan__ribbon {
  position: absolute;
  top: 16px;
  right: -32px;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 900;
  padding: 4px 40px;
  transform: rotate(45deg);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(254,109,3,0.3);
}
.pr-plan__img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-light-bg);
  padding: 20px;
  overflow: hidden;
}
.pr-plan__img-wrap--accent {
  background: linear-gradient(135deg, #FFF1E2, #FFE0B2);
}
.pr-plan__img-wrap--dark {
  background: var(--c-gray-card);
}
.pr-plan__img {
  max-width: 160px;
  max-height: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s;
}
.pr-plan:hover .pr-plan__img {
  transform: scale(1.05);
}
.pr-plan__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pr-plan__name {
  font-size: 20px;
  font-weight: 900;
  color: var(--c-text);
  margin-bottom: 4px;
}
.pr-plan__catch {
  font-size: 13px;
  color: var(--c-text-light);
  margin-bottom: 16px;
}
.pr-plan__price {
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px;
}
.pr-plan__price-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
}
.pr-plan__price-unit {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
}
.pr-plan__price-tax {
  font-size: 11px;
  color: var(--c-text-light);
}
.pr-plan__price-label {
  font-size: 28px;
  font-weight: 900;
  color: var(--c-text);
}
.pr-plan__price-note {
  font-size: 13px;
  color: var(--c-text-light);
  margin-bottom: 4px;
}
.pr-plan__delivery {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-cta-dark);
  background: rgba(1,192,167,0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  align-self: flex-start;
}
.pr-plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.pr-plan__features li {
  font-size: 14px;
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  color: var(--c-text);
}
.pr-plan__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-cta);
  font-weight: 700;
  font-size: 14px;
}
.pr-plan__body .btn {
  align-self: stretch;
  text-align: center;
}
.pr-plans__tax-note {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 24px;
}

/* ---------- Maintenance (月額保守) ---------- */
.pr-maint {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.pr-maint__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pr-maint__badge {
  background: rgba(1,192,167,0.1);
  color: var(--c-cta-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}
.pr-maint__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.pr-maint__card {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pr-maint__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pr-maint__card-badge {
  position: absolute;
  top: -1px;
  right: 16px;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px 5px;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}
.pr-maint__card-header {
  padding: 24px 20px 16px;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.pr-maint__card-icon {
  margin-bottom: 8px;
}
.pr-maint__card-name {
  font-size: 16px;
  font-weight: 900;
  color: var(--c-text);
  margin-bottom: 8px;
}
.pr-maint__card-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
}
.pr-maint__card-price span {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-light);
}
.pr-maint__checklist {
  padding: 20px;
  list-style: none;
  margin: 0;
}
.pr-maint__checklist li {
  font-size: 14px;
  line-height: 2;
  padding-left: 24px;
  position: relative;
}
.pr-maint__checklist li.is-included::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-cta);
  font-weight: 700;
}
.pr-maint__checklist li.is-not-included::before {
  content: "─";
  position: absolute;
  left: 0;
  color: #ccc;
}
.pr-maint__checklist li.is-not-included {
  color: var(--c-text-light);
}
.pr-maint__card-note {
  padding: 0 20px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-cta-dark);
  text-align: center;
}

/* ---------- Simulation (支払いシミュレーション) ---------- */
.pr-sim {
  padding: var(--section-py) 0;
  background: var(--c-light-bg);
}
.pr-sim__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.pr-sim__visual {
  position: sticky;
  top: 100px;
}
.pr-sim__img {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.08));
  border-radius: var(--radius-md);
}
.pr-sim__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pr-sim__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pr-sim__card--primary {
  border: 2px solid var(--c-primary);
  box-shadow: var(--shadow-md);
}
.pr-sim__card-header--primary {
  background: var(--c-primary-light);
  border-bottom-color: var(--c-primary);
}
.pr-sim__card-header--primary .pr-sim__card-label {
  color: var(--c-primary);
}
.pr-sim__card-header--primary .pr-sim__card-desc {
  color: var(--c-text-light);
}
.pr-sim__big--xl {
  font-size: 44px;
}
.pr-sim__card--sub {
  opacity: 0.85;
  border-style: dashed;
}
.pr-sim__card--sub:hover {
  opacity: 1;
}
.pr-sim__divider {
  text-align: center;
  padding: 24px 0 8px;
}
.pr-sim__divider-text {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
}
.pr-sim__divider-sub {
  display: block;
  font-size: 12px;
  color: var(--c-text-light);
  margin-top: 2px;
}
.pr-sim__card-header {
  background: var(--c-light-bg);
  padding: 14px 24px;
  border-bottom: 1px solid var(--c-border);
}
.pr-sim__card-header--accent {
  background: var(--c-primary);
}
.pr-sim__card-label {
  font-size: 16px;
  font-weight: 900;
  color: var(--c-text);
  display: block;
}
.pr-sim__card-header--accent .pr-sim__card-label {
  color: var(--c-white);
}
.pr-sim__card-desc {
  font-size: 13px;
  color: var(--c-text-light);
  display: block;
  margin-top: 2px;
}
.pr-sim__card-header--accent .pr-sim__card-desc {
  color: rgba(255,255,255,0.7);
}
.pr-sim__card-body--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.pr-sim__plan {
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--c-border);
}
.pr-sim__plan:last-child {
  border-right: none;
}
.pr-sim__plan-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-light);
  margin-bottom: 12px;
}
.pr-sim__calc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--c-text-light);
}
.pr-sim__calc-plus {
  font-size: 12px;
  color: var(--c-text-light);
}
.pr-sim__plan-total {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}
.pr-sim__big {
  font-size: 36px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
}
.pr-sim__plan-total small {
  font-size: 11px;
  font-weight: 400;
  color: var(--c-text-light);
}
.pr-sim__plan-tax {
  font-size: 12px;
  color: var(--c-text-light);
}
.pr-sim__plan-after {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-cta-dark);
  background: rgba(1,192,167,0.1);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-top: 8px;
  display: inline-block;
}
.pr-sim__note {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 20px;
}

/* ---------- Options Grid ---------- */
.pr-options {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.pr-options__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.pr-options__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pr-options__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary);
}
.pr-options__icon {
  margin-bottom: 12px;
}
.pr-options__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.pr-options__price {
  font-size: 20px;
  font-weight: 900;
  color: var(--c-primary);
  margin-bottom: 4px;
}
.pr-options__price span {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-light);
}
.pr-options__note {
  font-size: 12px;
  color: var(--c-text-light);
}
.pr-options__group-label {
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--c-text);
  margin-bottom: 20px;
}
.pr-options__group-label strong {
  color: var(--c-cta);
}
.pr-options__card--free {
  border-color: var(--c-cta);
  background: rgba(1,192,167,0.03);
}
.pr-options__card--free:hover {
  border-color: var(--c-cta);
  box-shadow: 0 4px 20px rgba(1,192,167,0.15);
}
.pr-options__card--more {
  border-style: dashed;
  border-color: var(--c-text-light);
  background: var(--c-light-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pr-options__card--more:hover {
  border-color: var(--c-primary);
  background: var(--c-white);
}
.pr-options__price--free {
  color: var(--c-cta) !important;
  font-size: 22px !important;
}

/* ---------- Payment ---------- */
.pr-payment {
  padding: var(--section-py) 0;
  background: var(--c-light-bg);
}
.pr-payment__types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 640px;
  margin: 0 auto 28px;
}
.pr-payment__type {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.pr-payment__type:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary);
}
.pr-payment__type-icon {
  margin-bottom: 12px;
}
.pr-payment__type-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--c-text);
  margin-bottom: 8px;
}
.pr-payment__type-desc {
  font-size: 13px;
  color: var(--c-text-light);
  line-height: 1.7;
}
.pr-payment__methods {
  max-width: 640px;
  margin: 0 auto;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
}
.pr-payment__methods-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-light);
  margin-bottom: 12px;
}
.pr-payment__methods-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pr-payment__method {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
}
.pr-payment__method svg {
  color: var(--c-primary);
}
.pr-payment__note {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 24px;
}

/* ---------- Cancellation ---------- */
.pr-cancel {
  padding: 32px 0 40px;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
}
.pr-cancel__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-light);
  margin-bottom: 12px;
}
.pr-cancel__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pr-cancel__list li {
  font-size: 12px;
  color: var(--c-text-light);
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}
.pr-cancel__list li::before {
  content: "・";
}
.pr-cancel__list li strong {
  font-weight: 700;
  color: var(--c-text);
}

/* ============================================================
   PRICING PAGE V2 — RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .pr-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pr-hero__badges { justify-content: center; }
  .pr-hero__btn { margin: 0 auto; }
  .pr-hero__visual { display: none; }
  .pr-plans__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pr-plan--recommended { order: -1; }
  .pr-sim__layout { grid-template-columns: 1fr; }
  .pr-sim__visual { display: none; }
  .pr-options__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .pr-hero { padding: 80px 0 40px; }
  .pr-hero__page-title { font-size: 32px; }
  .pr-hero__price-line { font-size: 18px; }
  .pr-hero__accent { font-size: 28px; }
  .pr-hero__title-block { text-align: center; margin-left: auto; margin-right: auto; }
  .pr-demo__layout {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    text-align: center;
  }
  .pr-demo__visual { order: -1; }
  .pr-demo__img { max-width: 280px; margin: 0 auto; }
  .page-nav__link { padding: 10px 12px; font-size: 12px; }
  .pr-demo__steps { justify-content: center; }
  .pr-maint__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pr-payment__types { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 28px; }
}

@media (max-width: 480px) {
  .pr-hero__page-title { font-size: 26px; }
  .pr-hero__title-en { font-size: 11px; }
  .pr-hero__price-line { font-size: 14px; }
  .pr-hero__accent { font-size: 22px; }
  .pr-hero__sub br { display: none; }
  .pr-demo__title { font-size: 20px; }
  .pr-demo__desc br { display: none; }
  .pr-options__grid { gap: 10px; }
  .pr-options__card { padding: 16px 10px; }
  .pr-options__name { font-size: 12px; }
  .pr-options__price { font-size: 16px; }
  .pr-sim__card-body--2col { grid-template-columns: 1fr; }
  .pr-sim__plan { border-right: none; border-bottom: 1px solid var(--c-border); }
  .pr-sim__plan:last-child { border-bottom: none; }
  .pr-sim__big { font-size: 28px; }
  .pr-sim__big--xl { font-size: 34px; }
  .pr-plan__price-num { font-size: 28px; }
}

/* ---------- Page Nav (reusable across pages) ---------- */
.page-nav {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 64px;
  z-index: 90;
}
.page-nav__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.page-nav__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-light);
  padding: 12px 16px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.3s, border-color 0.3s;
}
.page-nav__link:hover {
  color: var(--c-primary);
  border-bottom-color: var(--c-primary);
}

/* ---------- Demo steps ---------- */
.pr-demo__steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0;
  flex-wrap: wrap;
}
.pr-demo__step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
}
.pr-demo__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}
.pr-demo__step-arrow {
  font-size: 10px;
  color: var(--c-text-light);
}
.pr-demo__btn {
  margin-top: 8px;
}

/* ---------- Options more text ---------- */
.pr-options__more {
  text-align: center;
  font-size: 14px;
  color: var(--c-text-light);
  margin-top: 24px;
}
.pr-options__more a {
  color: var(--c-primary);
  font-weight: 700;
  text-decoration: underline;
}

/* === END PRICING PAGE V2 === */

/* ============================================================
   PRICING LEGACY (index.html用 — 旧クラス互換)
   ============================================================ */
.pricing {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}
.pricing__card {
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing__card--recommended {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-md);
}
.pricing__card-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--c-primary);
  color: var(--c-white);
  padding: 4px 16px 6px;
  border-radius: 0 0 8px 8px;
  font-size: 13px;
  font-weight: 700;
}
.pricing__card-header {
  background: var(--c-light-bg);
  padding: 24px 20px 20px;
  text-align: center;
}
.pricing__card-header--accent {
  background: var(--c-primary);
  color: var(--c-white);
}
.pricing__card-header--accent .pricing__card-sub {
  color: rgba(255,255,255,0.85);
}

.pricing__card-name {
  font-size: 22px;
  font-weight: 900;
}
.pricing__card-sub {
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 4px;
}

.pricing__card-body {
  padding: 24px 20px 28px;
  text-align: center;
}

.pricing__card-price {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.pricing__card-price-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
}
.pricing__card-price-yen {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-primary);
}
.pricing__card-price-tax {
  font-size: 11px;
  font-weight: 400;
  color: var(--c-text-light);
  margin-left: 2px;
}

.pricing__card-features {
  text-align: left;
  margin-bottom: 20px;
}
.pricing__card-features li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid #F0EEE8;
}
.pricing__card-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--c-cta);
  font-weight: 700;
}

/* Maintenance block (separate from pricing cards) */
.maintenance {
  max-width: 780px;
  margin: 40px auto 0;
  background: var(--c-light-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--c-border);
}
.maintenance__title {
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
  color: var(--c-text);
}
.maintenance__desc {
  font-size: 14px;
  color: var(--c-text-light);
  text-align: center;
  margin-bottom: 24px;
}
.maintenance__plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.maintenance__plan {
  background: var(--c-white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--c-border);
}
.maintenance__plan-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-text);
}
.maintenance__plan-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.maintenance__plan-price span {
  font-size: 14px;
  font-weight: 700;
}
.maintenance__plan-detail {
  font-size: 13px;
  color: var(--c-text-light);
}

/* ---------- Pricing: 3-column grid ---------- */
.pricing__grid--3col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
}

.pricing__grid--3col .pricing__card--recommended {
  transform: scale(1.04);
  z-index: 1;
}
.pricing__grid--3col .pricing__card--recommended:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing__card-delivery {
  display: inline-block;
  background: rgba(1,192,167,0.12);
  color: var(--c-cta-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.pricing__card-price-label {
  font-size: 36px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
}

.pricing__card-price-note {
  font-size: 14px;
  color: var(--c-text-light);
  margin-bottom: 8px;
}

.pricing__card--custom {
  border: 2px dashed var(--c-border);
}
.pricing__card--custom:hover {
  border-color: var(--c-primary);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
  padding: 12px 32px;
  font-size: 15px;
}
.btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-2px);
}

.pricing__card-body .btn {
  margin-top: auto;
}

.pricing__tax-note {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 24px;
}

/* ---------- Maintenance section (standalone) ---------- */
.maintenance-section {
  padding: var(--section-py) 0;
  background: var(--c-light-bg);
}

.maintenance__badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.maintenance__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--c-cta);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.maintenance__checklist {
  text-align: left;
  margin-top: 16px;
}

.maintenance__checklist li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid #F0EEE8;
}

.maintenance__checklist li.is-included::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--c-cta);
  font-weight: 700;
  font-size: 16px;
}

.maintenance__checklist li.is-not-included::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: #CCC;
  font-weight: 700;
  font-size: 14px;
}

.maintenance__checklist li.is-not-included {
  color: var(--c-text-light);
}
.maintenance__plan-note {
  margin-top: 16px;
  padding: 8px 16px;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-align: center;
}

/* ---------- Options table ---------- */
.options {
  padding: var(--section-py) 0;
  background: var(--c-white);
}

.options__table-wrap {
  max-width: 720px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.options__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.options__table thead {
  background: var(--c-primary);
  color: var(--c-white);
}

.options__table th {
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.options__table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--c-border);
}

.options__table tbody tr:last-child td {
  border-bottom: none;
}

.options__table tbody tr:hover {
  background: var(--c-light-bg);
}

.options__table td strong {
  color: var(--c-primary);
  font-weight: 900;
}

/* ---------- Payment ---------- */
.payment {
  padding: var(--section-py) 0;
  background: var(--c-light-bg);
}

.payment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.payment__item {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  border: 1px solid var(--c-border);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.payment__item-icon {
  margin-bottom: 16px;
}

.payment__item-title {
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--c-text);
}

.payment__item-desc {
  font-size: 13px;
  color: var(--c-text-light);
  line-height: 1.7;
}

/* ============================================================
   COMPARISON (比較表)
   ============================================================ */
.comparison {
  padding: var(--section-py) 0;
  background: var(--c-light-bg);
}

.comparison__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 600px;
}

.comparison__table th,
.comparison__table td {
  padding: 14px 16px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid #F0EEE8;
}

.comparison__th-item {
  background: #E8E6E2;
  font-weight: 700;
  width: 20%;
}
.comparison__th-my {
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 900;
  font-size: 15px;
  width: 30%;
}
.comparison__th-other {
  background: #E8E6E2;
  font-weight: 700;
  width: 25%;
  font-size: 13px;
}

.comparison__td-item {
  font-weight: 700;
  background: #FAFAF8;
  text-align: left;
}
.comparison__td-my {
  background: var(--c-primary-light);
  font-weight: 700;
}

.comparison__circle {
  font-size: 16px;
  margin-right: 4px;
}
.comparison__circle--best { color: #00A86B; }
.comparison__circle--good { color: #2196F3; }
.comparison__circle--warn { color: #FFC107; }
.comparison__circle--bad { color: #F44336; }

.comparison__table tbody tr:hover {
  background: rgba(254,109,3,0.03);
}

/* ============================================================
   FLOW (ご利用の流れ)
   ============================================================ */
.flow {
  padding: var(--section-py) 0;
  background: var(--c-white);
}

.flow__steps {
  max-width: 600px;
  margin: 0 auto;
}

.flow__step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.flow__step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow__step-content {
  padding-top: 4px;
}
.flow__step-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 4px;
}
.flow__step-desc {
  font-size: 14px;
  color: var(--c-text-light);
}

.flow__step-line {
  width: 2px;
  height: 32px;
  border-left: 2px dashed var(--c-primary);
  margin-left: 23px;
  opacity: 0.4;
}

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

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  text-align: left;
  transition: background 0.3s;
}
.faq__question:hover { background: #FAFAF8; }

.faq__q-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq__q-text {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
}

.faq__toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-primary);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq__item.is-open .faq__toggle {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 0 20px 20px 64px;
}
.faq__item.is-open .faq__answer {
  display: flex;
  gap: 12px;
}

.faq__a-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-cta);
  color: var(--c-white);
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq__answer p {
  font-size: 14px;
  color: var(--c-text-light);
  line-height: 1.8;
  padding-top: 4px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-py) 0;
  background: var(--c-light-bg);
  color: var(--c-text);
}

.contact__lead {
  text-align: center;
  font-size: 15px;
  color: var(--c-text-light);
  margin-top: 16px;
}

.contact__form {
  max-width: 520px;
  margin: 0 auto;
}

.contact__form-group {
  margin-bottom: 20px;
}

.contact__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-text);
}
.contact__required {
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  font-weight: 500;
}
.contact__optional {
  background: rgba(0,0,0,0.08);
  color: var(--c-text-light);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  font-weight: 500;
}

.contact__input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  color: var(--c-text);
  font-size: 15px;
  transition: border-color 0.3s;
}
.contact__input::placeholder { color: rgba(0,0,0,0.35); }
.contact__input:focus {
  outline: none;
  border-color: var(--c-cta);
}

.contact__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  color: var(--c-text);
  font-size: 15px;
  font-family: inherit;
  line-height: 1.7;
  resize: vertical;
  min-height: 140px;
  transition: border-color 0.3s;
}
.contact__textarea::placeholder { color: rgba(0,0,0,0.35); }
.contact__textarea:focus {
  outline: none;
  border-color: var(--c-cta);
}

.contact__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact__form-group--checkbox {
  margin-top: 24px;
  margin-bottom: 28px;
}

.contact__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  cursor: pointer;
}
.contact__checkbox {
  display: none;
}
.contact__checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--c-border);
  background: var(--c-white);
  border-radius: 4px;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s;
}
.contact__checkbox:checked + .contact__checkbox-custom {
  background: var(--c-cta);
  border-color: var(--c-cta);
}
.contact__checkbox:checked + .contact__checkbox-custom::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 900;
}

.contact__privacy-link {
  color: var(--c-cta);
  text-decoration: underline;
  transition: opacity 0.3s;
}
.contact__privacy-link:hover { opacity: 0.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1A1A1A;
  padding: 32px 20px;
  text-align: center;
}
.footer__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer__logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer__logo-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.footer__company-name {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.footer__address {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
.footer__nav-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer__nav-link:hover {
  color: rgba(255,255,255,0.8);
}
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 60px;
  }

  .sp-only { display: inline; }

  /* Header nav */
  .header__nav { display: none; }
  .header__cta-btn { display: none; }
  .header__hamburger { display: flex; }

  /* Hero */
  .hero { padding: calc(64px + 24px) 0 28px; }
  .hero__title { font-size: 26px; }
  .hero__badges-row { gap: 10px; margin-bottom: 16px; }
  .hero__badge { width: 85px; height: 85px; }
  .hero__badge-big { font-size: 28px; }
  .hero__badge-small { font-size: 11px; }
  .hero__badge--price { width: 95px; height: 95px; }
  .hero__badge--price .hero__badge-big { font-size: 24px; }
  .hero__showcase { height: auto; flex-direction: column; align-items: center; gap: 20px; }
  .showcase__card--side-left,
  .showcase__card--side-right { display: none; }
  .showcase__card--center {
    width: 100%;
    max-width: 400px;
    transform: none;
  }
  .showcase__phone { width: 80px; }
  .showcase__phone--left { left: -10px; bottom: 20px; }
  .showcase__phone--right { right: -10px; bottom: 30px; }
  .hero__tags { flex-wrap: wrap; justify-content: center;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* CTA Banner */
  .cta-banner { padding: 28px 16px; }
  .cta-banner__inner { flex-direction: column; }
  .cta-banner__badge { width: 72px; height: 72px; }
  .cta-banner__badge-bottom { font-size: 18px; }
  .cta-banner__strip { padding: 10px 20px; font-size: 15px; text-align: center; }

  /* Works */
  .works__grid, .works__grid--3col { grid-template-columns: 1fr; gap: 28px; }
  .works__illust { display: none; }
  .works__industries { grid-template-columns: repeat(2, 1fr); }

  /* Problems */
  .problems__grid { grid-template-columns: 1fr; }
  .problems__illust { display: none; }
  .problems__solution { font-size: 20px; }

  /* Points */
  .points__card-body {
    flex-direction: column;
  }
  .points__card-image {
    flex: none;
    max-width: 160px;
    margin: 0 auto;
  }
  .points__card-title { font-size: 19px; }

  /* Pricing */
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .pricing__grid--3col {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .pricing__grid--3col .pricing__card--recommended {
    transform: none;
    order: -1;
  }
  .pricing__grid--3col .pricing__card--recommended:hover {
    transform: translateY(-4px);
  }
  .maintenance__plans { grid-template-columns: 1fr; }
  .payment__grid { grid-template-columns: 1fr; max-width: 400px; }
  .options__table th,
  .options__table td { padding: 10px 12px; font-size: 13px; }

  /* Section heading */
  .section-heading__title { font-size: 24px; }

  /* Flow */
  .flow__step-num { width: 40px; height: 40px; font-size: 18px; }
  .flow__step-line { margin-left: 19px; }

  /* Buttons */
  .btn--cta { padding: 16px 36px; font-size: 16px; }
  .btn--cta-banner { padding: 14px 32px; font-size: 15px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 22px; }
  .hero__price-number { font-size: 32px; }
  .hero__stats { gap: 12px; }
  .hero__stat-value { font-size: 16px; }

  .comparison__table { font-size: 12px; }
  .comparison__table th,
  .comparison__table td { padding: 10px 8px; }

  .pricing__card-price-num { font-size: 34px; }
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: var(--c-primary);
  color: var(--c-white);
  padding: calc(64px + 40px) 0 40px;
  text-align: center;
}
.page-header__title {
  font-size: 32px;
  font-weight: 900;
}
.page-header__sub {
  font-size: 15px;
  opacity: 0.8;
  margin-top: 8px;
}

/* ============================================================
   APPEAL BANNER
   ============================================================ */
.appeal-banner {
  padding: 40px 0;
  background: var(--c-white);
}
.appeal-banner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.appeal-banner__item {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.appeal-banner__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-primary);
}
.appeal-banner__icon {
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1;
}
.appeal-banner__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: var(--radius-md);
}
.appeal-banner__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.5;
}
.appeal-banner__text strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--c-primary);
  margin-top: 2px;
}

/* ============================================================
   DEMO FREE (デモサイト無料制作)
   ============================================================ */
.demo-free {
  padding: 32px 0;
  background: var(--c-white);
}
.demo-free__box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--c-primary-light);
  border: 2px solid var(--c-primary);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
}
.demo-free__badge {
  display: inline-block;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 900;
  padding: 2px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.demo-free__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-text);
  margin-bottom: 16px;
}
.demo-free__text strong {
  color: var(--c-primary);
  font-weight: 900;
}
.demo-free__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
  transition: opacity 0.3s;
}
.demo-free__link:hover {
  opacity: 0.7;
}
.demo-free__link .btn__arrow {
  font-size: 0.7em;
  transition: transform 0.3s;
}
.demo-free__link:hover .btn__arrow {
  transform: translateX(4px);
}

/* ============================================================
   SIMULATION (月々支払いシミュレーション)
   ============================================================ */
.simulation {
  padding: var(--section-py) 0;
  background: var(--c-white);
}
.simulation__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.simulation__wrapper--3col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
}
.simulation__block {
  background: var(--c-white);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.simulation__block-title {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}
.simulation__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.simulation__table {
  width: 100%;
  border-collapse: collapse;
}
.simulation__table th {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: var(--c-light-bg);
  border-bottom: 1px solid var(--c-border);
}
.simulation__table th:first-child {
  text-align: left;
}
.simulation__table td {
  padding: 12px 16px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.simulation__table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--c-text-light);
  font-size: 13px;
}
.simulation__table-total td {
  background: var(--c-primary-light);
  font-weight: 700;
}
.simulation__table-total td strong {
  color: var(--c-primary);
  font-size: 18px;
  font-weight: 900;
}
.simulation__table-tax td {
  font-size: 13px;
  color: var(--c-text-light);
}
.simulation__notes {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.simulation__note-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-cta-dark);
  background: rgba(1,192,167,0.1);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
}

/* Simulation cards (new design) */
.sim-card {
  max-width: 780px;
  margin: 0 auto 20px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sim-card--highlight {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-md);
}
.sim-card__header {
  background: var(--c-light-bg);
  padding: 16px 24px;
  border-bottom: 1px solid var(--c-border);
}
.sim-card--highlight .sim-card__header {
  background: var(--c-primary);
}
.sim-card__label {
  font-size: 16px;
  font-weight: 900;
  color: var(--c-text);
  display: block;
}
.sim-card__label--accent {
  color: var(--c-white);
}
.sim-card__desc {
  font-size: 13px;
  color: var(--c-text-light);
  display: block;
  margin-top: 2px;
}
.sim-card--highlight .sim-card__desc {
  color: rgba(255,255,255,0.7);
}
.sim-card__body--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.sim-card__plan {
  padding: 24px;
  text-align: center;
  border-right: 1px solid var(--c-border);
}
.sim-card__plan:last-child {
  border-right: none;
}
.sim-card__plan-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text-light);
  margin-bottom: 12px;
}
.sim-card__calc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
}
.sim-card__calc-row {
  font-size: 13px;
  color: var(--c-text-light);
}
.sim-card__calc-plus {
  font-size: 12px;
  color: var(--c-text-light);
}
.sim-card__plan-total {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 4px;
}
.sim-card__big {
  font-size: 36px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
}
.sim-card__plan-total small {
  font-size: 11px;
  font-weight: 400;
  color: var(--c-text-light);
}
.sim-card__plan-tax {
  font-size: 12px;
  color: var(--c-text-light);
}
.sim-notes {
  text-align: center;
  margin-top: 16px;
}
.sim-notes p {
  font-size: 13px;
  color: var(--c-text-light);
}

/* ============================================================
   MAINTENANCE 3-column override
   ============================================================ */
.maintenance__plans--3col {
  grid-template-columns: repeat(3, 1fr);
}
.maintenance__plan--premium {
  border-color: var(--c-primary);
  border-width: 2px;
}

/* ============================================================
   PAYMENT 2-column override
   ============================================================ */
.payment__grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
}
.payment__tax-note {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-light);
  margin-top: 24px;
}

/* ============================================================
   CANCELLATION (解約・引き継ぎ) — footnote style
   ============================================================ */
.cancellation {
  padding: 32px 0 40px;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
}
.cancellation__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-light);
  margin-bottom: 12px;
}
.cancellation__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cancellation__list li {
  font-size: 12px;
  color: var(--c-text-light);
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}
.cancellation__list li::before {
  content: "・";
}
.cancellation__list li strong {
  font-weight: 700;
  color: var(--c-text);
}


/* ============================================================
   RESPONSIVE: New sections
   ============================================================ */
@media (max-width: 768px) {
  .appeal-banner__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .simulation__wrapper,
  .simulation__wrapper--3col {
    grid-template-columns: 1fr;
  }
  .maintenance__plans--3col {
    grid-template-columns: 1fr;
  }
  .payment__grid--2col {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .demo-free__box {
    padding: 24px 16px;
  }
  .demo-free__text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .appeal-banner__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .appeal-banner__item {
    padding: 16px 8px;
  }
  .appeal-banner__text strong {
    font-size: 18px;
  }
  .simulation__table th,
  .simulation__table td {
    padding: 10px 8px;
    font-size: 12px;
  }
  .simulation__table-total td strong {
    font-size: 15px;
  }
  .simulation__notes {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .sim-card__body--2col {
    grid-template-columns: 1fr;
  }
  .sim-card__plan {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
  }
  .sim-card__plan:last-child {
    border-bottom: none;
  }
  .sim-card__big {
    font-size: 28px;
  }
  .demo-free__text br {
    display: none;
  }
}
/* ==== v4-refined 追加スタイル ==== */

/* ---------- Token refinements (料金v2に寄せる) ---------- */
:root {
  --c-primary: #FE6D03;
  --c-primary-light: #FFF1E2;
  --c-cta: #01C0A7;
  --c-cta-dark: #00A08B;
  --c-ink: #1A1A1A;
  --c-ink-soft: #4A4A4A;
  --c-bg-soft: #FFF9EE;
  --c-bg-band: #FFF4E4;
  --c-line: #E7E2D8;
}

/* ---------- 共通: outline btn ---------- */
.btn--outline {
  background: #fff;
  color: var(--c-primary);
  padding: 18px 40px;
  font-size: 17px;
  border: 2px solid var(--c-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline-light:hover {
  background: #fff;
  color: var(--c-primary);
}

/* ============================================================
   HERO V4 (刷新)
   ============================================================ */
.hero-v4 {
  padding: 140px 20px 80px;
  background:
    radial-gradient(ellipse at 0% 0%, #FFE9CF 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, #D9F7F1 0%, transparent 50%),
    var(--c-bg-soft);
  position: relative;
  overflow: hidden;
}
.hero-v4__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-v4__campaign {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 8px 16px 8px 10px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
}
.hero-v4__campaign-tag {
  background: var(--c-primary);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
}
.hero-v4__campaign-text { color: var(--c-ink); font-weight: 700; }
.hero-v4__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin-bottom: 20px;
}
.hero-v4__title-accent {
  background: linear-gradient(transparent 62%, #FFE27A 62%, #FFE27A 92%, transparent 92%);
  padding: 0 4px;
}
.hero-v4__title-price {
  color: var(--c-primary);
  font-size: 1.15em;
}
.hero-v4__lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-ink-soft);
  margin-bottom: 24px;
}
.hero-v4__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero-v4__badge {
  background: #fff;
  border: 1px solid var(--c-primary);
  color: var(--c-primary);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
}
.hero-v4__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* hero visual: 抽象グラフィック（巨大「0円」＋浮遊チップ） */
.hero-v4__visual { position: relative; }
.hero-v4__graphic {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-v4__orbits {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-v4__orbit {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1.5px dashed rgba(254, 109, 3, 0.18);
  transform: translate(-50%, -50%);
}
.hero-v4__orbit--1 { width: 70%; height: 70%; }
.hero-v4__orbit--2 { width: 88%; height: 88%; border-style: solid; border-color: rgba(254, 109, 3, 0.08); }
.hero-v4__orbit--3 {
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(254, 109, 3, 0.10) 0%, rgba(254, 109, 3, 0) 65%);
  border: none;
}
.hero-v4__zero {
  position: relative;
  display: flex;
  align-items: baseline;
  z-index: 2;
  filter: drop-shadow(0 20px 48px rgba(254, 109, 3, 0.28));
}
.hero-v4__zero-char {
  font-size: clamp(180px, 28vw, 360px);
  font-weight: 900;
  line-height: 0.85;
  background: linear-gradient(135deg, #ff8a3d 0%, #fe6d03 55%, #d75700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.05em;
}
.hero-v4__zero-unit {
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 900;
  color: var(--c-ink);
  margin-left: 6px;
}
.hero-v4__chip {
  position: absolute;
  background: #fff;
  color: var(--c-primary);
  border: 1.5px solid rgba(254, 109, 3, 0.25);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  z-index: 3;
  white-space: nowrap;
}
.hero-v4__chip::before {
  content: "0円";
  display: inline-block;
  background: var(--c-primary);
  color: #fff;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 11px;
  margin-right: 6px;
}
.hero-v4__chip--1 { top: 8%; left: 4%; transform: rotate(-6deg); }
.hero-v4__chip--2 { top: 18%; right: 2%; transform: rotate(5deg); }
.hero-v4__chip--3 { bottom: 22%; left: 0%; transform: rotate(3deg); }
.hero-v4__price {
  position: absolute;
  right: -4%;
  bottom: 4%;
  background: linear-gradient(135deg, var(--c-ink) 0%, #333 100%);
  color: #fff;
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.22);
  display: flex;
  align-items: baseline;
  gap: 4px;
  transform: rotate(-3deg);
  z-index: 3;
}
.hero-v4__price-mo { font-size: 13px; opacity: 0.8; }
.hero-v4__price-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--c-accent, #FFD503);
}
.hero-v4__price-yen { font-size: 13px; opacity: 0.9; }

@media (max-width: 767px) {
  .hero-v4__visual { display: none; }
}

/* ============================================================
   INSTALLMENT BAND (新設: 分割払い訴求)
   ============================================================ */
.installment {
  padding: 96px 20px;
  background: linear-gradient(180deg, #fff 0%, var(--c-bg-band) 100%);
  position: relative;
}
.installment__head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.installment__eyebrow {
  display: inline-block;
  background: var(--c-primary);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.installment__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.5;
  color: var(--c-ink);
  margin-bottom: 16px;
}
.installment__sub {
  font-size: 15px;
  color: var(--c-ink-soft);
  line-height: 1.9;
}
.installment__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto 72px;
}
.installment__point {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.installment__point:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.installment__point-num {
  font-size: 14px;
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.installment__point-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--c-ink);
  margin-bottom: 12px;
}
.installment__point-desc {
  font-size: 14px;
  color: var(--c-ink-soft);
  line-height: 1.8;
}

/* simulation card */
.installment__sim {
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line);
}
.installment__sim-head {
  text-align: center;
  margin-bottom: 32px;
}
.installment__sim-badge {
  display: inline-block;
  background: var(--c-cta);
  color: #fff;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.installment__sim-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--c-ink);
}
.installment__sim-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.installment__sim-card {
  background: var(--c-bg-soft);
  border-radius: 16px;
  padding: 28px 24px;
  border: 2px solid transparent;
  position: relative;
}
.installment__sim-card--accent {
  background: linear-gradient(180deg, #FFF1E2 0%, #fff 100%);
  border-color: var(--c-primary);
}
.installment__sim-card-tag {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--c-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
}
.installment__sim-plan {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 4px;
}
.installment__sim-total {
  font-size: 13px;
  color: var(--c-ink-soft);
  margin-bottom: 16px;
}
.installment__sim-calc {
  display: grid;
  grid-template-columns: auto 1fr auto auto 1fr;
  align-items: baseline;
  gap: 6px 10px;
  padding: 16px 0;
  border-top: 1px dashed var(--c-line);
  border-bottom: 1px dashed var(--c-line);
  margin-bottom: 16px;
}
.installment__sim-calc-sub {
  font-size: 12px;
  color: var(--c-ink-soft);
  grid-column: span 1;
  text-align: left;
}
.installment__sim-calc-main {
  font-size: 18px;
  font-weight: 900;
  color: var(--c-ink);
}
.installment__sim-calc-plus {
  font-size: 18px;
  font-weight: 900;
  color: var(--c-primary);
  text-align: center;
}
.installment__sim-result {
  font-size: 15px;
  color: var(--c-ink);
  text-align: center;
}
.installment__sim-result strong {
  color: var(--c-primary);
  font-size: 22px;
  font-weight: 900;
  margin: 0 4px;
}
.installment__sim-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--c-ink-soft);
  text-align: center;
}

/* ============================================================
   PRICING V4 (簡易版)
   ============================================================ */
.pricing-v4 {
  padding: 96px 20px;
  background: #fff;
}
.pricing-v4__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.pricing-v4__card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-v4__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-v4__card--featured {
  border: 2px solid var(--c-primary);
  box-shadow: 0 12px 40px rgba(254,109,3,0.15);
  transform: translateY(-8px);
}
.pricing-v4__card-ribbon {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 6px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(254,109,3,0.35);
}
.pricing-v4__card-head {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-line);
  margin-bottom: 24px;
}
.pricing-v4__card-name {
  font-size: 22px;
  font-weight: 900;
  color: var(--c-ink);
  margin-bottom: 4px;
}
.pricing-v4__card-sub {
  font-size: 13px;
  color: var(--c-ink-soft);
}
.pricing-v4__card-price {
  text-align: center;
  margin-bottom: 24px;
}
.pricing-v4__card-initial {
  display: inline-block;
  background: var(--c-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.pricing-v4__card-monthly {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--c-ink);
}
.pricing-v4__card-monthly span {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-ink-soft);
}
.pricing-v4__card-monthly strong {
  font-size: 40px;
  font-weight: 900;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}
.pricing-v4__card-monthly-note {
  font-size: 12px;
  color: var(--c-ink-soft);
  margin-top: 2px;
}
.pricing-v4__card-total {
  font-size: 12px;
  color: var(--c-ink-soft);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--c-line);
}
.pricing-v4__card-features {
  flex: 1;
  margin-bottom: 24px;
}
.pricing-v4__card-features li {
  font-size: 14px;
  color: var(--c-ink);
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px dashed var(--c-line);
}
.pricing-v4__card-features li:last-child { border-bottom: 0; }
.pricing-v4__card-features li::before {
  content: "";
  position: absolute;
  left: 4px; top: 14px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--c-cta);
  border-bottom: 2px solid var(--c-cta);
  transform: rotate(-45deg);
}
.pricing-v4__card-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--c-primary);
  color: var(--c-primary);
  font-weight: 700;
  transition: all 0.3s ease;
}
.pricing-v4__card-btn:hover {
  background: var(--c-primary);
  color: #fff;
}
.pricing-v4__card-btn--accent {
  background: var(--c-primary);
  color: #fff;
}
.pricing-v4__card-btn--accent:hover {
  background: #e55e00;
  border-color: #e55e00;
}

/* ============================================================
   REASONS (6カード)
   ============================================================ */
.reasons {
  padding: 96px 20px;
  background: var(--c-bg-soft);
}
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.reasons__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--c-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.reasons__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.reasons__card-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.reasons__card-title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--c-ink);
  margin-bottom: 12px;
}
.reasons__card-desc {
  font-size: 14px;
  color: var(--c-ink-soft);
  line-height: 1.9;
}

/* ============================================================
   WORKS V4 (簡略版)
   ============================================================ */
.works {
  padding: 96px 20px;
  background: #fff;
}
.works-v4__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.works-v4__grid--5 {
  grid-template-columns: 1fr;
  max-width: 1200px;
  gap: 32px;
}
@media (min-width: 720px) {
  .works-v4__grid--5 { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (min-width: 1080px) {
  .works-v4__grid--5 {
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    max-width: 1240px;
  }
  .works-v4__grid--5 > .works-v4__card:nth-child(1) { grid-column: 1 / span 2; }
  .works-v4__grid--5 > .works-v4__card:nth-child(2) { grid-column: 3 / span 2; }
  .works-v4__grid--5 > .works-v4__card:nth-child(3) { grid-column: 5 / span 2; }
  .works-v4__grid--5 > .works-v4__card:nth-child(4) { grid-column: 2 / span 2; }
  .works-v4__grid--5 > .works-v4__card:nth-child(5) { grid-column: 4 / span 2; }
}
.works-v4__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.works-v4__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.works-v4__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f2ed;
}
.works-v4__thumb img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
}
.works-v4__info {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.works-v4__tag {
  background: var(--c-primary-light);
  color: var(--c-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.works-v4__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-ink);
}

/* --- Mockup（リアルなMacBook風 + iPhone風） --- */
.works-v4__mockup {
  position: relative;
  padding: 36px 28px 72px;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.06) 0%, transparent 60%),
    linear-gradient(145deg, #f7f5f0 0%, #e8e4dc 100%);
  aspect-ratio: 16 / 11;
}
/* MacBook風ラップトップ */
.works-v4__browser {
  position: relative;
  width: 90%;
  margin: 0 auto;
  background: #1d1d1f;
  border-radius: 10px 10px 4px 4px;
  padding: 10px 10px 14px;
  box-shadow:
    0 14px 28px rgba(0,0,0,0.22),
    0 4px 8px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
.works-v4__browser::after {
  /* MacBookキーボード台座 */
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -14px;
  height: 14px;
  background: linear-gradient(180deg, #c9c7c0 0%, #a8a6a0 50%, #8d8b86 100%);
  border-radius: 0 0 40% 40% / 0 0 100% 100%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.18);
}
.works-v4__browser::before {
  /* キーボード凹み */
  content: "";
  position: absolute;
  left: 42%;
  right: 42%;
  bottom: -14px;
  height: 6px;
  background: #6d6b66;
  border-radius: 0 0 40% 40% / 0 0 100% 100%;
  z-index: 1;
}
.works-v4__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #3a3a3c;
  padding: 7px 10px;
  border-radius: 5px 5px 0 0;
  border-bottom: 1px solid rgba(0,0,0,0.4);
}
.works-v4__dot {
  width: 9px; height: 9px; border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.2);
}
.works-v4__dot--r { background: #ff5f56; }
.works-v4__dot--y { background: #ffbd2e; }
.works-v4__dot--g { background: #27c93f; }
.works-v4__url {
  flex: 1;
  margin-left: 8px;
  background: #1e1e1e;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  color: #c8c8c8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", monospace;
  text-align: center;
}
.works-v4__screen {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #fafafa;
  border-radius: 0 0 4px 4px;
}
.works-v4__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
/* iPhone風スマホ */
.works-v4__phone {
  position: absolute;
  right: 14px;
  bottom: 6px;
  width: 24%;
  aspect-ratio: 9 / 19;
  background: linear-gradient(145deg, #2a2a2d 0%, #0a0a0b 100%);
  border-radius: 22px;
  padding: 5px;
  box-shadow:
    0 18px 32px rgba(0,0,0,0.32),
    0 4px 8px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(0,0,0,0.4);
  border: 2px solid #1a1a1d;
}
.works-v4__phone::before {
  /* サイドボタン（音量）左側 */
  content: "";
  position: absolute;
  left: -3px;
  top: 24%;
  width: 3px;
  height: 12%;
  background: #1a1a1d;
  border-radius: 2px 0 0 2px;
  box-shadow: 0 18% 0 #1a1a1d, 0 36% 0 #1a1a1d;
}
.works-v4__phone::after {
  /* サイドボタン（電源）右側 */
  content: "";
  position: absolute;
  right: -3px;
  top: 28%;
  width: 3px;
  height: 14%;
  background: #1a1a1d;
  border-radius: 0 2px 2px 0;
}
.works-v4__phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 8px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.8);
}
.works-v4__phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 17px;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.3);
}
.works-v4__phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
@media (max-width: 767px) {
  .works-v4__mockup { padding: 24px 20px 52px; }
  .works-v4__url { font-size: 10px; }
  .works-v4__phone { width: 26%; right: 10px; }
}

/* ============================================================
   FLOW V4
   ============================================================ */
.flow-v4 {
  padding: 96px 20px;
  background: var(--c-bg-soft);
}
.flow-v4__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.flow-v4__step {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.flow-v4__step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.flow-v4__step-title {
  font-size: 16px;
  font-weight: 900;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.flow-v4__step-desc {
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  padding: 80px 20px;
  background: #fff;
}
.cta-final__box {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--c-primary) 0%, #ff8a3d 100%);
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(254,109,3,0.3);
}
.cta-final__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.9;
  margin-bottom: 16px;
}
.cta-final__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
}
.cta-final__desc {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.95;
  margin-bottom: 32px;
}
.cta-final__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-v4 { padding: 120px 20px 60px; }
  .hero-v4__inner { grid-template-columns: 1fr; gap: 40px; }
  .installment__points { grid-template-columns: 1fr; }
  .installment__sim { padding: 32px 20px; }
  .installment__sim-body { grid-template-columns: 1fr; }
  .pricing-v4__grid { grid-template-columns: 1fr; }
  .pricing-v4__card--featured { transform: none; }
  .reasons__grid { grid-template-columns: 1fr; }
  .works-v4__grid { grid-template-columns: 1fr; }
  .flow-v4__steps { grid-template-columns: repeat(2, 1fr); }
  .cta-final__box { padding: 48px 24px; }
  .cta-final__btns { flex-direction: column; }
  .cta-final__btns .btn { width: 100%; }
  .hero-v4__ctas { flex-direction: column; }
  .hero-v4__ctas .btn { width: 100%; }
  .installment__sim-calc {
    grid-template-columns: auto 1fr;
    row-gap: 4px;
  }
  .installment__sim-calc-plus {
    grid-column: 1 / -1;
    padding: 4px 0;
  }
}
@media (max-width: 560px) {
  .flow-v4__steps { grid-template-columns: 1fr; }
  .hero-v4__title { font-size: 26px; }
  .installment, .pricing-v4, .reasons, .works, .flow-v4 { padding: 64px 16px; }
}

/* ==== SP hero enhancement (summary card + bg + scroll hint) ==== */
.hero-v4__summary-card { display: none; }
.hero-v4__scroll-hint { display: none; }

@media (max-width: 767px) {
  /* ヒーロー全体の背景を強化 */
  .hero-v4 {
    position: relative;
    background:
      radial-gradient(1200px 600px at 110% -10%, rgba(254,109,3,0.14) 0%, rgba(254,109,3,0) 55%),
      radial-gradient(800px 400px at -20% 110%, rgba(255,213,3,0.18) 0%, rgba(255,213,3,0) 60%),
      linear-gradient(180deg, #fffaf2 0%, #ffffff 60%);
    overflow: hidden;
  }
  .hero-v4::before {
    /* 右上の透かし「0」 */
    content: "0";
    position: absolute;
    top: -40px;
    right: -40px;
    font-size: 320px;
    font-weight: 900;
    line-height: 1;
    color: rgba(254,109,3,0.07);
    pointer-events: none;
    z-index: 0;
  }
  .hero-v4 { padding-left: 16px; padding-right: 16px; overflow-x: hidden; }
  .hero-v4__inner { position: relative; z-index: 1; min-width: 0; max-width: 100%; width: 100%; }
  .hero-v4__content { min-width: 0; max-width: 100%; width: 100%; }
  .hero-v4__lead { word-break: break-word; overflow-wrap: anywhere; max-width: 100%; }
  .hero-v4__title { word-break: break-word; max-width: 100%; }
  .hero-v4__campaign { max-width: 100%; flex-wrap: wrap; }
  .hero-v4__badges { display: none; }
  body { overflow-x: hidden; }

  /* サマリーカード */
  .hero-v4__summary-card {
    display: block;
    position: relative;
    margin: 20px 0 24px;
    background: #fff;
    border-radius: 18px;
    padding: 20px 14px 16px;
    box-shadow:
      0 18px 36px rgba(254,109,3,0.14),
      0 4px 10px rgba(0,0,0,0.06);
    border: 1px solid rgba(254,109,3,0.12);
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }
  .hero-v4__summary-corner {
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 0;
    border-style: solid;
    border-width: 36px 36px 0 0;
    border-color: var(--c-primary, #FE6D03) transparent transparent transparent;
  }
  .hero-v4__summary-row {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 10px;
    align-items: center;
  }
  .hero-v4__summary-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    min-width: 0;
  }
  .hero-v4__summary-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--c-text-light, #666);
    letter-spacing: 0.04em;
  }
  .hero-v4__summary-value {
    font-size: clamp(30px, 10.5vw, 42px);
    font-weight: 900;
    color: var(--c-ink, #1A1A1A);
    line-height: 1;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }
  .hero-v4__summary-value small {
    font-size: 14px;
    font-weight: 800;
    margin-left: 1px;
  }
  .hero-v4__summary-value--zero {
    background: linear-gradient(135deg, #ff8a3d 0%, #fe6d03 60%, #d75700 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-v4__summary-value--zero small {
    -webkit-text-fill-color: var(--c-ink, #1A1A1A);
    color: var(--c-ink, #1A1A1A);
  }
  .hero-v4__summary-note {
    font-size: 10px;
    color: var(--c-text-light, #888);
    margin-top: 2px;
  }
  .hero-v4__summary-divider {
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.12), transparent);
    justify-self: center;
  }
  .hero-v4__summary-foot {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px dashed rgba(254,109,3,0.25);
    flex-wrap: wrap;
  }
  .hero-v4__summary-chip {
    background: #FFF1E2;
    color: var(--c-primary, #FE6D03);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
  }
  .hero-v4__summary-chip::before {
    content: "✓";
    margin-right: 3px;
    font-weight: 900;
  }

  /* CTAをSPで縦並び + フル幅寄り */
  .hero-v4__ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
  }
  .hero-v4__ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
  .hero-v4__ctas .btn--outline {
    padding: 12px 20px;
    font-size: 13px;
  }

  /* スクロールヒント */
  .hero-v4__scroll-hint {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 20px auto 0;
    color: var(--c-text-light, #888);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    animation: heroScrollHint 2s ease-in-out infinite;
  }
  .hero-v4__scroll-arrow {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--c-primary, #FE6D03);
    border-bottom: 2px solid var(--c-primary, #FE6D03);
    transform: rotate(45deg);
  }
  @keyframes heroScrollHint {
    0%, 100% { transform: translateY(0); opacity: 0.75; }
    50% { transform: translateY(6px); opacity: 1; }
  }
}

/* ==== Hero photo (画像ベースのヒーロー) ==== */
.hero-v4__photo {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18), 0 8px 20px rgba(254,109,3,0.12);
  aspect-ratio: 3 / 4;
  background: #eee;
}
.hero-v4__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-v4__photo-badge {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  top: 18px;
  left: 18px;
}
.hero-v4__photo-badge--month {
  top: auto;
  left: auto;
  bottom: 18px;
  right: 18px;
  background: #1a1a1a;
  color: #fff;
}
.hero-v4__photo-badge-label {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.04em;
}
.hero-v4__photo-badge--month .hero-v4__photo-badge-label {
  color: rgba(255,255,255,0.7);
}
.hero-v4__photo-badge-value {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ff8a3d 0%, #fe6d03 60%, #d75700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-v4__photo-badge--month .hero-v4__photo-badge-value {
  background: none;
  -webkit-text-fill-color: #FFD503;
  color: #FFD503;
  font-size: 26px;
}
.hero-v4__photo-badge-value small {
  font-size: 14px;
  font-weight: 800;
  margin-left: 2px;
  -webkit-text-fill-color: #1a1a1a;
  color: #1a1a1a;
}
.hero-v4__photo-badge--month .hero-v4__photo-badge-value small {
  -webkit-text-fill-color: #fff;
  color: #fff;
}

/* ==== Reasons (画像カード版) ==== */
.reasons__grid--photo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.reasons__card--photo {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.reasons__card--photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.1);
}
.reasons__card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f2efe9;
}
.reasons__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.reasons__card--photo:hover .reasons__card-photo img {
  transform: scale(1.04);
}
.reasons__card-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reasons__card-index {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--c-primary, #FE6D03);
  letter-spacing: 0.12em;
  background: #FFF1E2;
  padding: 3px 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.reasons__card--photo .reasons__card-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--c-ink, #1A1A1A);
  margin: 0;
}
.reasons__card--photo .reasons__card-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--c-ink-soft, #4A4A4A);
  margin: 0;
}
@media (max-width: 1024px) {
  .reasons__grid--photo { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reasons__grid--photo { grid-template-columns: 1fr; gap: 20px; }
  .reasons__card-photo { aspect-ratio: 16 / 10; }
}

/* ==== Final CTA with photo bg ==== */
.cta-final--photo {
  color: #fff;
  position: relative;
}
.cta-final--photo .cta-final__box {
  background: transparent;
  color: #fff;
}
.cta-final--photo .cta-final__title,
.cta-final--photo .cta-final__eyebrow,
.cta-final--photo .cta-final__desc {
  color: #fff;
}
.cta-final--photo .btn--outline {
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.cta-final--photo .btn--outline:hover {
  background: rgba(255,255,255,0.12);
}

/* ==== SP overrides for hero photo ==== */
@media (max-width: 767px) {
  /* SPではヒーロービジュアル（写真）も表示する */
  .hero-v4__visual { display: block; margin-top: 20px; }
  .hero-v4__photo { aspect-ratio: 4 / 5; max-width: 100%; }
  .hero-v4__photo-badge { padding: 10px 14px; top: 14px; left: 14px; }
  .hero-v4__photo-badge--month { bottom: 14px; right: 14px; }
  .hero-v4__photo-badge-value { font-size: 28px; }
  .hero-v4__photo-badge--month .hero-v4__photo-badge-value { font-size: 22px; }
  .hero-v4__photo-badge-value small { font-size: 13px; }
  /* 背景透かし「0」は写真と被って邪魔なので消す */
  .hero-v4::before { display: none; }
  /* SP時はhero内の順序: コンテンツ → 写真 にする（HTML順） */
  .hero-v4__inner { display: flex; flex-direction: column; gap: 0; }
  /* サマリーカードは写真に吸収された役割なので非表示 */
  .hero-v4__summary-card { display: none; }
  .hero-v4__scroll-hint { margin-top: 24px; }
}

/* ==== Hero 0円主役化 + スマホスクロール演出 ==== */
.hero-v4__eyebrow {
  margin: 0 0 10px;
  display: block;
}
.hero-v4__eyebrow-tag {
  display: inline-block;
  background: var(--c-primary-light, #FFF1E2);
  color: var(--c-primary, #FE6D03);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.hero-v4__title-big {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  font-weight: 900;
  line-height: 1;
  margin: 0 0 20px;
  color: var(--c-ink, #1A1A1A);
}
.hero-v4__title-zero {
  font-size: clamp(104px, 18vw, 200px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #ff8a3d 0%, #fe6d03 55%, #d75700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 14px 30px rgba(254,109,3,0.28));
  display: inline-block;
}
.hero-v4__title-zero small {
  font-size: 0.35em;
  font-weight: 900;
  margin-left: 4px;
  -webkit-text-fill-color: var(--c-ink, #1A1A1A);
  color: var(--c-ink, #1A1A1A);
  background: none;
}
.hero-v4__title-rest {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--c-ink, #1A1A1A);
}
.hero-v4__lead-price {
  color: var(--c-primary, #FE6D03);
  font-size: 1.1em;
  font-weight: 900;
}

/* 旧写真関連は非表示にして戻せる状態に */
.hero-v4__photo,
.hero-v4__photo-badge { display: none !important; }

/* スマホフレーム＋自動スクロール */
.hero-v4__phone-scroll {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
  padding: 24px 10px;
}
.hero-v4__phone-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 50% 50%, rgba(254,109,3,0.25) 0%, rgba(254,109,3,0) 60%);
  z-index: 0;
  pointer-events: none;
}
.hero-v4__phone-frame {
  position: relative;
  aspect-ratio: 9 / 19;
  background: linear-gradient(145deg, #2a2a2d 0%, #0a0a0b 100%);
  border-radius: 38px;
  padding: 9px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.28),
    0 10px 20px rgba(254,109,3,0.18),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(0,0,0,0.4);
  border: 2px solid #1a1a1d;
  z-index: 1;
  transform: rotate(-2deg);
  transition: transform .6s ease;
}
.hero-v4__phone-frame:hover { transform: rotate(0deg); }
.hero-v4__phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 20px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.8);
}
.hero-v4__phone-window {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1.5px rgba(0,0,0,0.35);
}
.hero-v4__phone-track {
  width: 100%;
  height: auto;
  display: block;
  animation: heroPhoneScroll 22s cubic-bezier(0.6, 0, 0.4, 1) infinite alternate;
  will-change: transform;
}
@keyframes heroPhoneScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(calc(-100% + 540px)); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v4__phone-track { animation: none; }
}
.hero-v4__float-chip {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  color: var(--c-primary, #FE6D03);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  border: 1.5px solid rgba(254,109,3,0.25);
  z-index: 2;
  white-space: nowrap;
}
.hero-v4__float-chip::before {
  content: "✓";
  margin-right: 4px;
  font-weight: 900;
}
.hero-v4__float-chip--a { top: 12%; left: -24px; transform: rotate(-4deg); }
.hero-v4__float-chip--b { bottom: 14%; right: -24px; transform: rotate(5deg); }

/* ==== SP調整 ==== */
@media (max-width: 767px) {
  .hero-v4__visual { display: block; margin-top: 28px; }
  .hero-v4__phone-scroll { max-width: 240px; padding: 20px 6px; }
  .hero-v4__phone-frame { transform: none; }
  .hero-v4__title-big { justify-content: flex-start; gap: 8px; flex-direction: column; align-items: flex-start; }
  .hero-v4__title-zero { font-size: clamp(100px, 38vw, 160px); }
  .hero-v4__title-rest { font-size: clamp(20px, 5.8vw, 26px); display: block; width: 100%; }
  .hero-v4__float-chip { font-size: 11px; padding: 6px 10px; }
  .hero-v4__float-chip--a { left: -14px; }
  .hero-v4__float-chip--b { right: -14px; }
  /* SPで旧サマリーカードは非表示 */
  .hero-v4__summary-card { display: none !important; }
  .hero-v4__scroll-hint { display: none; }
}

/* ==== Hero rail: 複数デモ横スクロールマーキー ==== */
.hero-v4__phone-scroll { display: none !important; } /* 旧実装を無効化 */

.hero-v4__rail {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.hero-v4__rail::before,
.hero-v4__rail::after {
  /* 光彩 */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(254,109,3,0.18) 0%, rgba(254,109,3,0) 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-v4__rail-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: heroRailSlide 36s linear infinite;
  padding: 6px 11px;
  position: relative;
  z-index: 1;
}
@keyframes heroRailSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v4__rail-track { animation: none; }
}
.hero-v4__rail:hover .hero-v4__rail-track {
  animation-play-state: paused;
}
.hero-v4__rail-card {
  flex: 0 0 auto;
  position: relative;
  width: 172px;
  aspect-ratio: 9 / 19.5;
  background: linear-gradient(145deg, #2a2a2d 0%, #0a0a0b 100%);
  border-radius: 26px;
  padding: 7px;
  box-shadow:
    0 24px 48px rgba(0,0,0,0.22),
    0 6px 14px rgba(254,109,3,0.14),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(0,0,0,0.4);
  border: 2px solid #1a1a1d;
}
.hero-v4__rail-notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 14px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.8);
}
.hero-v4__rail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  display: block;
  background: #fff;
}

/* SP */
@media (max-width: 767px) {
  .hero-v4__rail { max-width: 100%; margin-top: 16px; }
  .hero-v4__rail-card { width: 148px; }
  .hero-v4__float-chip--a { top: 8%; left: 8px; }
  .hero-v4__float-chip--b { bottom: 8%; right: 8px; }
}
