/* ------------------------------------------- */
/* 1. リセットCSSとベース設定 */
/* ------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* メインフォント: サンセリフ（ゴシック体）でシンプルに */
    font-family: 'Yu Gothic', 'Noto Sans JP', sans-serif;
    color: #333333; /* 落ち着いたダークグレー */
    line-height: 1.7; /* 読みやすい行間 */
    background-color: #F8F8F8; /* わずかに温かいオフホワイト */
}

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

a:hover {
    color: #9A775C; /* アクセントカラー（ブロンズ系） */
}

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

/* セクション共通設定 */
section {
    padding: 80px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    /* メイン見出しフォント: セリフ（明朝体）で上品に */
    font-family: 'Times New Roman', 'serif';
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    color: #4A4A4A;
    letter-spacing: 0.1em;
}

/* 詳細ボタンのスタイル */
.btn-detail {
    display: block;
    width: 250px;
    margin: 40px auto 0;
    padding: 12px 20px;
    border: 1px solid #9A775C;
    color: #9A775C;
    text-align: center;
    font-size: 0.9rem;
    transition: background-color 0.3s, color 0.3s;
}

.btn-detail:hover {
    background-color: #9A775C;
    color: #FFFFFF;
}

/* ------------------------------------------- */
/* 2. ヘッダー */
/* ------------------------------------------- */
header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #EAEAEA;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Times New Roman', 'serif';
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #333333;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-size: 0.9rem;
}

/* ------------------------------------------- */
/* 3. メインビジュアル (Hero) */
/* ------------------------------------------- */
.hero {
    position: relative;
    height: 70vh; /* 画面の高さの70% */
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をトリミングしつつコンテナにフィット */
    filter: brightness(0.85); /* 落ち着いたトーンにするため少し暗く */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    text-align: center;
    z-index: 10;
}

.hero-text-sub {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.hero-text-main {
    font-family: 'Times New Roman', 'serif';
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.1em;
    /* 月夜のイメージを出すため、フォントに影を薄くつける */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

/* ------------------------------------------- */
/* 4. お店の紹介 (About) */
/* ------------------------------------------- */
.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image, .about-text {
    flex: 1; /* 均等な幅に分割 */
}

.about-image img {
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.about-text p {
    margin-bottom: 20px;
}

/* ------------------------------------------- */
/* 5. おすすめメニュー (Menu) */
/* ------------------------------------------- */
.menu {
    background-color: #EDEDED; /* セクションの切り替えで背景色を変える */
}

.menu-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.menu-item {
    flex: 1;
    background-color: #FFFFFF;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.menu-text {
    padding: 20px;
}

.menu-text h3 {
    font-family: 'Times New Roman', 'serif';
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #9A775C; /* アクセントカラー */
}

/* ------------------------------------------- */
/* 6. ギャラリー (Gallery) */
/* ------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列に分割 */
    gap: 20px;
}

.gallery-item img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* ------------------------------------------- */
/* 7. アクセス (Access) */
/* ------------------------------------------- */
.access {
    background-color: #F8F8F8;
    text-align: center;
}

.access-info {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列レイアウト */
    gap: 40px;
    text-align: left;
}

.store-address, .store-details {
    margin-bottom: 20px;
}

.store-details dt {
    font-weight: bold;
    margin-top: 10px;
    color: #9A775C;
}

.map-placeholder {
    grid-column: 1 / 3; /* 地図は2列分使う */
    height: 350px;
    background-color: #E0E0E0; /* 地図の仮の色 */
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
    color: #666;
}

/* ------------------------------------------- */
/* 8. フッター */
/* ------------------------------------------- */
footer {
    background-color: #4A4A4A; /* 落ち着いたダークトーン */
    color: #FFFFFF;
    padding: 40px 5%;
    text-align: center;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sns-links, .footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.sns-links a, .footer-links a {
    color: #CCCCCC;
    font-size: 0.9rem;
}

.sns-links a:hover, .footer-links a:hover {
    color: #9A775C;
}

.copyright {
    font-size: 0.8rem;
    display: block;
    margin-top: 20px;
    color: #AAAAAA;
}

/* ------------------------------------------- */
/* 9. レスポンシブ対応（モバイル優先）*/
/* ------------------------------------------- */
@media (max-width: 768px) {
    
    .hero {
        height: 50vh;
    }

    .hero-text-main {
        font-size: 2.2rem;
    }

    .about-content {
        flex-direction: column; /* 縦並びにする */
        gap: 30px;
    }
    
    .menu-list {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr; /* 1列にする */
    }

    .access-info {
        grid-template-columns: 1fr; /* 1列にする */
    }
    
    .map-placeholder {
        grid-column: 1 / 2;
    }
    
    .nav-list {
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }
}