﻿:root {
  --pink: #f64078;
  --pink-dark: #d91f5b;
  --yellow: #fff15f;
  --mint: #20bfa5;
  --gold: #d8a64c;
  --gold-dark: #9f6c21;
  --wine: #6f2345;
  --ink: #262832;
  --muted: #646b78;
  --line: #f1c8d6;
  --soft: #fff4f8;
  --white: #ffffff;
  --shadow: 0 14px 36px rgba(217, 31, 91, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  background: #fff7fb;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(14px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(246, 64, 120, 0.18);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--pink);
  border-radius: 8px;
  font-size: 13px;
}

.mini-cta,
.primary-button,
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #ff749b);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 900;
  text-decoration: none;
}

.hana-mark,
.hana-cta,
.hana-button {
  background: linear-gradient(135deg, var(--wine), #c94f7c 46%, var(--gold));
  box-shadow: 0 14px 34px rgba(159, 108, 33, 0.24);
}

.hana-button {
  position: relative;
  overflow: hidden;
  animation: goldPulse 2.8s ease-in-out infinite;
}

.hana-button::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -45%;
  width: 34%;
  height: 160%;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: rotate(18deg);
  animation: buttonShine 3.2s ease-in-out infinite;
}

.hana-button::after {
  position: relative;
  z-index: 1;
}

.mini-cta {
  min-height: 38px;
  padding: 0 16px;
  font-size: 14px;
}

.page {
  padding: 22px 12px 86px;
}

.hana-page {
  background:
    linear-gradient(135deg, rgba(216, 166, 76, 0.14) 0 25%, transparent 25% 50%, rgba(246, 64, 120, 0.08) 50% 75%, transparent 75%),
    linear-gradient(180deg, #fff8ec 0%, #fff4f8 45%, #ffffff 100%);
  background-size: 26px 26px, auto;
}

.article {
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(246, 64, 120, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(38, 40, 50, 0.08);
  overflow: hidden;
}

.hana-page .article {
  border-color: rgba(216, 166, 76, 0.42);
  box-shadow: 0 24px 70px rgba(111, 35, 69, 0.14);
}

.breadcrumb {
  margin: 0;
  padding: 18px clamp(16px, 4vw, 38px) 0;
  color: var(--muted);
  font-size: 13px;
}

.hero {
  padding: 18px clamp(16px, 4vw, 38px) 34px;
}

.hana-page .hero {
  position: relative;
  padding-top: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.96), rgba(255, 240, 248, 0.9)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(216, 166, 76, 0.12) 18px 20px);
}

.hana-page .hero::before {
  content: "30+ Premium";
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 14px;
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(159, 108, 33, 0.2);
}

.hana-page .hero::after {
  content: "";
  position: absolute;
  inset: -30% auto auto -35%;
  width: 42%;
  height: 180%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 35%, rgba(255, 247, 188, 0.58) 50%, rgba(255, 255, 255, 0.08) 65%, transparent 100%);
  transform: rotate(10deg);
  animation: shineSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.label,
.eyebrow {
  margin: 0 0 12px;
  color: var(--pink-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(30px, 5.5vw, 48px);
  line-height: 1.25;
  letter-spacing: 0;
}

.hana-page h1 {
  color: var(--wine);
  text-shadow: 0 2px 0 #fff, 0 10px 28px rgba(111, 35, 69, 0.12);
}

.date {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  margin: 0;
}

.hero-visual img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(38, 40, 50, 0.16);
}

.hana-page .hero-visual img {
  border: 4px solid #f2d389;
  box-shadow: 0 22px 58px rgba(111, 35, 69, 0.22), 0 0 0 10px rgba(255, 255, 255, 0.76);
}

.speech-row {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  margin: 0 clamp(16px, 4vw, 38px) 18px;
}

.speech-row p {
  margin: 0;
  padding: 18px 20px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  color: #3d424c;
  font-weight: 700;
  line-height: 1.8;
}

.speech-row.answer p {
  border-color: rgba(32, 191, 165, 0.38);
  background: #f2fffc;
}

.avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  font-weight: 900;
}

.answer .avatar {
  background: var(--mint);
}

.summary-box,
.toc,
.cta-panel,
.content-section,
.notice {
  margin: 28px clamp(16px, 4vw, 38px);
}

.summary-box {
  padding: 24px;
  background: #fffafc;
  border: 2px solid var(--line);
  border-radius: 8px;
}

.hana-page .summary-box {
  background: linear-gradient(135deg, #fffdf5, #fff0f6);
  border-color: #e5c892;
  box-shadow: 0 12px 32px rgba(159, 108, 33, 0.1);
}

.summary-box h2,
.toc h2 {
  margin-bottom: 16px;
  font-size: 22px;
}

.summary-box ul,
.check-box ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  line-height: 1.8;
  font-weight: 700;
}

.toc {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid #e7e9ef;
  border-radius: 8px;
}

.toc ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 24px;
  color: var(--pink-dark);
  font-weight: 800;
}

.toc a {
  text-decoration: none;
}

.cta-panel {
  padding: clamp(24px, 5vw, 36px);
  background: linear-gradient(135deg, #fff4f8, #fffdf0);
  border: 2px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.hana-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 243, 245, 0.76)),
    linear-gradient(120deg, #fff1a8, #ffd7e6 48%, #f8c565);
  border-color: #e5c892;
  box-shadow: 0 18px 46px rgba(159, 108, 33, 0.18);
}

.cta-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 4.5vw, 36px);
  line-height: 1.35;
}

.cta-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.primary-button {
  min-height: 58px;
  padding: 0 28px;
  font-size: 18px;
}

.primary-button::after {
  content: ">";
  margin-left: 12px;
}

.content-section {
  padding-top: 16px;
}

.content-section h2 {
  margin-bottom: 22px;
  padding: 12px 16px;
  background: var(--pink);
  border-radius: 8px;
  color: #fff;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.35;
}

.hana-page .content-section h2 {
  position: relative;
  background: linear-gradient(135deg, var(--wine), #bd3f73 52%, var(--gold));
  box-shadow: 0 10px 22px rgba(111, 35, 69, 0.16);
}

.hana-page .content-section h2::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 72px;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-50%);
}

.content-section h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.45;
}

.content-section p {
  color: #3d424c;
  line-height: 2;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.offer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 20px;
}

.offer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  color: #7a4d0b;
  background: linear-gradient(135deg, #fff7ca, #ffe5ef);
  border: 2px solid #e3bd58;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.35;
}

.hana-page .offer-badges span {
  color: var(--wine);
  background: linear-gradient(135deg, #fff3a3, #ffffff 46%, #ffd7e6);
  border-color: var(--gold);
  box-shadow: 0 8px 18px rgba(159, 108, 33, 0.12);
  animation: badgeGlow 3.4s ease-in-out infinite;
}

.point-grid div {
  display: grid;
  gap: 8px;
  padding: 18px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.hana-page .point-grid div {
  background: linear-gradient(180deg, #fffdf5, #fff3f7);
  border-color: #e5c892;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75), 0 10px 24px rgba(159, 108, 33, 0.08);
}

.point-grid strong {
  color: var(--pink-dark);
  font-size: 22px;
}

.hana-page .point-grid strong {
  color: var(--gold-dark);
}

.point-grid span {
  color: var(--muted);
  font-weight: 800;
}

.step-list {
  display: grid;
  gap: 16px;
}

.step,
.story-card,
.check-box,
.safety-list div {
  padding: 22px;
  background: #fff;
  border: 1px solid #e7e9ef;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(38, 40, 50, 0.06);
}

.step span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  color: #fff;
  background: var(--mint);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.hana-page .step span {
  background: linear-gradient(135deg, var(--wine), var(--gold));
}

.compact {
  padding-top: 26px;
  padding-bottom: 28px;
}

.note {
  padding: 14px 16px;
  background: #fffdf0;
  border: 1px solid #f1de87;
  border-radius: 8px;
  color: #6f6124;
  font-weight: 700;
}

.story-card {
  margin-bottom: 16px;
  border-left: 6px solid var(--pink);
}

.hana-story {
  border-left-color: #c18a34;
}

.hana-page .story-card,
.hana-page .step,
.hana-page .safety-list div {
  box-shadow: 0 12px 30px rgba(111, 35, 69, 0.08);
}

.check-box {
  margin-bottom: 22px;
  background: #f7fffd;
  border-color: rgba(32, 191, 165, 0.32);
}

.safety-list {
  display: grid;
  gap: 14px;
}

.safety-list div {
  border-left: 6px solid var(--mint);
}

.compare-table {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid #e4e7ee;
  border-radius: 8px;
}

.compare-table > div {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1.2fr;
  border-bottom: 1px solid #e4e7ee;
}

.compare-table > div:last-child {
  border-bottom: 0;
}

.compare-table span {
  padding: 14px;
  border-right: 1px solid #e4e7ee;
  line-height: 1.75;
}

.compare-table span:last-child {
  border-right: 0;
}

.compare-head {
  color: #fff;
  background: #2f3440;
  font-weight: 900;
}

.dual-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.lp-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lp-link-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  color: inherit;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(38, 40, 50, 0.06);
}

.lp-link-card strong {
  color: var(--pink-dark);
  font-size: 22px;
}

.lp-link-card span {
  color: var(--muted);
  line-height: 1.7;
}

.hana-link-card {
  border-color: #e5c892;
}

.hana-link-card strong {
  color: #9f6c21;
}

.compare-hero {
  padding-bottom: 8px;
}

.final {
  margin-bottom: 18px;
}

.notice {
  padding: 22px;
  background: #f8f9fb;
  border: 1px solid #e1e4ea;
  border-radius: 8px;
}

.notice h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.notice p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 40;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.sticky-cta a {
  width: min(100%, 520px);
  min-height: 58px;
  pointer-events: auto;
}

.site-footer {
  padding: 28px 18px 92px;
  color: #fff;
  background: #2a2d35;
  text-align: center;
}

@keyframes shineSweep {
  0% {
    left: -35%;
    opacity: 0;
  }
  18% {
    opacity: 0.9;
  }
  45% {
    left: 112%;
    opacity: 0;
  }
  100% {
    left: 112%;
    opacity: 0;
  }
}

@keyframes buttonShine {
  0% {
    left: -45%;
    opacity: 0;
  }
  22% {
    opacity: 0.95;
  }
  48% {
    left: 120%;
    opacity: 0;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

@keyframes goldPulse {
  0%,
  100% {
    box-shadow: 0 14px 34px rgba(159, 108, 33, 0.24);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 18px 44px rgba(216, 166, 76, 0.38), 0 0 0 4px rgba(255, 232, 141, 0.18);
    transform: translateY(-1px);
  }
}

@keyframes badgeGlow {
  0%,
  100% {
    box-shadow: 0 8px 18px rgba(159, 108, 33, 0.12);
  }
  50% {
    box-shadow: 0 10px 24px rgba(216, 166, 76, 0.28), 0 0 0 3px rgba(255, 243, 163, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hana-page .hero::after,
  .hana-button,
  .hana-button::before,
  .hana-page .offer-badges span {
    animation: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px 12px;
  }

  .brand {
    font-size: 14px;
  }

  .mini-cta {
    padding: 0 12px;
  }

  .page {
    padding-right: 0;
    padding-left: 0;
  }

  .article {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .speech-row {
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .avatar {
    width: 44px;
    height: 44px;
  }

  .point-grid {
    grid-template-columns: 1fr;
  }

  .compare-table > div {
    grid-template-columns: 1fr;
  }

  .compare-table span {
    border-right: 0;
    border-bottom: 1px solid #e4e7ee;
  }

  .compare-table span:last-child {
    border-bottom: 0;
  }

  .lp-link-grid {
    grid-template-columns: 1fr;
  }

  .primary-button {
    width: 100%;
    padding: 0 16px;
    font-size: 16px;
  }
}
