@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;
  --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; }

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

/* ===== 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: 20px;
}
.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 {
  background: var(--white);
}

.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;
  display: block;
}

.fv-body {
  display: block;
}
.fv-text {
  display: none;
}
.fv-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 300;
  color: var(--pink-deep);
  letter-spacing: 0.1em;
}
.fv-heading {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  line-height: 1.3;
}
.fv-sub {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.06em;
}
.fv-lead {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 2;
  letter-spacing: 0.03em;
}
.fv-image img {
  width: 100%;
  display: block;
}

/* ===== Intro ===== */
.intro {
  padding: 44px 0;
  background: var(--white);
  border-top: 1px solid var(--pink-light);
}
.intro-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.intro-body {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}

/* ===== Types ===== */
.types {
  padding: 44px 0 52px;
  background: var(--off-white);
}
.types-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}
.type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ===== Type Card ===== */
.type-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 2px 18px rgba(180, 100, 120, 0.08);
}
.type-img {
  width: 36%;
  flex-shrink: 0;
}
.type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.type-body {
  padding: 20px 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
}

/* Type Number + Name */
.type-num-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.type-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 30px;
  font-weight: 300;
  color: var(--pink-deep);
  line-height: 1;
  flex-shrink: 0;
}
.type-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.type-name-ja {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.type-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10.5px;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.2em;
}

/* Type Description */
.type-desc {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* Type Scene */
.type-scene {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.scene-tag {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink-deep);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--pink-light);
  width: fit-content;
}
.type-scene ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.type-scene li {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-mid);
  padding-left: 13px;
  position: relative;
  line-height: 1.75;
  letter-spacing: 0.02em;
}
.type-scene li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: var(--pink-mid);
}

/* ===== Choose ===== */
.choose {
  background: var(--white);
  padding: 52px 0;
  border-top: 1px solid var(--pink-light);
}
.choose-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.choose-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  line-height: 1.8;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.choose-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.choose-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--pink-light);
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  flex-shrink: 0;
}
.choose-icon svg {
  width: 100%;
  height: 100%;
}
.choose-title {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}
.choose-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  letter-spacing: 0.03em;
}

/* ===== Summary ===== */
.summary {
  background: var(--off-white);
  padding: 52px 0;
}
.summary-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 36px;
  align-items: center;
}
.summary-heading {
  font-size: 19px;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  line-height: 1.65;
  margin-bottom: 18px;
}
.summary-body {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 2.1;
  letter-spacing: 0.04em;
}
.summary-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(180, 100, 120, 0.1);
}

/* ===== Shop CTA ===== */
.shop {
  background: var(--white);
  padding: 48px 0;
  border-top: 1px solid var(--pink-light);
}
.shop-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.shop-sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.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 ===== */
footer {
  background: var(--white);
  border-top: 1px solid var(--pink-light);
  padding: 28px 0 20px;
}
.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.footer-note {
  font-size: 11px;
  font-weight: 200;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  line-height: 1.8;
}
.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-light);
}

/* ===== Responsive: 768px ===== */
@media (max-width: 768px) {
  .fv-heading { font-size: 26px; }

  .type-grid {
    grid-template-columns: 1fr;
  }
  .type-img { width: 38%; }

  .choose-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .summary-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ===== Responsive: 480px ===== */
@media (max-width: 480px) {
  .fv-heading { font-size: 22px; }
  .types-inner { padding: 0 12px; }
  .type-card { flex-direction: column; }
  .type-img { width: 100%; height: 180px; }
  .type-body { padding: 16px; }
}
