@charset "UTF-8";
/*変数定義
----------------------------- */
:root {
    /* カラー */
    --color-primary: #C9541A; /* メインのオレンジ */
    --color-text: #572811;    /* 基本の文字色（濃い茶色） */
    --color-text2: #FFF;      /* 白文字 */
    --color-text3: #4A3C30;   /* 薄い黒 */
    --color-bg: #FFF0DB;      /* 背景色（温かみがあるベージュ） */
}

/* ベース
------------------------------*/
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    padding-top: 80px;
    overflow-x: hidden; /* 横スクロール防止 */
}

html {
    scroll-behavior: smooth; /* これが「スーッと」動かす魔法の1行です */
    overflow-x: hidden; /* 横スクロール防止 */
}

/* 飛んだ先がヘッダーに隠れないように隙間をあける設定 */
#coffee, #zakka, #gift {
    scroll-margin-top: 100px; /* ヘッダーの高さ分くらいを数字で調整してください */
}

/* レイアウト
------------------------------ */
.wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%; /* スマホ端の余白 */
}

/* フォント（英語や強調用） */
.font-english {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
}

/* 共通パーツの簡易スタイル */
header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

/* --- ヘッダー全体 --- */
header {
    background: linear-gradient(to bottom, #4c200a, #602d0b, #793310);
    color: #E0A44E;
    padding: 15px 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.3s ease;
}

header.is-hide {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-logo a {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    padding-left: 100px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-sub {
    font-size: 12px;
    color: #E0A44E;
    font-weight: 400;
    margin: 0 0 5px;
}

.nav-list {
    display: flex;
    align-items: center;
    padding-right: 100px;
    list-style: none;
}

.nav-list li {
    display: flex;
    align-items: center;
}

.nav-list li::before {
    content: "|";
    margin: 0 30px;
    font-weight: 300;
    opacity: 0.7;
}

.nav-list li a {
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.nav-list li a:hover {
    color: #E0A44E;
}

.cart-icon {
    font-size: 20px;
    margin-left: 10px;
}

.hamburger {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1100; /* メニューより上にくるように */
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #E0A44E;
    left: 0;
    transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { top: 22px; }

/* PCでスマホ専用パーツを隠す */
.nav-cart-wrapper, .nav-sub-links, .nav-sns {
    display: none;
}

/* --- スマホ版のスタイル (768px以下) --- */

/* swiper共通スタイル
-------------------------------------------------------------- */
.swiper {
    overflow: hidden;
    position: relative;
}

.swiper-slide {
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.swiper-slide:hover {
    filter: brightness(1.05);
    opacity: 0.9;
}

/* mv
-------------------------------------------------------------- */
.mv {
    position: relative;
    overflow: hidden;
}
.mv::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1; /* 画像の上、テキストの下 */

    /* 走査線 + ノイズ + ほんのり暗転 */
    background:
        repeating-linear-gradient(
            to bottom,
            rgba(255,255,255,0.03) 0px,
            rgba(255,255,255,0.03) 1px,
            rgba(0,0,0,0.05) 2px,
            rgba(0,0,0,0.05) 3px
        ),
        linear-gradient(
            rgba(0, 0, 0, 0.115),
            rgba(0, 0, 0, 0.126)
        );

    pointer-events: none;
}
.mv-slider {
    position: relative;
    z-index: 0;
    height: 100vh;
}

.mv-slider .swiper-slide {
    height: 100vh;
}

/* スライド内の画像 */
.mv-slider img {
    width: 100%;
    height: 100vh; /* 120vh から 100vh に変更すると画面ぴったりになります */
    object-fit: cover;
}
/* MVコンテンツ（ロゴとキャッチコピー） */
.mv-content {
    position: absolute;
    top: 50%;
    left: 10%;          /* 左端から10%の位置に配置 */
    transform: translateY(-50%); /* 垂直方向だけ中央に */
    z-index: 2;
    text-align: left;    /* 左寄せに変更 */
    color: #fff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* 影を少し強めて視認性アップ */
}

.mv-logo {
    width: 500px;        /* 600pxだと少し大きいかもしれないので微調整 */
    max-width: 80vw;    /* 画面幅に合わせてはみ出さないように */
    height: auto;
    margin-bottom: 30px;
}

.mv-catchcopy {
    font-family: "Noto Serif JP", serif; /* 明朝体にするとさらに雰囲気が出ます */
    font-size: 32px;
    font-weight: 500;
    line-height: 2.2;    /* 行間を少し広めに */
    letter-spacing: 0.2em;
    padding-left: 10px;
}

/* スマホ用の調整 */

/* conceptセクション
-------------------------------------------------------------- */
.concept {
    padding: 120px 0;
    background-image: url('../img/concept-background.webp'); /* 背景画像 */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden; /* 画像のはみ出し防止 */
}

.concept-inner {
    position: relative;
    z-index: 10;
    min-height: 800px; /* 画像を散らすための高さ確保 */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 中央のコンテンツ */
.concept-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.concept-lead {
    margin-bottom: 40px;
}

.concept-lead .en {
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--color-text3);
}

.concept-lead .line {
    width: 1px;
    height: 40px;
    background-color: var(--color-text3);
    margin: 15px auto 0;
}

.concept-title {
    font-family: "Noto Serif JP", serif;
    font-size: 36px;
    color: var(--color-text);
    margin-bottom: 50px;
    letter-spacing: 0.1em;
}

.concept-text p {
    font-size: 18px;
    line-height: 2.2;
    margin-bottom: 50px;
    letter-spacing: 0.1em;
    color: var(--color-text3);
}

/* 4枚の画像：絶対配置でバラバラに置く */
.concept-img-box {
    position: absolute;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.30); /* ほんのり影 */
}

/* 左上 */
.img01 {
    width: 320px;
    top: 0;
    left: -100px;
}

/* 右上 */
.img02 {
    width: 300px;
    top: 50px;
    right: -60px;
}

/* 左下 */
.img03 {
    width: 200px;
    bottom: 20%;
    left: 5%;
}

/* 右下 */
.img04 {
    width: 280px;
    bottom: 10%;
    right: 5%;
}

/* スマホ版の調整 */

/* fade-upアニメーション
-------------------------------------------------------------- */
/* 最初は透明で、少し下に下げておく */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* スクロールしてこのクラスがついたら、表示する */
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* carouselセクション（流れる画像）
-------------------------------------------------------------- */
.carousel {
    overflow: hidden;
    background: var(--color-bg);
}

.carousel-inner {
    overflow: hidden;
    position: relative;
}

.carousel-item {
    width: auto; /* slidesPerView: 'auto'に対応 */
}

.carousel-item img {
    width: 300px; /* PC時の画像幅 */
    height: 200px;
    object-fit: cover;
    display: block; /* 余白防止 */
}

/* スマホ時の調整 */
@media (max-width: 768px) {
    /* paddingを削除 */
}

/* selection01
-------------------------------------------------------------- */
.selection01 {
    padding: 150px 0;
}

.wrapper-large {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4%;
}

.selection-title {
    text-align: center;
    margin-bottom: 60px;
}

.selection-title {
    font-size: 16px;
}
.selection-title h2 {
    font-family: "Noto Serif JP", serif;
    font-size: 36px;
    color: #4B240A;
    margin-bottom: 30px;
}

/* カードのグリッド */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* PC4列 */
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.selection-card {
    background: #FFFBF5;
    border-radius: 30px;
    border: 1px solid #D9C5B2;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s;
}

.selection-card.is-animated {
    opacity: 1;
    transform: translateY(0);
}

.selection-card:hover {
    border-color: #C9541A;
    transform: translateY(-10px);
}

.card-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 30px 20px;
}

.card-body h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* タイトル色設定（戻しました） */
.title-time { color: #4E56A6; }
.title-taste { color: #C9541A; }
.title-sweets { color: #7B5542; }
.title-gift { color: #E95464; }

.card-body p {
    font-size: 16px;
    color: #666;
}

/* -------------------------------------------
マウスホバーで現れるワイド枠（1200px）
------------------------------------------- */
.selection-detail-container {
    max-width: 1200px; /* ワイド幅指定 */
    margin: 0 auto;
    background: #FFFBF5;
    border: 1px solid #D9C5B2;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(75, 36, 10, 0.1);
    
    /* 初期状態：隠す */
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 5;
    position: relative; /* ボタンの基準にする */
}

.selection-detail-container.is-active {
    opacity: 1;
    visibility: visible;
    height: auto;
    margin-top: 30px;
    padding: 40px;
    margin-bottom: 60px;
}

.product-panel { display: none; }
.product-panel.is-active { display: block; animation: fadeIn 0.5s ease; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-item { text-align: center; }
.product-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 15px;
}

.product-item h4 { 
    font-size: 16px; color: #4B240A; margin-bottom: 10px; 
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
}
.price { font-weight: bold; color: #C9541A; margin-bottom: 15px; }

/* オレンジボタン */
.btn-orange {
    display: inline-block;
    background: linear-gradient(to bottom, #F5C68A, #EEAD63);
    color: #FFF !important;
    padding: 8px 30px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 0 #D6964E;
}
/* 閉じるボタン */
.btn-close-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #D9C5B2;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.btn-close-detail:hover {
    background: #C9541A;
    transform: rotate(90deg);
}

/* 初めての人はこちらボタン */
.selection-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-beginner {
    display: inline-flex;
    align-items: center;
    background-color: #C9541A;
    color: #FFF !important;
    font-size: 18px;
    font-weight: bold;
    padding: 18px 60px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(201, 84, 26, 0.3);
}

.btn-beginner:hover {
    background-color: #A64315;
    transform: scale(1.05);
}

.wakaba-icon {
    font-size: 22px;
    color: #7cc72c;
    margin-right: 15px;
}
.sp-arrow {
    display: none;
}

/* レスポンシブ対応 */

/* セクション02 
------------------------------------------------*/
.selection02 {
    background-color: #fffff3;
    padding: 100px 0 120px;
    overflow: hidden; /* 矢印のはみ出し防止 */
}

/* 1800pxのワイドコンテナ */
.wrapper-extra-large {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 50px;
}

/* 「商品」メインタイトル */
.section-main-title {
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    color: #4B240A;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

/* カテゴリごとのまとまり */
.product-category-wrap {
    margin-bottom: 100px;
    padding: 0 50px; /* アロー用のスペース確保 */
    position: relative;
}

/* 商品スライダー用 */
.product-slider.swiper {
    padding: 0 50px;
    overflow: hidden;
}

/* 商品スライダーのアローを内側に配置 */
.product-slider .swiper-button-prev { 
    left: 0px; /* product-category-wrapのpaddingの範囲内 */
}

.product-slider .swiper-button-next { 
    right: -50px; /* product-category-wrapのpaddingの範囲内 */
}

/* スマホ時はセンターモードなので両端を表示 */
@media (max-width: 767px) {
    .product-slider.swiper {
        overflow: visible;
    }
}

.product-slider .swiper-wrapper {
    align-items: stretch;
}

.product-slider .swiper-slide {
    height: auto;
}


/* カテゴリの見出し */
.category-header {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.category-header h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    color: #4A3C30;
    font-weight: 500;
}

.category-note {
    font-size: 13px;
    color: #999;
}

/* 商品カードのデザイン */
.product-slider .product-card {
    outline: none;
    backface-visibility: hidden; /* 切り替え時のチラつき防止 */
}

.p-img {
    margin-bottom: 15px;
    overflow: hidden;
}

.p-img img {
    width: 100%;
    aspect-ratio: 1 / 0.75; /* 横長比率で高さを統一 */
    object-fit: cover;
    /* 拡大アニメーションを滑らかにする設定 */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .p-img img {
    transform: scale(1.08); /* 優雅に拡大 */
}

.p-info {
    padding: 0 5px;
}

.p-name {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    height: 3.2em;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-name span {
    font-size: 13px;
    color: #777;
    margin-left: 10px;
}

.p-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.p-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.p-price span {
    font-size: 12px;
    font-weight: 400;
}

/* お気に入りボタン */
.btn-wishlist {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    color: #e95464;
    border-color: #fbdada;
    background-color: #fff5f5;
}

/* 左右矢印（Swiper Arrows）のカスタマイズ */
.product-slider .swiper-button-prev, 
.product-slider .swiper-button-next {
    background-color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
    top: 40%;
    margin-top: -25px; 
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-slider .swiper-button-prev::after, 
.product-slider .swiper-button-next::after {
    font-family: "Font Awesome 7 Free", "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    color: #4A3C30; 
    font-size: 20px;
    opacity: 1; 
}

.product-slider .swiper-button-prev:hover, 
.product-slider .swiper-button-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-slider .swiper-button-prev { left: 0px; }
.product-slider .swiper-button-next { right: 0px; }

.product-slider .swiper-button-prev::after { content: '\f053'; }
.product-slider .swiper-button-next::after { content: '\f054'; }

.product-slider .swiper-button-prev.swiper-button-disabled,
.product-slider .swiper-button-next.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
    cursor: default;
    transition: opacity 0.3s ease;
}

/*「〜を探す」ボタンのデザイン */
.product-btn-area {
    text-align: center;
    margin-top: 60px;
}

.btn-view-category {
    display: inline-block;
    border: 1px solid #aaa;
    padding: 12px 80px;
    font-size: 20px;
    color: #333;
    background-color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
    /* ボタンの反応も滑らかなイージングを適用 */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-view-category:hover {
    background-color: #4B240A;
    color: #fff;
    border-color: #4B240A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* レスポンシブ */

/* セクション０３ 人気商品（モダン・リファイン版）
------------------------------------------------------------- */
.sec-03 {
    padding: 0 50px 50px; /* 左右と下にpaddingを追加 */
}

.sec-03-container {
    text-align: center;
    margin-bottom: 60px;
}

.sec-03-title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(28px, 5vw, 36px); /* レスポンシブなフォントサイズ */
    color: #4B240A;
    letter-spacing: 0.05em;
}

/* スライダー全体の調整 */
.popular-slider {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 50px 60px; /* 左右と下にpadding追加 - アローとページネーション用 */
    overflow: hidden;
    position: relative;
}

.popular-slider.swiper {
    overflow: hidden;
}

.popular-slider .swiper-slide {
    height: auto;
}

/* アローとページネーションを内側に配置 */
.popular-slider .swiper-button-prev { 
    left: 0; /* -45px → 0 に変更 */
}

.popular-slider .swiper-button-next { 
    right: 0; /* -45px → 0 に変更 */
}

.popular-slider .swiper-pagination { 
    bottom: 10px; /* -40px → 10px に変更 */
}

/* 商品ボックス（各スライド） */
.goods-box {
    background-color: #3C1800; /* 白背景で清潔感を */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(87, 40, 17, 0.05); /* 柔らかい影 */
    border: none; /* 枠線を消してスッキリ */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    height: auto;
}

/* ホバー時の動き */
.goods-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(87, 40, 17, 0.12);
}

.goods-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.goods-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.goods-box:hover .goods-image img {
    transform: scale(1.08); /* ホバーで画像拡大 */
}

/* HTMLを変えずに image-title を画像の上に移動 */
.goods-content {
    padding: 30px 25px;
    position: relative;
}

.image-title {
    position: absolute;
    top: -240px; /* 画像の上に重ねる */
    left: 15px;
    background: rgba(38, 142, 24, 0.9);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 4px;
    letter-spacing: 0.05em;
    z-index: 2;
}

.goods-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: bold;
    text-align: left;
}

.goods-description {
    font-size: 14px;
    color: #fff; 
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: left;
    height: 3.4em; /* 2行分で揃える */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 販売ページボタン */
.sales-page-button {
    display: block !important;
    width: 200px !important; /* 横幅を固定する */
    margin: 0 auto !important; /* 絶対に中央に寄せる */
    padding: 14px 0;
    border-radius: 50px;
    background-color: #c1470c;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
    text-align: center; /* 文字をボタンの真ん中に */
}

/* Swiper 矢印のデザイン調整 */
.popular-slider .swiper-button-prev,
.popular-slider .swiper-button-next {
    background-color: #ffffff !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    top: 40% !important;
    opacity: 1 !important;
    margin-top: 0 !important;
}

.popular-slider .swiper-button-prev::after,
.popular-slider .swiper-button-next::after {
    color: #4B240A !important;
    font-size: 20px !important;
    font-weight: bold !important;
}

/* 左右の余白部分に矢印を配置して、カードに被らないようにする */
.popular-slider .swiper-button-prev { left: 0 !important; }
.popular-slider .swiper-button-next { right: 0 !important; }


/* Swiper ページネーション（ドット）のデザイン調整 */
.swiper-pagination-bullet {
    background-color: #572811;
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background-color: #C9541A;
    opacity: 1;
}

/* スマホ対応 */

/* FAQバナーセクション
------------------------------------------------------------ */
.faq-banner {
    padding: 100px 0;
    /* 背景画像：画像に合わせて調整してください */
    background-image: url('../img/faq-bg.webp'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* スクロール時に背景を固定するとさらに今時っぽくなります */
    position: relative;
}

.faq-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2); /* 画像が明るすぎる場合に暗くする用 */
}

.faq-banner-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end; /* 右側に寄せるレイアウト */
}

/* すりガラス風のカード（グラスモルフィズム） */
.faq-glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px); /* 背景をぼかす */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 60px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.faq-header {
    margin-bottom: 30px;
}

.faq-header .en {
    display: block;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #EEAD63; /* アクセントカラー（オレンジ） */
    margin-bottom: 10px;
}

.faq-header .faq-title {
    font-size: 32px;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.faq-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.faq-list li span {
    color: #EEAD63;
    font-weight: 700;
    margin-right: 10px;
}

.faq-list li.etc {
    border-bottom: none;
    font-size: 15px;
    opacity: 0.8;
}

/* ボタンのデザイン：シンプルかつモダンに */
.btn-guide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #fff;
    color: #4B240A; /* ロゴの濃い茶色 */
    padding: 20px 0;
    width: 100%;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
}

.btn-guide i {
    transition: transform 0.3s var(--ease);
}

.btn-guide:hover {
    background: #4B240A;
    color: #fff;
    transform: translateY(-5px);
}

.btn-guide:hover i {
    transform: translateX(10px); /* 矢印が右に動く */
}

/* スマホ対応 */

/* ご利用の流れ
------------------------------------------------------------ */
.flow-section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header .en {
    display: block;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: #EEAD63;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header .section-title {
    font-family: "Noto Serif JP", serif;
    font-size: 26px;
    color: #4B240A;
}

.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* カード間の繋ぎ線（デスクトップ用） */

.flow-card {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 60px 30px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s var(--ease);
}

.flow-card:hover {
    transform: translateY(-10px);
}

/* 数字のデザイン */
.flow-num {
    font-family: "Noto Serif JP", serif;
    font-size: 60px;
    font-weight: 700;
    color: rgba(238, 173, 99, 0.2); /* 非常に薄いオレンジ */
    line-height: 1;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.flow-icon {
    font-size: 40px;
    color: #4B240A;
    margin-bottom: 25px;
    position: relative;
}

.flow-step-title {
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 700;
    color: #4B240A;
    margin-bottom: 20px;
}

.flow-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* スマホ対応 */

/* --- コーヒーガイド メインビジュアル  --- */
.guide-mv {
    padding: 40px 0 60px;
    background-color: var(--color-bg); /* 全体の背景色と合わせる */
}

.guide-mv-wrapper {
    max-width: 1400px; /* 少し余裕を持たせた幅 */
    margin: 0 auto;
    padding: 0 4%;
}

.guide-mv-container {
    position: relative;
    width: 100%;
    height: 550px; /* PCでの高さをしっかり確保 */
    overflow: hidden;
    border-radius: 20px; /* 角を丸くして今っぽく */
    box-shadow: 0 20px 50px rgba(75, 36, 10, 0.15);
}

/* 画像：ズームアニメーション */
.guide-mv-img {
    width: 100%;
    height: 100%;
}

.guide-mv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8); /* 文字を読みやすく */
    transform: scale(1.05); /* 最初から少し大きくしておく */
    animation: mvZoom 10s ease-out forwards; /* 10秒かけてゆっくりさらに拡大 */
}

@keyframes mvZoom {
    to { transform: scale(1.15); }
}

/* テキストエリア：左側に寄せて雑誌風に */
.guide-mv-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; /* 垂直方向中央 */
    padding: 0 8%; /* 左から8%の位置 */
    z-index: 2;
}

.text-inner {
    color: #fff;
    max-width: 600px;
    animation: textUp 1.2s ease-out forwards;
}

@keyframes textUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.en-title {
    display: block;
    font-size: 14px;
    letter-spacing: 0.4em;
    margin-bottom: 15px;
    color: #EEAD63; /* アクセントカラーのオレンジ */
}

.title-line {
    width: 40px;
    height: 2px;
    background-color: #EEAD63;
    margin-bottom: 25px;
}

.guide-mv-text h2 {
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.sub-lead {
    font-size: 18px;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

/* スクロール指示（SCROLL） */
.scroll-indicator {
    position: absolute;
    right: 40px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    z-index: 3;
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl; /* 縦書きにする */
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #fff, transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- スマホ対応 (768px以下) --- */

/* --- コーヒーを知る --- */
.guide-articles {
    padding: 80px 0;
    background-color: #fefcf9; /* ほんのり温かいクリーム色 */
}

.guide-sec-header {
    text-align: center;
    margin-bottom: 50px;
}

.guide-sec-title {
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    color: #4B240A; /* 深いコーヒーブラウン */
    margin-bottom: 15px;
}

.guide-sec-intro {
    font-size: 15px;
    color: #665a52;
    line-height: 1.8;
}

/* タブボタン：ぷっくりした丸いボタン */
.tab-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.tab-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid #e8e2d9;
    background-color: #fff;
    color: #8a7b70;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background-color: #C9541A; /* メインのオレンジ */
    border-color: #C9541A;
    color: #fff;
    box-shadow: 0 4px 12px rgba(201, 84, 26, 0.2);
}

/* グリッド */
.article-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-grid.active {
    display: grid;
    animation: fadeIn 0.8s ease;
}

/* カード：柔らかい影と大きな角丸 */
.article-card {
    background-color: #fff;
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(75, 36, 10, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(75, 36, 10, 0.1);
}

.article-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* タグ：日本語で優しく */
.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(75, 36, 10, 0.8);
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: bold;
}

.article-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    color: #4B240A;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 700;
}

.article-summary {
    font-size: 14px;
    color: #776d66;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 「読む」ボタンも日本語で */
.read-link {
    margin-top: auto;
    font-size: 14px;
    font-weight: bold;
    color: #C9541A;
    display: flex;
    align-items: center;
    gap: 8px;
}

.read-link i {
    transition: transform 0.3s;
}

.article-card:hover .read-link i {
    transform: translateX(5px); /* 矢印がピコッと動く */
}

/* --- スマホ対応：横スクロールでサクサク見やすく --- */

/* --- お悩みセクション --- */
.guide-faq {
    padding: 100px 0 0;
}

.faq-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-main-title {
    font-family: "Noto Serif JP", serif;
    text-align: center;
    color: #5a250a;
    font-size: 30px;
    margin-bottom: 30px;
}

/* 白い角丸ボックス */
.faq-white-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px 80px;
}

/* 質問項目の線 */
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-item:last-of-type {
    border-bottom: none;
}

/* 隠し要素 */
.faq-item.is-hidden {
    display: none;
}

/* 質問エリア */
.faq-q {
    display: flex;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    position: relative;
}

/* オレンジのQ */
.q-icon {
    background-color: #d48a6a; /* 画像に近いオレンジ */
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 25px;
}

.q-text {
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

/* 右側の矢印（V字） */
.q-arrow {
    position: absolute;
    right: 0;
    width: 20px;
    height: 20px;
    border-right: 2px solid #d48a6a;
    border-bottom: 2px solid #d48a6a;
    transform: rotate(45deg);
    transition: 0.3s;
}

/* アコーディオンが開いた時 */
.faq-item.is-open .q-arrow {
    transform: rotate(-135deg);
    margin-top: 10px;
}

/* 回答エリア */
.faq-a {
    display: none; /* 最初は閉じる */
    padding: 0 0 30px 61px;
    color: #666;
    line-height: 1.8;
}

/* もっと見るボタンエリア */
.faq-more-area {
    text-align: center;
    margin-top: 40px;
}

#js-more-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

#js-more-btn:hover {
    color: #d48a6a;
}

/* スマホ対応 */

/* ショップページ */
/* メインビジュアルの親要素 */
.shop-mv {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 文字を浮かせる基準にするための設定 */
.mv-container {
    position: relative; /* これが重要：文字を浮かせる「土台」になります */
    width: 100%;
    overflow: hidden;
}

/* 画像自体の設定 */
.mv-img {
    width: 100%;
    height: auto;
    display: block; /* 画像の下にできる謎の隙間を消す */
}

/* 画像の上に浮く文字の設定 */
.mv-title {
    position: absolute; /* 画像から浮かせます */
    top: 50%;           /* 上から50%の位置に */
    left: 50%;          /* 左から50%の位置に */
    transform: translate(-50%, -50%); /* 自身のサイズ分戻して完全に真ん中へ */
    margin: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4); /* 文字を見やすくする影 */
    white-space: nowrap; /* 文字が途中で改行されないように */
}

/* カテゴリーナビゲーション */
.category-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 20px;
}

.nav-container {
    display: flex;
    background-color: #f9f0e4; /* ボタンの内側の薄いベージュ */
    border: 1.5px solid #c9b9ad; /* 外枠の茶色い線 */
    border-radius: 60px; /* カプセル型 */
    width: 100%;
    max-width: 600px;
    overflow: hidden;
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    text-decoration: none;
    color: #4a3121; /* 文字の濃い茶色 */
    font-weight: bold;
    transition: background-color 0.3s;
    border-right: 1px solid #c9b9ad; /* 区切り線 */
}

/* 最後のアイテムの区切り線は消す */
.nav-item:last-child {
    border-right: none;
}

/* ホバー時の演出 */
.nav-item:hover {
    background-color: #f0e4d5;
}

.nav-text {
    font-size: 18px;
    margin-bottom: 2px;
}

.arrow {
    font-size: 14px;
    line-height: 1;
    transform: scaleX(1.5); /* 矢印を少し横に広げて画像に近づける */
}

/* スマホ対応：ボタンが小さくなりすぎないよう調整 */

/* 特集セクション全体 */
.feature-item-section {
    max-width: 800px; /* カードの最大幅（好みで調整してください） */
    margin: 100px auto;
    padding: 0 20px;
}

/* カード本体 */
.feature-item-card {
    background-color: #C1511D; /* 画像に近いテラコッタ・オレンジ */
    border-radius: 40px; /* 大きめの角丸で柔らかい印象に */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* 画像部分 */
.feature-item-img {
    width: 100%;
    line-height: 0; /* 下の隙間を消す */
}

.feature-item-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* テキスト部分 */
.feature-item-body {
    padding: 50px 40px;
    text-align: center;
    color: #000; /* 画像に合わせて黒にしていますが、白（#fff）でも映えます */
}

.feature-item-label {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.feature-item-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.feature-item-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* 販売ボタン */
.feature-item-btn {
    display: inline-block;
    background-color: #ffffff; /* 白背景 */
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 60px; /* 横に長めのパディング */
    border-radius: 50px;
    border: 3px solid #000000; /* 太めの黒枠線 */
    transition: all 0.3s ease;
}

/* ボタンのホバー（浮き上がる動き） */
.feature-item-btn:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* スマホ対応 */

/* --- 追従ボタンの設定
 --------------------------------------------------------- */
.map-fixed-btn {
    position: fixed;
    right: 0;           /* 画面の右端 */
    top: 20%;           /* ボタンの高さ */
    transform: translateY(-50%);
    z-index: 900;      /* 一番手前に来るように */
    cursor: pointer;
    width: 200px;       /* ボタンの横幅（画像サイズに合わせて調整） */
    transition: transform 0.3s ease;
}

.map-fixed-btn:hover {
    transform: translateY(-50%) translateX(-3px); /* ホバー時に少し左に飛び出す */
}

.map-fixed-btn img {
    width: 100%;
    height: auto;
    opacity: 95%;
}

/* --- モーダル（拡大画像）の設定 --- */
.map-modal {
    display: none;      /* 最初は隠しておく */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
}

.map-modal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* 背景を少し暗くして画像を引き立たせる */
    cursor: pointer; /* 背景をクリックしても閉じれることを明示 */
}

.map-modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;         /* 画面の90%の幅で画像を表示 */
    max-width: 1200px;  /* 画像が大きくなりすぎない上限 */
    text-align: center;
}

.map-modal-content img {
    width: 100%;
    height: auto;
    max-height: 85vh;   /* ★ 画面の高さの85%までに制限（縦にはみ出さない） */
    object-fit: contain; /* ★ 比率を保って綺麗に収める */
    border-radius: 10px; /* ★ 角を少し丸くしておしゃれに */
}

/* ★ 閉じるボタンを分かりやすい「丸いボタン」 */
.map-modal-close {
    position: absolute;
    top: -55px;         /* 画像のすぐ上に配置 */
    right: 0;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2); /* 半透明の白背景 */
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* 完全な丸にする */
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* マウスを乗せた時の動き */
.map-modal-close:hover {
    background-color: #C9541A; /* ブランドカラーのオレンジに光る */
    transform: rotate(90deg);  /* クルッと回る演出 */
}

/* スマホではボタンを少し小さくする */

/* ============================================================
ショップページ：コーヒー豆・粉 セクション (1500pxワイド)
   ============================================================ */
.shop-section {
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 40px;
}

.shop-inner { width: 100%; }

.shop-section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 50px;
}

/* 独自のグリッド名にして重複を回避 */
.shop-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px 40px;
}

.shop-product-item {
    background-color: #3C1800; /* 濃い茶色 */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}

.shop-product-item-img { position: relative; width: 100%; }
.shop-product-item-img img { width: 100%; display: block; }

.shop-product-item-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #92d091;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
}

.shop-product-item-body {
    padding: 30px 60px;
    text-align: center;
    color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.shop-product-item-catch {
    color: #e3a968;
    font-size: 16px;
    margin-bottom: 10px;
}

/* ★商品名：30px★ */
.shop-product-item-name {
    font-family: "Noto Serif JP", serif;
    font-size: 30px !important;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
    letter-spacing: 0.1em;
}

.shop-product-item-line {
    width: 60px;
    height: 1px;
    background-color: #e3a968;
    margin: 0 auto 20px;
}

.shop-product-item-text {
    font-size: 15px;
    line-height: 2;
    text-align: left;
    margin-bottom: 10px;
}

.shop-product-status {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.shop-status-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px;
}

.shop-status-row span { margin-right: 20px; width: 3em; text-align: left; }
.shop-dots { display: flex; }
.shop-dots .dot { width: 16px; height: 16px; border-radius: 50%; background-color: #745947; }
.shop-dots .dot.on { background-color: #e3a968; }

.shop-btn-detail {
    display: block;
    background-color: #e3a968;
    color: #2b1204;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    border-radius: 50px;
    margin-top: auto;
    text-align: center; /* 文字を真ん中に */
    
    /* 1. 動きを滑らかにする設定（0.3秒かけて変化させる） */
    transition: transform 0.3s ease; 
}

/* 2. マウスを乗せた（hover）時の設定 */
.shop-btn-detail:hover {
    /* 3. 大きさを1.05倍（5%アップ）にする */
    transform: scale(1.05);
}

/* スマホ・タブレット用の調整（768px以下） */

/* --- 雑貨・器具セクション 02 --- */
.shop-section02 {
    max-width: 1300px; /* コーヒーセクションと合わせる */
    margin: 100px auto;
    padding: 0 40px;
}

/* 2列グリッド */
.shop-grid02 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* カード本体 */
.shop-card02 {
    display: block;
    background-color: #fff;
    border: 3px solid #3C1800; /* 画像のような太い濃茶の枠線 */
    border-radius: 35px;       /* 大きめの角丸 */
    overflow: hidden;
    position: relative;        /* 矢印を右下に固定するため */
    text-decoration: none;
    transition: transform 0.3s ease;
}

.shop-card02:hover {
    transform: translateY(-5px);
}

/* 画像エリア */
.shop-card02-img {
    width: 100%;
    border-bottom: 3px solid #3C1800; /* 中の区切り線 */
    line-height: 0;
}

.shop-card02-img img {
    width: 100%;
    height: 300px;      /* 画像の高さを統一 */
    object-fit: cover;  /* 比率を保って切り抜き */
}

/* テキストエリア */
.shop-card02-body {
    padding: 30px 40px 60px; /* 下に矢印ボタン用の余白を多めに取る */
    text-align: center;
    color: #3C1800;
}

.shop-card02-body h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.shop-card02-body p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* 右下の黒い矢印ボタン */
.shop-card02-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #000; /* 黒い背景 */
    width: 60px;
    height: 60px;
    border-radius: 40px 0 0 0; /* 左上だけ丸くして、角にフィットさせる */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.shop-card02-arrow i {
    color: #fff;
    font-size: 20px;
    margin-left: 5px; /* 少しだけ右に寄せる（デザイン調整） */
}

.shop-card02:hover .shop-card02-arrow {
    background-color: #C9541A; /* ホバー時にオレンジにするなど */
}

/* スマホ対応（768px以下は1列にする） */

/* --- セット、ギフト セクション 03 --- */
.shop-section03 {
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 40px;
}

/* 2列グリッド */
.shop-grid03 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* カード本体 */
.shop-card03 {
    display: block;
    background-color: #fff;
    border: 3px solid #3C1800; /* 雑貨と同じ濃い茶色の太枠 */
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.shop-card03:hover {
    transform: translateY(-5px);
}

/* 画像エリア */
.shop-card03-img {
    width: 100%;
    border-bottom: 3px solid #3C1800;
    line-height: 0;
}

.shop-card03-img img {
    width: 100%;
    height: 350px; /* セット商品は少し高めに設定 */
    object-fit: cover;
}

/* テキストエリア */
.shop-card03-body {
    padding: 30px 40px 60px;
    text-align: center;
    color: #3C1800;
}

.shop-card03-body h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.shop-card03-body p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* 右下の黒い矢印ボタン */
.shop-card03-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #000;
    width: 60px;
    height: 60px;
    border-radius: 40px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-card03-arrow i {
    color: #fff;
    font-size: 20px;
    margin-left: 5px;
}

.shop-card03:hover .shop-card03-arrow {
    background-color: #C9541A; /* ホバー時にオレンジにするなど */
}


/* 商品詳細ページ
---------------------------------------------------------- */
/* 全体のトーン設定 */
.product-page {
    background-color: #2b1204;
    padding: 80px;
    padding-bottom: 100px; 
    margin-bottom: -100px; /* ★ 追加：共通フッターの margin-top: 100px を打ち消して吸い寄せる */
    color: #ffffff;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.6;
}

/* 1200px幅のコンテナ */
.product-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 横並びレイアウト */
.product-flex-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px; /* 画像とテキストの間の余白 */
}

/* --- 画像エリア（450px固定） --- */
.product-visual {
    flex: 0 0 450px; /* 横幅を450pxに固定 */
}

.main-photo {
    width: 450px;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    background-color: #3d1c0a;
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 正方形にきれいに収める */
}

.thumb-nav {
    display: flex;
    gap: 12px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: 0.3s;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.current,
.thumb-item:hover {
    opacity: 1;
    border-color: #e3a968;
}

/* --- テキストエリア --- */
.product-details {
    flex: 1; /* 残りの幅を埋める */
    max-width: 600px; /* テキストが広がりすぎないように制限 */
}

.sub-catch {
    color: #e3a968;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.main-title {
    font-family: "Noto Serif JP", serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.roast-type {
    font-size: 18px;
    font-weight: 400;
    margin-left: 10px;
    opacity: 0.9;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.star-icons {
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 2px;
}

.rating-score {
    font-size: 15px;
    font-weight: 500;
}

.review-anchor {
    font-size: 13px;
    color: #ffffff;
    text-decoration: underline;
    opacity: 0.7;
}

.product-intro {
    font-size: 15px;
    line-height: 2.2;
    margin-bottom: 45px;
    opacity: 0.9;
}

/* 味わいプロファイル（チャート部分） */
.flavor-profile {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 35px;
    border-radius: 15px;
    display: inline-block;
    min-width: 300px;
}

.flavor-row {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.flavor-row:last-child {
    margin-bottom: 0;
}

.f-label {
    width: 4em;
    font-size: 13px;
    color: #e3a968;
    font-weight: bold;
}

.f-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #55443a; /* 未達成のドット */
}

.dot.active {
    background-color: #e3a968; /* 達成したドット */
}


/* --- 購入カード全体のデザイン --- */
.purchase-box {
    background-color: #f2f2f2; 
    border-radius: 20px;
    padding: 40px 50px;
    max-width: 800px; 
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0; /* ★ 50px から 0 に変更（フッターとの間の余白を消す） */
    color: #1a1a1a;
    font-family: "Noto Sans JP", sans-serif;
}

.selection-item {
    margin-bottom: 30px;
}

.selection-label {
    display: block;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 12px;
}

/* --- セレクトボックスのカスタム --- */
.custom-select {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.custom-select.small {
    max-width: 120px;
}

.custom-select select {
    width: 100%;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #999;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    appearance: none; /* デフォルトの矢印を消す */
}

/* セレクトボックスの矢印アイコン */
.custom-select::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 10px;
    background-color: #1a1a1a;
    clip-path: polygon(0 0, 100% 0, 50% 100%); /* 三角形 */
    pointer-events: none;
}

/* --- ラジオボタンのカスタム --- */
.radio-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-container {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

/* 本物のチェックボックスを隠す */
.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* カスタムチェックマークの外枠 */
.checkmark {
    height: 28px;
    width: 28px;
    background-color: #fff;
    border: 1px solid #999;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
}

/* ホバー時の色変更 */
.radio-container:hover input ~ .checkmark {
    background-color: #eee;
}

/* チェックされた時の緑の丸 */
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #00b012; /* 画像と同じ鮮やかな緑 */
}

.radio-container input:checked ~ .checkmark::after {
    display: block;
}

/* テキスト部分の調整 */
.radio-text {
    font-weight: bold;
    font-size: 18px;
    margin-right: 10px;
}

.radio-note {
    font-size: 13px;
    color: #666;
}

/* --- 下部：価格と案内 --- */
.purchase-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 40px;
    margin-bottom: 30px;
}

.shipping-info {
    color: #f00; /* 赤文字 */
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.total-price-display {
    font-size: 32px;
    font-weight: bold;
}

.yen-mark {
    font-size: 24px;
    margin-right: 4px;
}

.tax-in {
    font-size: 14px;
    font-weight: normal;
}

/* --- カートに入れるボタン --- */
.add-to-cart-btn {
    display: flex;           /* flexに変更 */
    justify-content: center;  /* 左右の中央 */
    align-items: center;      /* 上下の中央 */
    
    width: 240px;
    margin: 0 auto;
    background-color: #1a1a1a;
    color: #fff;
    height: 54px;            /* 高さを指定するとより綺麗に中央になります */
    padding: 0;              /* flexを使うのでpaddingは0か調整 */
    
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 50px; 
    cursor: pointer;
    transition: 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #444;
    transform: scale(1.05);
}

/* ショッピングカートセクション 
------------------------------------------------------------ */
.cart-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* カートのメインタイトル */
.cart-title {
    font-size: 32px;
    color: #572811;
    margin-bottom: 40px;
    font-weight: bold;
}

/* コンテンツ中央寄せ用コンテナ */
.cart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* オレンジのアラートメッセージ */
.cart-empty-message {
    background-color: #f3a847; /* よなよなエール風のオレンジ */
    color: #180202;
    width: 100%;
    max-width: 600px;
    padding: 16px 20px;
    text-align: center;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 40px;
}

/* イラスト */
.cart-illustration {
    margin-bottom: 40px;
    width: 100%;
    max-width: 450px; /* 画像の大きさを調整 */
    text-align: center;
}

.cart-illustration img {
    width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 商品を探すボタン */
.cart-actions {
    margin-top: 10px;
}

.btn-search {
    display: inline-block;
    background-color: #fff;
    color: #180202;
    text-decoration: none;
    border: 1px solid #180202;
    padding: 12px 60px;
    border-radius: 50px; /* カプセル型 */
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background-color: #180202;
    color: #fff;
}

/* スマホ対応の調整 */

/* --- 配送案内メッセージ（ボタンと離して配置を整える） --- */
.cart-delivery-note {
    max-width: 600px;
    width: 90%;
    /* margin-topをプラスの数値（50px）にすることでボタンとの間を離します */
    margin: 50px auto 80px; 
    padding: 25px;
    background-color: #fff;
    border: 1.5px solid #f3a847;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* ボタンエリアの下にも余白を念のため追加 */
.cart-actions {
    margin-bottom: 20px;
}

/* アイコンエリア */
.delivery-icon {
    font-size: 28px; /* 少し大きくしてバランス調整 */
    color: #c1470c;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* テキストエリア */
.delivery-text {
    color: #572811;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* 下線と色 */
.delivery-text span,
.delivery-text a {
    font-weight: bold;
    color: #c1470c;
    text-decoration: underline; /* 画像のように下線を表示 */
}

/* --- スマホ対応 (768px以下) --- */

/* お問い合わせページ共通
------------------------------------------------------------ */
.contact-wrapper {
    max-width: 900px; /* ご要望の900px */
    margin: 0 auto;
    padding: 0 20px;
}

/* メインビジュアル */
.contact-hero {
    width: 100%;
    margin-bottom: 60px;
}

.contact-hero-inner {
    position: relative;
    width: 100%;
    height: 300px; /* 画像の高さに合わせて調整 */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-inner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.8); /* 文字を見やすくするため少し暗く */
}

.contact-hero-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

/* FAQボタン */
.faq-button-area {
    text-align: center;
    margin-bottom: 80px;
}

.faq-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 300px;
    height: 70px;
    border: 2px solid #000;
    border-radius: 50px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
}

.faq-button:hover {
    background: #000;
    color: #fff;
}

/* セクションタイトル */
.contact-title {
    font-size: 32px;
    border-left: 8px solid var(--color-primary); /* オレンジの縦棒 */
    padding-left: 20px;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* 注意書きボックス */
.contact-info-box {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 50px;
    font-size: 15px;
}

/* お問い合わせグリッド */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列 */
    gap: 40px 60px;
    margin-bottom: 100px;
}

.contact-item-label {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

/* オレンジの丸ポッチ */
.contact-item-label::before {
    content: "";
    position: absolute;
    margin: 4px 0 0;
    left: 0;
    top: 0.4em;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

.tel-number {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

.business-hours {
    color: #ff0000; /* 赤文字 */
    font-size: 14px;
}

.contact-link a {
    color: #0000ee;
    text-decoration: underline;
}

/* スマホ対応 */

/* メールフォームセクション
------------------------------------------------------------ */
.contact-mail {
    margin-top: 100px;
    margin-bottom: 150px;
}

.contact-form {
    margin-top: 50px;
}

/* 項目ごとのレイアウト（横並び） */
.form-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

/* ラベル部分（左側） */
.form-label {
    width: 250px; /* 左側のラベル幅 */
    font-weight: bold;
    padding-top: 10px;
    font-size: 16px;
}

/* 入力エリア部分（右側） */
.form-input {
    flex: 1;
}

/* 入力欄のデザイン */
.form-input input[type="text"],
.form-input input[type="email"],
.form-input input[type="tel"],
.form-input textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    background-color: #ffffff; /* 背景色に馴染ませる */
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

/* テキストエリアの高さ */
.form-input textarea {
    height: 300px;
    resize: vertical;
}

/* 確認画面へボタン */
.form-btn-area {
    text-align: center;
    margin-top: 60px;
}

.btn-submit {
    display: inline-block;
    width: 250px;
    padding: 15px 0;
    background-color: #fff;
    border: 2px solid #000;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #000;
    color: #fff;
}

/* スマホ対応 */

/* フッター全体設定
------------------------------------------------------------ */
.footer {
    background-color: #552814; /* 濃い茶色 */
    color: #fff;
    margin-top: 100px; /* 前のセクションとの距離 */
    padding-bottom: 80px;
    position: relative;
}

/* 波線エリアの修正 */
.footer-wave-area {
    width: 100%;
}

.footer-wave-area img {
    width: 100%;   /* 画面の端から端まで広げる */
    height: auto;  /* 比率を保つ */
    display: block;
    margin-top: -80px; /* ここを調整して波の高さ分だけ上に持ち上げます */
}

/* 内部レイアウト */
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px; /* 波線のすぐ下からの余白 */
}

/* ロゴを大きく表示 */
.footer-logo {
    flex: 0 0 400px; /* ロゴの幅（画像に合わせて調整してください） */
}

.footer-logo img {
    width: 100%;     /* 400pxの中で最大表示 */
    height: auto;
    display: block;
}

/* 中央ナビ */
.footer-nav-col {
    margin: 0 40px;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 25px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
}

/* 右側SNSエリア */
.footer-sns-col {
    flex: 0 0 300px;
}

.footer-sns p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.sns-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.sns-square {
    font-size: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin-top: 50px;
}

.footer-legal li {
    margin-bottom: 10px;
}

.footer-legal a {
    font-size: 13px;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

/* ========================================
スマホ・タブレット用CSS
   ======================================== */

/* ヘッダー (768px以下)
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
@media (max-width: 768px) {
    /* ヘッダーの中身の配置 */
    .header-inner {
        padding: 10px 20px;
    }

    .header-logo a {
        padding: 0;
    }
    
    .logo-sub, .cart-icon { 
        display: none; 
    }

    .hamburger {
        display: block;
    }

    /* メニュー背景を全画面に変更 */
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(to bottom, #4c200a, #602d0b, #793310);
        transition: 0.5s;
        z-index: 1050;
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    /* スマホメニューの中身のレイアウト */
    .nav-inner {
        padding: 100px 40px 60px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* カートボタン：中央に配置 */
    .nav-cart-wrapper {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .nav-cart-btn {
        background: #FFF;
        color: #4B240A;
        padding: 12px 60px;
        border-radius: 8px;
        font-weight: bold;
        text-decoration: none;
        font-size: 16px;
    }

    /* メインメニュー：左寄せ・下線付き */
    .nav-list {
        width: 100%;
        padding-right: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding-left: 0;
    }

    .nav-list li::before {
        display: none;
    }

    .nav-list li a {
        padding: 20px 0;
        font-size: 22px;
        text-align: left;
    }

    .pc-only { 
        display: none; 
    }

    /* サブリンク（イベントなど） */
    .nav-sub-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }
    
    .nav-sub-links a {
        color: #FFF;
        text-decoration: none;
        font-size: 15px;
    }

    /* SNSエリア */
    .nav-sns {
        display: block;
        margin-top: 40px;
        width: 100%;
    }
    
    .nav-sns p {
        color: #FFF;
        margin-bottom: 15px;
        font-weight: bold;
    }
    
    .sns-icons {
        display: flex;
        font-size: 30px;
        color: #fff;
    }
    
    .sns-square {
        padding-right: 20px;
    }

    /* ハンバーガーボタンが「X」になるアニメーション */
    .hamburger.active span:nth-child(1) { 
        transform: translateY(11px) rotate(45deg); 
        background-color: #FFF; 
    }
    .hamburger.active span:nth-child(2) { 
        opacity: 0; 
    }
    .hamburger.active span:nth-child(3) { 
        transform: translateY(-11px) rotate(-45deg); 
        background-color: #FFF; 
    }
}

/* MV (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .mv-slider {
        height: 50vh;
    }
    
    .mv-slider .swiper-slide {
        height: 50vh;
    }
    
    .mv-slider img {
        height: 50vh;
    }
    
    .mv-content {
        left: 5%;
        width: 90%;
    }
    
    .mv-logo {
        display: none;
    }
    
    .mv-catchcopy {
        font-size: 16px;
        font-weight: 700;
    }
}

/* Conceptセクション (750px以下)
-------------------------------------------------------------- */
@media (max-width: 750px) {
    .concept {
        padding: 100px 0;
    }
    
    .concept-inner {
        min-height: auto;
        flex-direction: column;
    }
    
    .concept-img-box {
        display: none;
    }
    
    .concept-content {
        display: block;
    }
    
    .concept-title {
        font-size: 26px;
    }

    .concept-text {
        display: block;
    }

    .concept-text p {
        font-size: 13px;
        line-height: 2.2;
        margin-bottom: 25px;
        text-align: center;
        word-break: break-all;
    }
}

/* セクション01 診断 (1024px以下)
-------------------------------------------------------------- */
@media (max-width: 1024px) {
    .selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
}

@media (max-width: 768px) {
    .selection-detail-container.is-active {
        padding: 40px 20px 20px;
    }
    
    .btn-close-detail {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .product-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 20px; 
        scroll-snap-type: x mandatory; 
        -webkit-overflow-scrolling: touch; 
    }

    .product-grid::-webkit-scrollbar {
        height: 6px;
    }
    .product-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    .product-grid::-webkit-scrollbar-thumb {
        background: #D9C5B2;
        border-radius: 10px;
    }

    .product-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        background: #fff;
        padding: 15px;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    }
}

@media (max-width: 600px) {
    .selection-title h2 { 
        font-size: 22px; 
    }
    
    .card-img img { 
        height: 150px; 
    }

    .card-body h3 {
        font-size: 16px;
    }

    .card-body p {
        display: none;
    }
    .card-body {
        padding: 15px 10px; /* 上下の余白を半分の15pxに */
    }
    /* ★「丸1」のボタンを中央に寄せる修正です★ */
    .btn-beginner {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        justify-content: center; /* 文字とアイコンをど真ん中に！ */
    }
}

@media (max-width: 600px) {
    .selection-title h2 { 
        font-size: 28px; 
    }
    
    .btn-beginner { 
        width: 100%; 
        padding: 15px 20px; 
    }
    
    .selection-title h2 { 
        font-size: 22px; 
    }
    
    .card-img img { 
        height: 150px; 
    }

    .card-body h3 {
        font-size: 16px;
    }

    .card-body p {
        display: none;
    }

    .btn-beginner {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        justify-content: center;
    }
}

/* セクション02 商品スライダー (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .wrapper-extra-large {
        padding: 0 10px;
    }

    .p-name {
        font-size: 11px;
        margin-bottom: 5px;
        height: 2.8em;
    }
    
    .p-name span {
        font-size: 9px;
        margin-left: 0;
        display: block;
    }

    .p-price {
        font-size: 13px;
    }
    
    .p-price span {
        font-size: 9px;
    }

    .btn-wishlist {
        width: 28px;
        height: 28px;
    }
    
    .btn-wishlist i {
        font-size: 12px;
    }

/* --- スマホ版：矢印を完全に消す --- */
@media (max-width: 768px) {
    .product-slider .swiper-button-prev,
    .product-slider .swiper-button-next {
        display: none !important;
    }
}

    
    .swiper-button-prev::after, .swiper-button-next::after {
        font-size: 18px;
        opacity: 0.6;
    }
    
    .swiper-button-prev { left: -5px; }
    .swiper-button-next { right: -5px; }
}

/* 人気商品セクション (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .sec-03 {
        padding: 0 20px 80px; /* スマホ時は左右と下のpaddingを調整 */
    }
    
    .popular-slider {
        padding: 0 20px 50px; /* スマホ時のpadding調整 */
    }
    
    .popular-slider .swiper-button-prev { 
        left: 0;
    }
    
    .popular-slider .swiper-button-next { 
        right: 0;
    }
    
    .product-category-wrap {
        padding: 0 20px; /* スマホ時のpadding調整 */
    }
    
    .product-slider .swiper-button-prev { 
        left: -20px;
    }
    
    .product-slider .swiper-button-next { 
        right: 0px;
    }
    
    .popular-section {
        padding: 60px 0;
    }
    
    .popular-title h2 {
        font-size: 26px;
    }
    
    .popular-card {
        flex-direction: column;
    }
    
    .popular-img {
        width: 100%;
        height: 250px;
    }
    
    .popular-body {
        width: 100%;
        padding: 30px 20px;
    }

/* --- スマホ版：人気商品の矢印ボタンを消す --- */
@media (max-width: 768px) {
    .popular-slider .swiper-button-prev,
    .popular-slider .swiper-button-next {
        display: none !important;
    }
}
}

/* FAQバナーセクション (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .faq-banner {
        padding: 60px 0;
    }
    
    .faq-glass-card {
        padding: 40px 20px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-list li {
        font-size: 13px;
    }
}

/* 利用の流れセクション (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .flow-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .flow-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .flow-card {
        width: 100%;
    }
}

/* Coffee Guideページ (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .guide-mv-text h2 {
        font-size: 28px;
    }
    
    .guide-mv-text .sub-lead {
        font-size: 14px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .guide-sec-title {
        font-size: 26px;
    }
    
    .guide-sec-intro {
        font-size: 14px;
    }
    
    .tab-btn {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .article-title {
        font-size: 16px;
    }
}

/* FAQ セクション (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .faq-main-title {
        font-size: 26px;
    }
    
    .faq-white-box {
        padding: 30px 20px;
    }
    
    .faq-q {
        padding: 15px;
    }
    
    .q-text {
        font-size: 14px;
    }
    
    .faq-a {
        padding: 15px;
    }
}

/* Shopページ (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .shop-mv {
        height: 250px;
    }
    
    .mv-title {
        font-size: 32px;
    }
    
    .category-nav {
        flex-wrap: wrap;
    }
    
    .nav-item {
        flex: 1 1 100%;
    }
    
    .shop-section-title {
        font-size: 26px;
    }
    
    .shop-product-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-product-item {
        flex-direction: column;
    }
    
    .shop-product-item-img {
        width: 100%;
    }
    
    .shop-product-item-body {
        width: 100%;
        padding: 20px;
    }
}

/* ショップ追尾ボタン (480px以下)
-------------------------------------------------------------- */
@media (max-width: 480px) {
    /* ★ 追従ボタンをスマホの右下に綺麗に配置 */
    .map-fixed-btn {
        width: 110px !important; /* 小さすぎず邪魔にならない幅に変更 */
        height: auto !important; /* ★画像が潰れないように自動計算 */
        top: auto !important;    /* PC版の上からの位置指定をキャンセル */
        bottom: 40px !important; /* 親指で押しやすい右下に配置 */
        right: 0 !important;     /* 画面の右端にくっつける */
        transform: none !important; /* PC版のズレをキャンセル */
    }
    
    /* ★ 先ほど作った丸い「×」ボタンをスマホでも綺麗に表示 */
    .map-modal-close {
        top: -50px !important;
        right: 0 !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 24px !important;
    }
}

/* 雑貨セクション (600px以下)
-------------------------------------------------------------- */
@media (max-width: 600px) {
    .shop-grid02 {
        grid-template-columns: 1fr;
    }
}

/* ギフトセクション (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .shop-grid03 {
        grid-template-columns: 1fr;
    }
}

/* 商品詳細ページ 
---------------------------------------------------------------*/
/* スマホ対応 */
@media (max-width: 900px) {
    .product-flex-row {
        flex-direction: column;
        align-items: center;
    }
    .product-visual {
        flex: 0 0 auto;
        width: 100%;
        max-width: 450px;
    }
    .main-photo {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    .main-title {
        font-size: 32px;
    }
}
/* カートに入れるボタン 
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .purchase-box {
        padding: 30px 20px;
        width: 95%;
        margin: 30px auto;
        box-sizing: border-box;
    }

    /* --- ラジオボタンエリアの崩れ防止と縦並び設定 --- */
    .radio-container {
        display: flex;
        align-items: flex-start; /* 丸の位置を上端にする */
        gap: 12px;
        margin-bottom: 20px;
    }

    /* 丸の形を死守する */
    .checkmark {
        flex-shrink: 0; /* 絶対に潰さない */
        margin-top: 4px; /* 1行目の文字と高さを合わせる */
        margin-right: 0 !important;
    }

    /* テキスト全体を縦に並べるための設定 */
    .radio-content { /* もしHTMLにこのクラスがない場合は radio-text と radio-note を囲むdivを追加してください */
        display: flex;
        flex-direction: column; /* 縦並びにする */
        gap: 4px; /* 文字と注釈の隙間 */
    }

    .radio-text {
        font-size: 16px;
        display: block; /* 確実に1行占有 */
    }

    .radio-note {
        display: block; /* 確実に改行させる */
        margin-left: 0 !important; /* PC版の横並び用マージンを解除 */
        font-size: 12px;
        color: #666;
        line-height: 1.4;
    }

    /* --- その他セレクトボックスと下部の調整 --- */
    .custom-select, 
    .custom-select.small {
        max-width: 100%;
    }

    .purchase-footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        margin-top: 30px;
    }

    .shipping-info {
        margin-bottom: 5px;
    }

    .total-price-display {
        font-size: 28px;
    }

    .add-to-cart-btn {
        width: 100%;
        max-width: 100%;
        height: 60px;
    }
}

/* Contactページ (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .contact-hero-inner {
        height: 200px;
    }
    
    .contact-hero-title {
        font-size: 28px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .form-item {
        flex-direction: column;
    }
    
    .form-label {
        width: 100%;
        margin-bottom: 10px;
        padding-top: 0;
    }
    
    .form-input textarea {
        height: 200px;
    }
    
    .btn-submit {
        width: 100%;
    }
}

/* カート配送案内 (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .cart-delivery-note {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .delivery-icon {
        margin-bottom: 15px;
    }
    
    .delivery-text {
        text-align: center;
        font-size: 13px;
    }
}

/* フッター (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .footer-inner {
        display: flex;
        flex-wrap: wrap; 
        justify-content: center;
        text-align: left;
        padding: 40px 50px;
    }

    .footer-logo {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .footer-logo img {
        width: 180px;
        height: auto;
    }

    .footer-nav-col {
        flex: 0 0 50%;
        margin: 0;
    }

    .footer-nav li {
        margin-bottom: 25px;
    }
    
    .footer-nav a {
        font-size: 14px;
        font-weight: bold;
    }

    .footer-sns-col {
        flex: 0 0 50%;
        margin: 0;
    }

    .footer-sns {
        margin-bottom: 30px;
    }
    
    .footer-sns p {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 15px;
    }
    
    .sns-icons {
        display: flex;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .sns-square {
        color: #fff;
        font-size: 20px;
    }

    .footer-links a {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .footer-legal {
        margin-top: 30px;
    }
    
    .footer-legal li {
        margin-bottom: 10px;
    }
    
    .footer-legal a {
        font-size: 10px;
        opacity: 0.9;
    }

    .footer-wave-area img {
        margin-top: -30px;
    }
}

/* スマホ専用の表示 (768px以下)
-------------------------------------------------------------- */
@media (max-width: 768px) {
    .u-pc {
        display: none !important;
    }
}

/* PC専用の表示 (769px以上)
-------------------------------------------------------------- */
@media (min-width: 769px) {
    .u-sp {
        display: none !important;
    }
}