@charset "UTF-8";

/*
SP版 - 767px 以下
---------- ---------- ---------- */
@media (max-width: 767px) {
    .container {
        padding: 0 1.5rem;
    }


/* ---------- ---------- ----------
変数定義
---------- ---------- ---------- */
    :root {
        /* 本文から次の画像までの共通余白 */
        --gap-content-spacer: 1rem; 

        /* 本文とIMGの余白 */
        --size-sub-lead-spacer: 1.2rem;

        /* サブメニュー・縦線の上下余白 */
        --gap-v-line-top: 1rem;
        --gap-v-line-bottom: 0;

        /* 日本語の見出し */
        --size-sub-title: 1.35rem;
    }


/* ---------- ---------- ----------
SP版 - 設定 / 出し分け
---------- ---------- ---------- */
    .sp-only {
        display: block !important;
    }
    .not-sp {
        display: none !important;
    }
    .pc-only {
        display: none !important;
    }

    /* 767px以下のデバイスに適用 */
    .flex-layout,
    .flex-layout.rev {
        flex-direction: column;
        gap: 2rem;
    }
    .text-block,
    .image-block {
        width: 100%;
        flex: none;
    }
    .section {
        padding: 4.5rem 0; /* PCより少し余白を詰める */
    }


/* ---------- ---------- ----------
共通レイアウト
---------- ---------- ---------- */
    /* 見出しを中央配置 */
    .section-title-en,
    .section-title-jp {
        text-align: center;
    }

    /* 本文を中央配置 */
    #location,
    .brand-story,
    .products,
    .journal,
    .location,
    .concept,
    .roots {
    text-align: center;
    }

    /* 本文の設定 */
    .text {
        line-height: 1.8;
        text-align: center;
    }

    /* サブページ - 日本語の見出し */
    .sub-lead-title {
        font-size: var(--size-sub-title);
    }

    /* VIEW MORE ボタンなど */
    .brand-story .text-block,
    .products .text-block,
    .concept .text-block,
    .roots .text-block,
    #location .center-text-box,
    .sub-page .center-text-box {
    align-items: center;
    text-align: center;
    }
    .btn-underline-more {
    justify-content: center;
    }

    /* LOCATION - ボタンを中央に */
    .info-links {
    justify-content: center;
    margin-top: 2rem;
    }

    /* CONCEPTセクションのIMGを小さくする */
    .concept .image-block img {
        width: 70%;
        margin: 0 auto;
    }

    /* 縦線 - 余白 */
    .vertical-line {
        margin: var(--gap-v-line-top) auto var(--gap-v-line-bottom); /* 上下の余白を変数にする */
    }

    /* IMG - 余白 */
    .wide-image-box {
        margin: var(--gap-content-spacer) 0;
    }


/* ---------- ---------- ----------
見出し - SP版：英字は横書き
---------- ---------- ---------- */
    /* 見出し全体 */
    .section-title-en {
        writing-mode: horizontal-tb;
        font-size: 1.95rem;
        text-orientation: mixed;
        letter-spacing: 0.05em;
        margin-bottom: 0.35rem;
    }
    .section-title-jp {
        writing-mode: horizontal-tb;
        font-size: 0.95rem;
        /* 重要!! 全セクション共通の [ 中身までの距離 ] として固定 */
        margin-bottom: 2rem; 
    }  

    /* ヘッダーだけは中央寄せにしない */
    .page-title-box {
        margin-bottom: 0.5rem !important;
        text-align: left !important;
    }

    /* LOCATIONセクション内のブロックも中央に寄せる */
    .location-top,
    .location-mid {
        width: 100%;
        text-align: center;
    }

    /* 店舗名・住所の塊全体に上の余白を作る */
    .location-mid {
        margin-top: 1rem; /* ここで [ 店舗情報 ] との距離を調節 */
    }

    /* 店名 [ KASANE ] の下に余白を作る - 住所との間 */
    .location-name-bold {
        margin-bottom: 0.5rem; /* ここで [ KASANE ] と [ 住所 ] の距離を調節 */
    }


/* ---------- ---------- ----------
LOADING
---------- ---------- ---------- */
    /* 指示反映：スマホ版のみ、演出開始まで背景画像を隠しておく */
    .fixed-bg-layer {
        opacity: 0;
        transition: opacity 1.5s ease;
    }
    
    /* JSで active がついたら表示 */
    .fixed-bg-layer.active {
        opacity: 1 !important;
    }

/* ---------- ---------- ----------
HEADER / HAMBURGER
---------- ---------- ---------- */
    .global-header {
        display: flex;
        justify-content: flex-end;
        padding: 1.5rem !important; /* 位置がズレないよう固定 */
        background: transparent !important;
        box-shadow: none !important;
    }

    .hamburger {
        display: block !important;
        position: fixed; /* スクロールで位置が変わらないようfixed */
        top: 1.5rem;
        right: 1.5rem;
        width: 28px;
        height: 20px;
        z-index: 2500;
    }

    .hamburger span {
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        background-color: currentColor;
        transition: transform 0.4s, opacity 0.4s, top 0.4s;
    }

    /* 三本線の位置を固定 */
    .hamburger span:nth-child(1) {
        top: 0;
    }
    .hamburger span:nth-child(2) {
        top: 9px;
    }
    .hamburger span:nth-child(3) {
        top: 18px;
    }

    /* スクロール位置による線色の変化 */
    .header-white-text .hamburger span {
        background-color: #fff;
    }
    .header-scrolled .hamburger span {
        background-color: #333;
    }

    /* 展開時は常に見やすく黒に固定 & 綺麗な[×]に */
    .hamburger.active span {
        background-color: #333 !important;
    }
    .hamburger.active span:nth-child(1) {
        top: 9px !important;
        transform: rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        top: 9px !important;
        transform: rotate(-45deg);
    }

    /* グロナビ */
    .global-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 50%; /* ハンバーガーメニューの幅 */
        height: 100vh; /* ハンバーガーメニューの高さ */
        background: #fff;
        z-index: 2000;
        transform: translateX(100%); /* 最初は右に隠す */
        opacity: 0;
        visibility: hidden;
        transition: transform 0.5s ease, opacity 0.5s ease;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }

    .global-nav .nav-list {
        display: flex !important; /* 強制表示 */
        flex-direction: column !important; /* 横並び解除 */
        gap: 2rem !important;
        padding: 0;
    }

    .global-nav .nav-list li a {
        color: #000 !important; /* 文字色を黒に固定 */
        font-size: 1.25rem;
        white-space: nowrap;
    }

    .global-nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    /* ハンバーガー内フッター */
    .sp-menu-footer {
        width: 100%;
        margin-top: 3.5rem; /* メニュー末尾からの距離 */
        text-align: center;
    }

    /* メニュー内の区切り線 */
    .sp-menu-line {
        width: 1px;
        height: 50px;
        background-color: #999;
        margin: 0 auto 3.5rem; /* 中央寄せ ＋ 下の文字との余白 */
    }

    .sp-copyright {
        font-size: 0.65rem;
        letter-spacing: 0.15em; /* カーニング */
        line-height: 2;
        color: #333;
    }

    /* SPのヘッダーバーからロゴを消去 */
    .global-header .header-logo {
        display: none !important;
    }

    /* メニュー内のロゴ：ONLINE SHOPからの距離を調整 */
    .menu-logo {
        width: 130px; /* ロゴのサイズを調整 */
        margin: 4rem auto 0; /* ★上に4rem空けてメニューリストと切り離す */
        text-align: center;
    }

    .menu-logo img {
        width: 100%;
        height: auto;
        opacity: 0.8; /* 少し控えめにする演出 */
    }

    /* ハンバーガーボタン位置調整 */
    .global-header {
        display: flex;
        justify-content: flex-end;
        padding: 1.5rem !important;
    }

/* ---------- ---------- ----------
HERO
---------- ---------- ---------- */
    .hero-text-area {
        --hero-height: 120vh; /* 白背景を早く出すため短縮 */
        height: var(--hero-height);
    }
    .hero-inner {
        position: relative;
        height: 100vh;
    }

    .hero-copy {
        writing-mode: vertical-rl;
        text-orientation: upright;
        text-align: start;
        font-size: 1.1rem;
        line-height: 2.2;
        letter-spacing: 0.4em;
        text-indent: 0;
        opacity: 0;
    }

    .hero-logo {
        writing-mode: vertical-rl;
        text-orientation: upright;
        font-size: 3rem;
        letter-spacing: 0.3em;
        opacity: 0;
    }

    .hero-full-screen:has(.hero-copy),
    .hero-full-screen:has(.hero-logo) {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: auto;
        height: auto;
    }


/* ---------- ---------- ----------
INTRODUCTION COPY
---------- ---------- ---------- */
    .intro-copy-area {
        padding-top: 12rem;
        padding-bottom: 12rem;
    }

    .intro-inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    /* テキスト：一番上に配置 */
    .intro-text.sp-only {
        order: -1;
        width: 100%;
        display: block !important;
        margin-bottom: 4rem;
        line-height: 2.5;
    }

    /* 左右画像：共通設定 */
    .intro-side-img {
        position: relative !important;
        
        /* 基本は28vwだが、画面が狭い時は自動で縮小することを許可する */
        flex: 0 1 28vw; 
        max-width: 120px !important;
        margin: 0 7.5vw !important; 
        opacity: 0;
        transform: translateY(40px) rotate(0deg); 
        transition: opacity 2s ease-out, transform 2s ease-out;
        order: 1;
    }

    /* 左側：ふわっと動きながら回転 */
    .intro-side-img.left.active {
        opacity: 1 !important;
        transform: translateY(0) rotate(-5deg) !important;
    }

    /* 右側：ふわっと動きながら回転 */
    .intro-side-img.right.active {
        opacity: 1 !important;
        transform: translateY(0) rotate(5deg) !important;
    }


/* ---------- ---------- ----------
BRAND STORY - 動画固定 ＋ 中央配置
---------- ---------- ---------- */
    /* セクション全体の余白調整 */
    .brand-story-area {
        background-color: #fff;
        padding: 0 !important; /* 動画を上端に密着させるため */
    }

    /* スティッキーの親コンテナ */
    .sticky-container {
        display: block !important;
        position: relative;
    }

    /* ----- 左側：動画エリア / 最後まで上部に固定 ----- */
    .story-video-side {
        width: 100% !important;
        aspect-ratio: 16 / 9; /* 動画の比率を維持 */
        height: auto !important;
        
        /* 見出しの終わりまで画面上部に固定 */
        position: sticky !important;
        top: 0;
        z-index: 1; 
        overflow: hidden;
        background: #000;
    }
    .story-video-side video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ----- 右側：コンテンツエリア ----- */
    .story-scroll-content {
        width: 100% !important;
        position: relative;
        z-index: 10; /* 動画より前面に配置 */
        background: transparent; 
        
        /* 文頭の余韻を調整 */
        padding-top: 20vh; 
        padding-bottom: 0rem;
    }
    
    /* コンテンツを包む白い背景部分 */
    .story-inner {
        width: 100%;
        /* ここで初めて白背景を敷き、スクロール後半で動画を覆うようにする */
        background: #fff;
        padding: 4rem 1.5rem !important;
        margin: 0 auto;
    }
    
    /* 見出し：中央配置の徹底 */
    .brand-story-area .section-header-center {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    .brand-story-area .section-title-en {
        font-size: 1.95rem !important;
        text-align: center !important;
        display: block;
    }
    
    /* 縦線：上下の余白を縮小 */
    .brand-story-area .vertical-line {
        margin: 1.5rem auto 3rem !important;
        height: 6rem !important;
    }
    
    /* 本文テキスト：PCの設定をリセットして中央へ */
    .brand-story-area .story-text {
        font-size: var(--size-base) !important;
        line-height: 1.8 !important;
        letter-spacing: 0.1em !important;
        text-align: center !important; /* 強制中央 */
        text-indent: 0 !important; /* PCの字下げを削除 */
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* 改行を維持 */
    .brand-story-area .line {
        display: block !important;
        white-space: normal !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    /* ブロック同士の余白 */
    .story-block {
        width: 100% !important;
        margin-bottom: 5rem !important; 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* 本文01：PCの横並び設定をリセット */
    .row-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 5rem !important;
        margin-top: 0;
    }
    
    .row-layout .text-side,
    .row-layout .img-side {
        width: 100% !important;
        flex: none !important;
        text-align: center !important;
    }
    
    /* 本文03/04：PCの重ね設定（absolute）を解除 */
    .overlay-layout {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 3.5rem !important;
    }
    
    .overlay-layout .img-content {
        width: 100% !important;
        margin-bottom: 2rem !important;
    }
    
    /* テキストボックス：装飾を解除して本文を中央配置 */
    .text-card {
        position: static !important; /* 浮かせない */
        width: 100% !important;
        min-width: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        display: block !important;
    }
    .text-card .story-text {
        width: 100% !important;
        text-align: center !important;
    }
    
    /* 画像サイズを画面幅に最適化 */
    .story-img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        margin: 0 auto;
    }
    
    /* 文末の余韻調整：VIEW MORE - 後の余白 */
    /* .story-block:last-child {
        margin-bottom: 0 !important;
    } */
    
    /* VIEW MOREボタン：中央配置 */
    .btn-wrap {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
        width: 100%;
    }


/* ---------- ---------- ----------
PRODUCTS
---------- ---------- ---------- */
    /* ドット自体の位置を上に上げる */
    .products-slider .slick-dots {
        bottom: -1.25rem; 
    }

    /* ドットから本文までの距離 */
    .products-slider {
        margin-bottom: 2rem;
    }

    /* アイテム概要 */
    .standard-box {
        padding: 3rem 1.5rem;
    }
    .standard-item {
        padding: 1.25rem 0;
    }

    /* ONLINE SHOPボタンがあるエリアの余白を詰める */
    #lineup.section {
        padding-bottom: 2rem; /* セクション下の余白を小さくする */
    }


/* ---------- ---------- ----------
JOURNAL
---------- ---------- ---------- */
    /* 行間調整 */
    .journal-txt-box {
        margin-top: 1rem; /* 画像とテキストの間隔を詰める */
    }
    .journal-card .date {
        margin-bottom: 0.5rem; /* 日付下の余白をゼロに */
    }
    .journal-item-title {
        margin-top: 0.5rem; /* タイトル上の余白を縮小 */
        margin-bottom: 0.5rem; /* タイトル下の余白を縮小 */
        line-height: 1.5; /* タイトル自体の行間を少し詰める */
    }
    .journal-card .excerpt {
        line-height: 1.5; /* 本文の行間を詰める */
        margin-bottom: 0.75rem;
    }

    /* 続きを読むボタンの設定 */
    .journal-readmore {
    margin-top: 0; 
    vertical-align: top;
}

/* ---------- ---------- ----------
FOOTER
---------- ---------- ---------- */
.footer-logo-wrap img {
    width: 12rem;
    margin: 0 auto;
}


/* 
========== ========== ========== ========== ==========
以下 専用ページ
========== ========== ========== ========== ==========
*/


/* ========== ========== ==========
SUB PAGE HEADER
========== ========== ========== */
    .page-header-area {
        padding-top: 5rem; /* 上からの距離 */
        padding-bottom: 0rem;
    }

    .page-title-box {
        text-align: center;
    }

    .header-line {
        margin-top: 1rem;
        margin-bottom: 1rem; /* 線とサブメニューの間を詰める */
    }

    /* ヘッダー見出しのみ左寄せにする */
    .page-title-box .section-title-en {
        text-align: left;
    }
    .page-title-box .section-title-jp {
        text-align: left;
        margin-bottom: 0;
    }

    /* サブメニューを右寄せ */
    .sub-nav {
        margin-top: 0;
    }
    .sub-nav ul {
        flex-wrap: wrap;
        gap: 0.75rem 2rem; /* 縦の余白 / 左右の余白 */
        justify-content: flex-end !important; /* 指示反映：右寄せを維持 */
    }

    /* サブメニューから最初のコンテンツ（見出し）までの距離 */
    .sub-page-header {
        margin-bottom: 0;
    }


/* ========== ========== ==========
BRAND STORY
========== ========== ========== */
    /* ROOTS - 段違い画像の横幅と隙間を調整 */
    .roots-images {
        gap: 1.5rem; /* IMGの間隔 */
        justify-content: center;
        margin-top: 0;
    }

    .roots-item.left, 
    .roots-item.right {
        flex: 0 0 45%; /* IMGの間隔 - 調整 */
    }

    .roots-item.left {
        margin-top: 3.5rem !important; /* 段違いの差をつける */
    }


/* ========== ========== ==========
PRODUCTS
========== ========== ========== */
    /* 文章のスタイル */
    .products-intro-text {
        font-size: 0.85rem;
        line-height: 2.15;
        text-align: center;
    }

    /* 改行させず、幅を確保 */
    .moment-label {
        white-space: nowrap; /* ★改行を禁止 */
        width: auto;
        text-align: center;
        min-width: 10rem; /* 横幅を確保して線からはみ出さないように */
        padding: 0 1rem;
        top: -0.5rem; /* 位置微調整 */
    }

    /* 季節：1行ずつにする */
    .moment-items {
        gap: 1.5rem; /* 各行の隙間を広げる */
    }
    .moment-row {
        flex-direction: column;
        gap: 1.5rem; /* 1段目と2段目の間隔 - moment-items と統一*/
    }
    .moment-item {
        flex-direction: row;
        width: 100%;
        font-size: 0.75rem;
        white-space: nowrap; /* 1行で表示 */
    }
    .moment-item .en {
        font-size: 0.85rem;
        margin-right: 0;
    }
    .moment-dash {
        display: inline-block;
        margin: 0 0.8rem;
    }

    /* RECOMMEND - 1列 */
    .recommend .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem 0; 
    }
    /* カード全体を中央寄せ - 幅100%に拡大 */
    .recommend .products-card {
        width: 100% !important; /* ★画面幅いっぱいまで広げる */
        margin: 0 auto; /* 中央に配置 */
        margin-bottom: 3.5rem;
    }

    /* RECOMMEND - 最後のカードだけは、下の余白をオフ */
    .recommend .products-card:last-child {
        margin-bottom: 0;
    }

    /* LINE UP - 3列 */
    .lineup .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 0.5rem; /* 隙間を詰める */
    }

    /* 画像の下の文字情報 */
    .sp-products-item {
        margin-top: 0.75rem;
        text-align: center;
    }

    .sp-products-season {
        font-size: 0.6rem;
        color: var(--color-gray);
        margin-bottom: 0.2rem;
    }

    .sp-products-name-l {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--color-main);
    }

    .sp-products-name-m {
        font-size: 0.75rem;
        color: var(--color-main);
    }

    /* SPでは拡大やフィルターを無効化 */
    .products-card:hover .card-img-wrap img {
        transform: none;
        opacity: 1;
    }

    /* SP版専用 - 季節の見出し */
    .products-moment-heading {
        grid-column: 1 / -1; /* 3カラムを横断して1行丸ごと使う設定 */
        font-family: var(--font-accent);
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        color: var(--color-gray);
        text-align: center;
        margin-top: 1rem; /* 前の季節との間隔 */
        margin-bottom: 0rem; /* 画像との間隔 */
        border-bottom: 1px solid #eee; /* 薄い線を入れて区切る */
        padding-bottom: 0.5rem;
    }

    /* 最初の見出しだけ上の余白を消す */
    .product-grid > .moment-heading-sp:first-child {
        margin-top: 0;
    }

    /* LINE UP セクションの個別調整 */
    .lineup .product-grid.col-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3列 */
        gap: 2rem 0.5rem; /* 縦の余白はしっかり、横は詰める */
    }

    /* LINE UPの時だけ画像下のマージンを詰める */
    .lineup .sp-products-item {
        margin-top: 0.5rem;
    }

    /* オーバーレイを無効化 */
    .card-img-wrap {
        background-color:
        transparent !important; /* 画像を包む黒背景を透明にする */
    }

    /* ホバー時の暗くなる・拡大する動きをSP版では完全に消す */
    .products-card:hover .card-img-wrap img {
        opacity: 1 !important; /* 透明度を下げない - 暗くしない */
        transform: none !important; /* 拡大させない */
    }

    /* SP版では画像の上に重なる文字（オーバーレイ）を絶対に出さない設定 */
    .card-overlay {
        display: none !important;
    }

    /* LINE UP - 本文までの距離 */
    .lineup .center-text-box{
        margin-top: 0;
    }

    /* BACK TO TOP 上部の余白調整 */
    .back-to-top-area{
        margin-top: 0;
    }


/* ========== ========== ==========
JOURNAL
========== ========== ========== */
    /* 最上部記事の画像サイズを微減 */
    .journal-featured .image-block {
        width: 85% !important;
        margin: 0 auto 2.5rem;
    }

    /* 全要素のセンター寄せ */
    .journal-featured .text-block {
        text-align: center;
    }
    /* 続きを読む */
    .journal-featured .journal-excerpt-wrap {
        text-align: center;
    }
    .journal-featured .date {
        justify-content: center; /* 日付とNEWの塊を中央へ */
        margin-bottom: 1rem;
    }
    .journal-featured .featured-title {
        text-align: center;
        font-size: 1.35rem; /* 少し縮小 */
        margin-bottom: 1.5rem;
    }
    .journal-featured .text {
        text-align: center;
        font-size: 0.8rem;
    }

/* ==========================================
ONLINE SHOP
========================================== */
    /* 横並びを解除して縦一列のレイアウトにする */
    .shop-page .shop-wrapper {
        flex-direction: column;
        padding-top: 40px;
        gap: 30px;
    }

    /* サイドバーの固定を解除し、上部に配置 */
    .shop-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }

    /* ONLINE SHOPの文字を中央寄せにする調整 */
    .shop-label {
        text-align: center;
        font-size: 1.4rem;
        letter-spacing: 0.15em;
        /* 文字間がある場合、その分だけ左に「字下げ」を入れないと真ん中に見えないための補正 */
        text-indent: 0.15em; 
        margin-bottom: 30px;
    }

    /* メニューを2列のタイル形式にする設定 */
    .shop-nav ul {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr; /* 左右の文字数に合わせて幅の比率を微調整 */
        border-top: 1px solid #ddd;
        padding: 0 5%; /* 全体が窮屈にならないよう左右に余白 */
    }

    /* 全ての項目に下線を引く */
    .shop-nav ul li {
        border-bottom: 1px solid #ddd;
    }

    /* リスト内のリンク：左揃えにして頭を揃える */
    .shop-nav ul li a {
        padding: 15px 0;
        justify-content: flex-start; /* 文字を左に寄せる */
        font-size: 0.75rem;
    }

    /* アイコンの幅を統一して、その後の文字の開始位置を縦に揃える */
    .shop-nav ul li a i {
        width: 20px;
        margin-right: 8px;
        text-align: center;
    }

    /* 商品エリアの幅を100%にする */
    .shop-main {
        width: 100%;
        padding-left: 0;
    }

    /* 商品タイトルの位置を調整 */
    .shop-title {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    /* 商品グリッド：スマホでは2列にしてボタンが見えやすくする */
    .product-shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    /* スマホ版カートボタン：幅を少し抑えて上品にする */
    .btn-add-cart {
        width: 90%; /* 画面幅いっぱいより少し短め */
        margin: 0 auto; /* 中央に置く */
        padding: 6px 4px; /* 縦幅をスマートに */
        font-size: 0.6rem;
    }

    /* スマホ版で最後の行（FAQとCART）の両方の線を消したい場合 */
    .shop-nav ul li:nth-child(n+5) {
        border-bottom: none;
    }

/* 
========== ========== ========== ========== ==========
*/


/* ---------- ---------- ----------
その他 - 縮小設定
---------- ---------- ---------- */
    /* BRAND STORY */
    .txt-spacer { 
        /* BRAND STORY セクションの余白 - 本文からIMG02枚目 */
        height: var(--gap-content-spacer) !important;
    }

    /* JOURNAL */
    .journal-grid { 
        grid-template-columns: 1fr; gap: 2.5rem; 
    }
    .journal-card { 
        max-width: 260px; margin: 0 auto;  /* IMGサイズ */
    }
    .journal-item-title { 
        font-size: 0.95rem; 
    }
    .excerpt, .date {
        font-size: 0.75rem; 
    }

    /* LOCATION */
    .afterword-text{
        font-size: 0.785rem;
    }
    
    /* FOOTER */
    .copyright {
        font-size: 0.65rem;
    }

    /* セクション名の縦線 - 下部の余白調整 */
    #roots .vertical-line,
    #recommend .vertical-line,
    #lineup .vertical-line {
        margin-bottom: -1rem;
    }

    /* ハンバーガーメニュー内の別窓アイコンの調整 */
    .global-nav .nav-list li a i.fa-arrow-up-right-from-square {
        font-size: 0.65em !important;
        margin-left: 6px !important;
        display: inline-block; /* 位置調整を有効にするために必要 */
        transform: translateY(-2px); /* ★アイコンを2px上に持ち上げる */
        vertical-align: middle;  /* 垂直方向の基準を中央に */
    }

} /* @media - 終 */