    :root {
      --bg: #f7f7f7;
      --white: #ffffff;
      --black: #111;
      --gray: #666;
      --accent: #c89b63;
    }

    body {
      margin: 0;
      font-family: "Noto Sans JP", sans-serif;
      color: var(--black);
      background: var(--bg);
      line-height: 1.8;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    section {
      padding: 64px 20px;
    }

    .inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    /* =====================
       HERO
    ===================== */
    .hero {
      background: linear-gradient(180deg, #ececec, #f7f7f7);
      text-align: center;
      padding: 80px 20px 96px;
    }

    .hero h1 {
      font-family: "Playfair Display", serif;
      font-size: clamp(26px, 4vw, 40px);
      margin-bottom: 16px;
    }

    .hero p {
      color: var(--gray);
      max-width: 680px;
      margin: 0 auto 32px;
    }

    .cta {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      padding: 14px 32px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 600;
      transition: .3s;
    }

    .btn.primary {
      background: var(--black);
      color: #fff;
    }

    .btn.primary:hover {
      opacity: .85;
    }

    .btn.ghost {
      border: 1px solid var(--black);
      color: var(--black);
    }

    /* =====================
       PROBLEM
    ===================== */
    .problems {
      background: var(--white);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
      margin-top: 40px;
    }

    .card {
      background: #fafafa;
      padding: 32px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,.05);
    }

    .card h3 {
      font-size: 18px;
      margin-bottom: 12px;
    }

    /* =====================
       FEATURES
    ===================== */
.features .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

.features h2 {
  text-align: center;
  margin-bottom: 64px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 72px;
}

.feature-text {
  flex: 1;
  max-width: 460px;
}

.feature-image {
  flex: 1;
  text-align: center;
}

.feature-image img {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;   /* ← 正方形固定 */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}
.feature-lead {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 8px;
}
/* 交互レイアウト */
.features .feature {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 72px;
}


.section-title {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.section-title span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #999;
}

    /* =====================
       FRAGRANCE
    ===================== */
    .fragrance {
      background: linear-gradient(180deg, #111, #333);
      color: #fff;
      text-align: center;
    }

    .fragrance h2 {
      font-family: "Playfair Display", serif;
      font-size: 30px;
      margin-bottom: 16px;
    }

    .fragrance span {
      color: var(--accent);
      font-weight: 600;
    }
.fragrance-image {
  height: 140px;
  margin: 24px auto;
  opacity: .9;
}


    /* =====================
       FOOTER CTA
    ===================== */
    .final {
      text-align: center;
      background: var(--white);
    }

@media (max-width: 768px) {
  .feature {
    flex-direction: column;
    text-align: center;
  }

  .feature-text {
    max-width: 100%;
  }
}


    /* =====================
　　USERVOICE
    ===================== */
.user-voice {
  background: #fafafa;
  padding: 80px 20px;
}

.user-voice h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 48px;
}
.voice-sub::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #c89b63;
  margin: 0 auto 12px;
}

.voice-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.voice-card {
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.stars {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.voice-text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;        /* 40 → 32 に */
  margin-top: 32px; /* 64 → 32 に */
}
.features.compact {
  padding: 48px 20px; /* 通常64 → 48 */
}

.features.compact h2 {
  margin-bottom: 32px; /* 64 → 32 */
}

.voice-sub {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #999;
  margin-top: 8px;
  margin-bottom: 40px;
}
.feature-item {
  text-align: center;
  padding: 8px 0;

}

.feature-item img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 16px; /* 24 → 16 */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.problem-note {
  margin-top: 56px;
  text-align: center;
}

.problem-note .en {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #999;
  margin-bottom: 12px;
}

.problem-note .jp {
  font-size: 18px;
  line-height: 1.8;
}

.problem-note strong {
  font-weight: 600;
  border-bottom: 2px solid #c89b63;
  padding-bottom: 2px;
}
/* =====================
   HOW TO USE
===================== */

.howto {
  background: #fafafa;
  padding: 80px 20px;
}

.howto-steps {
  max-width: 900px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  background: #fff;
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
  position: relative;
}

.step .num {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  letter-spacing: 0.05em;
  color: #c89b63;
  margin-bottom: 16px;
}

.step p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

/* =====================
   FAQ
===================== */

.faq {
  background: #ffffff;
  padding: 80px 20px;
}

.faq dl {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq dt {
  position: relative;
  font-weight: 600;
  padding: 20px 56px 20px 20px;
  border-radius: 12px;
  background: #fafafa;
  margin-bottom: 8px;
  cursor: default;
}

.faq dt::before {
  content: "Q";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #c89b63;
}

.faq dt {
  padding-left: 52px;
}

.faq dd {
  margin: 0 0 24px;
  padding: 16px 20px 16px 52px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.faq dd::before {
  content: "A";
  position: absolute;
  margin-left: -32px;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  color: #999;
}

/* 最後だけ余白なし */
.faq dd:last-of-type {
  margin-bottom: 0;
}

/* スマホ */
@media (max-width: 768px) {
  .faq dt {
    font-size: 15px;
  }

  .faq dd {
    font-size: 14px;
  }
}
.fragrance-image{
  max-width: 900px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}