#lp-wrap

/* ── WordPress テーマリセット ── */
#lp-wrap,
#lp-wrap * {
  box-sizing: border-box;
}

#lp-wrap

/* テーマのコンテナ幅制限を解除 */
#lp-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0;
  max-width: none !important;
}

#lp-wrap

/* テーマのp/h等のデフォルトスタイルを無効化 */
#lp-wrap p {
  margin: 0;
  padding: 0;
}

#lp-wrap h1,
#lp-wrap h2,
#lp-wrap h3 {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

#lp-wrap img {
  max-width: 100%;
  height: auto;
}

#lp-wrap a {
  text-decoration: none;
}

:root {
  --cream: #efdbbd;
  --cream-light: #fdf9f3;
  --cream-mid: #f8f0e3;
  --cream-dark: #dfc49a;
  --sand: #b8946a;
  --sand-dark: #9a7a52;
  --text: #3d2e1e;
  --text-mid: #5e4a35;
  --text-light: #8a7060;
  --white: #ffffff;
  --line: #e5d0b8;
  --line-light: #ede0cf;
}

*,
#lp-wrap *::before,
#lp-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--white);
  color: var(--text);
  font-weight: 300;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

#lp-wrap

/* ─── STICKY ─── */
.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 20px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(180, 150, 100, 0.12);
  backdrop-filter: blur(8px);
}

#lp-wrap .sticky span {
  color: var(--text-mid);
  font-size: 12px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

#lp-wrap .sticky a {
  background: var(--cream);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  padding: 9px 24px;
  border-radius: 40px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s;
  letter-spacing: 0.08em;
  font-family: 'Noto Sans JP', sans-serif;
  border: 1px solid var(--cream-dark);
}

#lp-wrap .sticky a:hover {
  background: var(--cream-dark);
}

#lp-wrap

/* ─── HEADER ─── */
header {
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  z-index: 800;
}

#lp-wrap .logo-img {
  height: 34px;
  width: auto;
  display: block;
}

#lp-wrap .header-cta {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--sand-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 2px;
  transition: color 0.2s;
}

#lp-wrap .header-cta:hover {
  color: var(--text-mid);
}

#lp-wrap

/* ─── HERO（写真背景版） ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

#lp-wrap .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.png');
  background-size: cover;
  background-position: center center;
}

#lp-wrap

/* 左側にグラデーションをかけてテキストを見やすく */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(253, 249, 243, 0.05) 0%,
      rgba(220, 190, 150, 0.10) 30%,
      rgba(90, 60, 25, 0.50) 70%,
      rgba(60, 38, 12, 0.78) 100%);
}

#lp-wrap .hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 28px 100px;
}

#lp-wrap .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.40);
  color: rgba(255, 255, 255, 0.90);
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 5px 18px;
  margin-bottom: 22px;
  border-radius: 40px;
  font-family: 'Cormorant Garamond', serif;
  backdrop-filter: blur(4px);
}

#lp-wrap .hero h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 7vw, 44px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(40, 20, 5, 0.30);
}

#lp-wrap .hero h1 em {
  font-style: normal;
  color: var(--cream);
}

#lp-wrap .hero-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 2.2;
  margin-bottom: 36px;
  max-width: 360px;
  text-shadow: 0 1px 8px rgba(40, 20, 5, 0.25);
}

#lp-wrap

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 15px 40px;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.28s;
  font-family: 'Noto Sans JP', sans-serif;
  border-radius: 40px;
}

#lp-wrap

/* 写真背景上用（白ボタン） */
.btn-on-photo {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

#lp-wrap .btn-on-photo:hover {
  background: var(--white);
}

#lp-wrap

/* 白背景上用 */
.btn-sand {
  background: var(--sand);
  color: var(--white);
  border: 1px solid var(--sand);
}

#lp-wrap .btn-sand:hover {
  background: var(--sand-dark);
  border-color: var(--sand-dark);
}

#lp-wrap

/* クリーム背景上用 */
.btn-cream {
  background: var(--cream);
  color: var(--text);
  border: 1px solid var(--cream-dark);
}

#lp-wrap .btn-cream:hover {
  background: var(--cream-dark);
}

#lp-wrap .hero-note {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.60);
  letter-spacing: 0.05em;
}

#lp-wrap .hero-scroll {
  position: absolute;
  bottom: 92px;
  right: 24px;
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: 'Cormorant Garamond', serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}

#lp-wrap .hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
}

#lp-wrap

/* ─── SECTION BASE ─── */
.section {
  padding: 80px 28px;
}

#lp-wrap .section-inner {
  max-width: 580px;
  margin: 0 auto;
}

#lp-wrap .bg-white {
  background: var(--white);
}

#lp-wrap .bg-cream {
  background: var(--cream-light);
}

#lp-wrap .bg-cream2 {
  background: var(--cream-mid);
}

#lp-wrap .sec-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--sand);
  display: block;
  margin-bottom: 6px;
}

#lp-wrap .sec-phase {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-light);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 3px 16px;
  margin-bottom: 16px;
  border-radius: 40px;
}

#lp-wrap h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(19px, 4.5vw, 26px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 28px;
}

#lp-wrap p {
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-mid);
  margin-bottom: 14px;
}

#lp-wrap p:last-child {
  margin-bottom: 0;
}

#lp-wrap strong {
  color: var(--text);
  font-weight: 500;
}

#lp-wrap

/* ─── WORRY IMAGES ─── */
.worry-img-wrap {
  margin-bottom: 32px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(180, 140, 90, 0.12);
}

#lp-wrap .worry-img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}

#lp-wrap .worry-img-caption {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

#lp-wrap

/* ─── WORRIES ─── */
.worry-items {
  display: flex;
  flex-direction: column;
}

#lp-wrap .worry-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}

#lp-wrap .worry-item:first-child {
  border-top: 1px solid var(--line-light);
}

#lp-wrap .worry-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream-dark);
  margin-top: 9px;
}

#lp-wrap .worry-item p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

#lp-wrap

/* ─── 写真プレースホルダー ─── */
.photo-placeholder {
  background: var(--cream-mid);
  border: 2px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: 'Cormorant Garamond', serif;
}

#lp-wrap .photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
  overflow: hidden;
}

#lp-wrap .photo-strip-item {
  position: relative;
  overflow: hidden;
}

#lp-wrap .photo-strip-item:first-child {
  border-right: 3px solid var(--white);
}

#lp-wrap

/* 写真がある場合 */
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.94) saturate(0.80);
}

#lp-wrap

/* ─── SOLUTION（写真なし版：クリーム＋砂色帯） ─── */
.solution-section {
  background: linear-gradient(135deg, var(--cream-mid) 0%, var(--cream) 100%);
  padding: 80px 28px;
  position: relative;
  overflow: hidden;
}

#lp-wrap .solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--cream-dark), var(--sand), var(--cream-dark));
}

#lp-wrap

/* 写真を使う場合は以下のクラスを追加してください */
/*
  .solution-section.has-photo { padding: 80px 28px; }
#lp-wrap .solution-section.has-photo .solution-bg {
    position: absolute; inset: 0;
    background-image: url('YOUR_IMAGE_URL');
    background-size: cover; background-position: center;
    filter: brightness(0.38) saturate(0.55);
  }
#lp-wrap .solution-section.has-photo .solution-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(140deg, rgba(160,120,70,0.72) 0%, rgba(200,160,100,0.50) 100%);
  }
#lp-wrap */
.solution-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
}

#lp-wrap .solution-inner .sec-phase {
  color: var(--text-light);
  border-color: var(--line);
}

#lp-wrap .solution-inner .sec-en {
  color: var(--sand);
}

#lp-wrap .solution-inner h2 {
  color: var(--text);
}

#lp-wrap .solution-inner p {
  color: var(--text-mid);
}

#lp-wrap .solution-inner strong {
  color: var(--text);
}

#lp-wrap

/* ─── FEATURES ─── */
.features-list {
  display: flex;
  flex-direction: column;
}

#lp-wrap .feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

#lp-wrap .feature-item:first-child {
  border-top: 1px solid var(--line-light);
}

#lp-wrap .feature-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-top: 4px;
}

#lp-wrap .feature-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.5;
}

#lp-wrap .feature-body p {
  font-size: 13px;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.9;
}

#lp-wrap

/* ─── DESIGN SAMPLES ─── */
.samples-outer {
  max-width: 580px;
  margin: 0 auto;
}

#lp-wrap .samples-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 36px;
}

#lp-wrap .samples-scroll::-webkit-scrollbar {
  display: none;
}

#lp-wrap .sample {
  flex: 0 0 182px;
}

#lp-wrap .sample-visual {
  height: 248px;
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  background: var(--cream-mid);
  border: 1px solid var(--line);
}

#lp-wrap

/* 写真がある場合 */
.sample-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

#lp-wrap .sample-visual:hover img {
  transform: scale(1.04);
}

#lp-wrap

/* 写真なしプレースホルダー */
.sample-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}

#lp-wrap .sample-ph-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

#lp-wrap .sample-ph-line {
  height: 5px;
  border-radius: 3px;
  opacity: 0.35;
}

#lp-wrap .sample-ph-rect {
  height: 24px;
  border-radius: 4px;
  opacity: 0.15;
  width: 90%;
}

#lp-wrap

/* Natural */
.sph-a .sample-ph-circle {
  background: var(--sand);
}

#lp-wrap .sph-a .sample-ph-line {
  background: var(--sand-dark);
}

#lp-wrap .sph-a .sample-ph-rect {
  background: var(--sand);
}

#lp-wrap .sph-a {
  background: linear-gradient(160deg, #fdf6ec, #f0e0c5);
}

#lp-wrap

/* Botanical */
.sph-b .sample-ph-circle {
  background: #7a9e7a;
}

#lp-wrap .sph-b .sample-ph-line {
  background: #5a7e5a;
}

#lp-wrap .sph-b .sample-ph-rect {
  background: #7a9e7a;
}

#lp-wrap .sph-b {
  background: linear-gradient(160deg, #f0f5ee, #cdddc8);
}

#lp-wrap

/* Elegant */
.sph-c .sample-ph-circle {
  background: #9a8ab8;
}

#lp-wrap .sph-c .sample-ph-line {
  background: #7a6a98;
}

#lp-wrap .sph-c .sample-ph-rect {
  background: #9a8ab8;
}

#lp-wrap .sph-c {
  background: linear-gradient(160deg, #f2eef8, #d8ceec);
}

#lp-wrap

/* Feminine */
.sph-d .sample-ph-circle {
  background: #d4909a;
}

#lp-wrap .sph-d .sample-ph-line {
  background: #b87080;
}

#lp-wrap .sph-d .sample-ph-rect {
  background: #d4909a;
}

#lp-wrap .sph-d {
  background: linear-gradient(160deg, #fdf0f2, #f0ccd4);
}

#lp-wrap .sample-overlay-label {
  margin-top: 8px;
  text-align: center;
}

#lp-wrap .sample-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-mid);
  display: block;
}

#lp-wrap .sample-name {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

#lp-wrap .scroll-hint {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 10px;
  letter-spacing: 0.04em;
}

#lp-wrap

/* ─── MERITS ─── */
.merits-list {
  display: flex;
  flex-direction: column;
}

#lp-wrap .merit {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
}

#lp-wrap .merit:first-child {
  border-top: 1px solid var(--line-light);
}

#lp-wrap .merit-en {
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--sand);
  width: 50px;
  padding-top: 3px;
}

#lp-wrap .merit p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

#lp-wrap

/* ─── STORY ─── */
.story-quote {
  border-left: 2px solid var(--cream-dark);
  padding: 16px 20px;
  margin: 28px 0;
  background: var(--cream-mid);
  border-radius: 0 8px 8px 0;
}

#lp-wrap .story-quote p {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  color: var(--text);
  font-style: italic;
  margin: 0;
  line-height: 2.1;
}

#lp-wrap

/* ─── DIVIDER（写真なし版：クリームライン） ─── */
.cream-divider {
  height: 120px;
  background: linear-gradient(to bottom, var(--white), var(--cream-mid), var(--white));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#lp-wrap .cream-divider::before {
  content: '✦';
  font-size: 20px;
  color: var(--cream-dark);
  letter-spacing: 16px;
  opacity: 0.7;
}

#lp-wrap
/* 写真がある場合 */
/*
  .flower-divider { position: relative; height: 180px; overflow: hidden; }
#lp-wrap .flower-divider img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; display: block; filter: brightness(0.90) saturate(0.75); }
#lp-wrap .flower-divider::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, var(--white) 0%, transparent 28%, transparent 72%, var(--white) 100%); }
#lp-wrap */

/* ─── FLOW ─── */
.flow-list {
  display: flex;
  flex-direction: column;
}

#lp-wrap .flow-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
  position: relative;
}

#lp-wrap .flow-item:first-child {
  border-top: 1px solid var(--line-light);
}

#lp-wrap .flow-item:not(:last-child) .flow-num-wrap::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 60px;
  height: calc(100% - 40px);
  width: 1px;
  background: var(--line);
}

#lp-wrap .flow-num-wrap {
  position: relative;
  z-index: 1;
}

#lp-wrap .flow-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--text-mid);
  background: var(--cream-mid);
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 4px;
}

#lp-wrap .flow-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
  padding-top: 7px;
}

#lp-wrap .flow-body p {
  font-size: 13px;
  margin: 0;
  color: var(--text-mid);
  line-height: 1.9;
}

#lp-wrap

/* ─── PRICE（写真なし版：クリームグラデ） ─── */
.price-section {
  background: linear-gradient(155deg, var(--cream-mid) 0%, var(--cream) 60%, var(--cream-dark) 100%);
  padding: 80px 28px 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#lp-wrap .price-section::before {
  content: 'Campaign';
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(60px, 18vw, 140px);
  color: rgba(255, 255, 255, 0.40);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

#lp-wrap

/* 写真を使う場合は以下を有効化 */
/*
  .price-section.has-photo { background: none; }
#lp-wrap .price-bg { position: absolute; inset: 0; background-image: url('YOUR_IMAGE_URL'); background-size: cover; background-position: center 40%; filter: brightness(0.30) saturate(0.50); }
#lp-wrap .price-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(180,140,90,0.65) 0%, rgba(130,90,50,0.70) 100%); }
#lp-wrap */
.price-inner {
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin: 0 auto;
}

#lp-wrap .price-inner .sec-en {
  color: var(--sand-dark);
}

#lp-wrap .price-inner h2 {
  color: var(--text);
}

#lp-wrap .price-box {
  border: 1px solid var(--cream-dark);
  padding: 40px 24px;
  margin: 0 auto 22px;
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 16px;
}

#lp-wrap .price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--cream-dark);
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 5px 20px;
  white-space: nowrap;
  border-radius: 40px;
}

#lp-wrap .price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin: 16px 0 5px;
}

#lp-wrap .price-sub {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 16px;
}

#lp-wrap .price-strike {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 5px;
}

#lp-wrap .price-note {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.9;
}

#lp-wrap .price-limit {
  border: 1px solid var(--cream-dark);
  background: rgba(255, 255, 255, 0.45);
  padding: 16px 18px;
  margin: 0 auto 32px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 2;
  border-radius: 10px;
}

#lp-wrap .price-limit strong {
  color: var(--text);
  font-weight: 500;
}

#lp-wrap

/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
}

#lp-wrap details {
  border-bottom: 1px solid var(--line-light);
}

#lp-wrap details:first-of-type {
  border-top: 1px solid var(--line-light);
}

#lp-wrap summary {
  padding: 20px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.7;
  user-select: none;
}

#lp-wrap summary::-webkit-details-marker {
  display: none;
}

#lp-wrap .s-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--sand);
  flex-shrink: 0;
}

#lp-wrap .s-plus {
  margin-left: auto;
  font-size: 18px;
  color: var(--cream-dark);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

#lp-wrap details[open] .s-plus {
  transform: rotate(45deg);
}

#lp-wrap .faq-ans {
  padding: 0 0 18px 28px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 2;
}

#lp-wrap

/* ─── FINAL CTA（写真なし版） ─── */
.final-cta {
  background: linear-gradient(160deg, var(--cream-light) 0%, var(--cream-mid) 50%, var(--cream) 100%);
  padding: 80px 28px 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#lp-wrap .final-cta::after {
  content: '✦';
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: var(--cream-dark);
  letter-spacing: 12px;
  opacity: 0.7;
}

#lp-wrap

/* 写真を使う場合は以下を有効化 */
/*
  .final-cta.has-photo { background: none; }
#lp-wrap .final-cta-bg { position: absolute; inset: 0; background-image: url('YOUR_IMAGE_URL'); background-size: cover; background-position: center center; filter: brightness(0.42) saturate(0.60); }
#lp-wrap .final-cta-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(253,249,243,0.40) 0%, rgba(160,120,70,0.68) 100%); }
#lp-wrap */
.final-cta-inner {
  position: relative;
  z-index: 2;
}

#lp-wrap .final-cta-inner .sec-en {
  color: var(--sand);
}

#lp-wrap .final-cta-inner h2 {
  color: var(--text);
}

#lp-wrap .final-cta-inner p {
  color: var(--text-mid);
  max-width: 360px;
  margin: 0 auto 32px;
}

#lp-wrap

/* ─── FOOTER ─── */
footer {
  background: var(--cream-light);
  border-top: 1px solid var(--line);
  padding: 40px 28px 88px;
  text-align: center;
}

#lp-wrap .footer-logo {
  height: 26px;
  width: auto;
  margin: 0 auto 16px;
  display: block;
  opacity: 0.70;
}

#lp-wrap footer p {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

#lp-wrap footer a {
  color: var(--text-light);
  text-decoration: none;
}

#lp-wrap footer a:hover {
  color: var(--sand);
}

#lp-wrap

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

#lp-wrap .reveal.in {
  opacity: 1;
  transform: none;
}

#lp-wrap @media (max-width: 380px) {
  .sticky span {
    display: none;
  }

  .section {
    padding: 60px 20px;
  }

  .hero-content {
    padding: 60px 20px 96px;
  }
}