@charset "UTF-8";

:root {
    --bg-color: #1a1a1a;       /* 漆黒に近いグレー */
    --text-color: #e5e5e5;     /* 白すぎない白 */
    --accent-color: #c0a062;   /* 渋いゴールド */
    --font-en: 'Cormorant Garamond', serif; /* エレガントな英字 */
    --font-jp: 'Zen Old Mincho', serif;     /* 繊細な明朝体 */
}

/* Base */
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-jp);
    line-height: 2;
    letter-spacing: 0.08em;
}

img { width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Layout Structure */
.wrapper {
    display: flex;
    min-height: 100vh;
}

/* --- Left Side Navigation (PC) --- */
.side-nav {
    width: 280px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 60px 40px;
    box-sizing: border-box;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--bg-color);
    z-index: 100;
}

.logo {
    font-family: var(--font-en);
    font-size: 2.5rem;
    line-height: 0.9;
    letter-spacing: 0.05em;
    font-weight: 400;
}
.logo span { font-size: 1.2rem; display: block; margin-bottom: 5px; color: var(--accent-color); }

.side-nav nav ul {
    list-style: none;
    padding: 0;
    margin: 60px 0;
}

.side-nav nav li { margin-bottom: 25px; }

.side-nav nav a {
    font-family: var(--font-en);
    font-size: 1.2rem;
    opacity: 0.5;
    position: relative;
}

.side-nav nav a:hover,
.side-nav nav a.active {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 10px; /* ホバーで少し右へ動く */
}

.nav-footer {
    font-size: 0.7rem;
    color: #666;
    font-family: var(--font-en);
}

/* --- Main Content Area --- */
.main-content {
    margin-left: 280px; /* ナビゲーション分空ける */
    width: calc(100% - 280px);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-pad { padding: 150px 0; }

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* 画像を暗くする */
}

.hero-text {
    position: absolute;
    bottom: 10%;
    right: 10%;
    text-align: right;
}

.hero-text h2 {
    font-size: 4rem;
    font-family: var(--font-jp);
    font-weight: normal;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.hero-text p {
    font-family: var(--font-en);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Story Section (Vertical Text) */
.story {
    background: linear-gradient(to bottom, var(--bg-color), #222);
}

.vertical-text {
    writing-mode: vertical-rl; /* 縦書き */
    font-size: 1.1rem;
    line-height: 2.5;
    height: 400px;
    margin: 0 auto 100px;
    letter-spacing: 0.2em;
}

.chef-profile {
    display: flex;
    align-items: center;
    gap: 60px;
}

.chef-img { flex: 1; }
.chef-img img { filter: grayscale(100%); transition: 1s; }
.chef-profile:hover .chef-img img { filter: grayscale(0%); }

.chef-info { flex: 1; }
.chef-info h3 {
    font-family: var(--font-en);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 400;
}

/* Philosophy Section */
.two-col {
    display: flex;
    align-items: center;
    gap: 80px;
}

.two-col .text-box { flex: 1; }
.two-col .img-box { flex: 1.2; }

.sub-title {
    color: var(--accent-color);
    font-family: var(--font-en);
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.text-box h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.4;
    font-weight: normal;
}

/* Minimal Button */
.btn-line {
    display: inline-block;
    margin-top: 40px;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 5px;
    font-family: var(--font-en);
    font-size: 1.1rem;
}
.btn-line:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    padding-right: 20px; /* 線が伸びるような動き */
}

/* Footer */
footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 50px;
    text-align: center;
    font-size: 0.8rem;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wrapper { flex-direction: column; }
    
    .side-nav {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }
    
    .side-nav nav ul { margin: 20px 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; }
    .side-nav nav li { margin: 0; }
    .nav-footer { display: none; }
    
    .main-content { margin-left: 0; width: 100%; }
    
    .hero-text h2 { font-size: 2.5rem; }
    .chef-profile, .two-col { flex-direction: column; gap: 40px; }
    .vertical-text { height: auto; writing-mode: horizontal-tb; text-align: center; margin-bottom: 60px; }
}

/* ==========================================
   Menu Page Styles
   ========================================== */

/* Page Header */
.page-header {
    padding: 100px 5% 50px;
    background-color: var(--bg-color);
}

.page-header h2 {
    font-family: var(--font-en);
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
    color: var(--accent-color);
}

.page-header p {
    font-family: var(--font-en);
    font-size: 1rem;
    color: #666;
    letter-spacing: 0.2em;
    margin-top: 10px;
}

/* Background Variant */
.bg-darker {
    background-color: #111; /* 背景色を少し変えてリズムを作る */
}

/* ZigZag Layout */
.zigzag {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* 画像とテキストの比率 */
.zig-img { flex: 1.2; }
.zig-text { flex: 1; }

.zig-img img {
    aspect-ratio: 3/4; /* 縦長の写真で雑誌感を演出 */
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1); /* 少し暗く、コントラストを強く */
}

/* Reverse Layout (Right Image) */
.zigzag.reverse {
    flex-direction: row-reverse; /* 左右反転 */
}

/* Menu Text Styles */
.category-label {
    display: block;
    font-family: var(--font-en);
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.zig-text h3 {
    font-family: var(--font-en);
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Course Specific */
.price {
    font-family: var(--font-en);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.desc {
    color: #999;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.course-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid #333;
    margin-top: 30px;
}

.course-list li {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    font-size: 0.95rem;
    color: #ccc;
}

/* A la carte Items */
.menu-items {
    margin-top: 30px;
}

.item {
    margin-bottom: 30px;
}

.item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.item-head h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
}

.item-price {
    font-family: var(--font-en);
    color: var(--accent-color);
    font-size: 1.1rem;
}

.item-desc {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

/* Mobile Responsive for Menu */
@media (max-width: 768px) {
    .zigzag, .zigzag.reverse {
        flex-direction: column; /* スマホでは縦並び */
        gap: 40px;
    }
    
    .zig-img img {
        aspect-ratio: 16/9; /* スマホでは横長の方が見やすい */
    }
    
    .zig-text h3 { font-size: 2rem; }
}


/* ==========================================
   Wine Page Styles
   ========================================== */

/* Sommelier's Choice Area */
.choice-card {
    display: flex;
    align-items: center;
    gap: 60px;
    border: 1px solid rgba(192, 160, 98, 0.3); /* 薄いゴールドの枠線 */
    padding: 40px;
    position: relative;
}

/* 枠線の装飾（角を二重線っぽくする演出） */
.choice-card::before {
    content: '';
    position: absolute;
    top: 5px; left: 5px; right: 5px; bottom: 5px;
    border: 1px solid rgba(192, 160, 98, 0.1);
    pointer-events: none;
}

.choice-img { flex: 1; max-width: 400px; }
.choice-info { flex: 1; }

.choice-info .label {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    font-size: 0.75rem;
    padding: 3px 10px;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.choice-info h3 {
    font-size: 2.2rem;
    font-family: var(--font-en);
    line-height: 1.1;
    margin-bottom: 20px;
}

.choice-desc {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 30px;
}

.choice-price {
    font-size: 1.2rem;
    font-family: var(--font-en);
    color: var(--accent-color);
}


/* Wine List Layout */
.wine-category {
    margin-bottom: 60px;
}

.wine-category h3 {
    font-family: var(--font-en);
    font-size: 3rem;
    color: var(--accent-color);
    margin: 0;
    line-height: 1;
}

.cat-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
    letter-spacing: 0.2em;
}

.wine-grid {
    display: grid;
    gap: 30px;
}

.wine-row {
    display: grid;
    grid-template-columns: 80px 1fr auto; /* 年代・名前・価格 の配分 */
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    transition: 0.3s;
}

.wine-row:hover {
    border-color: var(--accent-color); /* ホバー時に線がゴールドになる */
    padding-left: 10px; /* 少し右に動く */
}

/* 年代 (Vintage) */
.wine-year {
    font-family: var(--font-en);
    font-size: 1.2rem;
    color: #666;
}

/* ワイン名と産地 */
.wine-details h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: normal;
    font-family: var(--font-en);
    letter-spacing: 0.05em;
}

.wine-details .region {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-top: 5px;
    font-family: var(--font-en);
}

/* 価格 */
.wine-price {
    font-family: var(--font-en);
    font-size: 1.1rem;
    color: var(--accent-color);
}

/* Responsive for Wine Page */
@media (max-width: 768px) {
    .choice-card { flex-direction: column; padding: 20px; }
    .choice-card::before { display: none; }
    
    .wine-row {
        grid-template-columns: 1fr auto; /* スマホでは2列に変更 */
        gap: 5px;
    }
    
    .wine-year {
        grid-column: 1 / -1; /* 年代を1行目に大きく表示 */
        font-size: 0.9rem;
        color: var(--accent-color);
        margin-bottom: 0;
    }
}

/* ==========================================
   Staff / Recruit Page Styles
   ========================================== */

/* Message Section */
.message-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.msg-img { flex: 1; }
.msg-text { flex: 1; }

.msg-img img {
    filter: sepia(20%) contrast(1.1) brightness(0.8); /* 少しフィルム写真のような質感 */
    border-radius: 2px;
}

.msg-text h3 {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 30px;
    font-feature-settings: "palt"; /* 文字詰め */
}

.msg-text p {
    color: #999;
    margin-bottom: 40px;
}

.sign {
    font-family: var(--font-en);
    color: var(--accent-color);
    font-size: 1.1rem;
    display: block;
    text-align: right;
}

/* Positions Section */
.section-head {
    font-family: var(--font-en);
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 80px;
    font-weight: 400;
}

.job-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

.job-card {
    background: rgba(255,255,255,0.02); /* 極めて薄い背景 */
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    transition: 0.3s;
}

.job-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.job-img {
    margin-bottom: 30px;
    height: 250px;
    overflow: hidden;
}

.job-img img {
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.job-card:hover .job-img img {
    transform: scale(1.1);
}

.job-info h4 {
    font-family: var(--font-en);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.job-desc {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Definition List (Requirements) */
.job-req {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.job-req dt {
    font-family: var(--font-en);
    color: var(--accent-color);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.job-req dd {
    margin: 0 0 15px 0;
    font-size: 0.9rem;
}

/* Entry Area */
.entry-area {
    text-align: center;
}

.btn-gold {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    padding: 18px 80px;
    font-family: var(--font-en);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid var(--accent-color);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.entry-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive for Staff Page */
@media (max-width: 768px) {
    .message-grid { flex-direction: column; gap: 40px; }
    .job-grid { grid-template-columns: 1fr; gap: 40px; }
    .btn-gold { width: 100%; box-sizing: border-box; }
}

/* ==========================================
   Access & Reserve Page Styles
   ========================================== */

/* Access Info Grid */
.access-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.access-text { flex: 1; }
.map-area { flex: 1.5; }

.access-text h3 {
    font-family: var(--font-en);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 400;
}

.access-text address {
    font-style: normal;
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 40px;
}

.info-block { margin-bottom: 40px; }

.info-block h4 {
    font-family: var(--font-en);
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: inline-block;
    padding-bottom: 5px;
}

.info-block p { margin: 0; }
.closed { color: #888; font-size: 0.9rem; margin-top: 5px; }


/* Google Map Customization (Dark Mode) */
.map-area iframe {
    /* 地図の色を反転させてダークモード風にする魔法のフィルター */
    filter: grayscale(100%) invert(90%) contrast(85%);
    border-radius: 2px;
    opacity: 0.8;
    transition: 0.5s;
}

.map-area:hover iframe {
    opacity: 1;
    /* ホバー時に少し見やすくする */
    filter: grayscale(100%) invert(90%) contrast(100%);
}


/* Reservation Form */
.reserve-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.reserve-head {
    text-align: center;
    margin-bottom: 60px;
}

.reserve-head h3 {
    font-family: var(--font-en);
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 400;
}

.reserve-form {
    background: rgba(255,255,255,0.02);
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.05);
}

.form-row {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

/* Minimalist Input Styles */
input, select, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444; /* 下線のみ */
    color: var(--text-color);
    font-family: var(--font-jp);
    font-size: 1rem;
    padding: 10px 0;
    transition: 0.3s;
    border-radius: 0; /* スマホでの丸みを除去 */
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color); /* フォーカス時にゴールドに */
}

textarea {
    height: 100px;
    resize: none;
}

/* Submit Button */
.form-submit {
    text-align: center;
    margin-top: 60px;
}

.btn-submit {
    background-color: var(--accent-color);
    color: #1a1a1a;
    border: none;
    padding: 15px 80px;
    font-family: var(--font-en);
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.4s;
    letter-spacing: 0.1em;
}

.btn-submit:hover {
    background-color: #fff;
    color: #000;
}

/* Responsive for Access Page */
@media (max-width: 768px) {
    .access-grid { flex-direction: column; gap: 40px; }
    .map-area { width: 100%; height: 300px; }
    
    .reserve-form { padding: 30px; }
    .form-row { flex-direction: column; gap: 30px; margin-bottom: 30px; }
    .btn-submit { width: 100%; }
}
/* ==========================================
   Hamburger Menu & Mobile Header (修正版)
   ========================================== */
.hamburger {
    display: none; /* PCでは非表示 */
}

@media (max-width: 768px) {
    /* 既存の中央寄せを左寄せに上書きし、絶対配置の基準にする */
    .side-nav {
        text-align: left !important;
        position: relative; 
    }
    
    /* ロゴを1行にして左側に配置 */
    .logo {
        margin: 0;
        line-height: 1;
        font-size: 1.8rem;
    }
    .logo span {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 8px;
    }
    .logo br {
        display: none;
    }

    /* ▼▼ 修正：ハンバーガーボタンを右端に「絶対配置」で浮かせる ▼▼ */
    .hamburger {
        display: block;
        position: absolute;
        top: 20px; /* .side-nav の上部余白(20px)と高さを合わせる */
        right: 20px; 
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 101;
        outline: none;
    }
    
    .hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: var(--accent-color);
        margin: 6px 0;
        transition: transform 0.3s, opacity 0.3s;
    }

    /* メニューリスト（開閉用） */
    .side-nav nav {
        width: 100%;
        display: none; 
        margin-top: 20px; /* メニューが開いた時のロゴとの余白 */
    }

    .side-nav.is-open nav {
        display: block;
        animation: fadeIn 0.3s ease forwards;
    }

    .side-nav.is-open nav ul {
        flex-direction: column;
        margin: 0;
    }

    /* ×ボタンへの変形アニメーション */
    .side-nav.is-open .hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .side-nav.is-open .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .side-nav.is-open .hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}