@charset "UTF-8";

/* =============================================================
   fitfit 651 LP - v3 Stylesheet (SP-first, Figma-accurate)
   Prefix: lp651-
   Mobile: 375px / Desktop: 768px+ (target 1280px)
   ============================================================= */

/* -------------------------------------------------------------
   0. BOEM共通パーツ非表示（広告専用LPのため回遊導線を消す）
   ------------------------------------------------------------- */
header.lc-header,
footer.lc-footer,
#cookieWrap { display: none !important; }

/* Channel.ioチャットは `#ch-plugin { display:block !important }` を自前で
   当てるため、詳細度を上げてbody起点で打ち消す */
body #ch-plugin,
body [id^="ch-plugin"] { display: none !important; visibility: hidden !important; }

.lc-content-body { padding: 0 !important; margin: 0 !important; }

/* -------------------------------------------------------------
   1. Reset
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; padding: 0; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4 { margin: 0; }
details { border: none; }
summary { cursor: pointer; }
summary::-webkit-details-marker { display: none; }
summary::marker { display: none; content: ""; }
hr { border: none; }

/* -------------------------------------------------------------
   2. Design Tokens
   ------------------------------------------------------------- */
:root {
  /* Colors */
  --brand: #BD1734;
  --brand-hover: #A01029;
  --muted: #755D5D;
  --ink-900: #1A1A1A;
  --ink-700: #333333;
  --ink-500: #666666;

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-cream: #F6F5F3;
  --bg-sand: #EEEAE9;
  --bg-warm: #FFF6F2;
  --bg-linen: #FAF6F1;
  --bg-footer: #755D5D;

  /* Fonts */
  --font-mincho: "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "HG明朝E", serif;
  --font-gothic: "YuGothic", "Yu Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --font-cormorant: "Cormorant", serif;

  /* Shadows */
  --shadow-card: 0 0 4px rgba(0,0,0,0.15);

  /* Spacing */
  --section-padding-sp: 64px 20px;
  --section-padding-pc: 100px 40px;
  --inner-max: 1080px;
}

/* -------------------------------------------------------------
   3. Base / Body
   ------------------------------------------------------------- */
.lp651 {
  font-family: var(--font-gothic);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-700);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* -------------------------------------------------------------
   4. Shared Components
   ------------------------------------------------------------- */

/* --- Eyebrow (section label) --- */
.lp651-eyebrow {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1.4px;
  line-height: 2;
  color: var(--brand);
  text-align: center;
  margin-bottom: 8px;
}
.lp651-eyebrow--white {
  color: rgba(255,255,255,0.9);
}

/* --- Section Title --- */
.lp651-section-title {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 24px;
  line-height: 2;
  color: var(--ink-900);
  text-align: center;
  margin-bottom: 40px;
}
.lp651-section-title--white {
  color: #FFFFFF;
}

/* --- CTA Button --- */
.lp651-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 32px;
  border-radius: 3px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.lp651-btn--primary {
  background-color: var(--brand);
  color: #FFFFFF;
}
.lp651-btn--primary:hover {
  background-color: var(--brand-hover);
}
.lp651-btn--white {
  background-color: #FFFFFF;
  color: var(--brand);
}
.lp651-btn--white:hover {
  background-color: #F5F5F5;
}

/* Inner container */
.lp651-inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================================
   5. HEADER
   ============================================================= */
.lp651-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.lp651-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 16px;
  max-width: var(--inner-max);
  margin: 0 auto;
}
.lp651-header__logo img {
  height: 28px;
  width: auto;
}

/* Hamburger (SP) */
.lp651-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  gap: 5px;
}
.lp651-header__hamburger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--ink-700);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.lp651-header__hamburger.is-active .lp651-header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp651-header__hamburger.is-active .lp651-header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.lp651-header__hamburger.is-active .lp651-header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav (PC) */
.lp651-header__nav {
  display: none;
}
.lp651-header__nav-list {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
}
.lp651-header__nav-list a:hover {
  color: var(--brand);
}
.lp651-header__nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 20px;
  background-color: var(--brand);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  margin-left: 24px;
  transition: background-color 0.2s;
}
.lp651-header__nav-cta:hover {
  background-color: var(--brand-hover);
}

/* SP nav overlay */
.lp651-header__nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  padding: 40px 20px;
  z-index: 99;
}
.lp651-header__nav.is-open .lp651-header__nav-list {
  flex-direction: column;
  gap: 0;
}
.lp651-header__nav.is-open .lp651-header__nav-list li {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.lp651-header__nav.is-open .lp651-header__nav-list a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
}
.lp651-header__nav.is-open .lp651-header__nav-cta {
  margin-left: 0;
  margin-top: 24px;
  height: 54px;
  font-size: 16px;
}

/* =============================================================
   6. FV (First View)
   ============================================================= */
.lp651-fv {
  position: relative;
  padding-top: 56px; /* header offset */
  background: radial-gradient(ellipse at 50% 40%, #F8E2D9 0%, #F6F5F3 70%);
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Badge */
.lp651-fv__badge {
  position: absolute;
  top: 72px;
  right: 16px;
  z-index: 10;
  width: 124px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lp651-fv__badge-wreath {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.lp651-fv__badge-label {
  position: relative;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 10px;
  color: var(--brand);
  line-height: 1;
  margin-top: 4px;
}
.lp651-fv__badge-num {
  position: relative;
  font-family: var(--font-mincho);
  font-weight: 500;
  font-size: 58px;
  line-height: 0.9;
  background: linear-gradient(82deg, #BD1734 27%, #E06E6E 49%, #BD1734 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp651-fv__badge-unit {
  position: relative;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 10px;
  color: var(--brand);
  line-height: 2;
  margin-top: -4px;
}

/* Vertical text — SPでは画像と重なるため非表示。PCブレイクポイントで復活 */
.lp651-fv__vertical {
  display: none;
  position: absolute;
  top: 120px;
  left: 12px;
  writing-mode: vertical-rl;
  font-family: var(--font-mincho);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: var(--muted);
  z-index: 5;
}

/* Photo stack */
.lp651-fv__photos {
  position: relative;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 3/4;
  flex-shrink: 0;
}
.lp651-fv__photo-back {
  position: absolute;
  top: 8%;
  left: 5%;
  width: 78%;
  transform: rotate(6deg);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.lp651-fv__photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}
.lp651-fv__photo-front {
  position: absolute;
  top: 4%;
  right: 5%;
  width: 78%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  z-index: 2;
}

/* FV Copy */
.lp651-fv__copy {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 32px 20px 40px;
}
.lp651-fv__title {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #BD1734 0%, #E06E6E 50%, #BD1734 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}
.lp651-fv__cta {
  width: 100%;
}
.lp651-fv__sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.04em;
}

/* =============================================================
   7. CONCEPT
   ============================================================= */
.lp651-concept {
  padding: var(--section-padding-sp);
  background-color: var(--bg-white);
}
.lp651-concept__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  text-align: center;
}
.lp651-concept__lead {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 16px;
  line-height: 2.2;
  color: var(--ink-900);
  margin-bottom: 32px;
}
.lp651-concept__tagline {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.8;
  background: linear-gradient(135deg, #BD1734 0%, #E06E6E 50%, #BD1734 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}
.lp651-concept__body {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 2;
  color: var(--muted);
  margin-bottom: 8px;
}
.lp651-concept__body--red {
  color: var(--brand);
}
.lp651-concept__product-name {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-700);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

/* Concept photos */
.lp651-concept__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 auto;
}
.lp651-concept__photo {
  border-radius: 6px;
  overflow: hidden;
}
.lp651-concept__photo--left {
  transform: translateY(16px);
}
.lp651-concept__photo--right {
  transform: translateY(-16px);
}

/* =============================================================
   8. POINT (Trust Badges)
   ============================================================= */
.lp651-point {
  padding: 40px 20px;
  background-color: var(--bg-sand);
}
.lp651-point__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}
.lp651-point__badges {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}
.lp651-point__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
}
.lp651-point__icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: var(--bg-white);
}
.lp651-point__icon img,
.lp651-point__icon svg {
  width: 32px;
  height: 32px;
}
.lp651-point__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-700);
  line-height: 1.5;
}
.lp651-point__label strong {
  font-weight: 700;
  color: var(--brand);
}
.lp651-point__note {
  font-size: 12px;
  color: var(--ink-700);
  margin-top: 4px;
  line-height: 1.4;
}

/* =============================================================
   9. FOR YOU
   ============================================================= */
.lp651-foryou {
  padding: var(--section-padding-sp);
  background-color: var(--bg-white);
}
.lp651-foryou__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}
.lp651-foryou__card {
  margin-bottom: 0;
}
.lp651-foryou__img {
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto 20px;
  max-width: 320px;
}
.lp651-foryou__img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transform: scale(1.12);
  transform-origin: center;
}
.lp651-foryou__text {
  padding: 0 4px;
  margin-bottom: 32px;
  text-align: center;
}
.lp651-foryou__desc {
  font-family: var(--font-gothic);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-700);
  margin-bottom: 16px;
}
.lp651-foryou__quote {
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  color: var(--brand);
}
.lp651-foryou__divider {
  height: 1px;
  background-color: var(--bg-sand);
  margin: 0 0 32px 0;
}

/* =============================================================
   10. VALUE
   ============================================================= */
.lp651-value {
  /* no padding, bg image fills */
}
.lp651-value__bg {
  position: relative;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp651-value__glass {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, rgba(160,154,153,0.70) 0%, rgba(202,173,173,0.70) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 48px 28px;
  margin: 40px 20px;
  text-align: center;
  max-width: 500px;
  width: calc(100% - 40px);
}
.lp651-value__title {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 20px;
  line-height: 2;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.lp651-value__series-label {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}
.lp651-value__number {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.4;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.lp651-value__unit {
  font-size: 20px;
  font-weight: 600;
}
.lp651-value__desc {
  font-size: 13px;
  line-height: 2;
  color: rgba(255,255,255,0.92);
}

/* =============================================================
   11. FEATURES
   ============================================================= */
.lp651-features {
  padding: var(--section-padding-sp);
  background-color: var(--bg-cream);
}
.lp651-features__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}
.lp651-features__card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}
.lp651-features__card:last-child {
  margin-bottom: 0;
}
.lp651-features__img {
  width: 100%;
}
.lp651-features__text {
  padding: 24px 20px 28px;
}
.lp651-features__num {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--brand);
  margin-bottom: 8px;
}
.lp651-features__heading {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink-900);
  margin-bottom: 12px;
}
.lp651-features__body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-700);
  margin-bottom: 16px;
}
.lp651-features__accent {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 14px;
  color: var(--brand);
  line-height: 1.8;
}
.lp651-features__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}
.lp651-features__img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 65%;
}
.lp651-features__img--clip-br {
  overflow: hidden;
}
.lp651-features__img--clip-br img {
  height: 280px;
  object-fit: cover;
  object-position: 30% bottom;
  transform: scale(1.3);
  transform-origin: 30% bottom;
}
.lp651-features__img--scale {
  overflow: hidden;
}
.lp651-features__img--scale img {
  height: 280px;
  object-position: center 95%;
  transform: scale(1.05);
  transform-origin: center 95%;
}

/* =============================================================
   12. DESIGN
   ============================================================= */
.lp651-design {
  padding: var(--section-padding-sp);
  background-color: var(--bg-sand);
}
.lp651-design__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}
.lp651-design__body {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 2.2;
  color: var(--ink-700);
  text-align: center;
  margin-bottom: 32px;
}
.lp651-design__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}
.lp651-design__photo {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.lp651-design__photo--1 {
  transform: translateY(20px);
}
.lp651-design__photo--2 {
  transform: translateY(-20px);
}

/* =============================================================
   13. COLOR LINEUP
   ============================================================= */
.lp651-color {
  padding: var(--section-padding-sp);
  background-color: var(--bg-cream);
}
.lp651-color__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}

/* SP: horizontal scroll-snap carousel */
.lp651-color__carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lp651-color__carousel::-webkit-scrollbar {
  display: none;
}

.lp651-color__card {
  flex: 0 0 calc(100% - 40px);
  scroll-snap-align: center;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.lp651-color__img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.lp651-color__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp651-color__name {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink-900);
  padding: 16px 20px 4px;
}
.lp651-color__desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  padding: 0 20px;
  margin-bottom: 16px;
}
.lp651-color__cta {
  margin: auto 20px 0;
  width: calc(100% - 40px);
  font-size: 13px;
  padding: 0 12px;
  letter-spacing: 0;
  white-space: nowrap;
}

/* =============================================================
   14. CUSTOMER VOICE
   ============================================================= */
.lp651-voice {
  padding: var(--section-padding-sp);
  background-color: var(--bg-warm);
}
.lp651-voice__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}

/* Rating */
.lp651-voice__rating {
  text-align: center;
  margin-bottom: 32px;
}
.lp651-voice__stars {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.lp651-voice__stars img {
  height: 20px;
  width: auto;
}
.lp651-voice__score {
  font-family: var(--font-mincho);
  font-size: 14px;
  color: var(--ink-700);
}
.lp651-voice__score strong {
  font-size: 28px;
  font-weight: 600;
  color: var(--brand);
}
.lp651-voice__count {
  font-family: var(--font-gothic);
  font-size: 12px;
  color: var(--muted);
  margin-left: 4px;
}
.lp651-voice__sub {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 2;
  color: var(--ink-700);
  text-align: center;
  margin-bottom: 32px;
}

/* Review cards */
.lp651-voice__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp651-voice__card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
}
.lp651-voice__quote {
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: var(--ink-700);
  margin-bottom: 0;
}

/* =============================================================
   15. ADVANCED
   ============================================================= */
.lp651-advanced {
  /* wrapper only */
}
.lp651-advanced__bg {
  background-image: url('https://qamedia.aws.locondo.jp/fitfitqastatic/common/img/banner/lp/651-meta-lp1/fv-bg.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.lp651-advanced__overlay {
  padding: var(--section-padding-sp);
  background: linear-gradient(135deg, rgba(111,162,192,0.55) 0%, rgba(111,162,192,0.40) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lp651-advanced__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}
.lp651-advanced__intro {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.92);
  text-align: center;
  margin-bottom: 32px;
}
.lp651-advanced__closing {
  font-family: var(--font-mincho);
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.92);
  text-align: center;
  margin-top: 32px;
}
.lp651-advanced__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp651-advanced__card {
  background: rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.15);
}
.lp651-advanced__num {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}
.lp651-advanced__heading {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.7;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.lp651-advanced__body {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
}

/* =============================================================
   16. FAQ
   ============================================================= */
.lp651-faq {
  padding: var(--section-padding-sp);
  background-color: var(--bg-cream);
}
.lp651-faq__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
}
.lp651-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lp651-faq__item {
  border-bottom: 1px solid #DDD5D0;
}
.lp651-faq__item:first-child {
  border-top: 1px solid #DDD5D0;
}
.lp651-faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 36px 20px 0;
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-900);
  position: relative;
  list-style: none;
}
/* Q prefix */
.lp651-faq__question::before {
  content: "Q.";
  font-family: var(--font-cormorant);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: var(--brand);
  margin-right: 12px;
  flex-shrink: 0;
}
/* Plus/minus toggle */
.lp651-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1;
  transition: transform 0.3s ease;
}
.lp651-faq__item[open] .lp651-faq__question::after {
  content: "\2212"; /* minus sign */
}
.lp651-faq__answer {
  padding: 0 0 20px 0;
}
.lp651-faq__answer p {
  font-size: 13px;
  line-height: 2;
  color: var(--ink-700);
  padding-left: 32px;
}

/* =============================================================
   17. MEMBER
   ============================================================= */
.lp651-member {
  padding: var(--section-padding-sp);
  background-color: var(--bg-warm);
}
.lp651-member__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  text-align: center;
}
/* Member ticket card */
.lp651-member__box {
  background: var(--brand);
  border-radius: 0;
  padding: 32px 24px;
  margin-bottom: 0;
  color: #FFFFFF;
}
.lp651-member__box--point {
  position: relative;
  overflow: hidden;
}
.lp651-member__box-label {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}
.lp651-member__box-heading {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.lp651-member__box-number {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 56px;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 8px;
}
.lp651-member__box-unit {
  font-size: 24px;
  font-weight: 600;
}
.lp651-member__box-watermark {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 48px;
  color: rgba(255,255,255,0.06);
  position: absolute;
  bottom: 8px;
  right: 16px;
  pointer-events: none;
}
.lp651-member__box-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  margin-bottom: 8px;
}
.lp651-member__box-note {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}
.lp651-member__divider {
  width: 100%;
  height: 0;
  border-top: 3px dashed rgba(255,255,255,0.35);
  margin: 0;
  position: relative;
}
.lp651-member__box--benefits {
  padding: 24px;
}
.lp651-member__highlight {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 32px;
  color: #FFFFFF;
  margin-bottom: 32px;
  line-height: 1.4;
}
.lp651-member__benefits {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.lp651-member__benefit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border: 0.5px solid rgba(255,255,255,0.5);
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
  padding: 10px 16px;
  flex: 0 0 auto;
}
.lp651-member__benefit-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp651-member__benefit-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.lp651-member__benefit-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.lp651-member__amazon-block {
  margin-top: 32px;
  margin-bottom: 24px;
}
.lp651-member__amazon {
  font-family: var(--font-gothic);
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.6;
}
.lp651-member__amazon-detail {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.lp651-member__cta {
  min-width: 280px;
  border-radius: 30px;
}

/* =============================================================
   18. PAYMENT
   ============================================================= */
.lp651-payment {
  padding: var(--section-padding-sp);
  background-color: var(--bg-linen);
}
.lp651-payment__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  text-align: center;
}
.lp651-payment__eyebrow-label {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 1.4px;
  color: var(--brand);
  text-align: center;
  margin-bottom: 8px;
}
.lp651-payment__coupon {
  border: 2px dashed var(--brand);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 16px;
  background: var(--bg-white);
  display: inline-block;
  width: 100%;
}
.lp651-payment__coupon-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.lp651-payment__coupon-desc {
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-900);
  text-align: center;
  margin-bottom: 8px;
}
.lp651-payment__coupon-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 28px;
}
.lp651-payment__coupon-code {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 28px;
  color: var(--brand);
  letter-spacing: 0.1em;
}
.lp651-payment__methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.lp651-payment__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  background: var(--bg-white);
  border: 1px solid #DDD5D0;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-700);
}

/* =============================================================
   19. CTA SECTION
   ============================================================= */
.lp651-cta-section {
  padding: 56px 20px;
  background-color: var(--bg-cream);
}
.lp651-cta-section__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  text-align: center;
}
.lp651-cta-section__eyebrow {
  font-family: var(--font-cormorant);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 1.4px;
  color: var(--brand);
  margin-bottom: 8px;
}
.lp651-cta-section__body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-700);
  margin-bottom: 24px;
}
.lp651-cta-section__lead {
  font-family: var(--font-mincho);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.8;
  color: var(--ink-900);
  margin-bottom: 24px;
}
.lp651-cta-section__btn {
  width: 100%;
  margin-bottom: 16px;
}
.lp651-cta-section__note {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 auto;
  text-align: left;
}

/* =============================================================
   20. FOOTER
   ============================================================= */
.lp651-footer {
  background-color: var(--bg-footer);
  padding: 32px 20px;
}
.lp651-footer__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  text-align: center;
}
.lp651-footer__copy {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

/* =============================================================
   21. PC BREAKPOINT (768px+)
   ============================================================= */
@media (min-width: 768px) {

  /* --- Header --- */
  .lp651-header__inner {
    height: 64px;
    padding: 0 32px;
  }
  .lp651-header__logo img {
    height: 32px;
  }
  .lp651-header__hamburger {
    display: none;
  }
  .lp651-header__nav {
    display: flex;
    align-items: center;
  }

  /* --- Base --- */
  .lp651 {
    font-size: 15px;
  }
  .lp651-section-title {
    font-size: 28px;
    margin-bottom: 48px;
  }

  /* --- FV --- */
  .lp651-fv {
    padding-top: 64px;
    min-height: 85vh;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding-left: 80px;
    padding-right: 80px;
  }
  .lp651-fv__badge {
    top: 76px;
    left: 70px;
    right: auto;
    width: 162px;
    height: 158px;
  }
  .lp651-fv__badge-label { font-size: 14px; }
  .lp651-fv__badge-num { font-size: 82px; }
  .lp651-fv__badge-unit { font-size: 14px; }
  .lp651-fv__vertical {
    display: block;
    top: 140px;
    left: auto;
    right: 56px;
    font-size: 15px;
    letter-spacing: 0.24em;
    line-height: 1.9;
    color: var(--ink-700);
  }
  .lp651-fv__photos {
    max-width: 440px;
    order: 2;
    flex-shrink: 0;
  }
  .lp651-fv__copy {
    order: 1;
    text-align: left;
    padding: 0;
    max-width: 440px;
  }
  .lp651-fv__title {
    font-size: 30px;
    text-align: left;
  }
  .lp651-fv__cta {
    width: auto;
    min-width: 280px;
  }
  .lp651-fv__sub {
    text-align: left;
  }

  /* --- Concept --- */
  .lp651-concept {
    padding: var(--section-padding-pc);
  }
  .lp651-concept__lead {
    font-size: 20px;
  }
  .lp651-concept__tagline {
    font-size: 28px;
  }
  .lp651-concept__photos {
    max-width: 560px;
    gap: 20px;
  }

  /* --- Point --- */
  .lp651-point {
    padding: 48px 40px;
  }
  .lp651-point__badges {
    gap: 48px;
  }
  .lp651-point__icon {
    width: 88px;
    height: 88px;
  }
  .lp651-point__label {
    font-size: 14px;
  }

  /* --- For You --- */
  .lp651-foryou {
    padding: var(--section-padding-pc);
  }
  .lp651-foryou__card {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  .lp651-foryou__card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .lp651-foryou__img {
    flex: 0 0 48%;
    margin-bottom: 0;
  }
  .lp651-foryou__text {
    flex: 1;
    margin-bottom: 0;
    text-align: left;
  }
  .lp651-foryou__desc {
    font-size: 15px;
  }
  .lp651-foryou__quote {
    font-size: 17px;
  }
  .lp651-foryou__divider {
    margin: 32px 0;
  }

  /* --- Value --- */
  .lp651-value__bg {
    min-height: 560px;
  }
  .lp651-value__glass {
    padding: 56px 48px;
    max-width: 560px;
  }
  .lp651-value__number {
    font-size: 52px;
  }
  .lp651-value__unit {
    font-size: 24px;
  }
  .lp651-value__desc {
    font-size: 14px;
  }

  /* --- Features --- */
  .lp651-features {
    padding: var(--section-padding-pc);
  }
  .lp651-features__card {
    display: flex;
    margin-bottom: 32px;
  }
  .lp651-features__card:nth-child(odd) {
    flex-direction: row;
  }
  .lp651-features__card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .lp651-features__img {
    flex: 0 0 340px;
    max-width: 340px;
  }
  .lp651-features__img img {
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    object-position: center 40%;
  }
  .lp651-features__img--scale img {
    height: 100%;
    object-position: center 60%;
    transform: scale(1.18);
    transform-origin: center 60%;
  }
  .lp651-features__img--clip-br img {
    height: 100%;
  }
  .lp651-features__text {
    flex: 1;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .lp651-features__heading {
    font-size: 22px;
  }

  /* --- Design --- */
  .lp651-design {
    padding: var(--section-padding-pc);
  }
  .lp651-design__photos {
    max-width: 700px;
    gap: 24px;
  }

  /* --- Color Lineup --- */
  .lp651-color {
    padding: var(--section-padding-pc);
  }
  .lp651-color__carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .lp651-color__card {
    flex: unset;
  }

  /* --- Customer Voice --- */
  .lp651-voice {
    padding: var(--section-padding-pc);
  }
  .lp651-voice__score strong {
    font-size: 36px;
  }
  .lp651-voice__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* --- Advanced --- */
  .lp651-advanced__overlay {
    padding: var(--section-padding-pc);
  }
  .lp651-advanced__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .lp651-advanced__heading {
    font-size: 20px;
  }

  /* --- FAQ --- */
  .lp651-faq {
    padding: var(--section-padding-pc);
  }
  .lp651-faq__inner {
    max-width: 720px;
  }
  .lp651-faq__question {
    font-size: 15px;
    padding: 24px 40px 24px 0;
  }
  .lp651-faq__answer p {
    font-size: 14px;
  }

  /* --- Member --- */
  .lp651-member {
    padding: var(--section-padding-pc);
  }
  .lp651-member__highlight {
    font-size: 40px;
  }
  /* PC: ticket card horizontal layout */
  .lp651-member__ticket {
    display: flex;
    max-width: 752px;
    margin: 0 auto 32px;
  }
  .lp651-member__box--point {
    flex: 1 1 60%;
    border-radius: 0;
  }
  .lp651-member__divider {
    width: 0;
    height: auto;
    border-top: none;
    border-left: 3px dashed rgba(255,255,255,0.35);
    margin: 0;
  }
  .lp651-member__box--benefits {
    flex: 0 0 220px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
  }
  .lp651-member__benefits {
    flex-direction: column;
    gap: 22px;
    margin-bottom: 0;
  }

  /* --- Payment --- */
  .lp651-payment {
    padding: var(--section-padding-pc);
  }
  .lp651-payment__coupon-code {
    font-size: 32px;
  }

  /* --- CTA Section --- */
  .lp651-cta-section {
    padding: 80px 40px;
  }
  .lp651-cta-section__lead {
    font-size: 26px;
  }

  /* --- Footer --- */
  .lp651-footer {
    padding: 40px 40px;
  }
}

/* =============================================================
   22. Large Desktop (1280px+)
   ============================================================= */
@media (min-width: 1280px) {
  .lp651-header__inner {
    padding: 0 48px;
  }
  .lp651-fv {
    padding-left: 120px;
    padding-right: 120px;
    gap: 72px;
  }
  .lp651-fv__photos {
    max-width: 500px;
  }
  .lp651-fv__copy {
    max-width: 500px;
  }
  .lp651-fv__title {
    font-size: 34px;
  }
  .lp651-color__carousel {
    gap: 24px;
  }
  .lp651-features__card {
    border-radius: 12px;
  }
}

/* =============================================================
   23. Utility / Accessibility
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible for keyboard nav */
.lp651-btn:focus-visible,
.lp651-faq__question:focus-visible,
.lp651-header__nav-list a:focus-visible,
.lp651-header__nav-cta:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Print */
@media print {
  .lp651-header { position: static; }
  .lp651-fv { min-height: auto; }
}
