@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: #e8d5c8;
  --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%;
}

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

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

/* ===== SR Only ===== */
.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;
  color: var(--pink-deep);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

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

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

/* ===== FV ===== */
.fv-top-text {
  text-align: left;
  padding: 8px 24px 6px;
  background: var(--white);
}

.catch {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text-light);
  display: block;
  line-height: 1.6;
}

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

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

/* ===== Intro ===== */
.intro {
  padding: 44px 0;
  background: var(--white);
}

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

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

/* ===== Season Blocks ===== */
.season-block {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 420px;
}

.season-block.reverse {
  grid-template-columns: 7fr 5fr;
}

.season-block.reverse .season-image-wrap {
  order: 2;
}

.season-block.reverse .season-content {
  order: 1;
}

/* ===== Season Image Wrap ===== */
.season-image-wrap {
  position: relative;
  overflow: hidden;
}

.season-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Season Label ===== */
.season-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px 28px;
  background: linear-gradient(to top, rgba(70, 30, 30, 0.6) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.season-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.9);
}

.season-ja {
  font-size: 52px;
  font-weight: 200;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(70, 30, 30, 0.4);
}

.season-sub {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

/* ===== Season Content ===== */
.season-content {
  background: var(--white);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.season-block.spring .season-content,
.season-block.autumn .season-content {
  background: var(--off-white);
}

.season-heading {
  font-size: 19px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.season-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 2;
  letter-spacing: 0.04em;
}

/* ===== Recommend ===== */
.recommend {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recommend-label {
  font-size: 10px;
  font-weight: 300;
  color: var(--pink-deep);
  letter-spacing: 0.2em;
  display: block;
}

.recommend-types {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.1em;
}

/* ===== Scene List ===== */
.scene-list {
  background: var(--pink-pale);
  border: 1px solid var(--pink-light);
  border-radius: 8px;
  padding: 16px 20px;
}

.scene-list-title {
  font-size: 11px;
  font-weight: 400;
  color: var(--pink-deep);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

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

.scene-list li {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
  letter-spacing: 0.03em;
  line-height: 1.75;
}

.scene-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pink-mid);
  font-size: 11px;
}

/* ===== CTA ===== */
.cta {
  background: var(--beige);
  padding: 0;
}

.cta-image-full img {
  width: 100%;
  display: block;
}

/* ===== Footer ===== */
footer {
  background: var(--white);
  border-top: 1px solid var(--pink-light);
  padding: 36px 0 28px;
}

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

.footer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.footer-card {
  background: var(--pink-pale);
  border-radius: 10px;
  padding: 28px 28px 24px;
  box-shadow: 0 2px 16px rgba(180, 100, 120, 0.07);
}

.footer-card-title {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.footer-card-body {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.review-btn {
  display: inline-block;
  background: var(--pink-deep);
  color: var(--white);
  font-size: 13px;
  font-weight: 300;
  padding: 10px 28px;
  border-radius: 24px;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}

.review-btn:hover {
  background: #b85a70;
}

.shop-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.shop-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  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 10px rgba(180, 100, 120, 0.1);
}

.shop-btn.rakuten .shop-logo { color: #bf0000; }
.shop-btn.amazon  .shop-logo { color: #e47911; }
.shop-btn.yahoo   .shop-logo { color: #ff0033; }

.shop-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

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

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

/* ===== Responsive: 768px ===== */
@media (max-width: 768px) {
  .season-block,
  .season-block.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .season-block.reverse .season-image-wrap {
    order: 0;
  }

  .season-block.reverse .season-content {
    order: 0;
  }

  .season-image-wrap {
    height: 280px;
  }

  .season-content {
    padding: 32px 24px;
    gap: 16px;
  }

  .season-ja {
    font-size: 40px;
  }

  .footer-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== Responsive: 480px ===== */
@media (max-width: 480px) {
  .catch {
    font-size: 13px;
  }

  .season-heading {
    font-size: 16px;
  }

  .season-content {
    padding: 24px 16px;
  }

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