@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Noto+Serif+JP:wght@200;300;400;500;600&display=swap');

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink-deep: #d4748c;
  --pink-mid: #e8a0b0;
  --pink-light: #f5d0d8;
  --pink-pale: #fdf0f2;
  --beige: #f5ede8;
  --beige-mid: #eeddd5;
  --beige-warm: #e8d5c8;
  --brown-light: #c4927a;
  --brown-mid: #a87060;
  --text-dark: #5a3d35;
  --text-mid: #7a5c55;
  --text-light: #a08880;
  --white: #ffffff;
  --off-white: #fefaf8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 Pro', serif;
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.9;
  font-size: 15px;
}

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

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

/* スクリーンリーダー・検索エンジン用（画面には非表示） */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== Section Divider ===== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 8px 0 24px;
  color: var(--pink-mid);
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
}

.section-divider::before,
.section-divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-mid));
}

.section-divider::after {
  background: linear-gradient(90deg, var(--pink-mid), transparent);
}

/* ===== Section Title ===== */
.section-title {
  text-align: center;
  margin-bottom: 8px;
}

.section-title .en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--pink-deep);
  display: block;
  margin-bottom: 6px;
}

.section-title .ja {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}

/* ===== 1. HEADER / FV ===== */
.fv {
  width: 100%;
  background: var(--pink-pale);
  position: relative;
}

.fv-top-text {
  display: block;
  text-align: left;
  padding: 8px 24px 6px;
  background: var(--white);
  text-decoration: none;
}

.fv-top-text .catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-light);
  display: block;
  line-height: 1.6;
}

.fv-top-text .sub {
  font-size: 11px;
  font-weight: 200;
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin-top: 2px;
  line-height: 1.6;
}

.fv-image {
  width: 100%;
  position: relative;
}

.fv-image img {
  width: 100%;
  object-fit: cover;
}

.fv-overlay {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  text-align: left;
  pointer-events: none;
  max-width: 45%;
}

.fv-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--white);
  opacity: 0.9;
  display: block;
  margin-bottom: 8px;
  font-style: italic;
  text-shadow: 0 1px 8px rgba(120, 60, 70, 0.5);
}

.fv-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1.4;
  text-shadow: 0 1px 12px rgba(120, 60, 70, 0.5), 0 2px 30px rgba(120, 60, 70, 0.3);
}

.fv-copy {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 200;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.15em;
  line-height: 2;
  text-shadow: 0 1px 8px rgba(120, 60, 70, 0.4);
}

/* ===== 2. EMPATHY ===== */
.empathy {
  padding: 48px 0;
  background: var(--white);
}

.empathy-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.empathy-heading {
  text-align: center;
  margin-bottom: 40px;
}

.empathy-heading .en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--pink-mid);
  display: block;
  margin-bottom: 12px;
}

.empathy-heading .ja {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.15em;
}

.empathy-block {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 52px;
}

.empathy-block:last-child {
  margin-bottom: 0;
}

/* 2番目のブロック：挿絵を右に */
.empathy-block.reverse {
  grid-template-columns: 3fr 2fr;
}

.empathy-block.reverse .empathy-image {
  order: 2;
}

.empathy-block.reverse .empathy-text {
  order: 1;
}

.empathy-image {
  border-radius: 4px;
  overflow: hidden;
}

.empathy-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.6s ease;
}

.empathy-image img:hover {
  transform: scale(1.02);
}

.empathy-text h3 {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
}

.empathy-text h3::before {
  content: '❁';
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 13px;
  color: var(--pink-mid);
  width: auto;
  height: auto;
  background: none;
  line-height: 1;
}

.empathy-text p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.95;
  letter-spacing: 0.05em;
}

/* ===== 3. SUMMARY ===== */
.summary {
  background: #f5ece4;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: stretch;
}

/* 画像：右寄せで全高フィル */
.summary-image-block {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 64%;
  z-index: 0;
}

/* 左端をグラデーションでなじませる */
.summary-image-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(to right, #f5ece4 35%, transparent 100%);
  z-index: 1;
}

.summary-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

/* テキストエリア：画像の左側に重ねて表示 */
.summary-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 28px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.summary-text-block {
  width: 50%;
  max-width: 420px;
}

.summary .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--pink-deep);
  display: block;
  margin-bottom: 16px;
}

.summary-text-block p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.summary-text-block .highlight {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-dark);
}

/* ===== 4 & 5. SCENE / MOOD ===== */
.enjoyment {
  padding: 44px 0;
  background: var(--white);
}

.enjoyment-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.enjoyment-header {
  text-align: center;
  margin-bottom: 28px;
}

.enjoyment-header .en-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  display: block;
  margin-bottom: 8px;
}

.enjoyment-header .ja-sub {
  font-size: 12px;
  font-weight: 200;
  color: var(--text-light);
  letter-spacing: 0.12em;
}

/* 2枚のカードを横並び */
.enjoyment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

/* 各カード：白背景・丸角・うすいボーダー */
.enjoyment-card {
  background: var(--white);
  border: 1px solid #f0dde4;
  border-radius: 16px;
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(212, 116, 140, 0.06);
}

/* カードのタイトル行（アイコン＋テキスト） */
.enjoyment-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.card-icon {
  color: var(--pink-mid);
  font-size: 15px;
  line-height: 1;
}

.enjoyment-card-title {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.12em;
}

.enjoyment-card img {
  width: 100%;
  border-radius: 4px;
}

/* 各丸画像の下のテキストグリッド（3列） */
.enjoyment-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
  padding: 0 4px;
}

.enjoyment-item {
  text-align: center;
}

.item-label {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--pink-deep);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  line-height: 1.5;
}

.item-desc {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  letter-spacing: 0.02em;
}

/* 気分カードのラベルは小さめに調整 */
.enjoyment-card:nth-child(2) .item-label {
  font-size: 10.5px;
}

/* 下のメッセージエリア */
.enjoyment-message {
  text-align: center;
  padding: 20px 16px;
}

.enjoyment-message p {
  font-size: 14px;
  font-weight: 300;
  color: var(--pink-deep);
  line-height: 2;
  letter-spacing: 0.08em;
}

.enjoyment-message .quote {
  font-style: italic;
}

/* ===== 6. FRAGRANCE TYPE ===== */
.type {
  background: var(--beige);
  padding: 44px 0;
}

.type-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.type-header {
  text-align: center;
  margin-bottom: 32px;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.type-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(180, 100, 120, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* 横並び：画像左・テキスト右 */
  display: flex;
  align-items: stretch;
}

.type-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(180, 100, 120, 0.14);
}

.type-card img {
  width: 42%;
  flex-shrink: 0;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.type-card-body {
  padding: 16px 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.type-card-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--pink-mid);
  display: block;
}

.type-card-ja {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 4px;
}

.type-card-desc {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  letter-spacing: 0.03em;
}

.type-link {
  text-align: center;
  margin-top: 8px;
}

.type-link a {
  font-size: 12px;
  font-weight: 300;
  color: var(--pink-deep);
  letter-spacing: 0.15em;
  border-bottom: 1px solid var(--pink-light);
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.type-link a:hover {
  color: var(--brown-mid);
}

/* ===== 7. RANKING ===== */
.ranking {
  background: var(--white);
  padding: 44px 0;
}

.ranking-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.ranking-header {
  text-align: center;
  margin-bottom: 32px;
}

.ranking-header .section-divider {
  margin-bottom: 0;
}

.ranking-header .section-title {
  margin-bottom: 0;
}

.ranking-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.ranking-card {
  text-align: center;
  position: relative;
}

.ranking-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink-deep);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(212, 116, 140, 0.4);
}

.ranking-card:nth-child(1) .ranking-badge {
  background: linear-gradient(135deg, #d4a017, #e8c84a);
  box-shadow: 0 2px 10px rgba(212, 160, 23, 0.5);
}

.ranking-card:nth-child(2) .ranking-badge {
  background: linear-gradient(135deg, #8c9ba8, #b0c0cc);
}

.ranking-card:nth-child(3) .ranking-badge {
  background: linear-gradient(135deg, #b07d4a, #c8a070);
}

.ranking-image {
  padding-top: 16px;
  border-radius: 6px;
  overflow: hidden;
}

.ranking-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.ranking-image img:hover {
  transform: scale(1.04);
}

.ranking-card-body {
  padding: 12px 4px 0;
}

.ranking-brand {
  font-size: 10px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 3px;
}

.ranking-name {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.ranking-tags {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tag {
  font-size: 9.5px;
  font-weight: 300;
  color: var(--pink-deep);
  border: 1px solid var(--pink-light);
  padding: 1px 6px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.ranking-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--pink-mid);
  color: var(--pink-deep);
  font-family: 'Noto Serif JP', serif;
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.1em;
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  width: 100%;
}

.ranking-btn:hover {
  background: var(--pink-deep);
  color: var(--white);
  border-color: var(--pink-deep);
}

.ranking-more {
  text-align: center;
  margin-top: 24px;
}

.ranking-more a {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.15em;
  border: 1px solid var(--beige-warm);
  padding: 10px 32px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.25s ease;
}

.ranking-more a:hover {
  background: var(--beige);
  color: var(--text-dark);
}

/* ===== 8 & 9. REVIEW + CTA（横並び） ===== */
.review-cta {
  background: var(--pink-pale);
  padding: 40px 0;
}

.review-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.review-cta-card {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  box-shadow: 0 3px 20px rgba(180, 100, 120, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(180, 100, 120, 0.16);
}

.review-cta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* レビューカード：テキストオーバーレイ */
.review-card {
  position: relative;
}

.review-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 58%;
  padding: 28px 24px 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  /* 左から右へグラデーションで画像になじませる */
  background: linear-gradient(to right, rgba(200, 140, 155, 0.72) 55%, transparent 100%);
}

.review-title {
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(120, 50, 60, 0.3);
}

.review-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-list li {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.review-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
}

.review-btn {
  display: inline-block;
  background: rgba(210, 120, 140, 0.85);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 9px 20px;
  border-radius: 24px;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background 0.25s ease;
}

.review-card:hover .review-btn {
  background: rgba(190, 100, 120, 0.95);
}

/* ===== 10. FOOTER ===== */
footer {
  background: var(--white);
  border-top: 1px solid var(--pink-light);
  padding: 32px 0 24px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.footer-label {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-shops {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.shop-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  border: 1px solid var(--pink-light);
  background: var(--white);
  color: var(--text-dark);
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.shop-btn:hover {
  border-color: var(--pink-mid);
  box-shadow: 0 2px 10px rgba(180, 100, 120, 0.1);
}

.shop-btn.rakuten span:first-child { color: #bf0000; font-weight: 400; }
.shop-btn.amazon  span:first-child { color: #e47911; font-weight: 400; }
.shop-btn.yahoo   span:first-child { color: #ff0033; font-weight: 400; }

.footer-note {
  font-size: 11px;
  font-weight: 200;
  color: var(--text-light);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  line-height: 1.8;
}

.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .fv-title {
    font-size: 24px;
  }

  .empathy-block,
  .empathy-block.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 52px;
  }

  .empathy-block.reverse .empathy-image {
    order: 0;
  }

  .empathy-block.reverse .empathy-text {
    order: 0;
  }

  .empathy-image img {
    height: 240px;
  }

  .summary {
    min-height: 200px;
  }

  .summary-image-block {
    width: 100%;
    opacity: 0.35;
  }

  .summary-image-block::before {
    width: 100%;
    background: linear-gradient(to right, #f5ece4 0%, #f5ece4 30%, transparent 100%);
  }

  .summary-text-block {
    width: 90%;
    max-width: none;
  }

  .enjoyment-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .type-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .type-card img {
    width: 38%;
  }

  .ranking-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .ranking-card:last-child {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
  }

  .ranking-image img {
    height: 200px;
  }

  .footer-shops {
    flex-direction: column;
    align-items: center;
  }

  .shop-btn {
    width: 200px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .empathy {
    padding: 48px 0;
  }

  .empathy-inner {
    padding: 0 16px;
  }

  .empathy-text h3 {
    font-size: 15px;
  }

  .empathy-text p {
    font-size: 13px;
  }

  .enjoyment-inner,
  .type-inner,
  .ranking-inner,
  .footer-inner {
    padding: 0 16px;
  }

  .ranking-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .enjoyment-message {
    padding: 20px 16px;
  }

  .section-title .ja {
    font-size: 18px;
  }

  .review-cta-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
