/* ===== 商品カテゴリ一覧（カード） category_panel.liquid =====
   PCベース（デスクトップファースト）。SPは @media (max-width:719px) で上書き */
   .c-cat {
    background-color: #FCEBED;
    padding: 120px 0; /* PC */
  }
  
  .c-cat__inner {
    max-width: 896px;
    margin: 0 auto;
  }
  
  /* 見出し */
  .c-cat__head {
    text-align: center;
    margin-bottom: 64px; /* PC: jp → list の間隔 */
  }
  
  .c-cat__head__en {
    margin: 0 0 4px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 14px; /* PC */
    line-height: 14px;
    letter-spacing: 0.2em; /* PC 20% */
    text-align: center;
    color: #E390A4;
  }
  
  .c-cat__head__jp {
    margin: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: 24px; /* PC */
    line-height: 24px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #864D55;
  }
  
  /* リスト（PC: 2列） */
  .c-cat__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 32px; /* PC: 縦26px / 横32px */
  }
  
  .c-cat__item {
    margin: 0;
    border-radius: 10px;
    box-shadow: 0px 3.5px 4px 0px #864D5540;
  }
  
  /* カード */
  .c-cat__card {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 0 16px; /* PC */
    background-color: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
  }
  
  /* アイコン（カテゴリサムネ） */
  .c-cat__icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .c-cat__icon img {
    width: 80px; /* PC */
    height: 80px;
    object-fit: contain;
  }
  
  /* カテゴリ名 */
  .c-cat__name {
    flex: 1 1 auto;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: 16px; /* PC */
    line-height: 100%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #291312;
  }
  
  /* 右側のリンクアイコン */
  .c-cat__arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  
  .c-cat__arrow img {
    width: 26px;
    height: 26px;
    object-fit: contain;
  }
  
  /* ===== SP ===== */
  @media screen and (max-width: 719px) {
    .c-cat {
      padding: 73px 15px;
    }
  
    .c-cat__head {
      margin-bottom: 40px; /* SP: jp → list の間隔 */
    }
  
    .c-cat__head__en {
      font-size: 12px;
      letter-spacing: 0.1em;
    }
  
    .c-cat__head__jp {
      font-size: 20px;
    }
  
    /* SP: 縦1列 */
    .c-cat__list {
      grid-template-columns: 1fr;
      gap: 15px; /* SP: 縦15px */
    }
  
    .c-cat__card {
      padding: 12px 16px;
    }
  
    .c-cat__icon img {
      width: 50px;
      height: 50px;
    }
  
    .c-cat__name {
      font-size: 14px; /* SP */
    }
  }
  
  /* ===== ヘッダー（PCのみ）：メニュー・検索アイコンを右側へ寄せる。SPは現状維持 ===== */
  @media screen and (min-width: 720px) {
    /* ロゴを左に固定し、伸長させてアイコン群を右へ押し出す */
    .l-header__inner > .logo__block {
      order: 0;
      flex-grow: 1;
    }
    /* メニュー＋検索ブロック（左端→右側へ） */
    .l-header__inner > .l-header__inner__block:first-child {
      order: 1;
    }
    /* カート（旧アカウント位置）を最右に */
    .l-header__inner > .l-header__inner__block:last-child {
      order: 2;
    }
  
    /* グローバルメニューを右側から出現・右側表示に（SPは現状維持＝左のまま） */
    .c-gmenu {
      left: auto;
      right: -100%;
      transform: translateX(20px);
      transition: right 0s 0.4s, opacity 0.4s, transform 0.4s;
      display: flex;
      justify-content: flex-end;
    }
    .c-gmenu.is-active {
      left: auto;
      right: 0;
      transition: right 0s, opacity 0.4s, transform 0.4s;
    }
  
    /* 検索メニューも右側から出現・右側表示に（SPは現状維持＝左のまま） */
    .p-search_menu {
      left: auto;
      right: -100%;
      transform: translateX(20px);
      transition: right 0s 0.4s, opacity 0.4s, transform 0.4s;
      display: flex;
      justify-content: flex-end;
    }
    .p-search_menu.is-active {
      left: auto;
      right: 0;
      transition: right 0s, opacity 0.4s, transform 0.4s;
    }
    /* 下部の検索ボタンバーも右側に合わせる */
    .p-search_menu__container__searchbtn {
      left: auto;
      right: 0;
    }
  }

  /* ===== ヘッダー（SPのみ）：ロゴを画面の左右中央に配置 ===== */
  @media screen and (max-width: 719px) {
    /* <style>の .logo--left .logo__block(padding-left/flex-grow) に勝つ詳細度で、ロゴを自然幅に戻す */
    .l-header .l-header__inner > .logo__block {
      padding-left: 0;
      flex: 0 0 auto;
    }
    /* 1番目と3番目のブロックを同じ幅にする → space-between でロゴ(2番目)が中央に来る */
    .l-header .l-header__inner > .l-header__inner__block:first-child,
    .l-header .l-header__inner > .l-header__inner__block:last-child {
      flex: 1 1 0;
    }
    /* 左ブロックは左寄せ・右ブロックは右寄せ（アイコンを画面端へ） */
    .l-header .l-header__inner > .l-header__inner__block:first-child {
      justify-content: flex-start;
    }
    .l-header .l-header__inner > .l-header__inner__block:last-child {
      justify-content: flex-end;
    }
  }

  /* bundle.css の .l-header border-bottom-width:1px を打ち消す */
  .l-header {
    border-bottom-width: 0;
  }

  /* ===== ヘッダー本体バー（.l-header__inner）高さ：PC 108px / SP 60px・中身は上下中央 ===== */
  /* バー・バナーを除いた本体バーのみ。インライン min-height/max-height/height を !important で上書き */
  .l-header__inner {
    height: 108px !important;
    min-height: 108px !important;
    max-height: none !important;
    align-items: center;
  }
  @media screen and (max-width: 719px) {
    .l-header__inner {
      height: 60px !important;
      min-height: 60px !important;
    }
  }

  /* ===== グローバルメニューをヘッダー分下げて表示（メニュー表示中もヘッダーを隠さない） ===== */
  /* ヘッダー実高さ（お知らせバー・バナー込み）は header.liquid の JS が --header-height に反映。
     JS 適用前のフォールバックとして PC 108px / SP 60px を使用 */
  .c-gmenu {
    top: var(--header-height, 108px);
    height: calc(100% - var(--header-height, 108px));
  }
  @media screen and (max-width: 719px) {
    .c-gmenu {
      top: var(--header-height, 60px);
      height: calc(100% - var(--header-height, 60px));
    }
  }

  /* ハンバーガーメニュー内のカテゴリ一覧は縦1列（カテゴリパネルのグリッドを上書き） */
  .c-gmenu .c-cat__list {
    grid-template-columns: 1fr;
    gap: 7.2px; /* カテゴリ項目同士の余白 */
  }
  /* カテゴリ一覧の上に余白 */
  .c-gmenu_category {
    margin-top: 14.4px;
  }
  /* カテゴリカードを項目の高さいっぱいに */
  .c-gmenu_category .c-cat__card {
    height: 100%;
  }

  /* ハンバーガーメニュー内のカテゴリ項目だけ: シャドウなし・高さ72px */
  .c-gmenu .c-cat__item {
    box-shadow: none;
    height: 72px;
  }
  .c-gmenu .c-cat__name {
    font-family: var(--vieon-font-zen-kaku-new);
    font-weight: 500;
    font-size: 14.4px;
    line-height: 14.4px;
    letter-spacing: 0.05em;
    vertical-align: middle;
    color: #864d55;
  }
  .c-gmenu .c-cat__arrow img {
    width: 15.6px;
    height: 15.6px;
  }
  .c-gmenu .c-cat__icon img {
    width: 60px;
    height: 60px;
  }

  /* リスト項目の border（bundle.css の border-bottom）を打ち消す */
  .c-gmenu .c-gmenu__container__inner__list__item {
    border-bottom: 0;
  }
  /* 最初の項目以外に上マージン（1番目は margin-top なし） */
  .c-gmenu .c-gmenu__container__inner__list__item:not(:first-child) {
    margin-top: 28px;
  }
  /* リストの border-top（bundle.css）を打ち消す */
  .c-gmenu .c-gmenu__container__inner__list {
    border-top: 0;
  }

  /* メニュー項目の英語テキスト（1個目の span） */
  .c-gmenu_menu__en {
    font-family: var(--vieon-font-montserrat);
    font-weight: 500;
    font-size: 19.2px;
    line-height: 16.8px;
    letter-spacing: 0.1em;
    color: #e390a4;
    margin-right: 9.6px; /* 隣のサブテキストとの間隔 */
  }
  @media screen and (max-width: 719px) {
    .c-gmenu_menu__en {
      font-size: 16px;
      line-height: 14px;
      letter-spacing: 0.1em;
    }
  }

  /* メニュー項目（英語＋サブテキスト）の下に下線。テキストから9.4px下 */
  .c-gmenu__container__inner__list__item__child__item__inner:not(.c-gmenu_mypage) {
    padding-bottom: 9.4px;
    border-bottom: 2px solid #864d55;
  }
  /* 項目リンクを親要素いっぱいに広げる */
  .c-gmenu__container__inner__list__item__child__item__inner {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  /* メニュー項目間の余白（最後の項目は除く） */
  .c-gmenu__container__inner__list__item__child__item:not(:last-child) {
    margin-bottom: 33.6px;
  }
  /* 最初の項目以外に上マージン */
  .c-gmenu__container__inner__list__item__child__item:not(:first-child) {
    margin-top: 28px;
  }
  @media screen and (max-width: 719px) {
    .c-gmenu__container__inner__list__item__child__item:not(:last-child) {
      margin-bottom: 28px;
    }
  }

  /* SP: メニューパネルを横幅いっぱいに（bundle.css の width:85% を上書き） */
  @media screen and (max-width: 719px) {
    .c-gmenu__container {
      width: 100%;
    }
  }

  /* #account-icon の下に余白（PC 48px / SP 40px） */
  #account-icon {
    margin-bottom: 48px;
  }
  @media screen and (max-width: 719px) {
    #account-icon {
      margin-bottom: 40px;
    }
  }

  /* ===== マイページ（ボタン化） ===== */
  .c-gmenu .c-gmenu_mypage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: #e390a4;
    border-radius: 8px;
    color: #ffffff;
    text-align: center;
    font-family: var(--vieon-font-zen-kaku-new);
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  .c-gmenu .c-gmenu_mypage span {
    color: #ffffff;
  }

  /* ===== Products アコーディオン（details/summary） ===== */
  /* デフォルトの開閉マーカー（三角）を非表示 */
  .c-gmenu_accordion__summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding-right: 28px; /* 右端の＋/−マーカー分の余白 */
  }
  .c-gmenu_accordion__summary::-webkit-details-marker {
    display: none;
  }
  /* 右端の＋/−マーカー（16.8px・線1.2px・#864D55） */
  .c-gmenu_accordion__summary::before,
  .c-gmenu_accordion__summary::after {
    content: "";
    position: absolute;
    top: 50%;
    background: #864d55;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  /* 横線 */
  .c-gmenu_accordion__summary::before {
    right: 0;
    width: 16.8px;
    height: 1.2px;
    transform: translateY(-50%);
  }
  /* 縦線（横線の中央に配置: right = (16.8 - 1.2) / 2 = 7.8px） */
  .c-gmenu_accordion__summary::after {
    right: 7.8px;
    width: 1.2px;
    height: 16.8px;
    transform: translateY(-50%);
  }
  /* 開いている時は縦線を消してマイナスに */
  .c-gmenu_accordion[open] .c-gmenu_accordion__summary::after {
    opacity: 0;
  }

  /* ===== ハンバーガーメニュー内 お問い合わせ（パネル幅いっぱい） ===== */
  /* inner を縦フレックスに。padding は横24px・上80px（SPは横20px・上20px） */
  .c-gmenu__container__inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-sizing: border-box;
  }
  .c-gmenu .c-gmenu__container__inner {
    padding: 80px 24px 0;
  }
  /* メニューグループ（child）の上下paddingを0に */
  .c-gmenu .c-gmenu__container__inner__list__item__child {
    padding-top: 0;
    padding-bottom: 0;
  }
  .c-gmenu_contact {
    margin-top: 104px; /* メニューとの間隔 */
    /* inner の左右padding(PC:24px)を打ち消してパネル幅いっぱいに */
    margin-left: -24px;
    margin-right: -24px;
    margin-bottom: 0;
    padding: 73.2px 24px;
    background: #ffffff;
    text-align: center;
  }
  /* 見出し：Contact（英）＋ お問い合わせ（日） */
  .c-gmenu_contact__head {
    margin: 0 0 24px;
    font-family: var(--vieon-font-montserrat);
    font-weight: 500;
    font-size: 12px;
    line-height: 8.4px;
    letter-spacing: 0.1em;
    text-align: center;
    color: #e390a4;
  }
  .c-gmenu_contact__head span {
    display: block;
    margin-top: 4.8px;
    font-family: var(--vieon-font-zen-kaku-new);
    font-weight: 400;
    font-size: 19.2px;
    line-height: 19.2px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #864d55;
  }
  /* ボタン：白背景＋枠線＋角丸 */
  .c-gmenu_contact__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26.84px 0;
    background: #ffffff;
    border: 1px solid #864D55;
    border-radius: 10px;
    font-family: var(--vieon-font-zen-kaku-new);
    font-weight: 700;
    font-size: 16.8px;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #864D55;
  }
  .c-gmenu_contact__btn + .c-gmenu_contact__btn {
    margin-top: 16px;
  }
  @media screen and (max-width: 719px) {
    /* SP: inner padding は横20px・上20px */
    .c-gmenu .c-gmenu__container__inner {
      padding: 20px 20px 0;
    }
    .c-gmenu_contact {
      margin-top: 70px;
      margin-left: -20px;
      margin-right: -20px;
      padding: 61px 20px;
    }
    .c-gmenu_contact__head {
      font-size: 10px;
      line-height: 7px;
      margin: 0 0 20px;
    }
    .c-gmenu_contact__head span {
      font-size: 16px;
      line-height: 16px;
    }
  }
  
  /* =========================================================
     フッター（footer.liquid）デザイン対応
     ※背景色などは目安。ブランドカラーに合わせて調整可
     ========================================================= */
  /* フッター全体を縦積みに（既存は display:flex のため上書き）。ベースは明るい背景 */
  #ecf_footer_section.l-footer {
    display: block;
    padding: 0;
    border-top: 0;
    background: #fff8f7;
  }
  
  /* --- FOLLOW US / SNS（最上部・ピンク帯） --- */
  .c-footer_follow {
    background: #d98a9a;
    padding: 64px 0 57px;
    text-align: center;
  }
  .c-footer_follow__head {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-align: center;
    color: #ffffff;
    margin-bottom: 18px;
  }
  .c-footer_follow__sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 26px;
    margin-bottom: 0;
  }
  .c-footer_follow__sns .l-footer__info__store__sns__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
  }
  .c-footer_follow__sns .l-footer__info__store__sns__item:not(:last-child) {
    margin-right: 0; /* gap で間隔を制御 */
  }
  /* アイコンフォントは白で表示 */
  .c-footer_follow__sns .footer_link {
    color: #ffffff;
  }
  .c-footer_follow__sns .u-icon--twitter {
    --x-twitter-icon-color: #ffffff !important;
  }
  /* 画像アイコン（TikTok / YouTube など）: 親(item 80px)いっぱいに表示 */
  .c-footer_follow__icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* --- LINEお問い合わせ --- */
  .c-footer_contact {
    background: #ffffff;
    padding: 90px 0;
    text-align: center;
  }
  .c-footer_contact__head {
    font-family: var(--vieon-font-zen-kaku-new);
    font-weight: 400;
    font-size: 24px;
    line-height: 54px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #864D55;
    margin-bottom: 16px;
  }
  .c-footer_contact__btn {
    display: inline-block;
    min-width: 240px;
    padding: 20px 69.5px;
    border: 1px solid #864d55;
    border-radius: 4px;
    font-family: var(--vieon-font-zen-kaku-new);
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #864d55;
    background: transparent;
    transition: 0.3s;
  }
  .c-footer_contact__btn:hover {
    opacity: 0.6;
  }
  .c-footer_contact__note {
    font-family: var(--vieon-font-zen-kaku-new);
    font-size: 14px;
    color: #707070;
    margin-top: 16px;
  }

  /* フッターロゴ幅: PC 300px / SP 150px（bundle.css の max-width:180px を上書き） */
  .l-footer__info__store__logo {
    max-width: 300px;
    width: 300px;
  }
  .l-footer__info__store__logo img {
    width: 100%;
  }
  
  /* --- メイン（ロゴ＋メニュー） --- */
  /* 背景は全幅（画面横いっぱい）に表示 */
  .c-footer_main {
    /* ベース背景色 ＋ グラデーション画像（PC）を重ねる */
    background-color: #fff8f7;
    background-image: url("../../../../assets/img/bg_footergradation_pcv2.webp");
    background-repeat: no-repeat;
    background-position: center;
    /* 画像の四辺を要素（＝画面幅）の端に合わせて表示（トリミングなし） */
    background-size: 100% 100%;
  }
  /* コンテンツ（ロゴ＋メニュー＋キャッチ）は中央1120pxに収める。
     PC: 左列にロゴ→キャッチ、右列にメニュー（行をまたいで右側に配置） */
  .c-footer_main__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "info menu"
      "catch menu";
    column-gap: 0;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 48px 40px 56px;
  }
  .c-footer_main__inner .l-footer__info {
    grid-area: info;
    max-width: 415px;
  }
  .c-footer_main__inner .l-footer__menu {
    grid-area: menu;
    width: 100%;
    max-width: 715px;
    justify-self: end;
    justify-content: flex-end;
  }
  /* 単一メニューでもリストが全幅に広がるよう伸長。bundle.css の margin-left:60px / border-bottom を打ち消す */
  .c-footer_main__inner .l-footer__menu .c-footer_menu {
    flex: 1;
    margin-left: 0;
    border-bottom: none;
  }
  .c-footer_main__inner .c-footer_catch {
    grid-area: catch;
  }
  
  l-footer__menu .c-footer_menu{
    margin-left:0;
  }
  /* PC: フッターメニューのリストを横並び。子要素間を画面幅に応じて均等配置 */
  .c-footer_menu__list {
    display: flex;
    width: 100%;
    max-width: 715px;
    justify-content: space-between;
  }
  /* PC: メニューリンクのテキスト */
  .l-footer__menu .c-footer_menu__list__item__inner {
    font-family: var(--vieon-font-zen-kaku-new) !important;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    letter-spacing: 0.05em;
    color: #291312;
  }
  
  /* キャッチコピー（ロゴ下） */
  .c-footer_catch {
    margin-top: 40px;
  }
  .c-footer_catch__title {
    font-family: var(--vieon-font-zen-kaku-new);
    font-weight: 400;
    font-size: 24px;
    line-height: 48px;
    letter-spacing: 0.15em;
    text-align: center;
    color: #864d55;
    margin-bottom: 12px;
  }
  .c-footer_catch__text {
    font-family: var(--vieon-font-zen-kaku-new);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: #864d55;
  }
  
  /* --- コピーライト（最下部・ピンク帯） --- */
  .c-footer_copyright {
    background: #cd8090;
    text-align: center;
    padding: 12px 20px;
  }
  .c-footer_copyright .footer_body {
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 0.05em;
  }
  
  /* ---- フッター SP ---- */
  @media screen and (max-width: 719px) {
    .c-footer_follow {
      padding: 32px 20px;
    }
    .c-footer_follow__head {
      font-family: "Montserrat", sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 100%;
      letter-spacing: 0.1em;
      text-align: center;
      color: #ffffff;
      margin-bottom: 17.5px;
    }
    .c-footer_follow__sns .l-footer__info__store__sns__item {
      width: 40px;
      height: 40px;
    }
    .c-footer_follow__sns {
      gap: 22px;
    }
    .c-footer_contact {
      padding: 61px 20px;
    }
    .l-footer__info__store__logo {
      max-width: 150px;
      width: 150px;
    }
    .c-footer_contact__head {
      font-weight: 400;
      font-size: 18px;
      line-height: 32px;
      letter-spacing: 0.05em;
      text-align: center;
      color: #864D55;
      margin-bottom: 6px;
    }
    .c-footer_contact__btn {
      width: 100%;
      padding: 12px 0;
      font-weight: 700;
      font-size: 16px;
      line-height: 32px;
      letter-spacing: 0.05em;
      text-align: center;
      color: #864D55;
    }
    .c-footer_contact__note {
      font-size: 12px;
      line-height: 32px;
      letter-spacing: 0.05em;
    }
    .c-footer_main {
      /* グラデーション画像をSP用に差し替え */
      background-image: url("../../../../assets/img/bg_footergradation_sp.png");
    }
    .c-footer_main__inner {
      /* SP: ロゴ左・メニュー右は維持し、キャッチは下段に全幅で配置 */
      grid-template-areas:
        "info menu"
        "catch catch";
      column-gap: 24px;
      padding: 32px 20px 40px;
    }
    /* SP: キャッチコピーは両列の下に横幅100%・左寄せ */
    .c-footer_main__inner .c-footer_catch {
      width: 100%;
      text-align: left;
    }
    /* SP: メニューの子要素は右寄せ。ただしテキスト自体は左寄せ */
    .l-footer__menu {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }
    /* SP: フッターメニューのリストは縦並びに戻す */
    .c-footer_menu__list {
      display: block;
      text-align: left;
    }
    /* SP: メニューリンクのテキスト */
    .l-footer__menu .c-footer_menu__list__item__inner {
      font-size: 12px;
      line-height: 26px;
    }
    .c-footer_catch {
      margin-top: 28px;
    }
    .c-footer_catch__title {
      font-family: var(--vieon-font-zen-kaku-new);
      font-weight: 400;
      font-size: 18px;
      line-height: 36px;
      letter-spacing: 0.15em;
      color: #864d55;
      text-align: justify;
    }
    .c-footer_catch__text {
      font-family: var(--vieon-font-zen-kaku-new);
      font-weight: 400;
      font-size: 12px;
      line-height: 24px;
      letter-spacing: 0.05em;
      color: #864d55;
    }
  }

/* =========================================================
   カルーセル（.p-carousel_slider）:
   ・アクティブ/非アクティブで大きさを変えない（スケール演出を無効化）
   ・画像は元の比率のまま（そのままの高さ）で表示。固定比率の箱を解除し img で表示
   ・前後スライドの見切れ割合（スライド幅）は変更しない
   ========================================================= */
.p-carousel_slider__track__list__item__inner,
.p-carousel_slider__track__list__item.is-active:not(.splide__slide--clone) .p-carousel_slider__track__list__item__inner {
  transform: none;
  transition: none;
}
/* 固定比率の箱（padding-top:75%・背景画像）を解除 */
.p-carousel_slider__track__list__item__inner {
  padding-top: 0;
  background: none;
}
/* 画像そのままの高さ（スライド幅に対する元画像の比率）で表示。トリミングなし */
.p-carousel_slider__track__list__item__inner__img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
   カルーセル ナビ（矢印・ページネーション）: bundle.css を上書き
   ========================================================= */
/* 矢印ボタンを 24x24 に。中央寄せ */
.p-carousel_slider__nav .p-carousel_slider__nav__arrow.p-carousel_slider__nav__arrow--prev,
.p-carousel_slider__nav .p-carousel_slider__nav__arrow.p-carousel_slider__nav__arrow--next {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}
/* 矢印とページネーションの間隔を 24px に */
.p-carousel_slider__nav .p-carousel_slider__nav__arrow.p-carousel_slider__nav__arrow--prev {
  margin-right: 24px;
}
.p-carousel_slider__nav .p-carousel_slider__nav__arrow.p-carousel_slider__nav__arrow--next {
  margin-left: 24px;
}
/* 矢印アイコン: フォントグリフをやめCSSのシェブロン（約4×8px・線2px・#E390A4）で描画 */
.p-carousel_slider__nav__arrow .u-icon--arrow {
  position: relative;
  display: inline-block;
  width: 4px;
  height: 8px;
  font-size: 0;
  color: #E390A4;
}
.p-carousel_slider__nav__arrow .u-icon--arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.7px;
  height: 5.7px;
  box-sizing: border-box;
  border-top: 1.5px solid #E390A4;
  border-right: 1.5px solid #E390A4;
  transform: translate(-50%, -50%) rotate(45deg);
}
/* ページネーションのドット同士の間隔を 24px に */
.p-carousel_slider__nav .p-carousel_slider__nav__pagination__dot:not(:last-child) {
  margin-right: 24px;
}
/* ドット: 白丸 ＋ #E390A4 の枠（0.5px） */
.p-carousel_slider__nav .p-carousel_slider__nav__pagination__dot button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0.5px solid #E390A4;
  background: #fff8f7;
  opacity: 1;
}
/* カレントドット: #E390A4 で塗りつぶし */
.p-carousel_slider__nav .p-carousel_slider__nav__pagination__dot.is-current button {
  background: #E390A4;
  opacity: 1;
}

/* PC: スライド同士の間隔を 40px 空ける（枠幅は変えず中身を左右20pxインセット） */
@media screen and (min-width: 720px) {
  .p-carousel_slider__track__list:not(.p-carousel_slider__track__list--single) .p-carousel_slider__track__list__item__inner {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* =========================================================
   ヘッダーアイコン画像: PC 60×60 / SP 40×40・上下中央
   ========================================================= */
.l-header__inner__block__link {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
/* button 内に span(link) が入ることで生じるベースライン余白を除去 */
.l-header__inner__block__item--search button,
.l-header__inner__block__item--menu button {
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  line-height: 0;
}
.l-header__inner__block__link img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
@media screen and (max-width: 719px) {
  .l-header__inner__block__link img {
    width: 40px;
    height: 40px;
  }
}
/* bundle.css の margin-right を打ち消す */
.l-header__inner__block__item--menu:not(:last-child) {
  margin-right: 0;
}
  /* SP: ロゴ最大幅 120px（インライン max-width を上書きするため !important） */
  @media screen and (max-width: 719px) {
    .l-header__inner__block__logo {
      max-width: 120px !important;
    }
  }

  /* ===== メニューアイコン: CSSハンバーガー ⇔ ×印（.c-gmenu.is-active 連動・JSが is-menu-open を付与） ===== */
  /* リンク幅は現状維持（画像と同じ PC 60px / SP 40px） */
  .l-header__inner__block__item--menu .l-header__inner__block__link {
    width: 60px;
    height: 60px;
  }
  /* 3本線（PC: 28.5×16.5px / 線1px / #291312） */
  .c-hamburger {
    position: relative;
    width: 28.5px;
    height: 16.5px;
  }
  .c-hamburger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #291312;
    transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  }
  .c-hamburger__line:nth-child(1) { top: 0; }
  .c-hamburger__line:nth-child(2) { top: 50%; transform: translateY(-50%); }
  .c-hamburger__line:nth-child(3) { top: 100%; transform: translateY(-100%); }
  /* メニューが開いている時：×印にモーフィング */
  .l-header__inner__block__item--menu.is-menu-open .c-hamburger__line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .l-header__inner__block__item--menu.is-menu-open .c-hamburger__line:nth-child(2) {
    opacity: 0;
  }
  .l-header__inner__block__item--menu.is-menu-open .c-hamburger__line:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  @media screen and (max-width: 719px) {
    .l-header__inner__block__item--menu .l-header__inner__block__link {
      width: 40px;
      height: 40px;
    }
    /* SP: 19×11px */
    .c-hamburger {
      width: 19px;
      height: 11px;
    }
  }

  /* ===== 動画コンテンツ（PCベース） =====
     font.css / theme_customize.css が font-family・font-size・color を !important で
     当てているため、その3つのみ !important で上書き（セレクタは詳細度を上げて対応） */
  /* 背景色: theme_customize.css の .u-color__bg--base { background:#fff8f7 !important }(0,1,0) に対し、
     同じ要素に付く .p-movie と組み合わせて詳細度を上げ(0,2,0)、!important 同士でも確実に勝たせる */
  .p-movie.u-color__bg--base {
    background-color: #F9ECEA !important;
  }

  /* padding（PC）: bundle.css の .p-movie.--middle/.--small(0,2,0) より詳細度を上げて上書き
     （.p-movie には常に u-color__bg--base が付くので組み合わせて 0,3,0 にする） */
  .p-movie.--middle.u-color__bg--base,
  .p-movie.--small.u-color__bg--base {
    padding: 100px 0;
  }

  .p-movie__info__title.u-text--head {
    font-family: "Zen Kaku Gothic New", sans-serif !important;
    font-weight: 400;
    font-size: 24px !important;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #864D55 !important;
  }

  .p-movie__info__subTitle.u-text--subhead {
    margin-bottom: 4px; /* subTitle の下の余白 */
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500;
    font-size: 14px !important;
    line-height: 14px;
    letter-spacing: 0.2em;
    text-align: center;
    color: #E390A4 !important;
  }

  /* info と inner(--control) の間隔（PC）
     bundle.css の .p-movie.--middle/.--small .p-movie__info(0,3,0) より詳細度を上げて上書き(0,4,0) */
  .p-movie.--middle.u-color__bg--base .p-movie__info,
  .p-movie.--small.u-color__bg--base .p-movie__info {
    margin-bottom: 64px;
  }

  /* .p-movie__inner.--control の最大幅: PC 848px・中央寄せ */
  .p-movie__inner.--control {
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
  }

  @media screen and (max-width: 719px) {
    /* padding（SP）: bundle.css(0,2,0) より詳細度を上げて上書き(0,3,0) */
    .p-movie.--middle.u-color__bg--base,
    .p-movie.--small.u-color__bg--base {
      padding: 50px 0;
    }

    .p-movie__info__title.u-text--head {
      font-size: 20px !important;
      line-height: 24px;
    }

    .p-movie__info__subTitle.u-text--subhead {
      font-size: 24px !important;
      line-height: 28px;
      letter-spacing: 0.1em;
    }

    /* info 間隔（SP）: bundle.css(0,3,0) より詳細度を上げて上書き(0,4,0) */
    .p-movie.--middle.u-color__bg--base .p-movie__info,
    .p-movie.--small.u-color__bg--base .p-movie__info {
      margin-bottom: 40px;
    }

    /* SP: 最大幅指定なし・幅100%・左右padding20px
       bundle.css の .p-movie.--middle/.--small .p-movie__inner(vw幅, 0,3,0) より詳細度を上げて上書き(0,5,0) */
    .p-movie.--middle.u-color__bg--base .p-movie__inner.--control,
    .p-movie.--small.u-color__bg--base .p-movie__inner.--control {
      max-width: none;
      width: 100%;
      padding-left: 20px;
      padding-right: 20px;
    }
  }

  /* SP：規約同意ラベルが画面からはみ出すのを防ぐ。
     原因はラベルの display:-webkit-box(product.css の .term_label)が単一行で折り返さないこと。
     .check_agree.term_label(詳細度0,2,0)で確実に flex 折り返しに上書きし、
     テキスト span は flex:1 + min-width:0 で残り幅に収めて折り返す。 */
  @media screen and (max-width: 719px) {
    .check_agree.term_label,
    .check_agree.c-form_table__checkbox {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }
    .check_agree .c-form_table__checkbox__text {
      flex: 1 1 0;
      min-width: 0;
      overflow-wrap: anywhere;
    }
  }

  /* カート：クーポンバナーの上余白 */
  .p-cart_content__coupon_banner {
    margin: 18px auto;
  }

  