*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --deep:       #0a3d52;
  --ocean:      #0e7a98;
  --lagoon:     #1a9ab8;
  --ocean-pale: #e4f6fb;
  --coral:      #d4613c;
  --coral-dark: #b04a28;
  --cream:      #fffef8;
  --sand:       #fdf2d8;
  --warm-gold:  #c9973a;
  --white:      #ffffff;
  --text:       #1a2e38;
  --text-mid:   #4a5a68;
  --text-light: #7a8e98;
  --border:     #d0e4ea;
}

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

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── STICKY HEADER ─── */
.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #0a3d52 0%, #105f7a 100%);
  border-bottom: 2px solid rgba(26,154,184,0.22);
  transition: box-shadow 0.3s ease;
}
.sticky-header.scrolled {
  box-shadow: 0 2px 20px rgba(10,61,82,0.3);
}
.header-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
}
.header-logo span {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}
.header-cta {
  background: var(--coral);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 28px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.header-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--deep) 0%, var(--ocean) 70%, #0d6880 100%);
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(26,154,184,0.1);
  top: -100px; right: -120px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(212,97,60,0.08);
  bottom: 120px; left: -60px;
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px 130px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px; height: 1px;
  background: rgba(201,151,58,0.55);
}
.hero-main-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-main-title em {
  font-style: normal;
  color: rgba(255,178,140,0.92);
}
.hero-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.88rem, 2vw, 0.98rem);
  color: rgba(255,255,255,0.68);
  line-height: 2.1;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.8s ease 0.3s both;
}
.hero-btn {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 18px 56px;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-btn:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}
.hero-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}
.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 52px;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  padding: 6px 16px;
  letter-spacing: 0.08em;
}
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 70px;
  display: block;
  pointer-events: none;
}
@keyframes fadeUp {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SECTIONS ─── */
section { padding: 100px 24px; }
.section-inner { max-width: 820px; margin: 0 auto; }

.section-eyebrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--ocean);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 36px;
  height: 1px;
  background: var(--warm-gold);
}
.section-eyebrow-center {
  justify-content: center;
}
.section-eyebrow-center::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--warm-gold);
}
.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 24px;
}
.section-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-mid);
  line-height: 2.2;
  font-weight: 300;
}
.section-rule {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--lagoon), var(--warm-gold));
  margin-bottom: 20px;
}

/* ─── REVEAL ANIMATION (disabled) ─── */
.reveal, .reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4 { transition-delay: 0s; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 18px 56px;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-2px); }

/* ─── IMAGE WRAP ─── */
.img-wrap {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ocean-pale), #cce9f2);
  border-radius: 10px;
}
.img-wrap img {
  width: 100%; height: auto;
  transition: transform 0.5s ease;
}
.img-wrap:hover img { transform: scale(1.02); }

/* ─── CARD ─── */
.card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lagoon), var(--coral));
}

/* ─── QUOTE BLOCK ─── */
.quote-block {
  border-left: 3px solid var(--warm-gold);
  background: rgba(253,242,216,0.7);
  padding: 36px 40px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  line-height: 2.3;
  color: var(--text-mid);
  font-size: 0.95rem;
}

/* ─── INTRO SECTION ─── */
.intro-section { background: var(--cream); }
.intro-photo-wrap {
  margin: 36px 0;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ocean-pale), #cce9f2);
}
.intro-photo-wrap img {
  width: 100%; height: auto;
  border-radius: 10px;
}
.intro-pain-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.intro-pain-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.intro-pain-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background: var(--ocean-pale);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.intro-pain-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 2;
}
.intro-pain-placeholder {
  font-size: 0.68rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.6;
  padding: 8px;
  pointer-events: none;
}
.intro-pain-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.5;
}
.intro-pain-label::before {
  content: '✔\00a0';
  color: var(--lagoon);
  font-size: 0.68rem;
}

/* ─── PAIN/WORRY SECTION ─── */
.pain-section { background: var(--sand); }
.pain-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.pain-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 14px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.pain-checklist li:hover { box-shadow: 0 4px 16px rgba(14,122,152,0.1); }
.pain-checklist li::before {
  content: '✔';
  color: var(--lagoon);
  font-size: 0.82rem;
  flex-shrink: 0;
}
.pain-img-wrap {
  width: 100%; margin: 40px 0 0;
  border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, var(--ocean-pale), #cce9f2);
}
.pain-img-wrap img { width: 100%; height: auto; }

/* ─── WHY SECTION ─── */
.why-section { background: var(--white); }
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.why-problem { display: flex; flex-direction: column; gap: 16px; }
.why-problem > p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 2.1;
  font-weight: 300;
}
.why-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.why-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.8;
}
.why-list li::before { content: '・'; position: absolute; left: 0; color: var(--coral); }
.why-result {
  border-left: 3px solid var(--warm-gold);
  background: rgba(253,242,216,0.7);
  padding: 20px 24px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 2.1;
  font-weight: 300;
}
.why-solution { display: flex; flex-direction: column; gap: 20px; }
.why-solution > p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 2.3;
  font-weight: 300;
}
.why-solution-box {
  background: var(--ocean-pale);
  padding: 28px 32px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.93rem;
  color: var(--text);
  line-height: 2.2;
  font-weight: 300;
}
.why-photo-wrap {
  width: 100%;
  border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, var(--ocean-pale), #cce9f2);
  min-height: 180px;
}
.why-photo-wrap img { width: 100%; height: auto; }

/* ─── ABOUT/FEATURES SECTION ─── */
.about-section { background: var(--ocean-pale); }
.about-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--text-mid);
  line-height: 2.2;
  font-weight: 300;
  margin-bottom: 40px;
}
.about-photo-wrap {
  margin: 36px 0;
  border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, var(--ocean-pale), #cce9f2);
  min-height: 240px;
}
.about-photo-wrap img { width: 100%; height: auto; }
.features-heading {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
}
.features-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid rgba(14,122,152,0.14);
  line-height: 1.7;
}
.features-list li::before {
  content: '✓';
  color: var(--lagoon);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.illust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.illust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 22px 12px 16px;
  border: 1px solid rgba(14,122,152,0.14);
}
.illust-card svg { width: 80px; height: auto; }
.illust-card img { width: 80px; height: 80px; object-fit: contain; }
.illust-card-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ocean);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ─── REASONS SECTION ─── */
.reasons-section { background: var(--cream); }
.reasons-grid { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.reason-card {
  display: flex;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow 0.2s;
}
.reason-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lagoon), var(--coral));
}
.reason-card:hover { box-shadow: 0 6px 24px rgba(14,122,152,0.1); }
.reason-card-content {
  padding: 36px 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  flex: 1;
}
.reason-badge {
  width: 58px; height: 58px;
  background: var(--ocean-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Shippori Mincho', serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ocean);
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.reason-body h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
}
.reason-body p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 2;
  font-weight: 300;
}
.reason-card-img {
  width: 36%;
  flex-shrink: 0;
  background: var(--ocean-pale);
  min-height: 180px;
  overflow: hidden;
}
.reason-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ─── RESULTS SECTION ─── */
.results-section { background: var(--sand); }
.results-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.result-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(14,122,152,0.18);
  padding: 10px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.86rem;
  color: var(--text-mid);
}
.result-tag::before { content: '✓'; color: var(--lagoon); font-weight: 700; font-size: 0.78rem; }

/* ─── PHILOSOPHY SECTION ─── */
.philosophy-section { background: var(--white); }
.philosophy-inner { text-align: center; }
.philosophy-inner > p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 2.5;
  font-weight: 300;
}
.philosophy-img-wrap {
  margin: 32px auto;
  max-width: 560px;
  border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, var(--ocean-pale), #cce9f2);
}
.philosophy-img-wrap img { width: 100%; height: auto; }
.philosophy-highlight {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ocean);
  margin-top: 24px;
  line-height: 2;
}

/* ─── FLOW SECTION ─── */
.flow-section { background: var(--cream); }
.flow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}
.flow-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
}
.flow-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px; top: 50px; bottom: -8px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--border) 0, var(--border) 6px,
    transparent 6px, transparent 12px
  );
}
.flow-num {
  width: 48px; height: 48px;
  background: var(--ocean);
  color: var(--white);
  font-family: 'Shippori Mincho', serif;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.flow-body {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 22px 28px;
  margin-bottom: 16px;
}
.flow-body h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.flow-body p {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(160deg, #0a3d52 0%, #0e7a98 58%, #0d6880 100%);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-eyebrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: rgba(201,151,58,0.9);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  width: 36px; height: 1px;
  background: rgba(201,151,58,0.5);
}
.cta-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 24px;
}
.cta-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.72);
  line-height: 2.2;
  font-weight: 300;
  margin-bottom: 44px;
}
.btn-cta {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 20px 56px;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-cta:hover { background: var(--coral-dark); transform: translateY(-2px); }
.cta-subtitle {
  color: rgba(255,255,255,0.80);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.cta-btn-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hotpepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8202b;
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 18px 36px;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-hotpepper:hover { background: #c41520; transform: translateY(-2px); }
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 18px 36px;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-line:hover { background: #059a42; transform: translateY(-2px); }
.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.cta-tag {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.65);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  padding: 6px 16px;
  letter-spacing: 0.08em;
}

/* ─── FAQ SECTION ─── */
.faq-section { background: var(--sand); }
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(14,122,152,0.08); }
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
}
.faq-q-icon {
  width: 28px; height: 28px;
  background: var(--ocean-pale);
  color: var(--ocean);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-q-text {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
}
.faq-toggle {
  font-size: 20px;
  color: var(--ocean);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
  line-height: 1.4;
}
.faq-a {
  display: none;
  padding: 0 24px 22px calc(24px + 14px + 28px);
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 2;
  font-weight: 300;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-item.open { box-shadow: 0 4px 24px rgba(14,122,152,0.1); }

/* ─── ACCESS SECTION ─── */
.info-section { background: var(--sand); padding: 100px 24px; }
.info-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.info-rule { width: 36px; height: 2px; background: var(--warm-gold); margin: 20px auto; }
.info-detail {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 2.1;
  font-weight: 300;
  margin-bottom: 32px;
}
.info-map {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 10px;
  margin-top: 36px;
  display: block;
}

/* ─── FOOTER ─── */
footer {
  background: linear-gradient(135deg, #0a3d52 0%, #105f7a 100%);
  padding: 48px 24px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-wave-deco {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0.08;
  pointer-events: none;
}
.footer-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.footer-info {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 28px;
}
.footer-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.1em;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .sticky-header { padding: 0 20px; }
  .header-cta { padding: 8px 16px; font-size: 0.75rem; }
  section { padding: 72px 18px; }
  .cta-section { padding: 72px 18px; }
  .info-section { padding: 72px 18px; }
  .pain-checklist { grid-template-columns: 1fr; }
  .why-layout { grid-template-columns: 1fr; }
  .reason-card { flex-direction: column; }
  .reason-card-img { width: 100%; min-height: 160px; }
  .illust-grid { grid-template-columns: 1fr; }
  .hero-inner { padding: 60px 18px 110px; }
  .hero-main-title { font-size: 4.5vw; }
  .intro-pain-list { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cta-btn-wrap { flex-direction: column; align-items: center; }
  .btn-hotpepper, .btn-line { width: 100%; justify-content: center; }
}
@media (max-width: 400px) {
  .hero-badges { gap: 8px; }
}

/* ─── PHOTO PLACEHOLDERS ─── */
.intro-photo-wrap { position: relative; min-height: 250px; }
.pain-img-wrap    { position: relative; min-height: 220px; }
.why-photo-wrap   { position: relative; }
.about-photo-wrap { position: relative; }
.reason-card-img  { position: relative; }

.ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e4f6fb 0%, #cce9f2 100%);
  border: 2px dashed #7bc8da;
  border-radius: inherit;
  text-align: center;
  padding: 16px 12px;
  z-index: 1;
  pointer-events: none;
  gap: 6px;
}
.ph-label .ph-icon { font-size: 1.4rem; }
.ph-label .ph-path {
  font-family: 'Courier New', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0a3d52;
  background: rgba(255, 255, 255, 0.88);
  padding: 3px 10px;
  border-radius: 3px;
  word-break: break-all;
}
.ph-label .ph-note {
  font-size: 0.58rem;
  color: #5a8e9e;
  font-family: 'Noto Sans JP', sans-serif;
}

.intro-pain-placeholder {
  font-family: 'Courier New', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  color: #0a3d52;
  background: rgba(255, 255, 255, 0.88);
  padding: 3px 8px;
  border-radius: 3px;
  text-align: center;
  word-break: break-all;
  pointer-events: none;
  line-height: 1.6;
}

.has-photo .ph-label,
.has-photo .intro-pain-placeholder { display: none; }

/* ─── CAMPAIGN BANNER ─── */
.campaign-banner-wrap {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 24px 16px;
}

.campaign-banner-img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
}
