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

/* ===== Variables ===== */
:root {
  --pink-deep:  #d4748c;
  --pink-mid:   #e8a0b0;
  --pink-light: #f5d0d8;
  --pink-pale:  #fdf0f2;
  --beige:      #f5ede8;
  --beige-warm: #ede0d6;
  --text-dark:  #5a3d35;
  --text-mid:   #7a5c55;
  --text-light: #a08880;
  --white:      #ffffff;
  --off-white:  #fefaf8;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

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

/* ===== Header ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--pink-light);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: var(--pink-deep);
  letter-spacing: 0.1em;
}
.logo-ja {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.1em;
}
.header-nav {
  display: flex;
  gap: 28px;
}
.header-nav a {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--pink-deep); }

/* ===== HERO ===== */
.review-hero {
  background: var(--beige);
  padding: 56px 0;
  border-bottom: 1px solid var(--pink-light);
  overflow: hidden;
}
.hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: center;
}
.hero-image img {
  width: 100%;
  opacity: 0.82;
  mask-image: linear-gradient(to right, black 40%, transparent 84%);
  -webkit-mask-image: linear-gradient(to right, black 40%, transparent 84%);
}
.hero-text-wrap {
  /* text on right */
}
.hero-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--text-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 300;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-name-ja {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.hero-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--pink-deep);
  border: 1px solid var(--pink-mid);
  padding: 4px 18px;
  border-radius: 20px;
}

/* ===== Opening ===== */
.opening-section {
  background: var(--beige);
  padding: 72px 0;
}
.opening-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.opening-lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.opening-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 2.5;
  letter-spacing: 0.06em;
  text-align: left;
  margin-bottom: 40px;
}
.opening-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.meta-pill {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--beige-warm);
  padding: 4px 18px;
  border-radius: 20px;
  letter-spacing: 0.06em;
}

/* ===== Section 共通 ===== */
.section-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.heading-en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--pink-deep);
  margin-bottom: 8px;
}
.heading-ja {
  display: block;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.12em;
}

/* ===== Journey ===== */
.journey-section {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--pink-light);
}
.journey-header {
  position: relative;
  margin-bottom: 40px;
}
.journey-header .section-heading {
  margin-bottom: 0;
}
.journey-motif {
  position: absolute;
  right: -20px;
  top: -32px;
  width: 200px;
  opacity: 0.75;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 38%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 38%, transparent 70%);
}
.journey-steps {
  position: relative;
  padding-left: 40px;
}
.journey-steps::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(to bottom, var(--pink-mid), var(--beige-warm));
}
.journey-step {
  position: relative;
  margin-bottom: 36px;
}
.journey-step:last-child {
  margin-bottom: 0;
}
.journey-step::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink-deep);
  box-shadow: 0 0 0 3px var(--pink-pale);
}
.step-time {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--pink-deep);
  display: block;
  margin-bottom: 8px;
}
.step-note {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 2.1;
  letter-spacing: 0.04em;
}

/* ===== Scene ===== */
.scene-section {
  background: var(--pink-pale);
  padding: 64px 0;
  border-top: 1px solid var(--pink-light);
}
.scene-wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: center;
}
.scene-img img {
  width: 100%;
  border-radius: 16px;
  filter: drop-shadow(0 8px 24px rgba(180,100,120,0.1));
}
.scene-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.scene-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pink-light);
}
.scene-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.scene-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 40px;
  color: var(--pink-mid);
  line-height: 0.9;
  flex-shrink: 0;
  margin-top: 4px;
  user-select: none;
}
.scene-text {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 2;
  letter-spacing: 0.04em;
  padding-top: 4px;
}

/* ===== Voices ===== */
.voices-section {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--pink-light);
}
.score-block {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 48px;
  background: var(--off-white);
  border: 1px solid var(--pink-light);
  border-radius: 20px;
  padding: 32px 40px;
}
.score-visual {
  flex-shrink: 0;
  width: 180px;
}
.score-visual img {
  width: 100%;
}
.score-numbers {
  flex: 1;
  text-align: center;
}
.score-big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 88px;
  font-weight: 300;
  color: var(--pink-deep);
  line-height: 1;
  display: block;
  letter-spacing: -0.02em;
}
.score-of {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.2em;
  margin-top: 4px;
  margin-bottom: 24px;
}
.score-metrics {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.metric-item {
  text-align: center;
}
.metric-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--text-mid);
  display: block;
  line-height: 1.2;
}
.metric-key {
  font-size: 10px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.1em;
  display: block;
}
.voice-pull {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: center;
  border-top: 1px solid var(--pink-light);
  border-bottom: 1px solid var(--pink-light);
  padding: 28px 12px;
  margin-bottom: 36px;
}
.voice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.voice-item {
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 2;
  letter-spacing: 0.04em;
}
.voice-item.good {
  background: var(--pink-pale);
  border: 1px solid var(--pink-light);
}
.voice-item.caution {
  background: var(--beige);
  border: 1px solid var(--beige-warm);
}
.caution-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-light);
  margin-bottom: 6px;
}
.review-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ===== Closing ===== */
.closing-section {
  background: var(--beige);
  padding: 88px 24px;
  text-align: center;
  border-top: 1px solid var(--pink-light);
}
.closing-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--pink-light);
  line-height: 0.6;
  margin-bottom: 24px;
}
.closing-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 2.2;
  letter-spacing: 0.08em;
}

/* ===== 購入ボタン ===== */
.shop-section {
  padding: 52px 0;
  background: var(--white);
  border-top: 1px solid var(--pink-light);
}
.shop-label {
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.shop-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}
.shop-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  border: 1px solid var(--pink-light);
  background: var(--white);
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.shop-btn:hover {
  border-color: var(--pink-mid);
  box-shadow: 0 2px 12px rgba(180, 100, 120, 0.12);
}
.shop-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}
.shop-btn.rakuten .shop-logo { color: #bf0000; }
.shop-btn.amazon  .shop-logo { color: #e47911; }
.shop-btn.yahoo   .shop-logo { color: #ff0033; }
.shop-note {
  text-align: center;
  font-size: 11px;
  font-weight: 200;
  color: var(--text-light);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* ===== 関連フレグランス ===== */
.related-section {
  padding: 72px 0;
  background: var(--beige);
  border-top: 1px solid var(--pink-light);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: none;
  box-shadow: 0 2px 10px rgba(180, 100, 120, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(180, 100, 120, 0.13);
}
.related-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 15%;
}
.related-body {
  padding: 16px 18px 22px;
}
.related-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--pink-deep);
  display: block;
  margin-bottom: 6px;
}
.related-name {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 8px;
}
.related-catch {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ===== Footer ===== */
footer {
  background: var(--white);
  border-top: 1px solid var(--pink-light);
  padding: 36px 0 24px;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 300;
  color: var(--pink-deep);
  letter-spacing: 0.1em;
}
.footer-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.08em;
  line-height: 1.8;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 4px;
}
.footer-nav a {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: var(--pink-deep);
}
.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-light);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-nav { display: none; }

  /* スマホ：画像をうっすら背景に敷く */
  .review-hero {
    position: relative;
    padding: 52px 0;
  }
  .hero-inner {
    display: block;
    position: relative;
    z-index: 1;
  }
  .hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.28;
    filter: blur(1.5px);
    mask-image: none;
    -webkit-mask-image: none;
  }
  .hero-text-wrap {
    position: relative;
    z-index: 1;
    padding: 0 24px;
  }
  .hero-name { font-size: clamp(36px, 10vw, 56px); }
  .scene-wrap {
    display: block;
  }
  .scene-img {
    display: none;
  }
  .score-block { flex-direction: column; gap: 24px; padding: 24px; }
  .score-visual { width: 140px; }
  .score-metrics { gap: 20px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-motif { width: 140px; right: 0; top: -16px; }
}

@media (max-width: 480px) {
  .hero-text-wrap { padding: 0 20px 32px; }
  .section-inner { padding: 0 16px; }
  .opening-inner { padding: 0 16px; }
  .scene-wrap { padding: 0 16px; }
  .shop-buttons { flex-direction: column; align-items: center; }
  .shop-btn { width: 220px; justify-content: center; }
  .related-grid { grid-template-columns: 1fr; }
  .score-metrics { gap: 14px; }
  .metric-val { font-size: 22px; }
  .journey-motif { display: none; }
}
