@charset "UTF-8";

:root {
    /* カラーパレット: 少し落ち着いたトーンに調整 */
    --main-bg: #fdfcfae8;    /* ほぼ白に近い温かみのある背景 */
    --accent-color: #a67c52; /* 上品なキャメルブラウン */
    --text-main: #2c2c2c;    /* 真っ黒ではないスミ色 */
    --text-sub: #6e6e6e;     /* グレー */
    --line-color: #e0e0e0;
    --font-en: 'Cinzel', serif;
    --font-jp: 'Noto Serif JP', serif;
}

/* ==========================================
   Base Style
   ========================================== */
body {
    font-family: var(--font-jp);
    background-color: var(--main-bg);
    color: var(--text-main);
    line-height: 2.2; /* 行間を広げてゆったりと */
    margin: 0;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.05em; /* 文字間隔を少し開ける */
}

.container {
    max-width: 1000px; /* 少し幅を狭めて上品に */
    margin: 0 auto;
    padding: 0 5%;
}

img { width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.7; }

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.2, 1, 0.3, 1), transform 1s cubic-bezier(0.2, 1, 0.3, 1);
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Header
   ========================================== */
header {
    background-color: rgba(253, 252, 250, 0.85);
    backdrop-filter: blur(10px); /* すりガラス効果 */
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-en);
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: var(--text-main);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    font-family: var(--font-en);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    position: relative;
}

/* ナビゲーションの下線アニメーション */
nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--accent-color);
    transition: 0.3s;
}
nav a:hover { color: var(--accent-color); }
nav a:hover::after { width: 100%; }

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    height: 90vh; /* 画面いっぱいに */
    background: url('https://images.unsplash.com/photo-1497935586351-b67a49e012bf?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* 画像を少し暗くして文字を読みやすく */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

.hero h2 {
    position: relative;
    color: #fff;
    font-family: var(--font-jp);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    writing-mode: vertical-rl; /* 縦書きで和のモダンさを演出 */
    text-orientation: upright;
    margin: 0;
    height: auto;
}

/* ==========================================
   Section Common
   ========================================== */
section {
    padding: 20px 0; /* ゆったりとした余白 */
}

.section-title {
    font-family: var(--font-en);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-main);
    letter-spacing: 0.15em;
    font-weight: 400;
}

/* ==========================================
   Concept
   ========================================== */
.concept-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* 画像を少し大きく */
    gap: 80px;
    align-items: center;
}

.concept-img img {
    border-radius: 2px;
    box-shadow: 20px 20px 0px rgba(166, 124, 82, 0.1); /* 影ではなく「ズレ」でお洒落に */
}

.concept-text p {
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: var(--text-sub);
    text-align: justify;
}

/* ==========================================
   News List
   ========================================== */
.news-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.news-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
    border-top: 1px solid var(--line-color);
}

.news-list li {
    border-bottom: 1px solid var(--line-color);
    padding: 20px 0;
    display: flex;
    align-items: baseline;
    gap: 25px;
    transition: background 0.3s;
}

.news-list li:hover {
    background: rgba(255,255,255,0.5);
}

.news-list .date {
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--text-sub);
    min-width: 90px;
}

/* カテゴリーバッジ：ミニマルに */
.news-list .category {
    font-size: 0.65rem;
    padding: 4px 12px;
    border: 1px solid var(--text-sub);
    color: var(--text-sub);
    border-radius: 50px; /* 丸く */
    min-width: 60px;
    text-align: center;
    background: transparent; /* 背景色なしで線のみ */
    letter-spacing: 0.05em;
}

/* カテゴリーごとの文字色 */
.category.info { border-color: #7a8d91; color: #7a8d91; }
.category.menu { border-color: #b58b4c; color: #b58b4c; }
.category.coffee { border-color: #6f4e37; color: #6f4e37; }
.category.event { border-color: #5d7599; color: #5d7599; }

.news-list a {
    color: var(--text-main);
    font-weight: 500;
    flex: 1;
}

/* View All Button */
.news-btn-area { text-align: center; }

.btn-more {
    display: inline-block;
    padding: 15px 50px;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    font-family: var(--font-en);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    background: transparent;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.btn-more:hover {
    color: #fff;
    background: var(--text-main);
}

/* ==========================================
   Menu Grid (Modern)
   ========================================== */
.menu-section { margin-bottom: 80px; }

.category-title {
    font-family: var(--font-en);
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 40px;
    border-bottom: none; /* 下線を消す */
    padding-left: 20px;
    border-left: 3px solid var(--accent-color); /* 左線に変更 */
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 40px;
    row-gap: 60px; /* 縦の間隔を広めに */
}

.menu-card {
    background: transparent; /* 背景をなくす */
    box-shadow: none; /* 影もなくす */
    border-radius: 0;
}

.menu-card-img img {
    /* ★ここを追加：変化（transform）を0.5秒かけて滑らかに行う設定 */
    transition: transform 0.5s ease; 
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.1); /* 拡大率をアップ */
}

.menu-card-img {
    height: 200px; /* 少し縦長に */
    margin-bottom: 20px;
    border-radius: 4px; /* 画像の角だけ少し丸く */
    overflow: hidden;
    position: relative;
}

/* 価格とタイトルを洗練 */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--line-color);
    padding-bottom: 5px;
}

.menu-card-info { padding: 0; /* 余白なし */ }

.menu-card-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    border: none;
    padding: 0;
}

.menu-card-info .price {
    font-family: var(--font-en);
    font-size: 1rem;
    color: var(--accent-color);
}

.menu-card-info .desc {
    font-size: 0.8rem;
    line-height: 1.6;
    color: var(--text-sub);
    margin-bottom: 15px;
}

.menu-tags span {
    font-size: 0.65rem;
    padding: 3px 8px;
    background: #f0f0f0;
    color: #666;
    margin-right: 5px;
    border-radius: 2px;
    border: none;
}

/* ==========================================
   Access Page
   ========================================== */
.access-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.access-info {
    flex: 1;
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* 淡い影 */
}

.info-item h3 {
    font-size: 0.9rem;
    color: var(--accent-color);
    border: none;
    padding: 0;
    margin-bottom: 5px;
    opacity: 0.8;
}

.info-item p {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0;
}
.info-item { margin-bottom: 30px; }

.access-map {
    flex: 1.5;
    height: 500px; /* マップを大きく */
}

.access-map iframe {
    filter: grayscale(100%); /* 地図をモノクロにしてサイトに馴染ませる */
    transition: filter 0.5s;
}
.access-map:hover iframe { filter: grayscale(0%); }

/* ==========================================
   Footer
   ========================================== */
footer {
    background: #222;
    color: #fff;
    padding: 80px 0;
    margin-top: 100px;
}

footer p {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 20px;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 768px) {
    .hero h2 { writing-mode: horizontal-tb; /* スマホは横書きに戻す */ }
    .concept-grid { grid-template-columns: 1fr; gap: 40px; }
    .header-inner { flex-direction: column; gap: 15px; }
    .access-wrapper { flex-direction: column; }
    .access-map { width: 100%; height: 300px; }
    section { padding: 60px 0; }
}

/* ▼ @mediaの【手前】にこれを追加 ▼ */
/* ==========================================
   Hamburger Menu
   ========================================== */
.hamburger {
    display: none; /* PCでは非表示 */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* メニューより前面に出す */
}

.hamburger span {
    display: block;
    width: 25px;
    height: 1px; /* 極細ラインで洗練さを出す */
    background-color: var(--text-main);
    transition: all 0.4s ease;
}

.hamburger span:nth-of-type(2) { margin: 6px 0; }
/* ▲ 追加ここまで ▲ */


/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 768px) {
    .hero h2 { writing-mode: horizontal-tb; }
    .concept-grid { grid-template-columns: 1fr; gap: 40px; }
    
    /* ▼ 既存の .header-inner を以下の1行に書き換えてください（縦並びの解除） ▼ */
    .header-inner { flex-direction: row; } 
    
    .access-wrapper { flex-direction: column; }
    .access-map { width: 100%; height: 300px; }
    section { padding: 60px 0; }

    /* ▼ 以下を @media の中にすべて追加 ▼ */
    .hamburger {
        display: block; /* スマホでボタンを表示 */
        position: relative;
    }

    /* スマホ時のメニュー本体のスタイル（全画面すりガラス） */
    nav#nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(253, 252, 250, 0.95);
        backdrop-filter: blur(15px);
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 1000;
    }

    nav#nav.open {
        opacity: 1;
        visibility: visible;
    }

    nav#nav ul {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    nav#nav a {
        font-size: 1.2rem;
    }

    /* ボタンがクリックされた時の「×」アニメーション */
    .hamburger.open span:nth-of-type(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger.open span:nth-of-type(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-of-type(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}