    /* =============================================
       VARIABLES — 白ベース高級デザイン（可読性改善版）
    ============================================= */
    :root {
      --white:     #ffffff;
      --off-white: #f9f7f4;
      --light:     #f2eeea;
      --silver:    #e8e2db;
      --mid:       #c8bfb5;
      --text-sub:  #5a524a;   /* 改善: 暗くして読みやすく */
      --text-dim:  #8a8078;   /* 改善: 暗くして読みやすく */
      --charcoal:  #2c2520;   /* 改善: より締まった色に */
      --dark:      #1a1612;   /* 改善: より深い黒に */
      --black:     #0a0907;
      --brown:     #6b4f35;
      --gold:      #9a7d52;
      --gold-lt:   #c4a97a;
      --gold-dim:  #7a6040;
      --border:    #e0d8cf;
      --border-dk: #c8bfb5;
      --ff-disp:   'Cormorant Garamond', serif;
      --ff-sans:   'Yu Gothic', '游ゴシック', 'YuGothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', sans-serif;
      --ff-en:     'Montserrat', sans-serif;
      --ease:      cubic-bezier(0.25, 0.1, 0.25, 1);
      --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; width: 100%; }

    body {
      background: var(--white);
      color: var(--dark);
      font-family: var(--ff-sans);
      font-weight: 400;
      line-height: 1.9;
      overflow-x: clip;
      width: 100%;
      max-width: 100%;
    }

    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* hero-catch内のh1はスタイルをpに合わせて表示 */
    h1.hero-catch-title {
      position: static;
      width: auto; height: auto;
      overflow: visible;
      clip: auto;
      white-space: normal;
      font-family: var(--ff-disp);
      font-size: clamp(30px, 4.5vw, 52px);
      font-weight: 300;
      color: var(--dark);
      line-height: 1.25;
      margin-bottom: 12px;
    }
    h1.hero-catch-title strong {
      font-weight: 600;
      color: var(--gold);
    }

    /* =============================================
       PROMO BANNERS — ランキング・カスタムオーダー
    ============================================= */
    .promo-banners {
      display: none !important;
    }
    .promo-swiper {
      width: 100%;
      overflow: hidden;
    }
    .promo-swiper .swiper-slide a { display: block; overflow: hidden; }
    .promo-swiper .swiper-slide img {
      width: 100%;
      max-width: none;
      height: auto;
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }
    .promo-pagination { bottom: 4px !important; }
    .promo-pagination .swiper-pagination-bullet { background: var(--border-dk); opacity: 1; }
    .promo-pagination .swiper-pagination-bullet-active { background: var(--dark); }
    .promo-prev, .promo-next {
      width: 28px; height: 28px;
      background: rgba(0,0,0,0.3);
      top: 50%;
    }
    .promo-prev::after, .promo-next::after { font-size: 10px; color: var(--white); }
    .promo-prev { left: 6px; }
    .promo-next { right: 6px; }

    /* PC: スライダーを無効化して横並び */
    @media (min-width: 641px) {
      .promo-banners {
        max-width: 100%;
        width: calc(100% / 1.4);  /* ヒーロースライダーのアクティブスライド幅に合わせる */
        margin: 0 auto;
      }
      .promo-swiper { overflow: visible !important; }
      .promo-swiper .swiper-wrapper {
        display: flex !important;
        transform: none !important;
        transition: none !important;
        flex-wrap: nowrap;
        gap: 4px;
      }
      .promo-swiper .swiper-slide {
        width: auto !important;
        flex: 1 1 0;
      }
      .promo-swiper .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
      }
      .promo-pagination,
      .promo-prev,
      .promo-next { display: none !important; }
    }

    @media (max-width: 640px) {
      .promo-banners { max-width: 100%; }
    }

    /* =============================================
       SHOP NOTICE — ショップからのお知らせ
    ============================================= */
    .shop-notice {
      background: var(--white);
      border-top: 3px solid var(--gold);
      border-bottom: 1px solid var(--border);
    }
    .shop-notice-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 16px 24px;
    }
    .shop-notice-title {
      font-family: var(--ff-sans);
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 12px;
      padding: 6px 10px;
      border-left: 4px solid var(--gold);
      background: var(--off-white);
    }
    .shop-notice-body p {
      font-size: 13px;
      font-weight: 400;
      color: var(--charcoal);
      line-height: 1.85;
      margin-bottom: 8px;
    }
    .shop-notice-body p:last-child { margin-bottom: 0; }
    .shop-notice-body a {
      color: var(--gold-dim);
      text-decoration: underline;
      transition: color 0.2s;
    }
    .shop-notice-body a:hover { color: var(--gold); }
    @media (max-width: 640px) {
      .shop-notice-inner { padding: 14px 16px; }
      .shop-notice-body p { font-size: 12px; }
    }

    /* =============================================
       HERO CATCH — キャッチコピー + 安心訴求 + CTA①
    ============================================= */
    .hero-catch {
      background: var(--white);
      padding: 48px 48px 56px;
      border-bottom: 1px solid var(--border);
    }
    .hero-catch-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    .hero-catch-label {
      font-family: var(--ff-en);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .hero-catch-title {
      font-family: var(--ff-disp);
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 300;
      color: var(--dark);
      line-height: 1.3;
      margin-bottom: 12px;
    }
    .hero-catch-title strong {
      font-weight: 600;
      color: var(--gold);
    }
    .hero-catch-sub {
      font-size: 15px;
      color: var(--charcoal);
      margin-bottom: 36px;
    }
    .hero-trust {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }
    .trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      background: var(--off-white);
      border: 1px solid var(--border);
      padding: 16px 20px;
      min-width: 100px;
      font-size: 12px;
      font-weight: 500;
      color: var(--dark);
      line-height: 1.5;
      text-align: center;
    }
    .trust-icon { font-size: 20px; color: var(--gold); }
    .cta-btn-primary {
      display: inline-block;
      background: var(--dark);
      color: var(--white);
      font-family: var(--ff-sans);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.06em;
      padding: 20px 64px;
      transition: background 0.25s, transform 0.15s;
      margin-bottom: 16px;
      min-width: 280px;
      text-align: center;
    }
    .cta-btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); }
    .cta-btn-sub {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 28px;
      border: 1px solid rgba(255,255,255,0.5);
      color: rgba(255,255,255,0.85);
      font-family: var(--ff-sans);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-align: center;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      margin-bottom: 8px;
    }
    .cta-btn-sub:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); color: #fff; }
    .hero-catch-note { font-size: 14px; color: var(--text-sub); letter-spacing: 0.04em; margin-top: 6px; }

    /* 実績バー */
    .hero-record {
      margin-top: 32px;
      border-top: 1px solid var(--border);
      padding-top: 24px;
    }
    .hero-record-heading {
      font-family: var(--ff-en);
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 16px;
    }
    .hero-record-stats {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 16px;
    }
    .hero-record-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 0 12px;
    }
    .hero-record-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      flex: 1;
      padding: 0 12px;
      transition: opacity 0.2s;
      cursor: pointer;
    }
    .hero-record-link:hover { opacity: 0.7; }
    .hero-record-logo {
      width: 40px; height: 40px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .hero-record-logo svg { width: 100%; height: 100%; }
    .hero-record-logo-store {
      background: var(--off-white);
      border: 1px solid var(--border);
      font-size: 22px;
    }
    .hero-record-num {
      display: block;
      font-family: 'Cormorant Garamond', 'Georgia', serif;
      font-size: 32px;
      font-weight: 600;
      font-style: italic;
      color: var(--dark);
      line-height: 1;
      letter-spacing: -0.01em;
    }
    .hero-record-num small {
      font-family: var(--ff-sans);
      font-size: 12px;
      font-weight: 600;
      font-style: normal;
      color: var(--gold);
      margin-left: 2px;
      vertical-align: baseline;
    }
    .hero-record-label {
      display: block;
      font-family: var(--ff-sans);
      font-size: 10px;
      font-weight: 500;
      color: var(--text-sub);
      white-space: nowrap;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .hero-record-div {
      width: 1px;
      height: 48px;
      background: var(--border);
      flex-shrink: 0;
    }
    .hero-record-ops {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      background: var(--dark);
      padding: 14px 20px;
      border-radius: 2px;
    }
    .hero-record-op-item {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 0 20px;
      font-family: var(--ff-sans);
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.06em;
      white-space: nowrap;
    }
    .hero-op-icon { font-size: 15px; }
    .hero-record-op-div {
      width: 1px;
      height: 18px;
      background: rgba(255,255,255,0.2);
      flex-shrink: 0;
    }
    @media (max-width: 640px) {
      .hero-record-num { font-size: 24px; }
      .hero-record-logo { width: 32px; height: 32px; }
      .hero-record-ops {
        padding: 10px 8px;
        gap: 0;
        flex-wrap: nowrap;
        overflow: hidden;
      }
      .hero-record-op-item {
        font-size: 10px;
        padding: 0 6px;
        gap: 3px;
        flex-shrink: 1;
        min-width: 0;
      }
      .hero-op-icon { font-size: 12px; flex-shrink: 0; }
      .hero-record-op-div { height: 12px; flex-shrink: 0; }
      .hero-record-link { padding: 0 6px; }
      .hero-record-item { padding: 0 6px; }
    }
    .brand-cta { margin-top: 32px; }
    .products-top-cta {
      text-align: center;
      padding: 16px 48px 0;
      max-width: 1400px;
      margin: 0 auto;
    }
    .cta-btn-outline {
      display: inline-block;
      border: 2px solid var(--dark);
      color: var(--dark);
      font-family: var(--ff-sans);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.06em;
      padding: 14px 40px;
      transition: background 0.3s, color 0.3s;
    }
    .cta-btn-outline:hover { background: var(--dark); color: var(--white); }

    /* ドロップダウン → インラインパネル方式 */
    .cat-nav-item { position: relative; z-index: 1; }
    .cat-nav-item .cat-nav-card {
      width: 100%;
      border: none;
      cursor: pointer;
      background: var(--white);
      font-family: var(--ff-sans);
    }
    .cat-nav-item .cat-nav-card.active {
      border-color: var(--gold);
      background: var(--off-white);
    }
    .cat-nav-item .cat-nav-card.active .cat-nav-icon { color: var(--gold); }

    /* グリッド下に全幅で展開するパネル */
    .cat-sub-panel {
      display: none;
      background: var(--white);
      border: 1px solid var(--border-dk);
      border-top: 2px solid var(--gold);
      padding: 12px 16px;
      flex-wrap: wrap;
      gap: 0;
      margin-top: 10px;
      width: 100%;
      box-sizing: border-box;
      position: relative;
      z-index: 300;
    }
    .cat-sub-panel.open {
      display: flex;
    }
    .cat-sub-panel a {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 9px 16px 9px 10px;
      font-size: 13px;
      color: var(--charcoal);
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      transition: background 0.15s, color 0.15s;
      white-space: nowrap;
      position: relative;
      z-index: 1;
    }
    .cat-sub-panel a::before {
      content: '▶';
      font-size: 8px;
      color: var(--gold);
      flex-shrink: 0;
    }
    .cat-sub-panel a:hover { background: var(--off-white); color: var(--gold); }
    @media (max-width: 640px) {
      .cat-row-line { display: none; }
      .cat-view-more { margin-left: auto; }
      .cat-sub-panel { padding: 8px 10px; margin-top: 6px; }
      .cat-sub-panel a {
        font-size: 12px;
        padding: 12px 10px 12px 8px;
        white-space: normal;
        flex: 1 1 calc(50% - 1px);
        min-height: 44px;
        box-sizing: border-box;
      }
    }

    /* =============================================
       商品カテゴリ nav
    ============================================= */
    .cat-nav {
      padding: 72px 48px;
      background: var(--off-white);
      border-top: 1px solid var(--border);
      overflow: visible;
    }
    .cat-nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      overflow: visible;
    }
    .cat-nav-inner .section-title { margin-bottom: 48px; }
    .cat-nav-grid {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 12px;
    }
    .cat-nav-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 24px 12px;
      background: var(--white);
      border: 1px solid var(--border);
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      text-align: center;
    }
    .cat-nav-card:hover {
      border-color: var(--gold);
      box-shadow: 0 4px 16px rgba(0,0,0,0.07);
      transform: translateY(-3px);
    }
    .cat-nav-icon {
      width: 52px; height: 52px;
      color: var(--charcoal);
      transition: color 0.2s;
    }
    .cat-nav-icon svg { width: 100%; height: 100%; }
    .cat-nav-card:hover .cat-nav-icon { color: var(--gold); }
    .cat-nav-label {
      font-size: 12px;
      font-weight: 500;
      color: var(--dark);
      line-height: 1.4;
    }
    .cat-nav-sale .cat-nav-icon { color: #c0392b; }
    .cat-nav-sale .cat-nav-label { color: #c0392b; font-weight: 700; }
    .cat-nav-sale { border-color: transparent; }
    .cat-nav-sale:hover { border-color: #c0392b; }
    /* SALEより右の直リンクカード（aタグ）は枠線なし */
    a.cat-nav-card { border-color: transparent; }
    a.cat-nav-card:hover { border-color: var(--gold); }

    @media (max-width: 1024px) {
      .cat-nav { padding: 56px 24px; }
      .cat-nav-grid { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 480px) {
      .cat-nav { padding: 48px 16px; }
      .cat-nav-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
      .cat-nav-card { padding: 16px 8px; }
      .cat-nav-icon { width: 40px; height: 40px; }
      .cat-nav-label { font-size: 11px; }
    }

    /* =============================================
       SNS セクション
    ============================================= */
    .sns-section {
      padding: 80px 48px;
      background: var(--white);
      border-top: 1px solid var(--border);
    }
    .sns-inner { max-width: 1200px; margin: 0 auto; }
    .sns-sub {
      font-size: 14px;
      color: var(--text-sub);
      margin: 8px 0 40px;
    }
    .sns-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
    }
    .sns-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      padding: 28px 16px;
      border: 1px solid var(--border);
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    }
    .sns-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
    .sns-icon {
      width: 44px; height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      flex-shrink: 0;
    }
    .sns-icon svg { width: 26px; height: 26px; }
    .sns-insta .sns-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
    .sns-x     .sns-icon { background: #000; color: white; }
    .sns-line  .sns-icon { background: #06C755; color: white; }
    .sns-tiktok .sns-icon { background: #010101; color: white; }
    .sns-youtube .sns-icon { background: #FF0000; color: white; }
    .sns-insta:hover  { border-color: #e6683c; }
    .sns-x:hover      { border-color: #000; }
    .sns-line:hover   { border-color: #06C755; }
    .sns-tiktok:hover { border-color: #010101; }
    .sns-youtube:hover { border-color: #FF0000; }
    .sns-name {
      font-family: var(--ff-sans);
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
    }
    .sns-desc {
      font-size: 11px;
      color: var(--charcoal);
      line-height: 1.6;
      margin-bottom: 4px;
    }
    .sns-handle {
      font-family: var(--ff-en);
      font-size: 10px;
      color: var(--text-dim);
      letter-spacing: 0.05em;
    }
    @media (max-width: 1024px) {
      .sns-section { padding: 60px 24px; }
      .sns-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 480px) {
      .sns-grid { grid-template-columns: repeat(2, 1fr); }
      .sns-card { padding: 20px 12px; }
    }

    /* =============================================
       よくある質問
    ============================================= */
    .faq-section {
      padding: 80px 48px;
      background: var(--off-white);
      border-top: 1px solid var(--border);
    }
    .faq-inner { max-width: 860px; margin: 0 auto; }
    .faq-inner .section-title { margin-bottom: 48px; }
    .faq-list { display: flex; flex-direction: column; gap: 0; }
    .faq-item { border-bottom: 1px solid var(--border); cursor: pointer; }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px 4px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--ff-sans);
      font-size: 15px;
      font-weight: 500;
      color: var(--dark);
      line-height: 1.5;
      transition: color 0.2s;
      pointer-events: auto;
    }
    .faq-q:hover { color: var(--gold); }
    .faq-icon {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--white);
      font-family: var(--ff-en);
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .faq-arrow {
      margin-left: auto;
      font-size: 22px;
      font-weight: 300;
      color: var(--gold);
      flex-shrink: 0;
      transition: transform 0.3s;
      line-height: 1;
    }
    .faq-q.open .faq-arrow { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
    }
    .faq-a.open { max-height: 200px; }
    .faq-a p {
      padding: 0 0 20px 44px;
      font-size: 14px;
      color: var(--charcoal);
      line-height: 1.9;
    }
    @media (max-width: 640px) {
      .faq-section { padding: 56px 20px; }
      .faq-q { font-size: 14px; gap: 12px; }
      .faq-a p { padding: 0 0 16px 40px; }
    }

    /* =============================================
       ① Mo-LAWZ ブランド紹介
    ============================================= */
    .brand-intro {
      padding: 80px 48px;
      background: var(--white);
      border-top: 1px solid var(--border);
    }
    .brand-intro-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .brand-intro-body {
      font-size: 14px;
      color: var(--charcoal);
      line-height: 2.0;
      margin: 20px 0 24px;
    }
    .brand-intro-points {
      list-style: none;
      margin-bottom: 32px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .brand-intro-points li {
      font-size: 14px;
      color: var(--dark);
      font-weight: 500;
    }
    .brand-intro-img img {
      width: 100%;
      height: auto;
      object-fit: contain;
      display: block;
    }
    @media (max-width: 1024px) {
      .brand-intro { padding: 60px 24px; }
      .brand-intro-inner { grid-template-columns: 1fr; gap: 32px; }
    }

    /* =============================================
       ② 取り扱いブランド一覧
    ============================================= */
    .brands-lineup {
      padding: 72px 48px;
      background: var(--dark);
    }
    .brands-lineup-inner { max-width: 1200px; margin: 0 auto; }
    .brands-lineup-inner .section-label { color: var(--gold); }
    .brands-lineup-inner .section-label::before { background: var(--gold); }
    .brands-lineup-inner .section-title { color: var(--white); }
    .brands-lineup-inner .section-title em { color: var(--gold-lt); }
    .brands-lineup-sub {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      margin: 12px 0 40px;
    }
    .brands-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.1);
    }
    .brand-card {
      background: rgba(255,255,255,0.04);
      padding: 32px 24px;
      text-align: center;
      transition: background 0.25s;
      display: block;
    }
    .brand-card:hover { background: rgba(255,255,255,0.1); }
    .brand-card-name {
      font-family: var(--ff-en);
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.05em;
      margin-bottom: 12px;
    }
    .brand-card-desc {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .brand-card-cta {
      font-family: var(--ff-en);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.15em;
      color: var(--gold-lt);
      transition: color 0.2s;
    }
    .brand-card:hover .brand-card-cta { color: var(--gold); }
    @media (max-width: 768px) {
      .brands-lineup { padding: 48px 20px; }
      .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; }
      .brand-card { padding: 24px 16px; }
      .brand-card-name { font-size: 18px; margin-bottom: 8px; }
      .brand-card-desc { font-size: 11px; margin-bottom: 14px; line-height: 1.6; }
      .brand-card-cta { font-size: 10px; }
      .brands-lineup-sub { font-size: 13px; margin-bottom: 28px; }
    }

    /* =============================================
       ③ 新商品・注目アイテム
    ============================================= */
    .new-items {
      padding: 80px 48px;
      background: var(--off-white);
    }
    .new-items-inner { max-width: 1200px; margin: 0 auto; }
    .new-items-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
    }
    .new-items-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
    }
    .new-item-card {
      background: var(--white);
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.25s;
      display: block;
    }
    .new-item-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
    .new-item-badge {
      position: absolute;
      top: 10px; left: 10px;
      z-index: 2;
      background: var(--dark);
      color: var(--gold-lt);
      font-size: 10px;
      font-weight: 700;
      padding: 3px 9px;
    }
    .new-item-badge-rec { background: var(--gold); color: var(--white); }
    .new-item-badge-value { background: #c0392b; color: var(--white); }
    .new-item-img img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: contain;
      display: block;
      background: var(--light);
    }
    .new-item-info { padding: 16px; }
    .new-item-cat { font-size: 9px; font-family: var(--ff-en); letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase; margin-bottom: 6px; }
    .new-item-name { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.45; }
    .new-item-price { font-family: var(--ff-en); font-size: 16px; font-weight: 600; color: var(--gold); }
    .new-item-price small { font-size: 10px; color: var(--text-dim); margin-left: 2px; }
    @media (max-width: 768px) {
      .new-items { padding: 56px 20px; }
      .new-items-grid { grid-template-columns: repeat(2, 1fr); }
      .new-items-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    }

    /* =============================================
       ④ 特集（ランキング・カスタムオーダー・SALE）
    ============================================= */
    .features {
      padding: 80px 48px;
      background: var(--white);
      border-top: 1px solid var(--border);
    }
    .features-inner { max-width: 1200px; margin: 0 auto; }
    .features-inner .section-title { margin-bottom: 40px; }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .feature-card {
      padding: 36px 28px;
      display: block;
      position: relative;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
    .feature-card-dark { background: var(--dark); }
    .feature-card-gold { background: linear-gradient(135deg, #7a6040 0%, #c4a97a 100%); }
    .feature-card-sale { background: linear-gradient(135deg, #8b1a1a 0%, #c0392b 100%); }
    .feature-card:not(:has(.feature-card-img)) { padding-top: 48px; }
    .feature-card-label {
      font-family: var(--ff-en);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 14px;
    }
    .feature-card-title {
      font-family: var(--ff-disp);
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 300;
      color: var(--white);
      line-height: 1.4;
      margin-bottom: 16px;
    }
    .feature-card-body {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      line-height: 1.85;
      margin-bottom: 24px;
    }
    .feature-card-cta {
      font-family: var(--ff-sans);
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.9);
      letter-spacing: 0.04em;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1px solid rgba(255,255,255,0.3);
      padding-bottom: 4px;
      transition: border-color 0.2s;
    }
    .feature-card:hover .feature-card-cta { border-color: rgba(255,255,255,0.8); }

    /* 特集カード画像 */
    .feature-card-img {
      width: calc(100% + 56px);
      margin: -36px -28px 24px;
      overflow: hidden;
      line-height: 0;
    }
    .feature-card-img img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .feature-card:hover .feature-card-img img { transform: scale(1.04); }
    @media (max-width: 768px) {
      .feature-card-img { width: calc(100% + 48px); margin: -28px -24px 20px; }
      .feature-card-img img { height: 140px; }
    }
    @media (max-width: 768px) {
      .features { padding: 56px 20px; }
      .features-grid { grid-template-columns: 1fr; gap: 12px; }
      .feature-card { padding: 0 0 20px; overflow: hidden; }
      .feature-card-img { width: 100%; margin: 0 0 16px; border-radius: 0; }
      .feature-card-img img { height: 180px; }
      .feature-card-label { padding: 0 20px; }
      .feature-card-title { font-size: 18px; padding: 0 20px; }
      .feature-card-body { font-size: 12px; padding: 0 20px; }
      .feature-card-cta { margin: 0 20px; }
    }

    /* =============================================
       REVIEW TO PRODUCT CTA
    .review-to-product {
      text-align: center;
      padding: 32px 20px 40px;
      background: var(--white);
      border-bottom: 1px solid var(--border);
    }
    .review-to-product-btn {
      display: inline-block;
      border: 2px solid var(--dark);
      color: var(--dark);
      font-family: var(--ff-sans);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.06em;
      padding: 14px 44px;
      transition: background 0.25s, color 0.25s;
    }
    .review-to-product-btn:hover { background: var(--dark); color: var(--white); }
    @media (max-width: 640px) {
      .review-to-product-btn { display: block; width: 90%; margin: 0 auto; padding: 16px; }
    }

    /* =============================================
       PRODUCT BADGES
    ============================================= */
    .pcard-badge {
      position: absolute;
      top: 12px; left: 12px;
      z-index: 5;
      font-family: var(--ff-sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
      padding: 4px 10px;
      line-height: 1.4;
      pointer-events: none;
    }
    .pcard-badge-no1  { background: var(--dark); color: var(--gold-lt); }
    .pcard-badge-rec  { background: var(--gold); color: var(--white); }
    .pcard-badge-sale { background: #c0392b; color: var(--white); }
    .pcard-badge-new  { background: var(--charcoal); color: var(--white); }
    .pcard-featured   { box-shadow: 0 0 0 2px var(--gold); }

    @media (max-width: 640px) {
      .hero-catch { padding: 36px 20px 44px; }
      .trust-item { min-width: 72px; padding: 12px 14px; font-size: 11px; }
      .cta-btn-primary { padding: 16px 32px; font-size: 14px; width: 100%; text-align: center; display: block; }
      .cta-btn-sub { display: block; width: 100%; text-align: center; box-sizing: border-box; }
      .cta-btn-outline { width: 90%; text-align: center; display: block; margin: 0 auto; }
      .products-top-cta { padding: 24px 20px; }
      .cta-btn-outline { display: block; width: 90%; margin: 0 auto; text-align: center; padding: 16px 20px; }
    }

    /* =============================================
       SCROLL REVEAL
    ============================================= */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .delay-1 { transition-delay: 0.05s !important; }
    .delay-2 { transition-delay: 0.1s !important; }
    .delay-3 { transition-delay: 0.15s !important; }
    .delay-4 { transition-delay: 0.2s !important; }


    /* =============================================
       HEADER — 2段構成（ロゴ+検索 / ナビ+ボタン）
    ============================================= */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    }

    /* 上段：ロゴ + 検索 */
    .header-top-row {
      display: flex;
      align-items: center;
      padding: 10px 40px;
      gap: 24px;
      height: 64px;
    }

    /* ロゴ */
    .logo { line-height: 1; flex-shrink: 0; }
    .logo-en {
      display: block;
      font-family: var(--ff-en);
      font-size: 8px;
      font-weight: 400;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 3px;
    }
    .logo-ja {
      display: block;
      font-family: var(--ff-disp);
      font-size: 22px;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: var(--dark);
    }

    /* 検索フォーム */
    .header-search {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .header-nav-actions {
      display: flex;
      gap: 6px;
      align-items: center;
      margin-left: auto;
    }
    .header-search-label {
      font-family: var(--ff-en);
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.15em;
      color: var(--charcoal);
    }
    .header-search-input {
      height: 26px;
      width: 200px;
      padding: 0 8px;
      border: 1px solid var(--border-dk);
      background: var(--white);
      font-size: 13px;
      outline: none;
      transition: border-color 0.2s;
    }
    .header-search-input:focus { border-color: var(--gold); }
    .header-search-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 14px;
      color: var(--charcoal);
      transition: color 0.2s;
      padding: 0 2px;
    }
    .header-search-btn:hover { color: var(--gold); }

    /* 下段：ナビ + ボタン */
    .header-nav-row {
      display: flex;
      align-items: center;
      background: var(--dark);
      padding: 0 40px;
      height: 38px;
      gap: 0;
    }
    .header-nav {
      display: flex;
      align-items: center;
      gap: 0;
      flex: 1;
    }
    .header-nav a {
      font-family: var(--ff-sans);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.8);
      padding: 0 14px;
      height: 38px;
      display: flex;
      align-items: center;
      border-right: 1px solid rgba(255,255,255,0.1);
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .header-nav a:first-child { border-left: 1px solid rgba(255,255,255,0.1); }
    .header-nav a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

    /* =============================================
       PC ドロップダウンナビ
    ============================================= */
    .header-nav-item {
      position: relative;
      display: flex;
      align-items: center;
      height: 38px;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .header-nav-item:first-child { border-left: 1px solid rgba(255,255,255,0.1); }
    .header-nav-item > a,
    .header-nav-item > button {
      font-family: var(--ff-sans);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.8);
      padding: 0 14px;
      height: 38px;
      display: flex;
      align-items: center;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s, color 0.2s;
    }
    .header-nav-item > a:hover,
    .header-nav-item > button:hover,
    .header-nav-item:hover > a,
    .header-nav-item:hover > button {
      background: rgba(255,255,255,0.08);
      color: var(--white);
    }
    .header-nav-item.has-drop > button::after {
      content: '▾';
      font-size: 9px;
      opacity: 0.5;
      margin-left: 2px;
    }
    .header-nav-item.nav-sale > a {
      color: var(--gold-lt);
      font-weight: 600;
    }
    .header-nav-drop {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 190px;
      background: var(--dark);
      border-top: 2px solid var(--gold);
      box-shadow: 0 8px 24px rgba(0,0,0,0.35);
      z-index: 2000;
      padding: 6px 0;
    }
    .header-nav-item:hover .header-nav-drop { display: block; }
    /* スマホ: hoverを無効にしてopenクラスで制御 */
    @media (max-width: 1024px) {
      .header-nav-item:hover .header-nav-drop { display: none; }
      .header-nav-item.open .header-nav-drop { display: block; }
    }
    .header-nav-drop a {
      display: block;
      font-family: var(--ff-sans);
      font-size: 12px;
      font-weight: 400;
      color: rgba(255,255,255,0.72);
      padding: 9px 20px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      transition: background 0.15s, color 0.15s, padding-left 0.15s;
      white-space: nowrap;
    }
    .header-nav-drop a:last-child { border-bottom: none; }
    .header-nav-drop a:hover {
      background: rgba(255,255,255,0.06);
      color: var(--gold-lt);
      padding-left: 26px;
    }

    .header-nav-actions { display: flex; gap: 6px; margin-left: auto; }
    .header-mypage-btn {
      font-family: var(--ff-sans);
      font-size: 11px;
      font-weight: 500;
      padding: 5px 14px;
      background: #e0468c;
      color: var(--white);
      transition: opacity 0.2s;
      white-space: nowrap;
    }
    .header-mypage-btn:hover { opacity: 0.85; color: var(--white); }
    .header-cart-btn {
      font-family: var(--ff-sans);
      font-size: 11px;
      font-weight: 700;
      padding: 5px 14px;
      background: var(--gold);
      color: var(--dark);
      transition: opacity 0.2s;
      white-space: nowrap;
    }
    .header-cart-btn:hover { opacity: 0.85; color: var(--dark); }

    /* ハンバーガー（スマホのみ表示） */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block;
      width: 26px; height: 1.5px;
      background: var(--dark);
      transition: background 0.3s;
    }
    .hamburger:hover span { background: var(--gold); }

    @media (max-width: 1024px) {
      .header-nav-row { display: none; }
      .hamburger { display: flex; flex-shrink: 0; margin-left: 0; }
      .hamburger span { background: var(--dark); }
      .header-top-row {
        padding: 0 4px;
        height: 56px;
      }
      .header-nav-actions {
        display: flex;
        margin-left: auto;
        margin-right: 4px;
        gap: 4px;
        align-items: center;
      }
      .header-mypage-btn { font-size: 9px; padding: 5px 7px; }
      .header-cart-btn { font-size: 9px; padding: 5px 7px; }
      .header-search { display: none; }
      .logo-ja { font-size: 18px; }
      .logo-en { display: none; }
    }
    @media (max-width: 480px) {
      .logo-ja { font-size: 18px; }
    }

    /* スマホ専用ユーティリティバー（スライダー下） */
    .mobile-utility-bar {
      display: none;
    }
    @media (max-width: 1024px) {
      .mobile-utility-bar {
        display: flex;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 0;
      }
      .mob-util-row1 { display: none; }
      .mob-util-btn {
        font-family: var(--ff-sans);
        font-size: 11px;
        font-weight: 600;
        padding: 6px 12px;
        white-space: nowrap;
        border-radius: 2px;
        transition: opacity 0.2s;
      }
      .mob-util-btn:hover { opacity: 0.8; }
      .mob-util-mypage {
        color: var(--charcoal);
        border: 1px solid var(--border-dk);
      }
      .mob-util-cart {
        background: var(--gold);
        color: var(--dark);
        border: 1px solid var(--gold);
        font-weight: 700;
      }
      .mob-util-search {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        background: var(--off-white);
      }
      .mob-util-search input {
        flex: 1;
        border: 1px solid var(--border-dk);
        background: var(--white);
        font-size: 13px;
        color: var(--dark);
        outline: none;
        padding: 6px 10px;
        height: 32px;
      }
      .mob-util-search button {
        background: var(--dark);
        border: none;
        cursor: pointer;
        font-size: 14px;
        padding: 6px 10px;
        color: var(--white);
        height: 32px;
      }
    }

    /* =============================================
       TICKER
    ============================================= */
    .ticker {
      margin-top: 56px;
      background: var(--dark);
      padding: 10px 0;
    }
    @media (min-width: 1025px) {
      .ticker { margin-top: 64px; }
    }
    .ticker-fixed {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }
    .ticker-fixed-item {
      font-family: var(--ff-sans);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.95);
    }
    .ticker-dot {
      width: 4px; height: 4px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .ticker-mobile-only { display: none; }
    @media (max-width: 640px) {
      .ticker-fixed { gap: 8px; flex-wrap: nowrap; }
      .ticker-fixed-item { font-size: 8px; white-space: nowrap; }
      .ticker-mobile-only { display: inline; }
    }

    /* =============================================
       HERO SLIDESHOW — AVIREX 1.5枚スタイル
    ============================================= */
    #hero {
      background: var(--off-white);
      padding: 40px 0 56px;
      overflow: hidden;
    }
    @media (max-width: 767px) {
      #hero { padding: 0; background: var(--white); }
      .hero-swiper { overflow: hidden !important; height: auto; }
      .hero-swiper .swiper-wrapper { align-items: stretch; }
      .hero-swiper .swiper-slide { opacity: 1 !important; transform: scale(1) !important; }
      .hero-swiper .swiper-slide img { width: 100%; height: auto; display: block; }
    }

    .hero-swiper {
      width: 100%;
      overflow: visible !important;
    }

    .hero-swiper .swiper-slide {
      opacity: 0.38;
      transform: scale(0.92);
      transition: opacity 0.5s ease, transform 0.5s ease;
      overflow: hidden;
    }
    .hero-swiper .swiper-slide-active {
      opacity: 1;
      transform: scale(1);
    }
    .hero-swiper .swiper-slide-prev,
    .hero-swiper .swiper-slide-next {
      opacity: 1;
      transform: scale(1);
    }
    @media (max-width: 767px) {
      .hero-swiper .swiper-slide-prev,
      .hero-swiper .swiper-slide-next {
        opacity: 0.55;
        transform: scale(0.96);
      }
    }

    .hero-swiper .swiper-slide a { display: block; width: 100%; }
    .hero-swiper .swiper-slide img { width: 100%; height: auto; display: block; aspect-ratio: 730/438; }

    /* ページネーション — 横線 */
    .hero-swiper .swiper-pagination {
      bottom: -32px;
    }
    .hero-swiper .swiper-pagination-bullet {
      width: 32px; height: 2px;
      border-radius: 1px;
      background: var(--border-dk);
      opacity: 1;
      transition: background 0.3s;
    }
    .hero-swiper .swiper-pagination-bullet-active {
      background: var(--dark);
    }

    /* 矢印 */
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.92);
      border: 1px solid var(--border);
      backdrop-filter: blur(6px);
      top: 44%;
      transition: background 0.3s, border-color 0.3s;
    }
    .hero-swiper .swiper-button-prev:hover,
    .hero-swiper .swiper-button-next:hover {
      background: var(--white);
      border-color: var(--dark);
    }
    .hero-swiper .swiper-button-prev::after,
    .hero-swiper .swiper-button-next::after {
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
    }
    .hero-swiper .swiper-button-prev { left: 12px; }
    .hero-swiper .swiper-button-next { right: 12px; }

    /* プログレスバー */
    .hero-progress-bar {
      height: 2px;
      background: var(--gold);
      width: 0%;
      margin-top: 48px;
      transition: none;
    }

    /* =============================================
       SECTION COMMONS
    ============================================= */
    .section-label {
      font-family: var(--ff-en);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.5em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 36px; height: 1px;
      background: var(--gold);
    }

    .section-title {
      font-family: var(--ff-disp);
      font-size: clamp(32px, 4.5vw, 54px);
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: 0.03em;
      color: var(--dark);
    }
    .section-title em {
      font-style: italic;
      color: var(--gold);
    }

    .btn-primary {
      display: inline-block;
      background: var(--dark);
      color: var(--white);
      font-family: var(--ff-en);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      padding: 16px 48px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--charcoal);
      transform: translateX(-100%);
      transition: transform 0.4s var(--ease-expo);
    }
    .btn-primary:hover::before { transform: translateX(0); }
    .btn-primary span { position: relative; z-index: 1; }
    .btn-primary:hover { transform: translateY(-2px); }

    .btn-secondary {
      display: inline-block;
      border: 1px solid var(--dark);
      color: var(--dark);
      font-family: var(--ff-en);
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      padding: 16px 48px;
      transition: background 0.3s, color 0.3s, transform 0.3s;
    }
    .btn-secondary:hover {
      background: var(--dark);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* =============================================
       BRAND STORY
    ============================================= */
    #brand {
      padding: 80px 48px;
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 5fr 6fr;
      gap: 56px;
      align-items: center;
    }

    .brand-visual {
      position: relative;
      aspect-ratio: 4/3;
      max-height: 360px;
      background: var(--light);
      overflow: hidden;
    }
    .brand-visual-inner {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #ede8e2 0%, #d8cfc4 50%, #e8e0d6 100%);
    }
    .brand-visual-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(45deg, transparent 0px, transparent 8px,
          rgba(154,125,82,0.04) 8px, rgba(154,125,82,0.04) 9px);
    }
    .brand-visual-text {
      position: absolute;
      bottom: 32px; left: 32px;
      font-family: var(--ff-disp);
      font-size: 72px;
      font-weight: 300;
      font-style: italic;
      color: transparent;
      -webkit-text-stroke: 1px rgba(154,125,82,0.2);
      line-height: 1;
      user-select: none;
    }
    .brand-visual-badge {
      position: absolute;
      top: 28px; right: 28px;
      width: 76px; height: 76px;
      border: 1px solid var(--gold-dim);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .badge-num {
      font-family: var(--ff-disp);
      font-size: 22px;
      font-weight: 400;
      color: var(--gold);
      line-height: 1;
    }
    .badge-text {
      font-family: var(--ff-en);
      font-size: 7px;
      letter-spacing: 0.2em;
      color: var(--text-sub);
      text-transform: uppercase;
    }

    /* brand-content-top: スマホのみ表示 */
    .brand-content-top { display: none; }
    @media (max-width: 1024px) {
      .brand-content-top { display: block; margin-bottom: 8px; }
      .brand-label-pc { display: none !important; }
      .brand-title-pc { display: none !important; }
    }
      font-size: 15px;
      font-weight: 400;
      line-height: 2.1;
      color: var(--charcoal);
      margin: 28px 0 40px;
    }

    .brand-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border: 1px solid var(--border);
      margin-top: 40px;
    }
    .stat {
      padding: 28px 20px;
      text-align: center;
      border-right: 1px solid var(--border);
    }
    .stat:last-child { border-right: none; }
    .stat-num {
      font-family: var(--ff-disp);
      font-size: 38px;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-family: var(--ff-en);
      font-size: 8px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    /* =============================================
       PRODUCTS — カテゴリ別横スクロール
    ============================================= */
    #products {
      padding: 80px 0 100px;
      background: var(--off-white);
    }

    .products-header {
      max-width: 1400px;
      margin: 0 auto 40px;
      padding: 0 48px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .view-all {
      font-family: var(--ff-en);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--charcoal);
      display: flex;
      align-items: center;
      gap: 10px;
      transition: gap 0.3s, color 0.3s;
    }
    .view-all::after { content: '→'; transition: transform 0.3s; }
    .view-all:hover { gap: 18px; color: var(--gold); }
    .view-all:hover::after { transform: translateX(6px); }

    /* ---- ジェンダータブ ---- */
    .gender-tabs {
      max-width: 1400px;
      margin: 0 auto 48px;
      padding: 0 48px;
      display: flex;
      gap: 0;
      border-bottom: 2px solid var(--border);
    }
    .gender-tab {
      font-family: var(--ff-en);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-sub);
      padding: 14px 36px;
      cursor: pointer;
      border: none;
      background: none;
      position: relative;
      transition: color 0.3s;
    }
    .gender-tab::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 2px;
      background: var(--dark);
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .gender-tab.active { color: var(--dark); }
    .gender-tab.active::after { transform: scaleX(1); }
    .gender-tab:hover { color: var(--dark); }

    /* ---- ジェンダーパネル ---- */
    .gender-panel { display: none; }
    .gender-panel.active { display: block; }

    /* ---- カテゴリ行 ---- */
    .cat-row {
      margin-bottom: 56px;
    }
    .cat-row-header {
      max-width: 1400px;
      margin: 0 auto 20px;
      padding: 0 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .cat-row-title {
      display: flex;
      align-items: center;
      gap: 0;
      flex-shrink: 0;
    }
    .cat-row-title h3 {
      font-family: var(--ff-en);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--dark);
    }
    .cat-row-title span { display: none; }
    .cat-row-line {
      flex: 1;
      height: 1px;
      background: var(--border);
    }
    .cat-view-more {
      font-family: var(--ff-sans);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--charcoal);
      transition: color 0.3s;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .cat-view-more:hover { color: var(--gold); }

    /* ---- 商品スクロール列 ---- */
    .cat-items {
      display: flex;
      gap: 1px;
      padding: 0 48px;
      background: transparent;
      overflow-x: scroll;
      overflow-y: hidden;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      touch-action: pan-x pinch-zoom;
      will-change: scroll-position;
    }
    .cat-items::-webkit-scrollbar { display: none; }

    /* ---- 商品カード ---- */
    .pcard {
      background: var(--white);
      flex: 0 0 calc(20% - 1px);
      min-width: 200px;
      border: 1px solid var(--border);
      transition: box-shadow 0.3s, border-color 0.3s;
      overflow: hidden;
    }
    .pcard:hover {
      box-shadow: 0 6px 24px rgba(0,0,0,0.07);
      border-color: var(--border-dk);
    }

    /* 商品画像エリア */
    .pcard-img {
      aspect-ratio: 1;
      background: var(--light);
      overflow: hidden;
      position: relative;
    }
    .pcard-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      transition: transform 0.6s var(--ease-expo);
    }
    .pcard:hover .pcard-img img { transform: scale(1.04); }

    /* プレースホルダー（画像なし） */
    .pcard-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--light);
    }
    .pcard-img-placeholder span {
      font-family: var(--ff-disp);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-dim);
    }

    /* 商品情報 */
    .pcard-body {
      padding: 16px 16px 18px;
    }
    .pcard-cat {
      font-family: var(--ff-en);
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 6px;
    }
    .pcard-name {
      font-family: var(--ff-sans);
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
      line-height: 1.6;
      margin-bottom: 4px;
    }
    .pcard-material {
      font-size: 12px;
      font-weight: 400;
      color: var(--text-sub);
      margin-bottom: 12px;
    }
    .pcard-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .pcard-price {
      font-family: var(--ff-en);
      font-size: 15px;
      font-weight: 500;
      color: var(--dark);
    }
    .pcard-price small {
      font-size: 10px;
      color: var(--text-dim);
      margin-left: 2px;
    }
    .pcard-btn {
      width: 32px; height: 32px;
      border: 1px solid var(--border-dk);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--charcoal);
      transition: background 0.3s, border-color 0.3s, color 0.3s;
      flex-shrink: 0;
    }
    .pcard-btn:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }

    @media (max-width: 1024px) {
      .pcard { flex: 0 0 calc(25% - 1px); min-width: 180px; }
      .gender-tabs { padding: 0 24px; }
      .cat-row-header { padding: 0 24px; }
      .cat-items { padding: 0 24px; }
      .products-header { padding: 0 24px; }
    }
    @media (max-width: 640px) {
      .pcard { flex: 0 0 calc(45vw); min-width: 160px; }
      .cat-items { padding: 0 20px; }
      .gender-tabs { padding: 0 20px; }
      .cat-row-header { padding: 0 20px; }
      .gender-tab { padding: 12px 20px; font-size: 12px; }
    }

    .img-label {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-disp);
      font-size: 48px;
      font-weight: 300;
      font-style: italic;
      color: rgba(154,125,82,0.18);
      pointer-events: none;
    }

    .product-badge {
      position: absolute;
      top: 16px; left: 16px;
      background: var(--dark);
      color: var(--white);
      font-family: var(--ff-en);
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 5px 12px;
    }

    .product-info { padding: 24px 24px 28px; }
    .product-category {
      font-family: var(--ff-en);
      font-size: 9px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 8px;
    }
    .product-name {
      font-family: var(--ff-disp);
      font-size: 18px;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 4px;
      line-height: 1.35;
    }
    .product-sub { font-size: 12px; color: var(--text-dim); margin-bottom: 18px; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; }
    .product-price {
      font-family: var(--ff-en);
      font-size: 20px;
      font-weight: 300;
      color: var(--gold);
    }

    /* =============================================
       PRODUCT VIDEO SECTION
    ============================================= */
    .product-video-section {
      background: var(--off-white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 48px;
    }
    .product-video-label {
      max-width: 1400px;
      margin: 0 auto 24px;
      display: flex;
      align-items: baseline;
      gap: 20px;
      flex-wrap: wrap;
    }
    .product-video-tag {
      font-family: var(--ff-en);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid var(--gold-dim);
      padding: 5px 14px;
      flex-shrink: 0;
    }
    .product-video-title {
      font-family: var(--ff-disp);
      font-size: clamp(20px, 2.5vw, 32px);
      font-weight: 300;
      color: var(--dark);
      line-height: 1.2;
    }
    .product-video-title em { font-style: italic; color: var(--gold); }

    .product-video-wrap {
      max-width: 1400px;
      margin: 0 auto;
      background: var(--dark);
      overflow: hidden;
      line-height: 0;
    }
    .product-video-wrap video {
      width: 100%;
      height: auto;
      max-height: 620px;
      object-fit: contain;
      display: block;
    }
    .products-grid-row2 { margin-top: 1px; }

    @media (max-width: 640px) {
      .product-video-section { padding: 32px 20px; }
      .product-video-wrap video { max-height: 260px; }
    }
    .product-price small { font-size: 11px; color: var(--text-dim); margin-left: 3px; }
    .product-btn {
      width: 40px; height: 40px;
      border: 1px solid var(--border-dk);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--charcoal);
      font-size: 18px;
      transition: background 0.3s, border-color 0.3s, color 0.3s;
    }
    .product-btn:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }

    /* =============================================
       WHY US
    ============================================= */
    #why {
      padding: 120px 48px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .why-header { margin-bottom: 56px; }

    /* 新レイアウト: 番号○ | 縦線 | 写真 | テキスト */
    .why-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      max-width: 1100px;
      margin: 0 auto;
    }
    .why-row {
      display: grid;
      grid-template-columns: 80px 1px 220px 1fr;
      gap: 0 32px;
      align-items: center;
      padding: 36px 0;
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }
    .why-row:first-child { border-top: 1px solid var(--border); }
    .why-row:hover { background: var(--off-white); }

    /* 番号○ */
    .why-row-num {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .why-row-num-circle {
      width: 64px; height: 64px;
      border-radius: 50%;
      border: 1.5px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-disp);
      font-size: 22px;
      font-weight: 300;
      color: var(--gold);
      flex-shrink: 0;
    }
    /* 縦線 */
    .why-row-divider {
      width: 1px;
      height: 100%;
      min-height: 120px;
      background: var(--border);
      flex-shrink: 0;
    }
    /* 写真 */
    .why-row-img {
      width: 220px;
      aspect-ratio: 1/1;
      overflow: hidden;
      flex-shrink: 0;
      background: var(--light);
    }
    .why-row-img img {
      width: 100%; height: 100%;
      object-fit: contain;
      display: block;
      transition: transform 0.4s ease;
    }
    .why-row:hover .why-row-img img { transform: scale(1.04); }
    /* テキスト */
    .why-row-body {}
    .why-row-title {
      font-family: var(--ff-disp);
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 12px;
      line-height: 1.35;
    }
    .why-row-text {
      font-size: 14px;
      color: var(--charcoal);
      line-height: 2.0;
    }

    @media (max-width: 1024px) {
      .why-row { grid-template-columns: 64px 1px 180px 1fr; gap: 0 20px; padding: 28px 0; }
      .why-row-img { width: 180px; }
    }
    @media (max-width: 640px) {
      .why-row {
        display: grid;
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
        gap: 6px 14px;
        padding: 20px 0;
      }
      /* 数字: 左上 */
      .why-row-num {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .why-row-num-circle { width: 40px; height: 40px; font-size: 13px; }
      /* 画像: 左下 */
      .why-row-divider { display: none; }
      .why-row-img {
        grid-column: 1;
        grid-row: 2;
        width: 80px;
        aspect-ratio: 1/1;
      }
      /* テキスト: 右側2行分 */
      .why-row-body {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
      }
      .why-row-title { font-size: 14px; margin-bottom: 8px; }
      .why-row-text { font-size: 12px; line-height: 1.7; }
    }

    /* =============================================
       GUARANTEE
    ============================================= */
    #size-guide {
      padding: 80px 48px;
      background: var(--off-white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .size-guide-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: center;
    }
    .guarantee-item {
      display: flex;
      align-items: center;
      gap: 18px;
      padding: 18px 20px;
      border: 1px solid var(--border);
      margin-bottom: 12px;
      background: var(--white);
      transition: border-color 0.3s;
    }
    .guarantee-item:hover { border-color: var(--gold-dim); }
    .g-icon { font-size: 22px; flex-shrink: 0; width: 36px; text-align: center; }
    .g-title { font-size: 15px; font-weight: 500; color: var(--dark); margin-bottom: 4px; }
    .g-body { font-size: 13px; font-weight: 400; color: var(--charcoal); line-height: 1.7; }

    /* =============================================
       REVIEWS
    ============================================= */
    #reviews {
      padding: 120px 0 40px;
      background: var(--white);
    }
    .reviews-header {
      padding: 0 48px;
      max-width: 1400px;
      margin: 0 auto 56px;
    }
    .reviews-scroll {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      padding: 0 48px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .review-card {
      background: var(--off-white);
      border: 1px solid var(--border);
      padding: 36px 32px;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .review-card::before {
      content: '"';
      position: absolute;
      top: 12px; left: 24px;
      font-family: var(--ff-disp);
      font-size: 64px;
      font-weight: 300;
      font-style: italic;
      color: var(--gold);
      opacity: 0.12;
      line-height: 1;
    }

    .review-stars { display: flex; gap: 3px; margin-bottom: 18px; flex-shrink: 0; }
    .star { color: var(--gold); font-size: 13px; }

    .review-text {
      font-size: 14px;
      font-weight: 400;
      line-height: 2.0;
      color: var(--charcoal);
      margin-bottom: 0;
      flex: 1;
    }

    .review-product-tag {
      display: inline-block;
      margin-top: 24px;
      padding: 4px 12px;
      border: 1px solid var(--border-dk);
      font-family: var(--ff-en);
      font-size: 9px;
      letter-spacing: 0.18em;
      color: var(--gold-dim);
      text-transform: uppercase;
      flex-shrink: 0;
    }

    .review-author {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 20px;
      margin-top: 20px;
      border-top: 1px solid var(--border);
      flex-shrink: 0;
    }
    .review-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--silver);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-disp);
      font-size: 16px;
      color: var(--gold);
      flex-shrink: 0;
    }
    .review-name { font-size: 14px; font-weight: 500; color: var(--dark); margin-bottom: 2px; }
    .review-meta {
      font-family: var(--ff-en);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.1em;
      color: var(--text-sub);
    }

    @media (max-width: 1024px) {
      .reviews-scroll { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .reviews-scroll { grid-template-columns: 1fr; padding: 0 20px; }
    }

    /* =============================================
       CTA
    ============================================= */
    #cta {
      padding: 160px 48px;
      background: var(--dark);
      position: relative;
      text-align: center;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(154,125,82,0.08) 0%, transparent 60%);
    }
    .cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
    .cta-title {
      font-family: var(--ff-disp);
      font-size: clamp(38px, 5.5vw, 64px);
      font-weight: 300;
      font-style: italic;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .cta-sub {
      font-size: 14px;
      color: rgba(255,255,255,0.5);
      margin-bottom: 44px;
      line-height: 1.9;
    }
    .cta-note {
      font-family: var(--ff-en);
      font-size: 9px;
      letter-spacing: 0.25em;
      color: rgba(255,255,255,0.3);
      text-transform: uppercase;
      margin-top: 20px;
    }
    /* CTA内のボタンは白文字 */
    #cta .btn-primary {
      background: var(--white);
      color: var(--dark);
    }
    #cta .btn-primary::before { background: var(--off-white); }

    /* CTA内 安心バッジ行 */
    .cta-trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 32px;
    }
    .cta-trust-badge {
      font-family: var(--ff-sans);
      font-size: 12px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 6px 14px;
      letter-spacing: 0.04em;
    }
    /* CTA サブボタン（実店舗） */
    .cta-sub-btn {
      display: inline-block;
      border: 1px solid rgba(255,255,255,0.5);
      color: rgba(255,255,255,0.85);
      font-family: var(--ff-sans);
      font-size: 14px;
      font-weight: 400;
      padding: 16px 36px;
      transition: background 0.3s, color 0.3s;
      letter-spacing: 0.06em;
    }
    .cta-sub-btn:hover {
      background: rgba(255,255,255,0.1);
      color: var(--white);
    }

    /* レビュー下CTA */
    .reviews-bottom-cta {
      background: var(--off-white);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 48px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    /* 商品画像 背景横流れ */
    .reviews-bottom-cta-bg {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      gap: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .reviews-bottom-cta-bg-track {
      display: flex;
      gap: 8px;
      animation: ctaBgScroll 30s linear infinite;
      will-change: transform;
      flex-shrink: 0;
    }
    @keyframes ctaBgScroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .reviews-bottom-cta-bg-track img {
      height: 200px;
      width: auto;
      object-fit: cover;
      opacity: 0.18;
      flex-shrink: 0;
      display: block;
    }
    /* テキストを前面に */
    .reviews-bottom-cta-inner {
      position: relative;
      z-index: 1;
    }
    .reviews-bottom-cta-inner { max-width: 600px; margin: 0 auto; }
    .reviews-cta-text {
      font-family: var(--ff-disp);
      font-size: clamp(18px, 2.5vw, 26px);
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 24px;
    }


    @media (max-width: 640px) {
      .cta-trust-row { gap: 8px; }
      .cta-trust-badge { font-size: 11px; padding: 5px 10px; }
      .cta-sub-btn { width: 100%; text-align: center; }
    }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: var(--off-white);
      border-top: 1px solid var(--border);
      padding: 80px 48px 48px;
    }
    .footer-top {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
      gap: 56px;
      padding-bottom: 56px;
      border-bottom: 1px solid var(--border);
    }
    .footer-logo-ja {
      font-family: var(--ff-disp);
      font-size: 28px;
      font-weight: 400;
      color: var(--dark);
      margin-bottom: 6px;
    }
    .footer-logo-en {
      font-family: var(--ff-en);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.28em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-desc { font-size: 14px; font-weight: 400; color: var(--charcoal); line-height: 2.0; margin-bottom: 24px; }
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 400;
      color: var(--charcoal);
    }
    .contact-icon { color: var(--gold-dim); flex-shrink: 0; }
    .footer-col h4 {
      font-family: var(--ff-en);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--dark);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--dark);
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 12px; }
    .footer-col li a {
      font-size: 14px;
      font-weight: 400;
      color: var(--charcoal);
      transition: color 0.3s, padding-left 0.3s;
      display: block;
    }
    .footer-col li a:hover { color: var(--gold); padding-left: 4px; }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 36px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .copyright {
      font-family: var(--ff-en);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.08em;
      color: var(--charcoal);
    }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a {
      font-family: var(--ff-en);
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--charcoal);
      transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }


    /* =============================================
       SPEED DIAL — フローティング連絡ボタン
    ============================================= */
    .speed-dial {
      position: fixed;
      bottom: 16px; left: 24px;
      z-index: 200;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      pointer-events: none;
    }
    .speed-dial > * {
      pointer-events: auto;
    }
    .speed-dial-items {
      display: flex;
      flex-direction: column;
      gap: 8px;
      pointer-events: none;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.25s, transform 0.25s;
      order: -1;
    }
    .sd-trigger {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: var(--dark);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.25);
      transition: background 0.25s, transform 0.25s;
      flex-shrink: 0;
      position: relative;
    }
    .sd-trigger:hover { background: var(--charcoal); transform: scale(1.08); }
    .sd-trigger-open, .sd-trigger-close {
      position: absolute;
      font-size: 20px;
      color: var(--white);
      transition: opacity 0.2s, transform 0.2s;
    }
    .sd-trigger-close { opacity: 0; transform: rotate(-90deg); font-size: 16px; }
    .speed-dial.open .sd-trigger-open  { opacity: 0; transform: rotate(90deg); }
    .speed-dial.open .sd-trigger-close { opacity: 1; transform: rotate(0deg); }
    .speed-dial.open .speed-dial-items {
      pointer-events: all;
      opacity: 1;
      transform: translateY(0);
    }
    .sd-item {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.97);
      border-radius: 28px;
      padding: 10px 16px 10px 10px;
      box-shadow: 0 3px 12px rgba(0,0,0,0.15);
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
      white-space: nowrap;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .sd-item:hover { transform: translateX(4px); box-shadow: 0 4px 18px rgba(0,0,0,0.2); color: var(--dark); }
    .sd-icon {
      width: 36px; height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .sd-tel   .sd-icon { background: #e8f5e9; }
    .sd-mail  .sd-icon { background: #fff8e1; }
    .sd-line  .sd-icon { background: #06C755; color: var(--white); font-size: 11px; font-weight: 900; font-family: var(--ff-en); }
    .sd-insta .sd-icon { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
    /* 追加アイテム */
    .sd-hours { cursor: default; }
    .sd-hours:hover { transform: none; box-shadow: 0 3px 12px rgba(0,0,0,0.15); }
    .sd-hours .sd-icon { background: #e3f2fd; }
    .sd-line-coupon .sd-icon { background: #06C755; color: var(--white); font-size: 11px; font-weight: 900; font-family: var(--ff-en); }
    .sd-member .sd-icon { background: #fff3e0; }
    .sd-sale .sd-icon { background: #ffebee; }
    .sd-label strong { color: var(--dark); font-weight: 700; }
    @media (max-width: 640px) {
      .sd-trigger:hover { background: var(--gold-lt); }
      .speed-dial-items { bottom: 60px; }
      .sd-trigger { width: 46px; height: 46px; }
      .sd-item { font-size: 12px; padding: 8px 12px 8px 8px; }
      .sd-icon { width: 30px; height: 30px; font-size: 15px; }
    }

    /* =============================================
       FLOATING & STICKY
    ============================================= */
    .floating-cart {
      position: fixed;
      bottom: 66px; right: 12px;
      z-index: 100;
      display: flex;
      flex-direction: column;
      gap: 10px;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.5s, transform 0.5s;
    }
    .floating-cart.visible { opacity: 1; transform: translateY(0); }
    .float-btn {
      width: 52px; height: 52px;
      background: var(--dark);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      transition: background 0.3s, transform 0.3s;
    }
    .float-btn:hover { background: var(--charcoal); transform: scale(1.08); }
    .float-btn.top {
      background: var(--white);
      border: 1px solid var(--border-dk);
      color: var(--dark);
      font-size: 16px;
    }
    .float-btn.top:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

    .sticky-mobile-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      width: 100%;
      z-index: 500;
      padding: 0;
      background: rgba(255,255,255,0.98);
      border-top: 2px solid var(--dark);
      backdrop-filter: blur(10px);
      box-sizing: border-box;
    }
    .sticky-mobile-cta a {
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--dark);
      color: var(--white);
      text-align: center;
      padding: 0 8px;
      height: 48px;
      font-family: var(--ff-sans);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      border-radius: 2px;
      flex: 1;
      margin: 0;
    }

    /* 固定バナー（LINE・会員登録） */
    .fixed-banners {
      position: fixed;
      bottom: 0; right: 0;
      z-index: 490;
      display: flex;
      gap: 0;
      background: transparent;
      border-top: none;
      box-shadow: none;
      pointer-events: all;
    }
    .fixed-banners a {
      display: block;
      line-height: 0;
      pointer-events: all;
    }
    .fixed-banners a img {
      width: 162px;
      height: 50px;
      display: block;
      object-fit: fill;
    }
    @media (max-width: 640px) {
      .fixed-banners {
        bottom: 76px;
        gap: 0;
        padding: 0;
        right: 0;
        left: 0;
        width: 100%;
      }
      .fixed-banners a {
        flex: 1;
        overflow: hidden;
        line-height: 0;
      }
      .fixed-banners a img {
        width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
      }
    }

    /* =============================================
       MOBILE MENU — Schott スタイル
    ============================================= */
    .gnav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.3);
      z-index: 980;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s;
      backdrop-filter: blur(2px);
    }
    .gnav-overlay.open { opacity: 1; pointer-events: all; }

    .mobile-menu {
      position: fixed;
      top: 0; right: 0;
      width: min(360px, 85vw);
      height: 100%;
      background: var(--dark);
      z-index: 995;
      transform: translateX(100%);
      transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      pointer-events: none;
    }
    .mobile-menu.open { transform: translateX(0); pointer-events: all; }

    .mobile-menu-close {
      position: sticky;
      top: 0; z-index: 2;
      background: var(--dark);
      padding: 18px 22px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      flex-shrink: 0;
    }
    .mobile-menu-close button {
      background: none; border: none; cursor: pointer;
      width: 34px; height: 34px;
      position: relative;
    }
    .mobile-menu-close button::before,
    .mobile-menu-close button::after {
      content: '';
      position: absolute;
      width: 22px; height: 1.5px;
      background: var(--white);
      top: 50%; left: 50%;
    }
    .mobile-menu-close button::before { transform: translate(-50%,-50%) rotate(45deg); }
    .mobile-menu-close button::after  { transform: translate(-50%,-50%) rotate(-45deg); }
    .mobile-menu-close button:hover::before,
    .mobile-menu-close button:hover::after { background: var(--gold-lt); }

    .mobile-menu-body { padding: 4px 0 48px; flex: 1; }

    .menu-item { border-bottom: 1px solid rgba(255,255,255,0.06); }

    .mobile-menu .menu-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 16px 26px;
      background: none; border: none; cursor: pointer;
      font-family: var(--ff-en);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      transition: color 0.3s, background 0.3s;
      text-align: left;
    }
    .mobile-menu .menu-trigger:hover { color: var(--white); background: rgba(255,255,255,0.04); }
    .mobile-menu .menu-trigger.active { color: var(--gold-lt); }

    .mobile-menu .menu-icon {
      width: 18px; height: 18px;
      position: relative; flex-shrink: 0;
    }
    .mobile-menu .menu-icon::before,
    .mobile-menu .menu-icon::after {
      content: '';
      position: absolute;
      background: currentColor;
      transition: transform 0.3s, opacity 0.3s;
    }
    .mobile-menu .menu-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
    .mobile-menu .menu-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
    .mobile-menu .menu-trigger.active .menu-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

    .mobile-menu .menu-sub {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.77,0,0.175,1);
      background: rgba(0,0,0,0.2);
    }
    .mobile-menu .menu-sub.open { max-height: 500px; }
    .mobile-menu .menu-sub a {
      display: block;
      padding: 12px 26px 12px 42px;
      font-family: var(--ff-sans);
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,255,255,0.45);
      border-bottom: 1px solid rgba(255,255,255,0.04);
      transition: color 0.3s, padding-left 0.3s;
    }
    .mobile-menu .menu-sub a:last-child { border-bottom: none; }
    .mobile-menu .menu-sub a:hover { color: var(--white); padding-left: 50px; }

    .mobile-menu .menu-link {
      display: block;
      padding: 16px 26px;
      font-family: var(--ff-en);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: color 0.3s, background 0.3s;
    }
    .mobile-menu .menu-link:hover { color: var(--white); background: rgba(255,255,255,0.04); }

    .mobile-menu .menu-shop-btn {
      display: block;
      margin: 24px 22px 6px;
      padding: 14px;
      background: var(--gold);
      color: var(--dark);
      text-align: center;
      font-family: var(--ff-en);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      transition: background 0.3s;
    }
    .mobile-menu .menu-shop-btn:hover { background: var(--gold-lt); }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      header { padding: 0 24px; }
      nav { display: none; }
      .hamburger { display: flex; }
      #brand { grid-template-columns: 1fr; padding: 72px 24px; gap: 40px; }
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .product-card.featured { grid-column: span 1; }
      #why { padding: 80px 24px; }
      #products { padding: 72px 24px; }
      .products-header { padding: 0; }
      .size-guide-inner { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; padding: 0 0 48px; }
      .floating-cart { right: 20px; bottom: 66px; }
    }

    @media (max-width: 640px) {
      .products-grid { grid-template-columns: 1fr; }
      .product-card.featured { grid-column: span 1; }
      .why-grid { grid-template-columns: 1fr; }
      .brand-stats { grid-template-columns: repeat(2, 1fr); }
      footer { padding: 56px 20px 36px; }
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .reviews-scroll { padding: 0 20px; }
      .review-card { min-width: 290px; }
      #cta { padding: 100px 20px; }
      .sticky-mobile-cta { display: block; }
      /* floating-cartはCTA内に統合したので非表示 */
      .floating-cart { display: none !important; }
      /* speed-dialはCTA上に展開 */
      .speed-dial { 
        bottom: 140px; 
        left: 8px; 
        display: flex !important;
      }
      .sd-trigger { display: none; }
      .speed-dial-items {
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
      }
      .speed-dial.open .speed-dial-items {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
      }
      body { padding-bottom: 140px; }

      /* スマホ専用 CTA ボタン改善 */
      .cta-btn-primary { font-size: 15px; padding: 18px 24px; width: 100%; display: block; text-align: center; box-sizing: border-box; }
      .hero-trust { gap: 8px; }
      .trust-item { min-width: 80px; padding: 12px 10px; font-size: 11px; }
      #brand { padding: 48px 20px; gap: 16px; }
      /* スマホ: brand-content-top（タイトル）を表示、brand-content内のタイトルを非表示 */
      .brand-content-top { display: block; }
      .brand-label-pc { display: none; }
      .brand-title-pc { display: none; }
      /* スマホCSS上書きリセット */
      #brand { display: flex; flex-direction: column; flex-wrap: nowrap; }
      #brand .brand-visual { order: 0; }
      #brand .brand-content { order: 0; }
      #why { padding: 60px 20px; }
      #size-guide { padding: 60px 20px; }
      .reviews-header { padding: 0 20px; margin-bottom: 32px; }
      .size-guide-inner { padding: 0 20px; }
      .why-card { padding: 28px 24px; }
      .hero-catch { padding: 32px 20px 44px; }
      .hero-catch-title { font-size: clamp(26px, 7vw, 40px); }
    }

    /* レビュー ソーシャルプルーフ */
    .reviews-summary {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 12px;
    }
    .reviews-score {
      font-family: var(--ff-en);
      font-size: 22px;
      font-weight: 600;
      color: var(--gold);
    }
    .reviews-count {
      font-size: 14px;
      font-weight: 400;
      color: var(--charcoal);
    }

    /* 最終CTAボタングループ */
    .cta-btn-group {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .cta-main-btn {
      font-size: 16px !important;
      padding: 20px 56px !important;
      letter-spacing: 0.05em !important;
    }

    /* PC: 固定バナー分の余白 */
    @media (min-width: 641px) {
      body { padding-bottom: 70px; }
    }
    @media (max-width: 640px) {
      .sticky-mobile-cta a {
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.06em;
        background: var(--dark);
        color: var(--white);
      }
      .sticky-cart-btn {
        width: 52px !important;
        min-width: 52px !important;
        max-width: 52px !important;
        flex: none !important;
      }
      .cta-btn-group { flex-direction: column; align-items: center; }
      .cta-main-btn { width: 100%; text-align: center; }
      .cta-sub-btn { width: 100%; text-align: center; }
    }

    /* =============================================
       RANKING SECTION
    ============================================= */
    .ranking-section {
      padding: 96px 48px;
      background: var(--off-white);
    }
    .ranking-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .ranking-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
    }
    .ranking-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    .rank-card {
      display: block;
      text-decoration: none;
      color: inherit;
      position: relative;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
    }
    .rank-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
    .rank-card__num {
      position: absolute;
      top: 0; left: 0;
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--ff-en);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--white);
      background: var(--dark);
      z-index: 1;
    }
    .rank-card__num.top3 { background: var(--gold); }
    .rank-card__img {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      background: var(--light);
    }
    .rank-card__img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.4s var(--ease);
    }
    .rank-card:hover .rank-card__img img { transform: scale(1.04); }
    .rank-card__body { padding: 14px 12px; }
    .rank-card__name {
      font-size: 12px;
      font-weight: 500;
      color: var(--dark);
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .rank-card__placeholder {
      width: 100%; aspect-ratio: 1/1;
      display: flex; align-items: center; justify-content: center;
      background: var(--light);
      color: var(--text-dim);
      font-size: 12px;
    }
    @media (max-width: 1024px) {
      .ranking-section { padding: 72px 24px; }
      .ranking-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    }
    @media (max-width: 640px) {
      .ranking-section { padding: 56px 20px; }
      .ranking-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .ranking-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    }
  </style>
