/* ===== PC STYLES (min-width: 901px) ===== */

/* ── 変数 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --pink-deep:   #E8547A;
  --pink-mid:    #F07A98;
  --pink-soft:   #FAD4DF;
  --pink-pale:   #FEF0F4;
  --pink-blush:  #FDF5F7;
  --white:       #FFFFFF;
  --ink:         #2B1A22;
  --ink-mid:     #6B4F5A;
  --ink-light:   #B09AA4;
  --border:      rgba(232,84,122,0.12);
}
html { scroll-behavior: smooth; overflow-x: hidden; }
p { text-align: center; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
  max-width: 100%;
}

/* ── アニメーション ── */
@keyframes scroll-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-reviews { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── APPEAR ── */
.appear { opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s ease; }
.appear.in { opacity: 1; transform: none; }

/* ── SECTION DIVIDER ── */
.section-divider {
  height: 80px;
  background: linear-gradient(to bottom, var(--white), var(--pink-blush));
}

/* ── RIBBON ── */
.ribbon { background: var(--pink-deep); padding: 16px 0; overflow: hidden; }
.ribbon-inner {
  display: flex; gap: 64px;
  animation: scroll-left 40s linear infinite;
  width: max-content;
}
.ribbon-item {
  display: flex; align-items: center; gap: 20px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); white-space: nowrap; font-weight: 400;
}
.ribbon-sep { color: rgba(255,255,255,0.4); font-size: 18px; }

/* ── REVIEWS ── */
.reviews-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.reviews-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: scroll-reviews 56s linear infinite;
}
.reviews-track.paused { animation-play-state: paused; }
.review-card {
  width: 280px; flex-shrink: 0;
  background: var(--white); border-radius: 20px;
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: 0 4px 20px rgba(232,84,122,0.07);
}
.review-avatar { width: 120%; height: 350px; overflow: hidden; }
.review-avatar img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 50%;
  transition: transform 0.4s ease;
}
.review-card:hover .review-avatar img { transform: scale(1.04); }
.review-body { padding: 20px 20px 24px; }
.review-stars { color: var(--pink-deep); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.review-body .review-text { font-size: 20px; color: var(--ink-mid); line-height: 1.9; margin-bottom: 14px; text-align: left; }
.review-name { font-size: 18px; font-weight: 600; color: var(--ink-light); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; padding: 32px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  background: none; border: none; cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 22px; font-weight: 400; color: var(--ink); text-align: left;
}
.faq-icon {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--pink-soft); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--pink-deep); transition: transform 0.25s; }
.faq-item.open .faq-icon { background: var(--pink-deep); border-color: var(--pink-deep); }
.faq-item.open .faq-icon svg { stroke: white; transform: rotate(45deg); }
.faq-a {
  font-size: 20px; color: var(--ink-mid); line-height: 2; text-align: left;
  max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.4s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 32px; }

/* SP専用要素を非表示 */
.nav-hamburger-sp { display: none; }
.sp-overlay { display: none; }
.sp-drawer { display: none; }
.hero-caption-sp { display: none; }
/* 901〜1120px専用：デフォルト非表示 */
.hero-woman-img { display: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 40px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Caveat', cursive;
  font-weight: 700; font-size: 40px; letter-spacing: 0.04em;
  color: var(--ink); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-links-pc { display: flex; gap: 50px; list-style: none; }
.nav-links-pc a { font-size: 20px; letter-spacing: 0.12em; color: var(--ink-mid); text-decoration: none; transition: color 0.2s; }
.nav-links-pc a:hover { color: var(--pink-deep); }
.nav-cta-pc {
  font-size: 20px; letter-spacing: 0.1em;
  padding: 18px 34px; border-radius: 100px;
  background: var(--pink-deep); color: var(--white);
  text-decoration: none; font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta-pc:hover { background: var(--pink-mid); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 0; overflow: hidden;
}
.hero-left-pc {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 100px 40px 100px 40px;
  background: var(--pink-pale);
  position: relative; text-align: center;
}
.hero-left-pc::after {
  content: '';
  position: absolute; bottom: 0; right: -1px; top: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--white));
  pointer-events: none;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink-deep); margin-bottom: 28px; font-weight: 500;
}
.hero-heading {
  display: flex; flex-direction: column; align-items: center;
  font-family: 'Playfair Display', serif;
  color: var(--ink); margin-bottom: 24px; gap: 4px;
}
.hero-heading-small {
  font-size: 45px; font-weight: 700;
  color: var(--ink-mid); letter-spacing: 0.25em;
}
.hero-heading-main {
  font-size: 180px; font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #B8174A 0%, #F7A8C0 50%, #B8174A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-heading-accent {
  font-size: 62px; font-weight: 700;
  color: var(--ink); letter-spacing: 0.1em; margin-top: 6px;
}
.hero-sub-heading {
  font-size: 20px; color: var(--ink-mid);
  margin-bottom: 40px; line-height: 2;
  max-width: 560px; list-style: none; text-align: left;
}
.check-item { display: flex; align-items: flex-start; gap: 8px; }
.check-item + .check-item { margin-top: 6px; }
.check-icon { color: var(--pink-deep); font-weight: 700; flex-shrink: 0; }
.hero-price-box {
  display: flex; flex-direction: column; align-items: center;
  background: var(--white);
  border: 2px solid var(--pink-deep); border-radius: 20px;
  padding: 36px 52px 28px; margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(232,84,122,0.18);
  position: relative; width: 100%; max-width: 600px;
}
.hero-price-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--pink-deep); color: var(--white);
  font-size: 26px; font-weight: 700; letter-spacing: 0.2em;
  padding: 5px 22px; border-radius: 100px; white-space: nowrap;
}
.hero-price-label { font-size: 26px; color: var(--ink-mid); letter-spacing: 0.08em; margin-top: 4px; }
.hero-price-row { display: flex; align-items: baseline; gap: 4px; margin-top: 6px; }
.hero-price-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 62px; font-weight: 400; color: var(--pink-deep); line-height: 1;
}
.hero-price-unit { font-size: 26px; color: var(--ink-mid); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── BUTTONS ── */
.btn-pink {
  display: inline-block; font-size: 20px; font-weight: 500;
  padding: 16px 36px; border-radius: 100px;
  background: var(--pink-deep); color: var(--white);
  text-decoration: none; letter-spacing: 0.06em;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(232,84,122,0.3);
}
.btn-pink:hover { background: var(--pink-mid); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,84,122,0.35); }
.btn-outline {
  display: inline-block; font-size: 20px; font-weight: 400;
  padding: 15px 36px; border-radius: 100px;
  border: 1px solid var(--pink-soft);
  color: var(--pink-deep); text-decoration: none;
  letter-spacing: 0.06em; transition: all 0.2s;
}
.btn-outline:hover { background: var(--pink-pale); }
.btn-white {
  display: inline-block; font-size: 18px; font-weight: 500;
  padding: 22px 56px; border-radius: 100px;
  background: var(--white); color: var(--pink-deep);
  text-decoration: none; letter-spacing: 0.06em;
  transition: all 0.2s; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.btn-white-outline {
  display: inline-block; font-size: 18px; font-weight: 400;
  padding: 21px 56px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.5); color: var(--white);
  text-decoration: none; letter-spacing: 0.06em; transition: all 0.2s;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.12); }

/* ── HERO PHOTO ── */
.hero-photo {
  min-height: calc(100vh - 68px);
  position: relative; overflow: hidden;
  background: var(--pink-pale);
}
.hero-photo-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: left center; display: block;
}
.hero-photo-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, transparent 55%, var(--pink-pale) 100%);
}

/* ── SECTION CHROME ── */
section { padding: 96px 72px; }
.s-tag {
  display: flex; align-items: center; gap: 10px;
  width: fit-content; margin-inline: auto; margin-bottom: 20px;
  font-size: 20px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--pink-deep); font-weight: 500;
}
.s-tag::before, .s-tag::after { content: ''; width: 28px; height: 1px; background: var(--pink-deep); }
.s-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 400; line-height: 1.25;
  color: var(--ink); margin-bottom: 16px;
}

/* ── STATS ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--border); }
.stat { padding: 44px 40px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 44px; color: var(--pink-deep); line-height: 1; margin-bottom: 6px; }
.stat-num sup { font-size: 20px; vertical-align: super; }
.stat-label { font-size: 12px; color: var(--ink-light); line-height: 1.6; }

/* ── WORRIES ── */
.worries { background: var(--white); text-align: center; }
.worries-scene { margin-top: 48px; display: flex; flex-direction: column; align-items: center; }
.worries-row { display: grid; grid-template-columns: 1fr 1fr; gap: 300px; width: 100%; max-width: 1400px; }
.worries-center-img { width: 600px; margin: 4px auto; position: relative; }
.worries-center-img img { width: 100%; height: auto; display: block; }
.worries-center-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%; background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.worry-bubble {
  background: var(--pink-blush); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 32px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; position: relative; text-align: center;
  transition: box-shadow 0.2s;
}
.worry-bubble:hover { box-shadow: 0 6px 24px rgba(232,84,122,0.1); }
/* 吹き出しテール 上バブル：下向き */
.worry-bubble--tl::before, .worry-bubble--tr::before {
  content: ''; position: absolute; top: 100%;
  width: 0; height: 0;
  border-left: 10px solid transparent; border-right: 10px solid transparent;
  border-top: 12px solid var(--border);
}
.worry-bubble--tl::after, .worry-bubble--tr::after {
  content: ''; position: absolute; top: 100%;
  width: 0; height: 0;
  border-left: 9px solid transparent; border-right: 9px solid transparent;
  border-top: 10px solid var(--pink-blush);
}
.worry-bubble--tl::before { right: 10px; }
.worry-bubble--tl::after  { right: 11px; }
.worry-bubble--tr::before { left: 10px; }
.worry-bubble--tr::after  { left: 11px; }
/* 吹き出しテール 下バブル：上向き */
.worry-bubble--bl::before, .worry-bubble--br::before {
  content: ''; position: absolute; top: -12px;
  width: 0; height: 0;
  border-left: 10px solid transparent; border-right: 10px solid transparent;
  border-bottom: 12px solid var(--border);
}
.worry-bubble--bl::after, .worry-bubble--br::after {
  content: ''; position: absolute; top: -10px;
  width: 0; height: 0;
  border-left: 9px solid transparent; border-right: 9px solid transparent;
  border-bottom: 10px solid var(--pink-blush);
}
.worry-bubble--bl::before { right: 10px; }
.worry-bubble--bl::after  { right: 11px; }
.worry-bubble--br::before { left: 10px; }
.worry-bubble--br::after  { left: 11px; }
.worry-icon img { width: 36px; height: 36px; object-fit: contain; }
.worry-text { font-size: 28px; color: var(--ink-mid); line-height: 1.8; text-align: center; }
.worry-text strong { color: var(--ink); font-weight: 700; display: block; font-size: 1.3em; }
.worries-resolve { margin-top: 40px; display: flex; justify-content: center; }
.worries-resolve-text {
  display: inline-block; background: var(--pink-deep); color: var(--white);
  font-size: 20px; font-weight: 700; letter-spacing: 0.04em;
  padding: 20px 56px; border-radius: 100px;
  box-shadow: 0 6px 24px rgba(232,84,122,0.3);
}

/* ── CONCEPT ── */
.concept { background: var(--pink-blush); padding: 128px 96px; }
.concept .s-tag { margin-inline: 0; }
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.concept-lead { font-size: 14px; color: var(--ink-mid); line-height: 2; margin-bottom: 32px; text-align: left; }
.concept-lead strong { color: var(--pink-deep); font-weight: 700; font-size: 16px; background: linear-gradient(transparent 55%, var(--pink-soft) 55%); padding: 0 3px; letter-spacing: 0.04em; }
.concept-cards { display: flex; flex-direction: column; gap: 20px; }
.concept-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--white); border: 1.5px solid var(--pink-soft);
  border-left: 4px solid var(--pink-deep); border-radius: 16px;
  padding: 24px 28px; box-shadow: 0 4px 20px rgba(232,84,122,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.concept-card:hover { transform: translateX(4px); box-shadow: 0 6px 28px rgba(232,84,122,0.15); }
.concept-card-icon {
  width: 56px; height: 56px; flex-shrink: 0; border-radius: 14px;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-mid));
  color: white; font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(232,84,122,0.3); overflow: hidden; padding: 10px;
}
.concept-card-icon img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.concept-card-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: 0.02em; }
.concept-card-highlight { color: var(--pink-deep); font-size: 18px; font-weight: 800; }
.concept-card-desc { font-size: 12px; color: var(--ink-mid); line-height: 1.9; }
.concept-visual { position: relative; border-radius: 28px; overflow: hidden; width: 100%; height: 100%; margin: 0 auto; box-shadow: 0 12px 48px rgba(232,84,122,0.14); }
.concept-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── FEATURES ── */
.features { background: var(--pink-blush); text-align: center; }
.feature-name, .feature-desc { text-align: left; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.feature-card {
  background: var(--white); border-radius: 20px; padding: 48px 36px;
  border: 1px solid var(--border); transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 8px 32px rgba(232,84,122,0.1); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--pink-pale); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 24px; overflow: hidden;
}
.feature-icon:has(img) {
  width: calc(100% + 72px); height: 380px;
  border-radius: 14px 14px 0 0; margin: -48px -36px 24px; background: none;
}
.feature-icon img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.feature-name { font-size: 24px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.feature-desc { font-size: 22px; color: var(--ink-mid); line-height: 2; }

/* ── STEPS ── */
#flow { text-align: center; }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 64px 56px; margin-top: 80px;
  max-width: 1400px; margin-left: auto; margin-right: auto;
}
.step-item { text-align: center; padding: 0 24px; position: relative; }
.step-circle {
  width: 280px; height: 280px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--pink-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px; font-size: 40px;
  box-shadow: 0 6px 24px rgba(232,84,122,0.12); overflow: hidden;
}
.step-circle img { width: 100%; height: 100%; object-fit: cover; }
.step-item:not(:nth-child(3n))::after {
  content: '›'; position: absolute; top: 112px; right: -20px;
  font-size: 52px; color: var(--pink-soft); font-weight: 700; line-height: 1;
  pointer-events: none;
}
.step-name { font-size: 24px; font-weight: 500; color: var(--ink); margin-bottom: 12px; }
.step-desc { font-size: 20px; color: var(--ink-light); line-height: 1.9; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); overflow: hidden; text-align: center; }
.reviews-track-wrap { margin-top: 52px; }

/* ── FAQ ── */
.faq-bg { background: var(--pink-blush); text-align: center; }
.faq-wrap { max-width: 1100px; margin: 64px auto 0; }

/* ── ACCESS ── */
.access { background: var(--white); }
.access .s-tag { margin-inline: auto; }
.access .s-title { text-align: center; }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; margin-top: 52px; align-items: start; }
.access-card { background: var(--pink-blush); border-radius: 24px; padding: 40px; border: 1px solid var(--border); }
.access-row { display: flex; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.access-row:last-child { border-bottom: none; }
.access-key { font-size: 20px; letter-spacing: 0.1em; color: var(--pink-deep); font-weight: 500; white-space: nowrap; padding-top: 2px; min-width: 72px; }
.access-val { font-size: 20px; color: var(--ink-mid); line-height: 1.9; }
.map-area {
  border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 3;
  position: relative; box-shadow: 0 8px 40px rgba(232,84,122,0.12);
  border: 1px solid var(--border);
}
.map-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-label {
  position: absolute; bottom: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; color: var(--ink);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1); pointer-events: none;
}

/* ── CTA ── */
.cta-section {
  background: var(--pink-deep); padding: 120px 72px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.05);
}
.cta-section::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,0.05);
}
.cta-title {
  font-family: 'Playfair Display', serif; font-size: 64px;
  color: var(--white); line-height: 1.25; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.cta-sub { font-size: 24px; color: rgba(255,255,255,0.75); margin-bottom: 52px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 20px; justify-content: center; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
  background: var(--ink); padding: 48px 72px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 24px;
  color: var(--white); opacity: 0.6;
  display: flex; align-items: center; gap: 8px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 20px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--pink-mid); }

/* 901〜1699px：中間帯の調整 */
@media (min-width: 901px) and (max-width: 1699px) {
  /* NAV */
  nav { padding: 12px 28px; }
  .nav-logo { font-size: 20px; }
  .nav-links-pc { gap: 16px; }
  .nav-links-pc a { font-size: 12px; }
  .nav-cta-pc { font-size: 12px; padding: 8px 16px; }

  /* HERO */
  .hero-heading-main   { font-size: 120px; }
  .hero-heading-small  { font-size: 28px; }
  .hero-heading-accent { font-size: 40px; }
  .hero-tag            { font-size: 16px; }
  .hero-price-badge    { font-size: 18px; }
  .hero-price-label    { font-size: 18px; }
  .hero-price-num      { font-size: 48px; }
  .hero-price-unit     { font-size: 18px; }
  .hero-sub-heading    { font-size: 16px; }
  .btn-pink            { font-size: 16px; }
  .btn-outline         { font-size: 16px; }

  /* SECTION */
  section { padding: 80px 56px; }
  .s-title { font-size: 36px; }

  /* WORRIES */
  .worries-center-img { width: 380px; }
  .worry-text { font-size: 20px; }

  /* FEATURES */
  .feature-icon:has(img) { height: 300px; }
  .feature-name { font-size: 18px; }
  .feature-desc { font-size: 16px; }

  /* STEPS */
  .steps-grid {
    max-width: 960px;
    margin-left: auto; margin-right: auto;
  }
  .step-circle { width: 200px; height: 200px; }
  .step-item:not(:nth-child(3n))::after { top: 82px; font-size: 40px; }
  .step-name { font-size: 17px; }

  /* FAQ */
  .faq-q { font-size: 18px; }
  .faq-a { font-size: 16px; }

  /* ACCESS */
  .access-grid { gap: 48px; }
  .access-key  { font-size: 16px; }
  .access-val  { font-size: 16px; }

  /* CTA */
  .cta-section { padding: 80px 56px; }
  .cta-title   { font-size: 44px; }
  .cta-sub     { font-size: 18px; }

  /* FOOTER */
  footer { padding: 40px 56px; }
  .footer-logo    { font-size: 20px; }
  .footer-links a { font-size: 16px; }
}

/* 901〜1120px：狭いPC — ヒーローを1カラムに切り替え */
@media (min-width: 901px) and (max-width: 1120px) {
  /* NAV */
  nav { padding: 10px 20px; }
  .nav-logo { font-size: 17px; }
  .nav-links-pc { gap: 12px; }
  .nav-links-pc a { font-size: 11px; }
  .nav-cta-pc { font-size: 11px; padding: 7px 14px; }

  /* HERO：1カラム */
  .hero { grid-template-columns: 1fr; }
  .hero-photo   { display: none; }
  .hero-left-pc { order: 2; padding: 52px 40px; }
  .hero-left-pc::after { display: none; }
  .hero-price-box { max-width: 480px; }

  /* woman.png：テキスト上に表示 */
  .hero-woman-img {
    display: block;
    width: 100%;
    max-height: 40vw;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 16px;
    margin-top: 30px;
    margin-bottom: 32px;
  }

  .hero-heading-main   { font-size: 80px; }
  .hero-heading-small  { font-size: 22px; }
  .hero-heading-accent { font-size: 30px; }
  .hero-tag            { font-size: 13px; }
  .hero-price-badge    { font-size: 14px; }
  .hero-price-label    { font-size: 14px; }
  .hero-price-num      { font-size: 40px; }
  .hero-price-unit     { font-size: 14px; }
  .hero-sub-heading    { font-size: 14px; }
  .btn-pink            { font-size: 14px; }
  .btn-outline         { font-size: 14px; }

  /* WORRIES */
  .worries { padding-left: 32px; padding-right: 32px; }
  .worries-row { grid-template-columns: 260px 260px; width: fit-content; margin-left: auto; margin-right: auto; gap: 10vw; }
  .worries-center-img { width: 18vw; max-width: 200px; min-width: 160px; margin: -4px auto; }
  .worry-bubble { padding: 20px 18px; gap: 10px; }
  .worry-text { font-size: 15px; line-height: 1.7; }
  .worries-resolve-text { font-size: 15px; padding: 16px 40px; }

  /* FLOW / STEPS：2列・矢印非表示 */
  #flow { padding-left: 40px; padding-right: 40px; }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    margin-top: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .step-item:not(:nth-child(3n))::after { display: none; }
  .step-circle { width: 150px; height: 150px; }
  .step-item { padding: 0 12px; }
  .step-name { font-size: 13px; }

/* 1280〜1759px：大画面 — ヒーロー文字をvwでスケール */
@media (min-width: 1280px) and (max-width: 1759px) {
  /* NAV */
  nav { padding: 16px 40px; }
  .nav-logo { font-size: 28px; }
  .nav-links-pc { gap: 24px; }
  .nav-links-pc a { font-size: 14px; }
  .nav-cta-pc { font-size: 14px; padding: 12px 24px; }

  .hero-heading-main   { font-size: 10vw; }
  .hero-heading-small  { font-size: 2.4vw; }
  .hero-heading-accent { font-size: 3.6vw; }
  .hero-tag            { font-size: 1.1vw; }
  .hero-price-badge    { font-size: 1.4vw; }
  .hero-price-label    { font-size: 1.4vw; }
  .hero-price-num      { font-size: 3.8vw; }
  .hero-price-unit     { font-size: 1.4vw; }
  .hero-sub-heading    { font-size: 1.2vw; }
  .btn-pink            { font-size: 1.2vw; }
  .btn-outline         { font-size: 1.2vw; }

  /* セクション全体 */
  section { padding: 88px 64px; }
  .s-title { font-size: 40px; }

  /* WORRIES */
  .worries-center-img { width: 420px; }
  .worry-text { font-size: 22px; }

  /* FEATURES */
  .feature-icon:has(img) { height: 280px; }
  .feature-name { font-size: 20px; }
  .feature-desc { font-size: 17px; }

  /* FLOW / STEPS */
  .steps-grid {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .step-circle { width: 240px; height: 240px; }
  .step-item:not(:nth-child(3n))::after { top: 96px; font-size: 48px; }
  .step-name { font-size: 20px; }

  /* FAQ */
  .faq-q { font-size: 20px; }
  .faq-a { font-size: 18px; }

  /* ACCESS */
  .access-grid { gap: 56px; }
  .access-key { font-size: 18px; }
  .access-val { font-size: 18px; }

  /* CTA */
  .cta-section { padding: 88px 64px; }
  .cta-title { font-size: 52px; }
  .cta-sub { font-size: 20px; }

  /* FOOTER */
  footer { padding: 48px 64px; }
  .footer-logo { font-size: 22px; }
  .footer-links a { font-size: 18px; }
}

/* 1700〜2000px：大画面調整 */
@media (min-width: 1700px) and (max-width: 2000px) {
  /* NAV */
  nav { padding: 16px 40px; }
  .nav-logo { font-size: 30px; }
  .nav-links-pc { gap: 28px; }
  .nav-links-pc a { font-size: 15px; }
  .nav-cta-pc { font-size: 15px; padding: 14px 26px; }

  /* HERO */
  .hero-left-pc { padding-top: 1000px; }

  .hero-heading-main   { font-size: 190px; }
  .hero-heading-small  { font-size: 45px; }
  .hero-heading-accent { font-size: 62px; }
  .hero-tag            { font-size: 20px; }
  .hero-price-badge    { font-size: 24px; }
  .hero-price-label    { font-size: 24px; }
  .hero-price-num      { font-size: 60px; }
  .hero-price-unit     { font-size: 24px; }
  .hero-sub-heading    { font-size: 20px; }
  .btn-pink            { font-size: 20px; }
  .btn-outline         { font-size: 20px; }
}

/* 1760px以上：フルサイズ */
@media (min-width: 1760px) {
  .hero-heading-main   { font-size: 200px; }
  .hero-heading-small  { font-size: 45px; }
  .hero-heading-accent { font-size: 62px; }
  .hero-tag            { font-size: 26px; }
  .hero-price-badge    { font-size: 26px; }
  .hero-price-label    { font-size: 26px; }
  .hero-price-num      { font-size: 62px; }
  .hero-price-unit     { font-size: 26px; }
  .hero-sub-heading    { font-size: 20px; }
  .btn-pink            { font-size: 20px; }
  .btn-outline         { font-size: 20px; }

  /* FEATURES */
  .feature-icon:has(img) { height: 320px; }
}
