/*==================================================
# 基本設定・リセット
==================================================*/
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* スムーズスクロール */
}

body {
    font-family: 'Noto Serif JP', serif;
    color: #333;
    line-height: 1.8;
    margin: 0;
    background-color: #f8f5e9;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

/*==================================================
# ヘッダー
==================================================*/
.site-header {
    background-color: #2a2a2a;
    color: #fff;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    font-family: 'Hina Mincho', serif;
    font-size: 2.2rem;
    margin: 0;
    line-height: 1.2;
}

.site-logo a {
    color: #ddd;
}

.site-logo .small-text {
    font-size: 0.5em; 
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.site-nav a {
    position: relative;
    padding: 5px 0;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #e0b271;
    transition: width 0.3s ease;
}

.site-nav a:hover {
    color: #e0b271;
}

.site-nav a:hover::after {
    width: 100%;
}

.drawer-icon {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 110;
}

.drawer-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.drawer-icon span:nth-child(1) { top: 0; }
.drawer-icon span:nth-child(2) { top: 11px; }
.drawer-icon span:nth-child(3) { top: 22px; }

.drawer-icon.is-active span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
}

.drawer-icon.is-active span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.drawer-icon.is-active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 11px;
}

/*==================================================
# ヒーローセクション
==================================================*/
.hero {
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.hero .hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero .hero-content {
    background-color: #f8f5e9;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.hero-title {
    font-family: 'Hina Mincho', serif;
    font-size: 4.5rem;
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1;
    color: #5d4037;
}

.hero-tagline {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    margin-bottom: 0;
    letter-spacing: 0.1em;
}

/*==================================================
# 各セクション共通
==================================================*/
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Hina Mincho', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: #2a2a2a;
    letter-spacing: 0.05em;
}

.section-title span {
    position: relative;
    padding-bottom: 10px;
}

.section-title span::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #e0b271;
}

/*==================================================
# お店について
==================================================*/
.section-about {
    background-color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-content p {
    margin-bottom: 1.5em;
    font-size: 1.1rem;
}

/*==================================================
# ギャラリー & モーダル（拡大表示）
==================================================*/
.section-gallery {
    background-color: #f2ede4;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #e0b271;
}

/*==================================================
# メニュー（お品書き）スタイル
==================================================*/
.menu-category-section {
    margin-bottom: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.menu-category-title h3 {
    font-family: 'Hina Mincho', serif;
    font-size: 2rem;
    color: #5d4037;
    text-align: center;
    margin-top: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid #5d4037;
    padding-bottom: 10px;
}

.menu-list-two-columns dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    margin: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 15px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 5px;
}

.menu-item dt {
    font-weight: bold;
    color: #333;
    font-size: 1.1rem;
    background-color: #fff;
    padding-right: 10px;
}

.menu-item dd {
    margin: 0;
    text-align: right;
    font-weight: bold;
    color: #5d4037;
    background-color: #fff;
    padding-left: 10px;
}

.bottle-keep {
    margin-top: 20px;
    border-bottom: none;
}
.bottle-keep-note {
    border-bottom: 1px solid #eee; 
}
.bottle-keep-note dt {
    font-weight: normal;
}
.small-text {
    font-size: 0.85rem;
    color: #666;
    margin-left: 1em;
}

.menu-notes {
    margin-top: 40px;
    padding: 20px;
    background-color: #f2ede4;
    border-radius: 5px;
    border-left: 4px solid #5d4037;
}

.menu-notes p {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: #555;
}

/*==================================================
# 店舗情報
==================================================*/
.section-access {
    background-color: #333;
    color: #f0f0f0;
}

.section-access .section-title {
    color: #fff;
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.access-map iframe {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.access-details dl {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px 10px;
    font-size: 1.1rem;
}

.access-details dt {
    text-align: left;
    color: #e0b271; 
}

.access-details dd {
    margin-left: 0;
    text-align: left;
}

/*==================================================
# 新しいアイコンボタンのアニメーション設定
==================================================*/
.access-buttons {
    display: flex;
    flex-wrap: wrap; 
    gap: 15px;      
    margin-top: 20px;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    height: 50px;
    border-radius: 25px; /* 丸い形に */
    padding: 0;
    width: 50px; /* 初期状態の幅 */
    overflow: hidden; /* はみ出た文字を隠す */
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.btn-icon i {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0; /* アイコンの大きさを固定 */
}

.btn-icon span {
    white-space: nowrap;
    font-weight: bold;
    font-size: 0.95rem;
    padding-right: 20px; /* テキストの右側に余白を持たせる */
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* PC等、ホバー（マウスを乗せること）ができる環境のみのアニメーション */
@media (hover: hover) {
    .btn-icon:hover {
        width: 230px; /* 文字が見える幅までシュッと広がる */
    }
    .btn-icon:hover span {
        opacity: 1;
        transition-delay: 0.1s; /* 広がってからフワッと文字が出る */
    }
}

/* 各ボタンのカラー */
.btn-hotpepper { background-color: #d92b2b; }
.btn-hotpepper:hover { background-color: #b71c1c; }

.btn-line { background-color: #06C755; }
.btn-line:hover { background-color: #05A546; }

.btn-call { background-color: #e0b271; color: #2a2a2a; }
.btn-call i, .btn-call span { color: #2a2a2a; } /* 電話ボタンは文字色を黒っぽく */
.btn-call:hover { background-color: #c79f5b; }

.btn-sns { background-color: #c13584; }
.btn-sns:hover { background-color: #9c286a; }


/*==================================================
# フッター
==================================================*/
.site-footer {
    background-color: #1a1a1a;
    color: #bbb;
    padding: 40px 0 20px;
    font-size: 0.9rem;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;    
    text-align: center;    
    gap: 20px; 
}

.footer-info .footer-logo {
    font-family: 'Hina Mincho', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 10px;
}

.footer-info p {
    text-align: center; 
    margin-bottom: 5px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/*==================================================
# レスポンシブデザイン（スマホ対応）
==================================================*/

@media (max-width: 992px) {
    .site-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
    }
    .site-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .site-nav a {
        font-size: 1.5rem;
        padding: 10px 0;
    }
    .drawer-icon {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .menu-list-two-columns dl {
        grid-template-columns: 1fr;
    }

    .access-content {
        grid-template-columns: 1fr;
    }
    
    .access-details {
        text-align: center;
    }
    
    .access-buttons {
        justify-content: center;
    }

    .site-footer .container {
        flex-direction: column;
        align-items: center; 
        text-align: center;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .about-content p br {
        display: none; 
    }
}

@media screen and (max-width: 600px) {
    .container {
        width: 95%;
        margin: 0 auto;
    }

    body {
        font-size: 14px;
    }

    .menu-category-section {
        padding: 15px; 
    }

    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }
    
    /* スマホはホバー（カーソルを乗せる）ができないため、
       丸いアイコンが4つ綺麗に並ぶアプリ風のデザインにします。
       タップした瞬間に少し凹むアニメーションをつけています。 */
    .access-buttons {
        gap: 12px;
    }
    
    .btn-icon:active {
        transform: scale(0.9);
        transition: transform 0.1s;
    }
}