/* ====================================================== */
/* 共通スタイル・ユーティリティ */
/* ====================================================== */

/* 外部フォントのインポート */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Great+Vibes&family=Noto+Serif+JP:wght@400;700&family=Luckiest+Guy&family=Bangers&family=Carter+One&display=swap');

/* box-sizingを全要素に適用 */
*, *::before, *::after {
    box-sizing: border-box;
}

/* HTML & Body: 基本設定（PCデフォルト） */
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Sawarabi Mincho', 'Noto Serif JP', serif;
    background: #2a0a2a; /* 背景色 */
    color: #e0d0e0; /* 基本文字色 */
    text-align: center;
    overflow-x: hidden;
    font-size: 18px; /* PC基本フォントサイズ */
    line-height: 1.8;
}

/* 背景パターン */
body {
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%232a0a2a" fill-opacity="0.4"%3E%3Cpath d="M12 0h12L0 36v12l24 12h12L24 24V12L0 0zM60 12v12L36 60H24L48 36V24L60 12z"/%3E%3C/g%3E%3C/svg%3E');
    background-attachment: fixed;
}


header{
  margin-top: 100px;
}

/* 画像、リスト、リンクの基本設定 */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ラッパー: コンテンツ中央寄せと最大幅 */
.wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    text-align: center;
    padding: 0 20px;
}

/* 応答性の高い全幅画像 */
.responsive-full {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.responsive-full img {
    width: 100%;
    height: auto;
    filter: brightness(0.8) contrast(1.1);
    margin-bottom: 10%;
    display: block;
}

/* ボタンの共通スタイル */
.btn {
    display: inline-block;
    background-color: #FFBF00;
    color: #fff8dc;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FFBF00;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 20px;
    text-align: center;
}

.btn:hover {
    background-color: #5d0000;
    transform: translateY(-3px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 215, 0, 0.4);
}

/* ユーティリティクラス */
.right-align {
    padding: 3% 0;
    /* PCでは右寄せ */
}
.answer {
    text-align: left;
}


/* ====================================================== */
/* タイトル・フォントスタイル */
/* ====================================================== */

/* h1: サイトロゴ/タイトル（ロゴ画像がない場合の代替） */
h1 {
    /* *** ここから修正/調整 *** */
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%; /* 中央寄せを確実にするため追加 */
    max-width: 1200px; /* 親要素の幅に合わせるため追加 */
    margin: 0 auto; /* 中央寄せを確実にするため追加 */
    /* *** ここまで修正/調整 *** */
    
    font-family: 'Cinzel', serif;
    font-size: 1.8rem; /* PC設定を優先 */
    color: #fff8dc;
    letter-spacing: 0.03em;
}

/* h2: セクションタイトル（共通スタイル） */
h2 {
    text-align: center;
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem; /* PC設定を優先 */
    color: #fff8dc;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7), 0 0 5px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    text-transform: none;
    position: relative;
    display: inline-block;
    padding: 10% 1rem;
}

/* h2: 飾り線 */
h2::before, h2::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 2px;
    background: #b8860b;
    box-shadow: 0 0 5px rgba(184, 134, 11, 0.6);
    width: clamp(40px, 15vw, 100px);
}

h2::before {
    left: 0;
    transform: translate(-100%, -50%);
}

h2::after {
    right: 0;
    transform: translate(100%, -50%);
}

/* h3: サブタイトル (ギフトセクションで使用) */
.gift-column h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #ffd700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

/* ハロウィン用タイトル (Luckiest Guy) */
.halloween-title {
    line-height: 1em;
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(1rem, 10vw, 3rem);
    color: #ff6600;
    text-shadow: 3px 3px 8px #000;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
}

/* ハロウィン用サブタイトル (Great Vibes) */
.halloween-subtitle {
    text-align: center;
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: #fff8dc;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7), 0 0 5px rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
    text-transform: none;
    position: relative;
    display: inline-block;
    padding: 0 1rem;
    margin: 10% auto;
}

/* ハロウィン用本文 (Carter One) */
.halloween-text {
    font-family: 'Carter One', cursive;
    font-size: clamp(1rem, 4vw, 1.2rem);
    color: #fff;
    text-align: center;
}
.halloween-story {
    padding: 3%;
}
.Halloween-wain {
    text-align: center;
    font-size: 1em;
}


/* ====================================================== */
/* ロゴ・ナビゲーション */
/* ====================================================== */

.main-logo {
    /* 画面に固定（スライダーの影響を受けなくなる）*/
    position: fixed; 
    
    top: 0; 
    
    /* 左寄せの設定 */
    left: 0;        /* 画面の左端に合わせる */
    right: auto;    /* 右側の位置指定を無効化 */
    transform: none; /* 他の要素の影響を完全に解除 */
    
    /* 左端からの見栄えのための余白 */
    padding-left: 20px; 
    
    /* 常に手前に表示 */
    z-index: 1000; 
    
    /* もともとのbottom paddingは残す */
    padding-bottom: 50px; 
}

/* PC用ナビゲーション */
.main-nav {
    display: none; /* モバイルでは非表示 */
}
.main-nav a {
    color: #E0D0E0;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.main-nav a:hover {
    color: #ffd700;
    font-size: 1.1rem;
}


/* モバイルメニューアイコン (ハンバーガー) はレスポンシブセクションへ移動 */
/* モバイルメニュー本体はレスポンシブセクションへ移動 */


/* ====================================================== */
/* ヒーローセクション */
/* ====================================================== */
.main-visual {
    width: 100%;
    height: auto;
    padding-top: 100px;
}

.main-visual-text {
    flex: 0 1 35%;
    width: auto;
    max-width: 90%;
    padding: 0 5%;
    text-align: center;
    z-index: 5;
    order: 1;
    margin: 100px auto 0 auto;
}

.main-slider-right {
    flex: 1 1 65%;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
    margin: 10% auto;
}

.main-slider-container {
    position: relative;
    width: 900px;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 枠画像 */
.main-visual-waku {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}
.main-visual-waku-img {
    width: 110%;
    height: auto;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

/* スライダー本体 */
.main-slider {
    position: absolute;
    width: 75%;
    height: 75%;
    top: 55%;
    left: 52%;
    transform: translate(-50%, -50%);
    z-index: 1;
    overflow: hidden;
}

.main-slider .slider-item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.main-slider .slider-item img {
    max-width: 100%;
    height: auto;
}


/* ====================================================== */
/* 商品リストセクション */
/* ====================================================== */
.products-container {
    padding: 80px 0;
}
.new-product {
    padding-bottom: 60px;
    margin: 0 auto;
}
.new-product > p {
    margin-bottom: 40px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0d0e0;
}

/* 商品リストコンテナ (PC: 複数列、モバイル: グリッドで1列) */
.product-list,
.jack-dokuro ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px; /* カード同士のPCでの隙間 */
    padding: 0;
    margin: 0;
    list-style: none;
}
#beer ul,
#sweet ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px; /* カード同士のPCでの隙間 */
    padding: 0;
    margin: 0;
    list-style: none;
}

/* 商品カード */
.product-card {
    margin: 20px auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255, 215, 0, 0.2);
    width: 100%;
    max-width: 350px;
    background-color: #2a0a2a;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    background-image: url('data:image/svg+xml,%3Csvg width="6" height="6" viewBox="0 0 6 6" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%233a0a3a" fill-opacity="0.2"%3E%3Cpath d="M3 0L6 3L3 6L0 3Z"/%3E%3C/g%3E%3C/svg%3E');
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    pointer-events: none;
    box-sizing: border-box;
    opacity: 0.7;
    display: flex;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}
.product-card.glow {
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
    transform: scale(1.02);
    transition: box-shadow 0.5s, transform 0.5s;
}

.product-card img.product-image {
    width: 100%;
    height: 100%;
    display: block;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
    object-fit: cover;
}

.product-card:hover img.product-image {
    filter: brightness(1);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff8dc;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-price-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.free-shipping {
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
    background-color: #8b0000;
    padding: 5px 8px;
    border-radius: 3px;
    line-height: 1;
    border: 1px solid #b8860b;
    box-shadow: 0 0 5px rgba(184, 134, 11, 0.4);
}

.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff8dc;
}

.price strong {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff8dc;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.1em;
}


/* ====================================================== */
/* ギフト・アコーディオンセクション */
/* ====================================================== */

/* ギフト情報カードコンテナ */
.gift-info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* ギフトカード */
.gift-card {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    background-color: #2a0a2a;
    border-radius: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255, 215, 0, 0.2);
    border: 1px solid #8b0000;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    background-image: url('data:image/svg+xml,%3Csvg width="6" height="6" viewBox="0 0 6 6" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%233a0a3a" fill-opacity="0.2"%3E%3Cpath d="M3 0L6 3L3 6L0 3Z"/%3E%3C/g%3E%3C/svg%3E');
}

.gift-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px double #b8860b;
    border-radius: 18px;
    pointer-events: none;
    box-sizing: border-box;
    opacity: 0.7;
}

.gift-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.gift-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffd700;
    border-bottom: 2px solid #8b0000;
    padding-bottom: 10px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.gift-card-text {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    color: #e0d0e0;
}

/* アコーディオンと説明文のコンテナ (PCで左右配置) */
.gift-column {
    padding: 60px 0;
}
.gift-column p {
    color: #e0d0e0;
    margin-bottom: 3rem;
}

/* アコーディオン全体のカードスタイル */
.accordion {
    margin-bottom: 10px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(255, 215, 0, 0.2);
    background-color: #2a0a2a;
    border: 1px solid #8b0000;
    position: relative;
    background-image: url('data:image/svg+xml,%3Csvg width="6" height="6" viewBox="0 0 6 6" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%233a0a3a" fill-opacity="0.2"%3E%3Cpath d="M3 0L6 3L3 6L0 3Z"/%3E%3C/g%3E%3C/svg%3E');
}

.accordion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px double #b8860b;
    border-radius: 18px;
    pointer-events: none;
    box-sizing: border-box;
    opacity: 0.7;
}

.accordion:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

/* アコーディオンのボタン部分 */
.accordion-header {
    width: 100%;
    background: transparent;
    color: #fff8dc;
    text-align: left;
    padding: 15px 15px 15px 40px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    font-family: 'Noto Serif JP', serif;
}

.accordion-header:hover {
    background: #3a0a3a;
}

.accordion-header .symbol {
    color: #ffd700;
}

/* アコーディオンの本文部分 */
.accordion-body {
    padding: 15px;
    display: none;
    color: #e0d0e0;
    background: #2a0a2a;
    border-top: 1px solid #8b0000;
}


/* ====================================================== */
/* product.html 用ヒーローとストーリー */
/* ====================================================== */
.hero-wrapper {
    padding-top: 5%;
}

.hero-header {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 常に2列で表示されるグリッドデザイン (PC) */
.main-visual-grid {
    margin-top: 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.grid-item {
    flex: 1 1 calc(50% - 20px);
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.grid-item:hover {
    transform: scale(1.1); /* PCホバーサイズを優先 */
    z-index: 10;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ストーリーセクション */
.story-section {
    max-width: 1000px;
    margin: 5% auto;
    padding: 0 20px;
}
.story-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}
.story-image {
    flex: 0 0 45%;
}
.story-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.story-content {
    flex: 1;
}
.story-content h3 {
    font-size: 1.5em;
    color: #ffd700;
    margin: 5% auto 10% auto;
    text-align: center;
}
.story-content p {
    line-height: 1.7;
    text-align: left;
}
.story-right {
    flex-direction: row-reverse;
}
.story-left .story-image {
    flex: 0 0 30%;
}
.story-right .story-image {
    flex: 0 0 60%;
}
.product-teaser-item img {
    width: 400px;
    margin-top: 10%;
}


/* ====================================================== */
/* バナー/スライダー */
/* ====================================================== */
.banner-wrapper {
    max-width: 1000px;
    margin: 10% auto;
}
.banner-track {
    display: block !important;
    margin-top: 1.5rem;
}
.banner-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.slick-track {
    display: flex !important;
}
.slick-slide {
    margin: 0 !important;
}
.slick-slide img {
    width: 100%;
    display: block;
}


/* ====================================================== */
/* フッター */
/* ====================================================== */
#footer {
    background-color: #1a051a;
    color: #e0d0e0;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 2px solid #8b0000;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.6);
}

#footer .wrap {
    display: flex;
    flex-direction: column; /* モバイルデフォルト */
    gap: 40px;
    padding: 0 25px;
    max-width: 1200px;
    margin: 0 auto;
}

#footer .box {
    text-align: left;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

#footer h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #b8860b;
    padding-bottom: 5px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#footer li, #footer address, #footer .mail {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #e0d0e0;
}

#footer a {
    color: #b8860b;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #d4af37;
}

.footer-logo-link {
    display: block;
    margin-top: 40px;
}

.footer-logo-link img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.7));
}

/* トップへ戻るボタン */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(139, 0, 0, 0.7);
    color: #fff8dc;
    padding: 12px 18px;
    border-radius: 50%;
    font-size: 1.6rem;
    text-align: center;
    z-index: 998;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
    background-color: #8b0000;
    transform: translateY(-5px);
}
@media screen and (min-width: 767px) {
.mobile-menu ul, .close-btn{
  display: none;
}
}

/* ====================================================== */
/* レスポンシブデザイン (スマートフォン 〜767px) */
/* ====================================================== */
@media screen and (max-width: 767px) {
    /* 基本フォントサイズ・行間 */
    body {
        font-size: 14px;
        line-height: 1.6;
    }

    /* タイトルサイズ調整 */
    h1 {
        font-size: 1em;
        top: -50px;
    }
    h2, .title h2, .gift-column h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
        margin: 15% auto;
        display: block !important;
    }
    .halloween-subtitle {
        line-height: 1em;
        font-size: 1.5rem;
        margin: 5% auto;
    }
    .halloween-title {
        white-space: nowrap;
    }
    p {
        font-size: 1rem;
    }

    /* ハンバーガーメニューアイコン */
    .hamburger-menu {
        display: block;
        position: fixed;
        top: 25px;
        right: 25px;
        z-index: 1000;
        cursor: pointer;
        width: 35px;
        height: 25px;
        transition: transform 0.3s ease;
    }
    .hamburger-menu span {
        display: block;
        height: 3px;
        background-color: #b8860b;
        margin: 6px 0;
        transition: all 0.3s ease;
        border-radius: 1px;
    }
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .main-nav {
        display: none !important;
    }
    
    /* モバイルメニュー本体 */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100%;
        background-color: #2a0a2a;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.9);
        transition: right 0.4s ease-in-out;
        z-index: 1500;
        padding-top: 80px;
    }
    .mobile-menu.open {
        right: 0;
    }
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        gap: 1.8rem;
        text-align: center;
    }
    .mobile-menu li a {
        display: block;
        padding: 15px;
        font-size: 1rem;
        color: #fff8dc;
        border: 1px solid #b8860b;
        box-shadow: 0 0 8px rgba(184, 134, 11, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin: 0 25px;
    }
    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #b8860b;
        /* 既存のスタイル */
    position: absolute;
    top: 20px;
    right: 20px;
    /* ... 略 ... */
    
    /* 💥 追加するコード 💥 */
    z-index: 9999; /* 非常に高い値を設定して最前面に */
        
    }


    /* ヒーローセクション */
    .main-visual {
        flex-direction: column;
        height: auto;
        padding: 0;
        margin: 0 auto;
        width: 100%;
    }
    .main-visual-text {
        order: 2;
        width: auto;
        max-width: 90%;
        padding: 0 15px;
        margin: 1% auto;
    }
    .main-slider-right {
        order: 1;
        width: 100%;
        height: auto;
        margin: 10% auto;
        padding: 0;
    }
    .main-slider-container {
        width: 100%;
        max-width: 400px;
        margin-top: 20%;
    }
    .main-visual-waku {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }
    .main-visual-waku-img {
        width: 100%;
        margin: 0 auto;
    }
    .main-slider .slider-item img {
        width: 90%;
        height: 90%;
        padding-top: 8%;
    }
    .main-logo {
        position: fixed;
        top: 20px;
        left: 20px;
        width: clamp(100px, 20vw, 150px);
        height: auto;
        z-index: 10;
        filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
    }
    
    /* 商品カード・その他 */
    .product-list, .gift-info-container, .card-row {
        flex-direction: column;
        align-items: center;
        gap: 20px; /* PCの100pxを上書き */
    }
    .product-list li {
        width: 100%;
        margin-bottom: 20px;
    }
    .product-card, .gift-card {
        max-width: 100%;
    }
    .gift-column h3 {
        text-align: center;
    }
    .btn {
        margin: 0 auto;
        font-size: 1rem;
        padding: 12px 25px;
        display: block;
        text-align: center;
    }
    .btn.right-align {
        margin-left: auto;
    }
    .right-align {
        text-align: center;
    }

    /* product.html ヒーローグリッド */
    .hero-header {
        height: auto;
    }
    .grid-item {
        flex: 1 1 100%;
        max-width: none;
    }
    .main-visual-grid .grid-item:not(:first-child) {
        display: none;
    }
    /* ストーリーセクション */
    .story-item {
        flex-direction: column;
        gap: 20px;
    }
    .story-image,
    .story-left .story-image,
    .story-right .story-image {
        flex: none;
        width: 100%;
    }
    .product-teaser-story{
        text-align: left;
        padding: 5% 3%;
    }
    /* バナー */
    .banner-wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .banner-wrapper img {
        margin: 0 auto;
    }
}


/* ====================================================== */
/* レスポンシブデザイン (PC 768px〜) */
/* ====================================================== */
@media (min-width: 768px) {
    /* PC用ナビゲーションを表示・固定 */
    .main-nav {
        display: block;
        position: sticky;
        top: 0;
        z-index: 900;
        background-color: #2a0a2a;
        border-bottom: 1px solid #b8860b;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    .main-nav ul {
        display: flex;
        justify-content: center;
        gap: 2.5rem;
    }

    /* ヒーローセクションレイアウト */
    .main-visual {
        max-width: 1980px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        background-color: #2a0a2a;
        overflow: hidden;
        position: relative;
        padding-top: 0; /* PCではナビゲーション固定のため不要 */
    }
    .main-visual-text {
        flex: 1 1 30%;
        max-width: 400px;
        padding: 0 15px;
        text-align: left;
        margin: 0;
    }
    .main-slider-right {
        flex: 1 1 50%;
        margin: 10% 0;
    }
    .main-logo {
        position: absolute;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding-bottom: 0;
        margin: 0 auto;
        width: auto;
    }
    
    /* 商品リスト */
    #beer ul,
    #sweet ul {
        grid-template-columns: 1fr 1fr; /* 2列表示 */
    }
    .product-list, .gift-info-container {
        flex-wrap: nowrap;
        gap: 100px; /* product-listのPC隙間を維持 */
    }
    .product-card {
        flex: 1 1 calc(33.333% - 20px);
    }
    .gift-card {
        flex: 1 1 calc(25% - 22.5px);
    }

    /* ギフトセクション (左右レイアウト) */
    .gift-column {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 15px;
    }
    .gift-column h3 {
        margin-top: 0;
    }
    .accordion-container {
        flex: 1 1 60%;
    }

    /* フッター */
    #footer .wrap {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
    }
    #footer .box {
        width: auto;
        margin: 0;
    }

    
/* #beer と #sweet セクション内のリストアイテム（<li>）に適用 */
#beer ul li, 
#sweet ul li {
    /* 左右の余白（マージン）を強制的に小さくする */
    margin-left: 5px !important;  
    margin-right: 5px !important; 
    
    /* 上下の余白も強制的に調整したい場合は、以下も追加 */
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    
    /* 🚨 2列表示で幅が固定されている場合、幅も調整が必要な可能性あり 🚨 */
    /* widthプロパティが設定されている場合は、以下のコードで上書きを試す */
    /* width: calc(50% - 10px) !important; */
}

/* 補足：親要素のパディングも念のため調整 */
#beer ul, 
#sweet ul {
    /* 親要素の左右の不要な余白を強制的にゼロに近づける */
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* リンク貼ってあるテキスト */
/* 1. 何もしない状態（デフォルト）: オレンジの波線下線を表示 */
.sweet-link {
    /* 下線の設定: 波線、太さ2px、カラーコード #ff8c00 を強制適用 */
    text-decoration: underline wavy 2px #ff8c00 !important; 
    
    /* ホバー時の色の変化を滑らかにする設定 (お好みで追加) */
    transition: text-decoration-color 0.3s ease; 
}

/* 2. ホバー時: 下線の色を #e67e00 (濃いオレンジ) に変更 */
.sweet-link:hover {
    /* 下線全体を再定義し、色のみを #e67e00 に変更して強制適用 */
    text-decoration: underline wavy 2px #800080 !important; 
}
 