  /* ===== ラップタオルLP CSS ===== */
  @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Lato:wght@300;400;700&display=swap");

  /* ===== リセット・ベース ===== */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* ===== CSS変数 ===== */
  :root {
    --color-bg: #ffffff;
    --color-text: #333333;
    --color-text-mid: #555555;
    --color-text-light: #666666;
    --color-border: #cccccc;
    --color-border-light: #e0e0e0;

    /* タグ */
    --color-tag-blue-bg: #a8d8e8;
    --color-tag-blue-text: #ffffff;
    --color-tag-black-bg: #444444;
    --color-tag-black-text: #ffffff;

    /* 価格・ボタン */
    --color-price-text: #4aabca;
    --color-btn-bg: #7ecfe8;
    --color-btn-text: #ffffff;
    --color-free-bg: #6abf7a;
    --color-free-text: #ffffff;

    /* プレミアム */
    --color-gold-start: #c9a84c;
    --color-gold-end: #e8d080;
    --color-h4-border: #7ecfe8;

    --font-main: "Noto Sans JP", sans-serif;
    --font-en: "Lato", sans-serif;
    --max-width: 1140px;
  }

  /* ===== ラッパー ===== */
  .wrap_lp {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-bg);
    max-width: var(--max-width);
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.8;
  }

  /* ===== 共通タイトル ===== */
  .wrap_title {
    font-family: var(--font-en), var(--font-main);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    padding-bottom: 8px;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
    position: relative;
  }

  .wrap_title::after {
    content: "";
    display: block;
    width: 60%;
    max-width: 220px;
    height: 1.5px;
    background: var(--color-border);
    margin: 6px auto 0;
  }

  /* ===== ファーストビュー ===== */
  .wrap_fv {
    margin-bottom: 32px;
    text-align: center;
  }

  .wrap_fv img {
    display: block;
    width: 55%;
    margin: 0 auto 20px;
  }

  .wrap_fv p {
    font-size: 12px;
    font-weight: bold;
    line-height: 2;
    color: var(--color-text-mid);
    text-align: center;
    margin-bottom: 4px;
  }

  /* ===== シーンセクション ===== */
  .wrap_scene {
    padding: 0 16px 32px;
    text-align: center;
  }

  .wrap_scene .wrap_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 400px;
    margin: 0 auto 8px;
  }

  /* 円形クリップ */
  .wrap_item1 img,
  .wrap_item2 img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
  }

  /* シーンキャプション用ラッパー */
  .wrap_item1,
  .wrap_item2 {
    position: relative;
    text-align: center;
  }

  /* ===== ラインアップセクション ===== */
  .wrap_lineup {
    padding: 16px 16px 0;
    border-top: 1px solid var(--color-border-light);
    margin-bottom: 32px;
  }

  .wrap_lineup .wrap_container {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 16px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-light);
    position: relative;
  }

  /* 右矢印 */
  .wrap_lineup .wrap_container::after {
    content: "›";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: var(--color-border);
    line-height: 1;
  }

  .wrap_item3 img {
    display: block;
    width: 100%;
    border-radius: 2px;
  }

  .wrap_item4 h3 {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 6px;
  }

  .wrap_item4 .wrap_name {
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 2px;
  }

  .wrap_item4 p {
    font-size: 11.5px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-top: 6px;
  }

  /* ===== タグ ===== */
  .tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 2px;
    margin-right: 4px;
    margin-bottom: 4px;
    letter-spacing: 0.03em;
  }

  .tag-blue {
    background: var(--color-tag-blue-bg);
    color: var(--color-tag-blue-text);
  }

  .tag-black {
    background: var(--color-tag-black-bg);
    color: var(--color-tag-black-text);
  }

  /* ===== 各商品詳細セクション共通 ===== */
  .wrap_print,
  .wrap_color,
  .wrap_premium {
    padding: 24px 16px 32px;
    border-top: 1px solid var(--color-border-light);
  }

  /* セクションタイトル（商品詳細用） */
  .wrap_print .wrap_title,
  .wrap_color .wrap_title,
  .wrap_premium .wrap_title {
    font-size: 14px;
    line-height: 1.5;
  }

  .wrap_print img,
  .wrap_color img,
  .wrap_premium > img {
    display: block;
    width: 100%;
    margin-bottom: 14px;
  }

  .wrap_print p,
  .wrap_color p {
    font-size: 12.5px;
    font-weight: bold;
    line-height: 2;
    color: var(--color-text-mid);
    margin-bottom: 12px;
    text-align: center;
  }

  /* ===== 価格表示 ===== */
  .wrap_price {
    text-align: center;
    margin: 8px 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .price-amount {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-price-text);
  }

  .price-amount small {
    font-size: 12px;
    font-weight: 400;
  }

  .wrap_price > span:last-child {
    font-size: 11.5px;
    font-weight: 700;
    background: var(--color-free-bg);
    color: var(--color-free-text);
    padding: 2px 10px;
    border-radius: 2px;
  }

  /* ===== 詳しく見るボタン（画像リンク） ===== */
  .wrap_print a,
  .wrap_color a,
  .wrap_premium a {
    display: block;
    margin-bottom: 20px;
  }

  .wrap_print a img,
  .wrap_color a img,
  .wrap_premium a img {
    display: block;
    width: 40%;
    margin: 0 auto;
    border-radius: 3px;
  }

  /* ===== プレミアムセクション固有 ===== */
  .wrap_premium p {
    font-size: 12.5px;
    line-height: 2;
    font-weight: bold;
    color: var(--color-text-mid);
    margin-bottom: 12px;
    text-align: center;
  }

  /* ゴールドグラデーション帯 */
  .wrap_premium h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    background: linear-gradient(
      90deg,
      var(--color-gold-start),
      var(--color-gold-end),
      var(--color-gold-start)
    );
    color: #fff;
    padding: 9px 16px;
    margin: 16px 0 14px;
    border-radius: 0;
  }

  /* 水色枠ボックス見出し */
  .wrap_premium h4 {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border: 1.5px solid var(--color-h4-border);
    border-radius: 3px;
    padding: 5px 16px;
    margin: 14px auto 12px;
    display: inline-block;
    width: auto;
    /* ブロック中央寄せ */
    display: table;
    margin-left: auto;
    margin-right: auto;
  }

  /* 糸説明グリッド */
  .wrap_premium .wrap_container {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 12px;
    position: relative;
  }

  /* 糸ラベル（外側ガーゼ・内側パイル） */
  .wrap_item5 {
    position: relative;
  }

  .wrap_item5 img {
    display: block;
    width: 100%;
    border-radius: 3px;
  }

  .wrap_item6 h5 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .wrap_item6 p {
    font-size: 12px;
    color: var(--color-text-light);
    line-height: 1.8;
    text-align: left !important;
  }

  /* ===== サイズガイドセクション ===== */
  .wrap_size {
    padding: 24px 16px 32px;
    border-top: 1px solid var(--color-border-light);
  }

  .wrap_size p {
    font-size: 12.5px;
    color: var(--color-text-mid);
    margin-bottom: 10px;
    text-align: center;
  }

  .wrap_size h3 {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--color-text);
    margin: 14px 0 8px;
  }

  .wrap_size h3::before {
    content: "●";
    margin-right: 4px;
    font-size: 10px;
  }

  .wrap_size img {
    display: block;
    width: 100%;
    margin-bottom: 16px;
  }

  /* ===== レスポンシブ ===== */
  @media (max-width: 600px) {
    .wrap_fv img {
      width: 100%;
    }

    .wrap_lineup .wrap_container {
      grid-template-columns: 100px 1fr;
    }

    .wrap_premium .wrap_container {
      grid-template-columns: 110px 1fr;
    }

    .wrap_print a img,
    .wrap_color a img,
    .wrap_premium a img {
      width: 80%;
    }
  }