@charset "utf-8";
/* CSS Document */
html {
      scrollbar-gutter: stable;
    }

    /* ==========================================
       CSS スコープ化 (#catalog-lp)
       ========================================== */
    #catalog-lp {
      font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "ヒラギノ角ゴ ProN W3", sans-serif;
      color: #332c27;
      line-height: 1.6;
      background-color: #faf8f5;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-text-size-adjust: 100%;
    }

    #catalog-lp *,
    #catalog-lp *::before,
    #catalog-lp *::after {
      box-sizing: inherit;
    }

    #catalog-lp .lp-container {
      width: 100%;
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 20px;
    }

    #catalog-lp img {
      max-width: 100%;
      height: auto;
      vertical-align: bottom;
    }

    /* フォントスタイル指定（セリフ体・ゴシック体） */
    #catalog-lp .font-serif {
      font-family: 'Noto Serif JP', 'Playfair Display', Georgia, serif;
    }

    #catalog-lp .font-sans {
      font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    /* SP専用改行（デフォルトは非表示） */
    #catalog-lp .u-sp-only {
      display: none;
    }

    /* ----------------------------------
       エフェクト：スクロール連動フェードイン
       ----------------------------------*/
    #catalog-lp .fade-in-up {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), 
                  transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }

    #catalog-lp .fade-in-up.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ------------------------
       1. メインビジュアル（MV）
       ------------------------ */
    #catalog-lp .lp-mv {
      width: 100%;
      margin-bottom: 45px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(74, 53, 37, 0.05);
    }

    #catalog-lp .lp-mv picture,
    #catalog-lp .lp-mv img {
      width: 100%;
      display: block;
      object-fit: cover;
    }

    #catalog-lp .lp-mv__img {
      animation: lpMvZoom 2.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes lpMvZoom {
      from { transform: scale(1.05); }
      to { transform: scale(1); }
    }

    /* ---------------------------
       2. 見出し・リード文エリア
       --------------------------- */
    #catalog-lp .lp-lead {
      text-align: center;
      margin-bottom: 70px;
      padding: 0 15px;
    }

    #catalog-lp .lp-lead__title {
      font-family: 'Playfair Display', 'Noto Serif JP', serif;  
      font-size: 36px;
      font-weight: 800;
      letter-spacing: 0.14em;
      margin-bottom: 12px;
      color: #3d2b1f;
      text-transform: uppercase;
    }

    #catalog-lp .lp-lead__subtitle {
      font-family: 'Playfair Display', 'Noto Serif JP', serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: #8c7361;
      margin-bottom: 24px;
    }

    #catalog-lp .lp-lead__text {
      font-size: 16px;
      font-weight: 600;
      line-height: 1.9;
      color: #4a4038;
      max-width: 720px;
      margin: 0 auto 30px;
    }

    /* アコーディオン */
    #catalog-lp .lp-accordion {
      max-width: 600px;
      margin: 0 auto;
    }

    #catalog-lp .lp-accordion__details {
      border: 1px solid #e0d8cf;
      border-radius: 4px;
      background-color: #ffffff;
      overflow: hidden;
      transition: border-color 0.3s ease;
    }

    #catalog-lp .lp-accordion__details[open] {
      border-color: #b59b84;
    }

    #catalog-lp .lp-accordion__summary {
      padding: 14px 40px;
      font-size: 14px;
      font-weight: 500;
      color: #5c4a3e;
      cursor: pointer;
      list-style: none;
      display: block;
      text-align: center;
      position: relative;
      user-select: none;
      transition: background-color 0.2s ease;
    }

    #catalog-lp .lp-accordion__summary::-webkit-details-marker {
      display: none;
    }

    #catalog-lp .lp-accordion__summary:hover {
      background-color: #f7f4ef;
    }

    #catalog-lp .lp-accordion__summary::after {
      content: '';
      position: absolute;
      right: 20px;
      top: 50%;
      margin-top: -5px;
      width: 8px;
      height: 8px;
      border-right: 2px solid #8c7361;
      border-bottom: 2px solid #8c7361;
      transform: rotate(45deg);
      transition: transform 0.3s ease;
    }

    #catalog-lp .lp-accordion__details[open] .lp-accordion__summary::after {
      transform: rotate(-135deg);
    }

    #catalog-lp .lp-accordion__content {
      padding: 16px 20px 20px;
      border-top: 1px dashed #e8e2d9;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.8;
      color: #665a52;
      background-color: #faf8f5;
      text-align: left;
    }

    #catalog-lp .lp-accordion__content p {
      margin: 0 0 6px;
    }

    #catalog-lp .lp-accordion__content p:last-child {
      margin-bottom: 0;
    }

    /* ----------------------------------
       共通セクションタイトル・バッジ
       ----------------------------------*/
    #catalog-lp .lp-section {
      margin-bottom: 80px !important;
    }

    #catalog-lp .lp-section__header {
      text-align: center !important;
      margin-bottom: 45px !important;
      padding-bottom: 0 !important;
    }

    #catalog-lp .lp-section__title {
      font-family: 'Noto Serif JP', 'Playfair Display', serif;
      font-size: 24px;
      font-weight: 700;
      text-align: center !important;
      letter-spacing: 0.1em;
      margin-top: 0 !important;
      margin-bottom: 0 !important;
      padding-bottom: 0 !important;
      color: #3d2b1f !important;
      line-height: 1.4 !important;
      position: static !important;
    }

    #catalog-lp .lp-section__title::after {
      content: '' !important;
      display: block !important;
      width: 36px !important;
      height: 2px !important;
      background-color: #8c7361 !important;
      margin: 16px auto 0 !important;
      position: static !important;
    }

    #catalog-lp .lp-section__subtitle-text {
      text-align: center !important;
      font-size: 14px;
      color: #736255;
      margin-top: 16px !important;
      margin-bottom: 0 !important;
      font-weight: 500;
    }

    /* 強調用ラベルバッジ */
    #catalog-lp .lp-badge-highlight {
      display: inline-block;
      background-color: #3d2b1f;
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      padding: 8px 22px;
      border-radius: 20px;
      margin-top: 25px;
      margin-bottom: 10px;
      letter-spacing: 0.08em;
    }

    /* ----------------------------------
       3. 会員特典価格 一覧（表）
       ----------------------------------*/
    #catalog-lp .lp-rank-table-wrap {
      max-width: 800px;
      margin: 40px auto 0 !important;
      background-color: #ffffff;
      padding: 35px 30px;
      border: 1px solid #e5dec3;
      box-shadow: 0 4px 15px rgba(140, 115, 97, 0.06);
      border-radius: 4px;
    }

    #catalog-lp .lp-rank-table {
      width: 100%;
      border-collapse: collapse;
      text-align: center;
      margin-bottom: 20px;
    }

    #catalog-lp .lp-rank-table th,
    #catalog-lp .lp-rank-table td {
      border: 1px solid #dfd5c6;
      padding: 16px 12px;
      vertical-align: middle;
      text-align: center;
    }

    #catalog-lp .lp-rank-table th {
      background-color: #f5eee6;
      color: #4d382a;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.05em;
    }

    #catalog-lp .lp-rank-table td {
      font-size: 15px;
      color: #3d332c;
    }

    #catalog-lp .lp-rank-table__rank {
      background-color: #fcfbfa;
      font-weight: 700;
    }

    #catalog-lp .lp-rank-table__discount {
      font-weight: 700;
      font-size: 18px;
      color: #8c4c23;
    }

    #catalog-lp .lp-rank-table__discount--highlight {
      font-size: 20px;
      color: #b83d1d;
    }

    #catalog-lp .lp-rank-notes {
      font-size: 14px;
      font-weight: 500;
      color: #665950;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    #catalog-lp .lp-rank-notes p {
      margin: 4px 0;
    }

    /* CTAボタン */
    #catalog-lp .lp-cta-wrap {
      text-align: center;
    }

    #catalog-lp .lp-btn-cta {
      display: inline-block;
      min-width: 280px;
      padding: 16px 36px;
      background-color: #4a3525;
      color: #ffffff;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-decoration: none;
      border-radius: 2px;
      box-shadow: 0 4px 12px rgba(74, 53, 37, 0.15);
      transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    }

    #catalog-lp .lp-btn-cta:hover {
      background-color: #664a35;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(74, 53, 37, 0.22);
    }

    /* ----------------------------------
       対象商品カテゴリ案内（CTA 4連ボタン & 区切り線）
       ----------------------------------*/
    #catalog-lp .lp-category-nav {
      margin: 45px auto 70px;
      max-width: 900px;
      text-align: center;
      padding: 0 10px 60px;
      border-bottom: 1px solid #e0d8cf;
    }

    #catalog-lp .lp-category-nav__title {
      font-size: 20px;
      font-weight: 700;
      color: #3d2b1f;
      margin-bottom: 18px;
      letter-spacing: 0.1em;
    }

    #catalog-lp .lp-category-nav__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    #catalog-lp .lp-category-nav__btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: #ffffff;
      border: 1px solid #3d2b1f;
      color: #3d2b1f;
      padding: 12px 8px;
      text-decoration: none;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.08em;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    #catalog-lp .lp-category-nav__btn .sub {
      font-size: 14px;
      font-weight: 500;
      color: #736255;
      margin-top: 2px;
    }

    #catalog-lp .lp-category-nav__btn:hover {
      background-color: #3d2b1f;
      color: #ffffff;
    }

    #catalog-lp .lp-category-nav__btn:hover .sub {
      color: #e6dfd5;
    }

    /* ----------------------------------
       4. 新規会員登録・公式アプリ導線
       ----------------------------------*/
    #catalog-lp .lp-app-container {
      background-color: #ffffff;
      border: 1px solid #e8e2d9;
      border-radius: 4px;
      padding: 40px 30px;
      margin-top: 35px !important;
      box-shadow: 0 4px 15px rgba(140, 115, 97, 0.06);
    }

    /* 3つの特典カード */
    #catalog-lp .lp-app-benefits {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 35px;
    }

    #catalog-lp .lp-app-card {
      background-color: #faf7f2;
      border: 1px solid #ebe4d8;
      border-radius: 6px;
      padding: 24px 16px 20px;
      text-align: center;
      position: relative;
    }

    #catalog-lp .lp-app-card__badge {
      display: inline-block;
      background-color: #cb4024;
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      padding: 3px 12px;
      border-radius: 12px;
      margin-bottom: 12px;
      letter-spacing: 0.05em;
    }

    #catalog-lp .lp-app-card__title {
      font-size: 15px;
      font-weight: 700;
      color: #3d2b1f;
      line-height: 1.4;
      margin-bottom: 10px;
    }

    #catalog-lp .lp-app-card__title .highlight {
      color: #cb4024;
      font-size: 16px;
    }

    #catalog-lp .lp-app-card__desc {
      font-size: 14px;
      color: #665a52;
      line-height: 1.6;
    }

    /* アプリダウンロード導線エリア */
    #catalog-lp .lp-app-banner-wrap {
      width: 100%;
      max-width: 800px;
      margin: 0 auto 30px;
    }

    #catalog-lp .lp-app-banner-pc {
      display: block;
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
      background-color: #f2efe9;
    }

    #catalog-lp .lp-app-banner-pc img {
      width: 100%;
      height: auto;
      display: block;
    }

    #catalog-lp .lp-app-banner-sp {
      display: none;
    }

    #catalog-lp .lp-app-link-wrap {
      text-align: center;
    }

    #catalog-lp .lp-app-text-link {
      display: inline-block;
      color: #4a3525;
      font-size: 14px;
      font-weight: 700;
      text-decoration: underline;
      transition: color 0.2s ease, opacity 0.2s ease;
    }

    #catalog-lp .lp-app-text-link:hover {
      color: #8c6239;
      opacity: 0.8;
    }

    /* --------------------------------------------------------------------------
       5. カテゴリ別 3ブロック構成＆見出しデザイン
       -------------------------------------------------------------------------- */
    #catalog-lp .lp-category-block {
      margin-bottom: 75px !important;
    }

    #catalog-lp .lp-category-block:last-child {
      margin-bottom: 0 !important;
    }

    #catalog-lp .lp-category-header {
      text-align: center !important;
      margin-bottom: 35px !important;
      position: relative !important;
    }

    #catalog-lp .lp-category-header::before,
    #catalog-lp .lp-category-header::after,
    #catalog-lp .lp-category-header *::before,
    #catalog-lp .lp-category-header *::after {
      content: none !important;
      display: none !important;
    }

    #catalog-lp .lp-category-header__num {
      display: block !important;
      font-size: 14px;
      font-weight: 700;
      color: #8c7361;
      letter-spacing: 0.15em;
      margin-bottom: 12px !important;
    }

    #catalog-lp .lp-category-header__num::after {
      content: '' !important;
      display: block !important;
      width: 36px !important;
      height: 2px !important;
      background-color: #8c7361 !important;
      margin: 14px auto 0 !important;
    }

    /* ①「RECOMMENDED STYLES」（第1ブロック見出し）デザイン指定 */
    #catalog-lp .lp-category-block:first-child .lp-category-header__num,
    #catalog-lp .lp-category-block:first-child .lp-category-header__title {
      font-family: 'Playfair Display', 'Noto Serif JP', serif !important;
      font-size: 40px !important;
      font-weight: 800 !important;
      color: #3d2b1f !important;
      letter-spacing: 0.14em !important;
      text-transform: uppercase !important;
      margin-bottom: 0 !important;
    }

    #catalog-lp .lp-category-block:first-child .lp-category-header__num::after,
    #catalog-lp .lp-category-block:first-child .lp-category-header__title::after {
      content: '' !important;
      display: block !important;
      width: 36px !important;
      height: 3px !important;
      background-color: #8c7361 !important;
      margin: 18px auto 0 !important;
    }

    /* ①「着パ」画像バナー設定 */
    #catalog-lp .lp-category-header__chaka-banner {
      max-width: 800px;
      margin: 30px auto 50px !important;
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }

    #catalog-lp .lp-category-header__chaka-banner img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ②メンズ・③レディース テキストヘッダー設定 */
    #catalog-lp .lp-category-header__title {
      font-size: 40px;
      font-weight: 700;
      color: #3d2b1f;
      letter-spacing: 0.12em;
      margin: 0 0 6px !important;
      line-height: 1.3;
    }

    #catalog-lp .lp-category-header__sub {
      font-size: 15px;
	  font-weight: 500;
      color: #736255;
      letter-spacing: 0.08em;
      margin: 0 !important;
    }

    #catalog-lp .lp-category-header__sub::after {
      content: '' !important;
      display: block !important;
      width: 36px !important;
      height: 2px !important;
      background-color: #8c7361 !important;
      margin: 14px auto 0 !important;
    }

    /* --------------------------------------------------------------------------
       6. 画像ブロック（グリッドエリア）
       -------------------------------------------------------------------------- */
    #catalog-lp .lp-grid-3col {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 30px !important;
    }

    #catalog-lp .lp-card {
      position: relative;
      cursor: pointer;
      overflow: hidden;
      background-color: #f2efe9;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    #catalog-lp .lp-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 24px rgba(74, 53, 37, 0.1);
    }

    #catalog-lp .lp-card__image-wrap {
      position: relative;
      width: 100%;
      padding-top: 133.33%;
      overflow: hidden;
    }

    #catalog-lp .lp-card__img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1.0s ease-in-out, transform 0.6s ease;
    }

    #catalog-lp .lp-card__img.is-active {
      opacity: 1;
    }

    #catalog-lp .lp-card:hover .lp-card__img.is-active {
      transform: scale(1.04);
    }

    #catalog-lp .lp-card__overlay {
      position: absolute;
      bottom: 12px;
      right: 12px;
      background: rgba(44, 34, 30, 0.75);
      color: #ffffff;
      font-size: 11px;
      font-family: 'Playfair Display', serif;
      padding: 4px 10px;
      letter-spacing: 0.1em;
      border-radius: 2px;
      pointer-events: none;
      opacity: 0.85;
      transition: opacity 0.3s ease, background 0.3s ease;
    }

    #catalog-lp .lp-card:hover .lp-card__overlay {
      opacity: 1;
      background: rgba(44, 34, 30, 0.92);
    }

    /* ----------------------
       7. モーダルウィンドウ
       ---------------------- */
    #catalog-lp .lp-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                  visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, visibility;
    }

    #catalog-lp .lp-modal.is-open {
      opacity: 1;
      visibility: visible;
    }

    #catalog-lp .lp-modal__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(30, 24, 20, 0.78);
    }

    #catalog-lp .lp-modal__content {
      position: relative;
      background-color: #ffffff;
      width: 100%;
      max-width: 880px;
      max-height: 90vh;
      display: flex;
      box-shadow: 0 12px 35px rgba(0,0,0,0.35);
      z-index: 1;
      overflow-y: auto;
      border-radius: 2px;
      transform: translateY(12px) scale(0.98);
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: transform;
      backface-visibility: hidden;
    }

    #catalog-lp .lp-modal.is-open .lp-modal__content {
      transform: translateY(0) scale(1);
    }

    #catalog-lp .lp-modal__close {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 50%;
      cursor: pointer;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      transition: background-color 0.25s ease, transform 0.25s ease;
    }

    #catalog-lp .lp-modal__close:hover {
      background: #ffffff;
      transform: scale(1.06) rotate(90deg);
    }

    #catalog-lp .lp-modal__close::before,
    #catalog-lp .lp-modal__close::after {
      content: '';
      position: absolute;
      width: 18px;
      height: 2px;
      background-color: #332c27;
    }

    #catalog-lp .lp-modal__close::before { transform: rotate(45deg); }
    #catalog-lp .lp-modal__close::after { transform: rotate(-45deg); }

    #catalog-lp .lp-modal__gallery {
      width: 48%;
      padding: 30px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background-color: #fcfbfa;
      position: relative;
      user-select: none;
    }

    #catalog-lp .lp-modal__image-wrap {
      position: relative;
      width: 100%;
      padding-top: 133.33%;
      overflow: hidden;
      margin-bottom: 15px;
      touch-action: pan-y;
    }

    #catalog-lp .lp-modal__img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }

    #catalog-lp .lp-modal__img.is-active {
      opacity: 1;
    }

    #catalog-lp .lp-modal__swipe-hint {
      display: none;
      font-size: 11px;
      color: #8c7361;
      letter-spacing: 0.08em;
      margin-top: 6px;
      align-items: center;
      gap: 4px;
    }

    #catalog-lp .lp-modal__swipe-hint::after {
      content: '→';
      font-size: 12px;
    }

    #catalog-lp .lp-modal__dots {
      display: flex;
      gap: 8px;
      justify-content: center;
    }

    #catalog-lp .lp-modal__dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: 1px solid #4a3525;
      background-color: transparent;
      cursor: pointer;
      padding: 0;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    #catalog-lp .lp-modal__dot.is-active {
      background-color: #4a3525;
      transform: scale(1.2);
    }

    #catalog-lp .lp-modal__details {
      width: 52%;
      padding: 50px 40px 40px 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    #catalog-lp .lp-modal__item-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    #catalog-lp .lp-modal__item {
      display: flex;
      align-items: center;
      margin-bottom: 22px;
      font-size: 13px;
    }

    #catalog-lp .lp-modal__item-name {
      font-weight: 500;
      letter-spacing: 0.05em;
      color: #332c27;
      text-transform: uppercase;
    }

    #catalog-lp .lp-modal__item-price {
      margin-left: 10px;
      color: #7a6e65;
      font-size: 12px;
      white-space: nowrap;
    }

    #catalog-lp .lp-modal__item-line {
      flex: 1;
      height: 1px;
      background-color: #e0d8cf;
      margin: 0 12px;
    }

    #catalog-lp .lp-modal__item-btn {
      display: inline-block;
      background-color: #4a3525;
      color: #ffffff;
      font-size: 10px;
      font-weight: 700;
      padding: 6px 14px;
      letter-spacing: 0.1em;
      text-decoration: none;
      transition: background-color 0.2s ease, transform 0.2s ease;
      white-space: nowrap;
      border-radius: 2px;
    }

    #catalog-lp .lp-modal__item-btn:hover {
      background-color: #664a35;
      transform: translateY(-1px);
    }

    /* --------------------------------------------------------------------------
       8. レスポンシブ (SP表示: 767px以下)
       -------------------------------------------------------------------------- */
    @media screen and (max-width: 767px) {
      #catalog-lp .u-sp-only {
        display: block;
      }

      #catalog-lp .lp-container {
        padding: 0 15px;
      }

      #catalog-lp .lp-mv {
        margin-bottom: 35px;
      }

      #catalog-lp .lp-lead {
        margin-bottom: 50px;
      }

      #catalog-lp .lp-lead__title {
        font-size: 26px;
        font-weight: 800;
      }

      #catalog-lp .lp-lead__subtitle {
        font-size: 15px;
      }

      #catalog-lp .lp-lead__text {
        font-size: 15px;
      }

      #catalog-lp .lp-accordion__summary {
        padding-right: 30px;

        padding-left: 30px;
        font-size: 15px;
        font-weight: 600;
      }
        
      #catalog-lp .lp-accordion__content {
        font-size: 14px;
      }

      #catalog-lp .lp-section {
        margin-bottom: 60px !important;
      }

      #catalog-lp .lp-section__header {
        margin-bottom: 30px !important;
      }

      #catalog-lp .lp-section__title {
        font-size: 20px;
      }

      #catalog-lp .lp-rank-table-wrap {
        padding: 24px 16px;
        margin-top: 30px !important;
      }

      #catalog-lp .lp-rank-table th,
      #catalog-lp .lp-rank-table td {
        padding: 12px 8px;
        font-size: 15px;
      }
        
      #catalog-lp .lp-rank-notes {
        font-size: 11px;
      }

      #catalog-lp .lp-rank-table__discount {
        font-size: 15px;
      }

      #catalog-lp .lp-rank-table__discount--highlight {
        font-size: 16px;
      }

      #catalog-lp .lp-btn-cta {
        min-width: 100%;
        padding: 14px 20px;
        font-size: 14px;
      }

      #catalog-lp .lp-category-nav {
        margin: 35px auto 50px;
        padding: 0 5px 40px;
      }

      #catalog-lp .lp-category-nav__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      #catalog-lp .lp-category-nav__btn {
        padding: 10px 6px;
        font-size: 16px;
      } 
        
      #catalog-lp .lp-category-nav__btn .sub {
        font-size: 14px;
      }

      #catalog-lp .lp-badge-highlight {
        margin-top: 20px;
        font-size: 15px;
        padding: 10px 20px;
      }

      #catalog-lp .lp-app-container {
        padding: 24px 16px;
        margin-top: 25px !important;
      }

      #catalog-lp .lp-app-benefits {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 25px;
      }

      #catalog-lp .lp-app-card {
        padding: 18px 14px;
      }

      #catalog-lp .lp-app-banner-pc {
        display: none;
      }

      #catalog-lp .lp-app-banner-sp {
        display: block;
        text-align: center;
        padding: 15px 0 10px;
      }

      #catalog-lp .lp-app-banner-sp__title {
        font-size: 18px;
        font-weight: 700;
        color: #2c221e;
        line-height: 1.45;
        margin-bottom: 18px;
        letter-spacing: 0.04em;
      }

      #catalog-lp .lp-app-banner-sp__btns {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        max-width: 320px;
        margin: 0 auto;
      }

      #catalog-lp .lp-app-banner-sp__btn {
        display: inline-block;
        flex: 1;
        max-width: 150px;
        transition: opacity 0.2s ease;
      }

      #catalog-lp .lp-app-banner-sp__btn:active {
        opacity: 0.7;
      }

      #catalog-lp .lp-app-banner-sp__btn img {
        width: 100%;
        height: auto;
        display: block;
      }

      #catalog-lp .lp-category-block {
        margin-bottom: 50px !important;
      }

      #catalog-lp .lp-category-header {
        margin-bottom: 25px !important;
      }

      #catalog-lp .lp-category-header__chaka-banner {
        max-width: 330px;
        margin-top: 20px !important;
      }

      #catalog-lp .lp-category-header__title {
        font-size: 30px;
      }

      /* RECOMMENDED STYLES（第1ブロック見出し）SP表示サイズ */
      #catalog-lp .lp-category-block:first-child .lp-category-header__num,
      #catalog-lp .lp-category-block:first-child .lp-category-header__title {
        font-size: 25px !important;
        letter-spacing: 0.1em !important;
      }

      #catalog-lp .lp-grid-3col {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px !important;
      }

      #catalog-lp .lp-modal {
        padding: 12px;
      }

      #catalog-lp .lp-modal__content {
        flex-direction: column;
        max-height: 85vh;
      }

      #catalog-lp .lp-modal__close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.25);
      }

      #catalog-lp .lp-modal__gallery {
        width: 100%;
        padding: 25px 20px 15px;
      }

      #catalog-lp .lp-modal__swipe-hint.has-multiple {
        display: flex;
      }

      #catalog-lp .lp-modal__details {
        width: 100%;
        padding: 15px 20px 25px;
      }

      #catalog-lp .lp-modal__item {
        font-size: 12px;
        margin-bottom: 16px;
      }

      #catalog-lp .lp-modal__item-btn {
        padding: 4px 10px;
      }
    }


/* おすすめスタイリング 見出し強化 */
#catalog-lp .recommended-header {
  text-align: center;
  margin: 40px auto 30px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e0e0e0;
}

#catalog-lp .main-title {
  display: block;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #3d2b1f;
  margin: 0 0 6px 0;
}

#catalog-lp .sub-title {
  display: block;
  font-size: 20px;
  color: #3d2b1f;
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: 600;
}


@media screen and (max-width: 767px) {
      #catalog-lp .main-title {
        font-size: 30px;
      }
	
	  #catalog-lp .sub-title {
		 font-size: 18px;
		 font-weight: 600;
	}
}


/*Wクーポンキャンペーン導線追加 */
#catalog-lp .lp-wcoupon-crosslink {
  margin-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}

#catalog-lp .lp-wcoupon-banner-wrap {
  width: 100%;
  margin: 0 auto;
}

#catalog-lp .lp-wcoupon-img {
  width: 100%;
  max-width: 960px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: opacity 0.25s ease;
  display: block;
  margin: 0 auto;
}

#catalog-lp .lp-wcoupon-banner-link:hover .lp-wcoupon-img {
  opacity: 0.9;
}

#catalog-lp .lp-wcoupon-btn-wrap {
  margin-top: 20px;
}

#catalog-lp .lp-wcoupon-btn {
  display: inline-block;
  width: 100%;
  max-width: 380px;
  background-color: #254234;
  color: #ffffff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 66, 52, 0.15);
  transition: all 0.25s ease;
  box-sizing: border-box;
}

#catalog-lp .lp-wcoupon-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  #catalog-lp .lp-wcoupon-crosslink {
    margin-top: 40px;
	padding-bottom: 40px;
  }
  #catalog-lp .lp-wcoupon-btn {
    max-width: 100%;
    font-size: 15px;
    padding: 13px 16px;
  }
}

/* --------------------------------------------------
   対象カテゴリ切り替えタブ
-------------------------------------------------- */
.lp-category-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 24px;
}

.lp-category-tab {
  padding: 8px 32px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #332c27;
  background-color: #ffffff;
  border: 1px solid #332c27;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* アクティブ状態のタブ */
.lp-category-tab.is-active {
  background-color: #333333;
  color: #ffffff;
}

/* グリッドの初期非表示・表示切り替え */
.lp-category-nav__grid {
  display: none !important; /* 初期は非表示 */
}

.lp-category-nav__grid.is-active {
  display: grid !important; /* アクティブ時に表示（元のCSSがflexの場合は flex に変更してください） */
}