.price-list .price-cat-head {
  margin-top: 2em;
  border-bottom: none;
  pointer-events: none;
      margin-bottom: 0px;
    padding-bottom: 0px;
}
/* 最初のカテゴリは上マージン不要 */
.price-list .price-cat-head:first-child {
  margin-top: 0;
}
.price-list .price-cat-head dt {
  background: #5b9eaf;          /* 既存ティールカラーに合わせて調整 */
  padding: 6px 12px;
  width: 100%;
}
.price-list .price-cat-head dt .tit {
  color: #fff;
  font-weight: 600;
  letter-spacing: .18em;
}
.price-list .price-cat-head dd {
  display: none;
}

/* カテゴリ全体にかかる注記 */
.price-list .price-cat-note {
  text-align: right;
  font-size: .75rem;
  color: #888;
  padding: 4px 0 8px;
}

.price-list dl+dl {
    margin-top: 15px;
}

/* --- 共通変数（既存サイトに合わせる） --- */
:root {
  --anfini-primary: #6bbfbf;
  --anfini-primary-light: #e8f5f5;
  --anfini-text: #333;
  --anfini-text-light: #666;
  --anfini-bg: #fff;
  --anfini-border: #ddd;
  --anfini-section-max: 1000px;
}
 
/* ============================================
   セクション: サロン内観 & 商品QRコード
   ============================================ */
.section-salon-products {
  padding: 80px 20px;
  background: var(--anfini-bg);
}
 
.section-salon-products__inner {
  max-width: var(--anfini-section-max);
  margin: 0 auto;
}
 
/* --- セクションタイトル（既存サイトのスタイルに合わせる） --- */
.section-salon-products__title {
  text-align: center;
  margin-bottom: 50px;
}
 
.section-salon-products__title-en {
  display: block;
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
  color: var(--anfini-text);
  letter-spacing: 0.05em;
  line-height: 1.3;
}
 
.section-salon-products__title-ja {
  display: block;
  font-size: 13px;
  color: var(--anfini-text-light);
  margin-top: 8px;
  letter-spacing: 0.1em;
}
 
/* --- サロン内観写真 --- */
.salon-photo {
  margin-bottom: 60px;
}
 
.salon-photo__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
 
/* --- 商品QRコードエリア --- */
.product-qr {
  margin-bottom: 60px;
}
 
.product-qr__heading {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--anfini-text);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
 
.product-qr__sub {
  text-align: center;
  font-size: 13px;
  color: var(--anfini-text-light);
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
 
/* --- QRコードグリッド --- */
.product-qr__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
  margin-bottom: 50px;
}
 
.product-qr__item {
  text-align: center;
}
 
.product-qr__img-wrap {
  width: 100%;
  max-width: 140px;
  margin: 0 auto 14px;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--anfini-border);
}
 
.product-qr__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
 
.product-qr__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--anfini-text);
  line-height: 1.5;
  letter-spacing: 0.03em;
}
 
.product-qr__type {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--anfini-text);
}
 
.product-qr__tag {
  display: block;
  font-size: 12px;
  color: var(--anfini-primary);
  font-weight: 600;
  margin-top: 2px;
  letter-spacing: 0.05em;
}
 
/* --- 区切り線 --- */
.product-qr__divider {
  width: 60px;
  height: 1px;
  background: var(--anfini-primary);
  margin: 0 auto 50px;
}
 
/* --- Google Reviews QRコード --- */
.google-review {
  text-align: center;
}
 
.google-review__img-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--anfini-border);
}
 
.google-review__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
 
.google-review__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--anfini-text);
  letter-spacing: 0.05em;
}
 
 
/* ============================================
   レスポンシブ: タブレット（1024px以下）
   ============================================ */
@media screen and (max-width: 1024px) {
  .section-salon-products {
    padding: 60px 20px;
  }
 
  .section-salon-products__title-en {
    font-size: 30px;
  }
 
  .product-qr__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 16px;
  }
 
  .product-qr__img-wrap {
    max-width: 120px;
  }
 
  .product-qr__name {
    font-size: 13px;
  }
 
  .product-qr__type {
    font-size: 12px;
  }
}
 
 
/* ============================================
   レスポンシブ: スマートフォン（599px以下）
   ============================================ */
@media screen and (max-width: 599px) {
  .section-salon-products {
    padding: 50px 16px;
  }
 
  .section-salon-products__title {
    margin-bottom: 30px;
  }
 
  .section-salon-products__title-en {
    font-size: 24px;
  }
 
  .section-salon-products__title-ja {
    font-size: 11px;
  }
 
  .salon-photo {
    margin-bottom: 40px;
  }
 
  .product-qr__heading {
    font-size: 17px;
  }
 
  .product-qr__sub {
    font-size: 12px;
    margin-bottom: 28px;
  }
 
  .product-qr__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
 
  .product-qr__img-wrap {
    max-width: 130px;
  }
 
  .product-qr__name {
    font-size: 13px;
  }
 
  .product-qr__type {
    font-size: 12px;
  }
 
  .product-qr__tag {
    font-size: 11px;
  }
 
  .product-qr__divider {
    margin-bottom: 36px;
  }
 
  .google-review__img-wrap {
    width: 140px;
    height: 140px;
  }
 
  .google-review__label {
    font-size: 14px;
  }
}

/* ============================================
   追加CSS - 商品QRコード / スマホ時リンク切替
   ============================================ */

/* --- スマホ用リンクボタン（デフォルト非表示） --- */
.product-qr__link,
.google-review__link {
  display: none;
}

/* --- サブテキスト切替（デフォルト: PC表示） --- */
.product-qr__sub-sp {
  display: none;
}

.product-qr__sub-pc {
  display: inline;
}


/* ============================================
   スマートフォン（599px以下）
   QRコード非表示 → リンクボタン表示
   ============================================ */
@media screen and (max-width: 599px) {

  /* --- QRコード画像を非表示 --- */
  .product-qr__img-wrap,
  .google-review__img-wrap {
    display: none;
  }

  /* --- サブテキスト切替 --- */
  .product-qr__sub-pc {
    display: none;
  }

  .product-qr__sub-sp {
    display: inline;
  }

  /* --- リンクボタンを表示 --- */
  .product-qr__link,
  .google-review__link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background-color: #6bbfbf;
    border-radius: 20px;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, opacity 0.3s ease;
  }

  .product-qr__link:hover,
  .product-qr__link:active,
  .google-review__link:hover,
  .google-review__link:active {
    background-color: #5aadad;
    opacity: 0.9;
    color: #fff;
  }

  .product-qr__link:visited,
  .google-review__link:visited {
    color: #fff;
  }

  /* --- Google Review 縦並び --- */
  .google-review {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .google-review__link {
    margin-top: 14px;
    padding: 10px 24px;
    font-size: 13px;
  }

  /* --- グリッドを2列に --- */
  .product-qr__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
