/* ===========================================================
   PCA — DESIGN E "EDITORIAL"（雑誌・特集誌面風）
   モバイルファースト（375px基準）／PCでグリッド拡張
   =========================================================== */

/* ---- トークン ---------------------------------------------- */
:root {
  --ink: #1a1a1a;
  --ink-soft: #5a5651;
  --ink-faint: #9a948c;
  --paper: #ffffff;
  --line: #e4ded6;
  --line-strong: #1a1a1a;

  /* 誌面の帯背景（低彩度・上品に） */
  --tone-peach: #fbe8e5;
  --tone-blue: #edf2f7;
  --tone-cream: #faf6ef;

  --jp-serif: "Shippori Mincho", "Zen Kaku Gothic New", serif;
  --jp-sans: "Zen Kaku Gothic New", -apple-system, "Hiragino Kaku Gothic ProN",
    sans-serif;
  --en-serif: "Cormorant Garamond", serif;
  --en-sans: "Montserrat", sans-serif;

  --maxw: 1180px;
  --pad: 20px;
}

/* ---- リセット ---------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--jp-sans);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

/* ---- 案識別ラベル ------------------------------------------ */
.compe-label {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  font-family: var(--en-sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
  background: rgba(255, 255, 255, 0.85);
  padding: 4px 8px;
  border-bottom-left-radius: 2px;
  pointer-events: none;
}

/* ---- 共通レイアウト ---------------------------------------- */
.e-section {
  padding: 56px 0;
}
.e-inner {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.tone-peach {
  background: var(--tone-peach);
}
.tone-blue {
  background: var(--tone-blue);
}
.tone-cream {
  background: var(--tone-cream);
}
.tone-plain {
  background: var(--paper);
}

/* ---- 共通見出し -------------------------------------------- */
.e-head {
  margin-bottom: 32px;
  text-align: center;
}
.e-head-en {
  font-family: var(--en-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.e-head-jp {
  font-family: var(--jp-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 0.04em;
}
.e-head-note {
  font-family: var(--en-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* ---- 共通ボタン（細枠アウトライン） ------------------------ */
.e-btn {
  display: inline-block;
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 14px 34px;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.e-btn:hover {
  background: var(--ink);
  color: var(--paper);
}
.e-btn-fill {
  background: var(--ink);
  color: var(--paper);
}
.e-btn-fill:hover {
  background: var(--paper);
  color: var(--ink);
}

/* ---- 共通★ ------------------------------------------------ */
.e-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
}
.e-star {
  color: #c8a15a; /* 上品な金 */
}
.e-star.is-empty {
  color: var(--line);
}

/* ============================================================
   1. アナウンスバー
   ============================================================ */
.e-announce {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 9px 14px;
}
.e-announce-text {
  font-size: 11.5px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ============================================================
   2. ヘッダー
   ============================================================ */
.e-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.e-header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.e-header-brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.e-logo {
  font-family: var(--en-serif);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.14em;
  line-height: 1;
}
.e-logo-tag {
  font-family: var(--en-sans);
  font-size: 8.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.e-header-lead {
  font-family: var(--en-sans);
  font-size: 8.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   3. ヒーロー
   ============================================================ */
.e-hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px var(--pad) 8px;
  text-align: center;
}
.e-hero-kicker {
  font-family: var(--en-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.e-hero-title {
  font-family: var(--jp-serif);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.e-hero-title-en {
  font-family: var(--en-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.8em;
  color: var(--ink-soft);
  margin-right: 4px;
}

/* ステージ（画像は絶対にトリミングしない = contain） */
.e-hero-stage {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fbfaf8;
}
.e-hero-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.e-hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: block;
  padding: 18px 18px 0;
}
.e-hero-figure {
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.e-hero-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* トリミング禁止 */
}
.e-hero-cap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 4px 20px;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.e-hero-cap-num {
  font-family: var(--en-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}
.e-hero-cap-label {
  font-family: var(--jp-serif);
  font-size: 14px;
  letter-spacing: 0.06em;
}

/* ドット */
.e-hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.e-hero-dot {
  width: 30px;
  height: 2px;
  border: 0;
  padding: 0;
  background: var(--line);
  transition: background 0.25s ease;
}
.e-hero-dot.is-active {
  background: var(--ink);
}

/* ============================================================
   4. 割引バナー
   ============================================================ */
.e-discount {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: var(--maxw);
  margin: 24px auto 0;
  padding: 20px var(--pad);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.e-discount-en {
  font-family: var(--en-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  flex: 0 0 auto;
}
.e-discount-text {
  font-family: var(--jp-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  flex: 1 1 auto;
}
.e-discount-arrow {
  font-size: 16px;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.e-discount:hover .e-discount-arrow {
  transform: translateX(4px);
}

/* ============================================================
   5. 機種選択
   ============================================================ */
.e-models {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.e-model {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--paper);
  transition: background 0.2s ease, color 0.2s ease;
}
.e-model:hover {
  background: var(--ink);
  color: var(--paper);
}
.e-model-idx {
  font-family: var(--en-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1;
  color: var(--ink-soft);
}
.e-model:hover .e-model-idx {
  color: var(--paper);
}
.e-model-label {
  font-family: var(--jp-serif);
  font-size: 14px;
  letter-spacing: 0.03em;
}

/* ============================================================
   6. テイストで探す
   ============================================================ */
.e-tastes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 14px;
}
.e-taste {
  display: block;
}
.e-taste-figure {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.e-taste-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.e-taste:hover .e-taste-img {
  transform: scale(1.05);
}
.e-taste-cap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 2px 0;
}
.e-taste-num {
  font-family: var(--en-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.e-taste-label {
  font-family: var(--jp-serif);
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* ============================================================
   7. RANKING（大きな明朝数字を写真に重ねる）
   ============================================================ */
.e-ranking {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.e-rank {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
}
.e-rank-figure {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.e-rank-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.e-rank-num {
  position: absolute;
  left: -6px;
  bottom: -14px;
  font-family: var(--en-serif);
  font-weight: 600;
  font-style: italic;
  font-size: 72px;
  line-height: 0.8;
  color: var(--paper);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.e-rank-body {
  min-width: 0;
}
.e-rank-title {
  font-family: var(--jp-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.e-rank-review {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.e-rank-count {
  font-family: var(--en-sans);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}
.e-rank-price {
  font-family: var(--en-serif);
  font-size: 19px;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ============================================================
   8. レビュー（雑誌の引用風）
   ============================================================ */
.e-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.e-review {
  position: relative;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px 24px 28px;
}
.e-review-mark {
  font-family: var(--en-serif);
  font-size: 60px;
  line-height: 0.6;
  color: var(--tone-peach);
  display: block;
  height: 30px;
}
.e-review .e-stars {
  margin: 6px 0 14px;
  justify-content: center;
}
.e-review-quote {
  font-family: var(--jp-serif);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.e-review-cap {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.e-review-author {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
}
.e-review-product {
  font-family: var(--en-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}
.e-review-product:hover {
  border-bottom-color: var(--ink);
}

/* ============================================================
   9. NEW ARRIVAL
   ============================================================ */
.e-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 16px;
}
.e-product {
  display: block;
}
.e-product-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.e-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.e-product:hover .e-product-img {
  transform: scale(1.04);
}
.e-product-tag {
  position: absolute;
  left: 8px;
  top: 8px;
  font-family: var(--en-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  padding: 3px 7px;
  border-radius: 2px;
}
.e-product-body {
  padding: 10px 2px 0;
}
.e-product-title {
  font-family: var(--jp-sans);
  font-size: 12.5px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2lh;
}
.e-product-price {
  font-family: var(--en-serif);
  font-size: 16px;
  font-weight: 600;
  margin-top: 6px;
}
.e-more {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   10. 安心バッジ
   ============================================================ */
.e-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.e-badge {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 22px 20px;
}
.e-badge-idx {
  font-family: var(--en-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-faint);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.e-badge-title {
  font-family: var(--jp-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.e-badge-text {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.e-badge-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--en-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
}

/* ============================================================
   11. SNS
   ============================================================ */
.e-sns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.e-sns-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--paper);
  transition: background 0.2s ease, color 0.2s ease;
}
.e-sns-item:hover {
  background: var(--ink);
  color: var(--paper);
}
.e-sns-label {
  font-family: var(--en-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.e-sns-arrow {
  font-size: 14px;
}

/* ============================================================
   12. LINE CTA
   ============================================================ */
.e-line {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 8px 0;
}
.e-line-en {
  font-family: var(--en-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.e-line-title {
  font-family: var(--jp-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.e-line-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================================
   13. フッター
   ============================================================ */
.e-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 48px var(--pad);
}
.e-footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}
.e-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
}
.e-footer-logo {
  font-family: var(--en-serif);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.14em;
}
.e-footer-tag {
  font-family: var(--en-sans);
  font-size: 8.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.e-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-bottom: 28px;
}
.e-footer-link {
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.e-footer-link:hover {
  border-bottom-color: rgba(255, 255, 255, 0.6);
}
.e-footer-copy {
  font-family: var(--en-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   タブレット（640px〜）
   ============================================================ */
@media (min-width: 640px) {
  .e-head-jp {
    font-size: 30px;
  }
  .e-hero-title {
    font-size: 40px;
  }
  .e-hero-figure {
    height: 440px;
  }
  .e-models {
    grid-template-columns: repeat(3, 1fr);
  }
  .e-tastes {
    grid-template-columns: repeat(4, 1fr);
  }
  .e-ranking {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 28px;
  }
  .e-reviews {
    grid-template-columns: repeat(3, 1fr);
  }
  .e-products {
    grid-template-columns: repeat(4, 1fr);
  }
  .e-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .e-sns {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   デスクトップ（1024px〜）
   ============================================================ */
@media (min-width: 1024px) {
  :root {
    --pad: 40px;
  }
  .e-section {
    padding: 80px 0;
  }
  .e-head {
    margin-bottom: 46px;
  }
  .e-head-jp {
    font-size: 34px;
  }
  .e-hero {
    padding: 60px var(--pad) 8px;
  }
  .e-hero-title {
    font-size: 52px;
  }
  .e-hero-figure {
    height: 520px;
  }
  .e-ranking {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
  }
  .e-rank {
    grid-template-columns: 140px 1fr;
    gap: 20px;
  }
  .e-rank-num {
    font-size: 84px;
  }
  .e-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}
