:root {
  --fg: #131a21;
  --fg-muted: #4d5862;
  --bg: #ffffff;
  --bg-soft: #eaedf0;
  --line: #c4cbd1;
  --accent: #0a5a94;
  --accent-red: #c8161f;
  --accent-dark: #1d262e;
  --accent-soft: #e3e8ec;
  --silver: #bcc3ca;
  --silver-light: #e8ebee;
  --silver-dark: #838d97;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  position: relative;
  margin: 0;
  overflow-x: clip;
  color: var(--fg);
  background: #dde1e5;
  background-image: linear-gradient(
    180deg,
    #eef0f2 0%,
    #dce0e4 55%,
    #d0d5da 100%
  );
  background-attachment: fixed;
  font-family:
    "Helvetica Neue", "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ヘッダー */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(240, 242, 244, 0.86);
  border-bottom: 1px solid rgba(152, 161, 169, 0.35);
  backdrop-filter: blur(18px) saturate(140%);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 150px;
  height: auto;
}

.nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
}

.nav a {
  text-decoration: none;
  color: var(--fg-muted);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent);
}

/* ヒーロー */
.hero {
  position: relative;
  color: var(--fg);
  background:
    radial-gradient(
      circle at 78% 42%,
      rgba(255, 255, 255, 0.8),
      transparent 32%
    ),
    linear-gradient(145deg, #f2f4f5 0%, #d7dce0 46%, #aeb7bf 100%);
  padding: 132px 0 120px;
}

/* 図形が下にはみ出すため、赤線は図形より上に描く。 */
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 2;
  background: var(--accent-red);
}

.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::after {
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.28),
    transparent 45%,
    rgba(14, 72, 111, 0.08)
  );
}

.hero-layout {
  position: relative;
  z-index: 1;
}

.hero-figure {
  position: absolute;
  top: 0;
  right: 0;
  bottom: -300px;
  left: 0;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 60%,
    rgba(0, 0, 0, 0.55) 80%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 60%,
    rgba(0, 0, 0, 0.55) 80%,
    transparent 100%
  );
}

/* 赤線より下にはみ出した部分だけをぼかす。 */
.hero-figure::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 300px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 30%);
  pointer-events: none;
}

.hero-figure svg {
  position: absolute;
  left: 92%;
  top: 50%;
  width: auto;
  height: 108%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
}

.hero-figure svg path {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hf-points,
.hf-points-back {
  stroke-width: 0.8;
}

.hero h1 {
  display: inline-block;
  margin: 0 0 18px;
  font-size: clamp(3.2rem, 7.8vw, 6.2rem);
  line-height: 1.08;
  letter-spacing: 0.045em;
  font-weight: 600;
  transform: scaleX(1.04);
  transform-origin: left center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero p {
  margin: 0;
  max-width: 500px;
  color: var(--fg-muted);
  font-size: 1.04rem;
  line-height: 2.15;
}

.eyebrow,
.shop-preview small,
.product-card small {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero-copy {
  max-width: 520px;
  animation: rise-in 700ms ease-out both;
}

.shop-preview {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 60px rgba(32, 65, 73, 0.16);
  backdrop-filter: blur(18px);
  text-decoration: none;
}

.shop-preview-image {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  background: linear-gradient(
    145deg,
    rgba(229, 241, 247, 0.92),
    rgba(242, 232, 236, 0.82)
  );
}

.shop-preview-image img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(24, 42, 48, 0.2));
}

.shop-preview-image.zodiac-preview {
  position: relative;
  display: block;
  min-height: 285px;
}

.shop-preview-image.zodiac-preview img {
  position: absolute;
  width: 52%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(18, 34, 61, 0.25);
}

.shop-preview-image.zodiac-preview img:nth-child(1) {
  z-index: 3;
  left: 8%;
  top: 13%;
}
.shop-preview-image.zodiac-preview img:nth-child(2) {
  z-index: 2;
  right: 8%;
  top: 9%;
}
.shop-preview-image.zodiac-preview img:nth-child(3) {
  z-index: 4;
  right: 21%;
  bottom: 4%;
  width: 46%;
}

.shop-preview-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.shop-preview-body small,
.shop-preview-body strong {
  display: block;
}

.shop-preview-body strong {
  font-size: 1.05rem;
}

.shop-preview-arrow {
  font-size: 1.35rem;
}

/* セクション */
main section {
  padding: 84px 0;
}

h2 {
  position: relative;
  padding-left: 18px;
  font-size: 1.35rem;
  letter-spacing: 0.09em;
  font-weight: 600;
  margin: 0 0 22px;
}

h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 6px;
  height: 1.05em;
  background: var(--accent-red);
}

h2 + .lead {
  margin: 0 0 28px;
  color: var(--fg-muted);
}

h3 {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

#news,
#business {
  position: relative;
  z-index: 1;
}

/* お知らせ */
.news-list {
  max-width: 780px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.news-list li {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 0 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--fg-muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  line-height: 1.9;
}

.news-list p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
}

@media (max-width: 600px) {
  .news-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.section-lead {
  max-width: 780px;
  margin: 0;
  color: var(--fg-muted);
}

.section-lead p {
  margin: 0 0 16px;
}
.section-lead p:last-child {
  margin-bottom: 0;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.business-grid article,
.merch-card {
  display: block;
  min-height: 205px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-top: 3px solid var(--silver-dark);
  border-radius: 3px;
  color: inherit;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfb 100%);
  box-shadow:
    0 18px 40px rgba(19, 26, 33, 0.13),
    0 2px 5px rgba(19, 26, 33, 0.07);
  text-decoration: none;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.merch-card {
  border-top-color: var(--accent-red);
}

.business-grid article:hover,
.merch-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 26px 55px rgba(41, 52, 62, 0.13),
    0 3px 7px rgba(41, 52, 62, 0.06);
}

.business-grid .status {
  display: inline-block;
  margin-bottom: 24px;
  padding: 4px 10px;
  border-radius: 2px;
  color: var(--fg-muted);
  background: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.business-grid .status.active {
  color: #fff;
  background: var(--accent-red);
}

.business-grid p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.merch-preview {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 24px 0 4px;
}

.merch-preview img {
  width: 84px;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(27, 35, 43, 0.22);
  transition: transform 200ms ease;
}

.merch-card:hover .merch-preview img {
  transform: translateY(-3px);
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 6px 0 0;
}

.section-heading h3 {
  margin-top: 5px;
  font-size: 1.25rem;
}
.section-heading p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

#products {
  position: relative;
  overflow: hidden;
  color: var(--fg);
  background: linear-gradient(180deg, #cfd5da 0%, #c2c9d0 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 4px solid var(--accent);
  scroll-margin-top: 72px;
}

#products .section-heading {
  position: relative;
  z-index: 1;
}
#products .section-heading p {
  color: var(--fg-muted);
}
#products .eyebrow {
  color: var(--accent);
}

.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.chess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 44px;
}

.chess-grid figure {
  margin: 0;
  padding: 14px 14px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfb 100%);
  box-shadow:
    0 16px 34px rgba(19, 26, 33, 0.16),
    0 2px 5px rgba(19, 26, 33, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.chess-grid figure:hover {
  transform: translateY(-5px);
  box-shadow:
    0 26px 50px rgba(19, 26, 33, 0.22),
    0 3px 7px rgba(19, 26, 33, 0.1);
}

.chess-grid figure > a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.chess-grid img {
  display: block;
  width: 100%;
  border-radius: 50%;
}

.chess-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.86rem;
  font-weight: 700;
}

.chess-grid figcaption span {
  color: var(--fg-muted);
  font-size: 0.7rem;
  font-weight: 500;
}

.series {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 0 34px;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
}

.series h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}
.series p {
  margin: 0 0 12px;
  color: var(--fg-muted);
  font-size: 0.93rem;
}
.series p:last-child {
  margin-bottom: 0;
}

.series-note {
  font-size: 0.8rem !important;
  color: color-mix(in srgb, var(--fg-muted) 75%, transparent);
}

.zodiac-grid figure {
  margin: 0;
  padding: 14px 14px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfb 100%);
  box-shadow:
    0 16px 34px rgba(19, 26, 33, 0.16),
    0 2px 5px rgba(19, 26, 33, 0.08);
  animation: product-in 520ms calc(var(--order) * 55ms) ease-out both;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.zodiac-grid figure:hover {
  transform: translateY(-5px);
  box-shadow:
    0 26px 50px rgba(19, 26, 33, 0.22),
    0 3px 7px rgba(19, 26, 33, 0.1);
}

.zodiac-grid img {
  display: block;
  width: 100%;
  border-radius: 50%;
  transition: transform 500ms ease;
}

.zodiac-grid figure:hover img {
  transform: rotate(2deg) scale(1.025);
}

.zodiac-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.86rem;
  font-weight: 700;
}

.zodiac-grid figcaption span {
  color: var(--fg-muted);
  font-size: 0.7rem;
  font-weight: 500;
}

.image-note {
  margin: 14px 0 0;
  color: var(--fg-muted);
  font-size: 0.78rem;
}

.catalog-hero {
  position: relative;
  overflow: hidden;
  color: var(--fg);
  background: linear-gradient(
    160deg,
    #f6f7f8 0%,
    var(--silver-light) 34%,
    var(--silver) 72%,
    #b9c0c6 100%
  );
  padding: 72px 0 62px;
  border-bottom: 2px solid var(--accent-red);
}

.catalog-hero::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 150px;
  right: -18%;
  top: -35px;
  background: rgba(20, 99, 159, 0.14);
  filter: blur(58px);
  transform: rotate(-7deg);
}

.catalog-hero .wrap {
  position: relative;
  z-index: 1;
}
.catalog-hero .eyebrow {
  color: var(--accent);
}
.catalog-hero h1 {
  margin: 5px 0 10px;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
}
.catalog-hero p {
  margin: 0;
  color: var(--fg-muted);
}
.catalog-products {
  padding-top: 58px;
}

.shop-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 44px;
  padding: 28px 0;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

.shop-cta h3 {
  margin: 3px 0 0;
  font-size: 1.25rem;
}

.product-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  max-width: 680px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 45px rgba(33, 62, 69, 0.11);
  backdrop-filter: blur(16px);
  text-decoration: none;
}

.product-card-image {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  background: linear-gradient(
    145deg,
    rgba(225, 243, 239, 0.9),
    rgba(239, 232, 224, 0.85)
  );
}

.product-card-image img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.product-card-body {
  display: flex;
  min-width: 0;
  padding: 28px;
  flex-direction: column;
  justify-content: center;
}

.product-card-body strong {
  margin: 4px 0 14px;
  font-size: 1.05rem;
}

.product-card-body > span {
  color: var(--accent);
  font-size: 0.9rem;
}

.page-head {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}

.page-head h1 {
  margin: 0;
  font-size: 1.6rem;
}

/* カード */
.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  background: #fff;
}

.card p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.95rem;
}

.card .price {
  margin-top: 14px;
  font-weight: 700;
  color: var(--accent);
}

/* 定義表（事業者概要・特商法などの表形式） */
.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  background: #fff;
  box-shadow:
    0 18px 40px rgba(41, 52, 62, 0.09),
    0 2px 5px rgba(41, 52, 62, 0.05);
  font-size: 0.94rem;
}

.table th,
.table td {
  border-top: 1px solid var(--line);
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
}

.table tr:first-child th,
.table tr:first-child td {
  border-top: 0;
}

.table th {
  width: 30%;
  min-width: 150px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: var(--bg-soft);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .table th,
  .table td {
    display: block;
    width: 100%;
  }
  .table th {
    border-bottom: none;
    white-space: normal;
  }
  .table td {
    border-top: none;
  }
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

#products .btn {
  box-shadow: 7px 7px 0 rgba(207, 32, 41, 0.7);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

#products .btn:hover {
  transform: translate(3px, 3px);
  box-shadow: 4px 4px 0 rgba(207, 32, 41, 0.7);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

/* 記入待ちプレースホルダー（公開前に必ず置換する） */
.todo {
  background: #fff3cd;
  color: #7a5b00;
  padding: 0 4px;
  border-radius: 3px;
}

/* フッター */
.site-footer {
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(152, 161, 169, 0.35);
  padding: 40px 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
}

.site-footer .nav {
  margin-bottom: 14px;
}

.prose ul {
  padding-left: 1.2em;
}

.prose li {
  margin-bottom: 6px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes product-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 72px 0 60px;
  }

  .hero-figure {
    bottom: -140px;
  }

  .hero-figure::after {
    height: 140px;
  }

  .hero-figure svg {
    left: 62%;
    height: 110%;
    opacity: 0.38;
  }

  .product-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .product-card-body {
    padding: 18px;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .business-grid article {
    min-height: 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .zodiac-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chess-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card-image {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 商品グリッド */
.products {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.product {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.product a.thumb {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: var(--fg-muted);
  font-size: 0.8rem;
  text-decoration: none;
}

.product .body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product .name {
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  color: var(--fg);
}

.product .desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin: 0;
  flex: 1;
}

.product .price {
  font-weight: 700;
  color: var(--accent);
}

.product .btn {
  padding: 10px 16px;
  text-align: center;
  font-size: 0.9rem;
}

/* 商品詳細 */
.product-detail {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

@media (max-width: 720px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

.product-detail .gallery {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--fg-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.product-detail .price-lg {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 4px 0 2px;
}

.product-detail .tax-note {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin: 0 0 20px;
}

/* FAQ */
.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::before {
  content: "Q. ";
  color: var(--accent);
}

.faq details p {
  margin: 10px 0 0;
  color: var(--fg-muted);
}
