/* ===== リセット & ベース ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink-light: #FDF0F3;
  --pink-pale:  #F8E1E9;
  --pink-mid:   #E8A0B8;
  --pink-main:  #D4759A;
  --pink-deep:  #C96A82;
  --pink-dark:  #A84F6A;
  --brown-soft: #8B5E6A;
  --text-main:  #4A3040;
  --text-sub:   #7A5A68;
  --white:      #FFFFFF;
  --gold:       #C8A86B;
  --silver:     #9BA8B4;
  --bronze:     #C4845A;
  --radius:     12px;
  --shadow:     0 4px 20px rgba(196, 106, 130, 0.12);
  --shadow-lg:  0 8px 40px rgba(196, 106, 130, 0.18);
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ボタン ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--pink-dark) 100%);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  box-shadow: 0 4px 16px rgba(196, 106, 130, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 106, 130, 0.5);
}
.btn-primary.btn-sm { padding: 10px 22px; font-size: 14px; }
.btn-primary.btn-hero { padding: 18px 36px; font-size: 17px; }
.btn-primary.btn-large { padding: 18px 32px; font-size: 16px; width: 100%; max-width: 420px; justify-content: center; }
.btn-primary.btn-pink2 { background: linear-gradient(135deg, #B87CA8 0%, #8A5A90 100%); box-shadow: 0 4px 16px rgba(176,120,168,0.4); }
.btn-primary.btn-pink3 { background: linear-gradient(135deg, #C8896A 0%, #A86A50 100%); box-shadow: 0 4px 16px rgba(200,137,106,0.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--pink-deep);
  color: var(--pink-deep);
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 32px;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--pink-deep);
  color: var(--white);
}

.heart-icon { font-size: 13px; }
.arrow { font-size: 18px; }

/* ===== ヘッダー ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212,117,154,0.15);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(196,106,130,0.15); }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.logo-heart { color: var(--pink-deep); font-size: 16px; }
.logo-text { line-height: 1.2; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--pink-dark);
  font-style: italic;
}
.logo-heart-right { color: var(--pink-deep); font-size: 14px; margin-left: 2px; }
.logo-sub {
  font-size: 10px;
  color: var(--text-sub);
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 13px;
  color: var(--text-sub);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--pink-deep); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pink-deep);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 12px;
  border-top: 1px solid var(--pink-pale);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 15px; color: var(--text-sub); padding: 4px 0; }

/* ===== ヒーロー ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #FDF0F3 0%, #FDE8EF 40%, #F5D8E8 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

/* 花びら装飾 */
.hero-petals, .cta-petals { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.petal {
  position: absolute;
  border-radius: 50% 0;
  opacity: 0.25;
  animation: floatPetal 8s ease-in-out infinite;
}
.petal.p1 { width: 16px; height: 16px; background: var(--pink-mid); top: 15%; left: 10%; animation-delay: 0s; }
.petal.p2 { width: 12px; height: 12px; background: var(--pink-deep); top: 30%; right: 15%; animation-delay: 2s; }
.petal.p3 { width: 20px; height: 20px; background: var(--pink-pale); top: 60%; left: 5%; animation-delay: 4s; }
.petal.p4 { width: 10px; height: 10px; background: var(--pink-mid); top: 75%; right: 20%; animation-delay: 1s; }
.petal.p5 { width: 14px; height: 14px; background: var(--pink-deep); top: 45%; left: 45%; animation-delay: 3s; }
@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(45deg); }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.hero-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--pink-mid);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.8;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--brown-soft);
  line-height: 1.35;
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 15px;
  color: var(--pink-deep);
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 32px;
}

.btn-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-sub);
  text-align: center;
}

/* ヒーロー画像エリア */
.hero-img-wrap {
  position: relative;
  width: 100%;
}

/* 実際の写真 */
.hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 40% 40% 40% 40% / 20% 20% 20% 20%;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* 写真の後ろの装飾リング */
.hero-img-deco {
  position: absolute;
  inset: -16px -16px -16px -16px;
  border-radius: 44% 44% 44% 44% / 24% 24% 24% 24%;
  border: 2px solid rgba(212, 117, 154, 0.25);
  pointer-events: none;
  z-index: -1;
}

/* 画像が見つからない場合のフォールバック */
.hero-img-wrap.no-image .hero-img {
  background: linear-gradient(145deg, #F0D8E4 0%, #E8C4D4 50%, #F5DCE8 100%);
  min-height: 400px;
}
.hero-img-wrap.no-image::after {
  content: '写真を images/hero.jpg に配置してください';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--pink-deep);
  text-align: center;
  padding: 16px;
}

/* ===== お悩みセクション ===== */
.worries {
  background: var(--white);
  padding: 60px 0;
}

.worries-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.worries-label {
  flex-shrink: 0;
}

.worries-label-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-main);
  padding: 20px 28px;
  background: var(--pink-light);
  border-radius: 100px;
  white-space: nowrap;
}

.pink-text { color: var(--pink-deep); }

.worries-cards {
  display: flex;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}

.worry-card {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--pink-light);
  border-radius: 100px;
  text-align: center;
}

.worry-icon {
  width: 48px;
  height: 48px;
}

.worry-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.5;
}

.worries-solution {
  flex-shrink: 0;
  padding: 20px 28px;
  text-align: right;
}

.worries-solution p {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
}

/* ===== 解決策セクション ===== */
.solution {
  display: grid;
  grid-template-columns: 1fr 2fr 1.5fr;
  min-height: 500px;
}

.solution-left {
  background: url(images/couple-hero.png) center 25%/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.ring-decoration {
  position: relative;
  width: 120px;
  height: 120px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 6px solid rgba(201, 106, 130, 0.5);
}

.ring.r1 {
  width: 100px;
  height: 100px;
  top: 0; left: 10px;
  border-color: rgba(201, 106, 130, 0.6);
}

.ring.r2 {
  width: 80px;
  height: 80px;
  bottom: 0; right: 0;
  border-color: rgba(255, 200, 220, 0.8);
}

.flower-dec {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 48px;
  color: rgba(212, 117, 154, 0.3);
}

.solution-center {
  background: var(--white);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solution-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 20px;
}

.solution-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 36px;
}

.solution-points {
  display: flex;
  gap: 24px;
}

.solution-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.sp-icon {
  width: 52px;
  height: 52px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.solution-point p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.5;
}

/* ランキング */
.solution-right {
  background: var(--pink-light);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ranking-badge {
  display: inline-block;
  background: var(--pink-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}

.ranking-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
}

.ranking-more {
  font-size: 12px;
  color: var(--pink-deep);
  font-weight: 700;
  margin-bottom: 4px;
}

.agency-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(196,106,130,0.1);
}

.rank-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  width: 32px;
}

.rank-label.gold { color: var(--gold); }
.rank-label.silver { color: var(--silver); }
.rank-label.bronze { color: var(--bronze); }

.crown { font-size: 14px; }

.agency-info { flex: 1; }

.agency-logo {
  font-size: 15px;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.2;
}
.agency-logo span { font-size: 11px; font-weight: 400; display: block; }
.agency-logo.ibj { color: #1A3A8A; }
.agency-logo.zwei { color: #2A6A4A; }
.agency-logo.partner { color: var(--pink-dark); font-size: 13px; }

.agency-desc {
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.4;
  margin-top: 4px;
}

.btn-affiliate {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--pink-dark) 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s;
}
.btn-affiliate:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196,106,130,0.4);
}

/* ===== 比較テーブル ===== */
.compare-section {
  padding: 80px 0;
  background: var(--white);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--pink-deep);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.section-label-line {
  display: block;
  height: 1px;
  width: 40px;
  background: var(--pink-mid);
}

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  text-align: center;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-desc {
  text-align: center;
  color: var(--text-sub);
  font-size: 14px;
  margin-bottom: 40px;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.compare-table th {
  background: var(--pink-light);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 2px solid var(--pink-pale);
  text-align: center;
  position: relative;
}

.compare-table th.highlight {
  background: linear-gradient(135deg, #FDE8EF 0%, #F8D5E5 100%);
  color: var(--pink-dark);
}

.th-badge {
  display: inline-block;
  background: var(--pink-deep);
  color: var(--white);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 4px;
}

.compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-sub);
  border-bottom: 1px solid var(--pink-light);
  text-align: center;
  vertical-align: middle;
}

.compare-table td.item-label {
  font-weight: 700;
  color: var(--text-main);
  text-align: left;
  background: #FAFAFA;
}

.compare-table td.highlight {
  background: #FDF5F8;
  color: var(--pink-dark);
  font-weight: 600;
}

.btn-table {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--pink-dark) 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.3s;
}
.btn-table:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196,106,130,0.4);
}

.table-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 16px;
}

/* ===== ブログセクション ===== */
.blog-section {
  padding: 80px 0;
  background: var(--pink-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-thumb {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 16px;
}

.blog-thumb-1 { background: linear-gradient(135deg, #F0D8E4 0%, #E0C0D4 100%); }
.blog-thumb-2 { background: linear-gradient(135deg, #F0E4D8 0%, #E0D0C0 100%); }
.blog-thumb-3 { background: linear-gradient(135deg, #D8E4F0 0%, #C0D0E0 100%); }

.blog-tag {
  background: var(--pink-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.blog-body { padding: 20px; }

.blog-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 12px;
}

.blog-meta {
  font-size: 12px;
  color: var(--text-sub);
}

.blog-more {
  text-align: center;
}

/* ===== 体験談 ===== */
.testimonials {
  padding: 80px 0;
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--pink-light);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--pink-deep);
}

.testimonial-avatar {
  font-size: 18px;
  font-weight: 900;
  color: var(--pink-dark);
  margin-bottom: 8px;
}

.testimonial-avatar span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-sub);
  margin-left: 4px;
}

.stars {
  color: #F0B429;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-agency {
  font-size: 12px;
  font-weight: 700;
  color: var(--pink-deep);
  padding: 4px 12px;
  background: var(--white);
  border-radius: 100px;
  display: inline-block;
}

/* ===== CTAセクション ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FDE8EF 0%, #F5D8E8 50%, #EED0E0 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--pink-mid);
  font-size: 14px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--brown-soft);
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ===== フッター ===== */
.footer {
  background: var(--text-main);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--pink-mid);
  margin-bottom: 8px;
}

.footer-logo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin: 24px 0;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--pink-mid); }

.footer-note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 24px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ===== 固定CTAバー ===== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(74, 48, 64, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 99;
}

.sticky-cta p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

/* ===== レスポンシブ ===== */
@media (max-width: 1024px) {
  .solution {
    grid-template-columns: 1fr;
  }
  .solution-left { min-height: 280px; background-position: center 25% !important; }
  .solution-center { padding: 48px 24px; }
  .solution-right { padding: 40px 24px; }
  .worries-inner { flex-direction: column; }
  .worries-label-text { text-align: center; }
  .worries-solution { text-align: center; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .header-inner > .btn-primary { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
  }
  .hero-image {
    display: block;
    width: 100%;
    margin-top: 24px;
  }
  .hero-img-wrap {
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
  }
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }

  .blog-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .sticky-cta {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }
  .sticky-cta p { display: none; }

  .solution-points { gap: 16px; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 500px) {
  .worries-cards { gap: 8px; }
  .worry-card { min-width: calc(50% - 4px); flex: none; }
}

/* ===== ブログ一覧・記事ページ共通 ===== */
.page-wrap {
  padding-top: 68px;
  min-height: 100vh;
  background: var(--pink-light);
}

/* パンくず */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--pink-pale);
  padding: 10px 0;
}
.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-sub);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--pink-deep); }
.breadcrumb span { color: #ccc; }

/* ページヘッダー */
.page-hero {
  background: linear-gradient(135deg, #FDE8EF 0%, #F5D8E8 100%);
  padding: 48px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-tag {
  display: inline-block;
  background: var(--pink-deep);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.page-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  color: var(--brown-soft);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 16px;
  padding: 0 24px;
}
.page-hero-meta {
  font-size: 13px;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* 記事ヒーロー画像 */
.article-hero-img {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  line-height: 0;
}
.article-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 640px) {
  .article-hero-img img { height: 240px; }
}

/* 2カラムレイアウト */
.content-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

/* ===== 記事本文 ===== */
.article-body {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* 目次 */
.toc {
  background: var(--pink-light);
  border-left: 4px solid var(--pink-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.toc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.toc ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toc li { font-size: 13px; }
.toc a { color: var(--text-sub); }
.toc a:hover { color: var(--pink-deep); }

/* 記事テキスト */
.article-body h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  border-left: 4px solid var(--pink-deep);
  padding-left: 16px;
  margin: 40px 0 16px;
  line-height: 1.5;
}
.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--pink-dark);
  margin: 28px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px dashed var(--pink-mid);
}
.article-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-sub);
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body li {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ハイライトボックス */
.highlight-box {
  background: linear-gradient(135deg, #FDE8EF 0%, #F8D8E8 100%);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}
.highlight-box p {
  margin: 0;
  font-weight: 600;
  color: var(--brown-soft);
}

/* 注意ボックス */
.note-box {
  background: #FFF9E6;
  border-left: 4px solid #F0C040;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.note-box p { margin: 0; font-size: 14px; color: #7A6A30; }

/* 記事内アフィリエイトCTA */
.article-cta {
  background: linear-gradient(135deg, var(--pink-light) 0%, #F0D5E5 100%);
  border-radius: var(--radius);
  padding: 28px;
  margin: 36px 0;
  text-align: center;
  border: 1px solid var(--pink-pale);
}
.article-cta-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--pink-deep);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.article-cta h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}
.article-cta p {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 20px;
}
.article-cta .btn-primary { margin: 0 auto; justify-content: center; }

/* 著者プロフィール */
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--pink-light);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 48px;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-mid) 0%, var(--pink-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
}
.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}
.author-role {
  font-size: 11px;
  color: var(--pink-deep);
  font-weight: 700;
  margin-bottom: 8px;
}
.author-bio {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
}

/* ===== サイドバー ===== */
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 88px; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.sidebar-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-pale);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sidebar-card-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 14px;
  background: var(--pink-deep);
  border-radius: 2px;
}

/* サイドバー内ランキング */
.sidebar-agency {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sa-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: var(--pink-light);
  border-radius: 10px;
}
.sa-rank {
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sa-rank.gold  { color: var(--gold); }
.sa-rank.silver{ color: var(--silver); }
.sa-rank.bronze{ color: var(--bronze); }
.sa-name { font-size: 14px; font-weight: 700; color: var(--text-main); }
.sa-note { font-size: 11px; color: var(--text-sub); }
.sa-btn {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--pink-dark) 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 9px;
  border-radius: 50px;
  transition: all 0.3s;
}
.sa-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* サイドバー関連記事 */
.sidebar-related { display: flex; flex-direction: column; gap: 12px; }
.sr-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pink-light);
  cursor: pointer;
}
.sr-item:last-child { border-bottom: none; padding-bottom: 0; }
.sr-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  flex-shrink: 0;
}
.sr-thumb-1 { background: linear-gradient(135deg, #F0D8E4 0%, #E0C0D4 100%); }
.sr-thumb-2 { background: linear-gradient(135deg, #F0E4D8 0%, #E0D0C0 100%); }
.sr-thumb-3 { background: linear-gradient(135deg, #D8E4F0 0%, #C0D0E0 100%); }
.sr-title { font-size: 12px; color: var(--text-main); line-height: 1.5; font-weight: 500; }
.sr-date  { font-size: 11px; color: var(--text-sub); margin-top: 4px; }

/* ===== ブログ一覧ページ ===== */
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.blog-list-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-list-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blc-thumb {
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 14px;
}
.blc-thumb-1 { background: linear-gradient(135deg, #F0D8E4 0%, #E0C0D4 100%); }
.blc-thumb-2 { background: linear-gradient(135deg, #F0E4D8 0%, #E0D0C0 100%); }
.blc-thumb-3 { background: linear-gradient(135deg, #D8E4F0 0%, #C0D0E0 100%); }
.blc-thumb-4 { background: linear-gradient(135deg, #D8F0E0 0%, #C0D4C8 100%); }
.blc-thumb-5 { background: linear-gradient(135deg, #E8D8F0 0%, #D0C0D8 100%); }
.blc-thumb-6 { background: linear-gradient(135deg, #F0ECD8 0%, #E0D8C0 100%); }
.blc-tag {
  background: var(--pink-deep);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.blc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 10px;
  flex: 1;
}
.blc-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blc-meta {
  font-size: 12px;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 12px;
}
.blc-read {
  margin-left: auto;
  font-size: 12px;
  color: var(--pink-deep);
  font-weight: 700;
}

/* カテゴリフィルター */
.category-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--pink-pale);
  color: var(--text-sub);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
}
.cat-btn.active, .cat-btn:hover {
  border-color: var(--pink-deep);
  color: var(--pink-deep);
  background: var(--pink-light);
}

@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .blog-list-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .article-body { padding: 24px 20px; }
  .page-hero { padding: 32px 0; }
}

/* ===== 落下ハートアニメーション ===== */
.falling-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.heart-drop {
  position: absolute;
  top: -60px;
  animation: heartFall linear infinite;
  opacity: 0;
  user-select: none;
}

@keyframes heartFall {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  85% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(110vh) rotate(25deg) scale(0.8);
    opacity: 0;
  }
}

.hero-content { position: relative; z-index: 1; }
