@charset "UTF-8";

/* ベース設定 */
:root {
    --text-color: #333;
    --bg-color: #f9f9f9;
    --accent-color: #8e7d58;
    /* 和風の金茶色 */
    --white: #ffffff;
    --font-main: "Shippori Mincho", serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

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

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

a:hover {
    opacity: 0.7;
}

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

/* ヘッダー */
.site-header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.site-logo {
    font-size: 1.5rem;
    margin: 0;
}

.pc-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.btn-res {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 2px;
}

/* ヒーローセクション */
.hero-section {
    position: relative;
    height: 60vh;
    /* 画面の60%の高さ */
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    /* アニメーションなし指定なので固定 */
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    writing-mode: vertical-rl;
    /* 縦書き */
}

.vertical-text {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin: 0;
}

/* セクション共通 */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding-bottom: 10px;
}

/* レイアウト（画像とテキスト） */
.concept-flex,
.menu-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.menu-flex.reverse {
    flex-direction: row-reverse;
}

.text-box {
    flex: 1;
}

.img-box {
    flex: 1;
}

/* ボタン */
.btn-link {
    display: inline-block;
    margin-top: 20px;
    border: 1px solid var(--text-color);
    padding: 10px 30px;
    font-size: 0.9rem;
}

/* 予約エリア */
.info-area {
    background-color: #333;
    color: var(--white);
    text-align: center;
}

.info-box h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.tel {
    font-size: 2rem;
    font-weight: bold;
    margin: 10px 0;
}

.btn-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    display: block;
    padding: 15px 40px;
    color: var(--white);
    border-radius: 4px;
}

.btn-primary {
    background-color: #06c755;
    /* LINE色 */
}

.btn-secondary {
    background-color: var(--accent-color);
}

/* フッター */
.site-footer {
    background: #111;
    color: #888;
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
}

/* スマホ最適化 (Media Query) */
@media screen and (max-width: 768px) {
    .pc-nav {
        display: none;
        /* 簡易化のため非表示。実案件ではハンバーガーメニュー推奨 */
    }

    .hero-section {
        height: 50vh;
    }

    .hero-text {
        padding: 20px;
    }

    .concept-flex,
    .menu-flex,
    .menu-flex.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .section {
        padding: 50px 0;
    }

    .btn-group {
        flex-direction: column;
    }
}

/* --- 追加CSS (menu.html, access.html用) --- */

/* 下層ページヘッダー */
.sub-hero {
    background-color: #333;
    /* 写真背景に変えてもOK */
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.sub-title {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}

/* メニューリスト */
.menu-item {
    margin-bottom: 30px;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 20px;
}

.menu-item h3 {
    font-size: 1.3rem;
    margin: 0 0 10px 0;
    color: var(--accent-color);
}

.menu-item .price {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.menu-item .desc {
    font-size: 0.9rem;
    color: #666;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px dotted #ddd;
    padding-bottom: 5px;
}

.menu-list .dots {
    flex: 1;
    margin: 0 10px;
    color: #ccc;
    overflow: hidden;
    white-space: nowrap;
}

.drink-list dl {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.drink-list dt {
    width: 20%;
    font-weight: bold;
    color: var(--accent-color);
}

.drink-list dd {
    width: 80%;
    margin: 0;
    padding-bottom: 5px;
}

/* 店舗情報テーブル */
.access-grid {
    display: flex;
    gap: 40px;
}

.photo-area {
    flex: 1;
}

.info-table-area {
    flex: 1;
}

.shop-table {
    width: 100%;
    border-collapse: collapse;
}

.shop-table th,
.shop-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.shop-table th {
    width: 30%;
    background-color: #f4f4f4;
    font-weight: normal;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.text-center {
    text-align: center;
}

.caption {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.bg-gray {
    background-color: #f5f5f5;
}

/* スマホ対応の追加 */
@media screen and (max-width: 768px) {
    .access-grid {
        flex-direction: column;
    }

    .drink-list dt,
    .drink-list dd {
        width: 100%;
    }

    .drink-list dt {
        margin-bottom: 5px;
    }
}