.hero-image img {
    filter: none;
}

/* ===============================================
   1. 基本設定 & ヘッダー (和酒Pub 専用アレンジ)
   =============================================== */

/* ページ全体の背景 */
body {
    background-color: #000;
    color: #fff;
    margin: 0;
    font-family: 'Noto Serif JP', serif;
    padding-top: 120px;
}

/* ヘッダー */
.main-header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    border-bottom: 1px solid #222;
    backdrop-filter: blur(5px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
}

/* ナビゲーション */
header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    /* アクセントカラー：深緑 */
    color: #66bb6a; 
}


/* ===============================================
   2. 和酒Pub リッチレイアウト (緑・落ち着きver)
   =============================================== */

.concept-container-rich {
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 1140px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 80px;
    padding-top: 40px;
}

.concept-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

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

/* 写真エリア */
.concept-image {
    flex: 1;
    position: relative;
}

.concept-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.5);
    filter: brightness(0.9);
    /* ホバーエフェクト削除済み */
}

/* 文章エリア */
.concept-text {
    flex: 1;
    text-align: left;
    position: relative;
    padding: 20px;
}

/* 英語装飾（緑） */


.concept-text h3 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.4;
    /* 左の線：緑 */
    border-left: 4px solid #388e3c; 
    padding-left: 20px;
    position: relative;
    z-index: 1;
}

.concept-text p {
    font-size: 1.05em;
    line-height: 2;
    color: #ccc;
    position: relative;
    z-index: 1;
}


/* ===============================================
   3. 和酒Pub メニュー & その他
   =============================================== */

/* メニューコンテナ */
.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    max-width: 960px;
    width: 90%;
    margin: 0 auto;
    text-align: left;
}

.menu-category {
    flex-basis: 45%;
    min-width: 300px;
}

.menu-category h3 {
    font-size: 1.5em;
    /* 見出し色：緑 */
    color: #66bb6a;
    margin-bottom: 15px;
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
}

.menu-category p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.menu-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.1em;
}

.menu-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #444;
}

.menu-list li:first-child {
    border-top: 1px dashed #444;
}

.menu-list li strong {
    color: #FFD700;
}

/* 店舗情報の追加情報 */
.shop-extra-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #555;
    text-align: left;
    width: 100%;
}

.shop-extra-info p {
    font-size: 0.95em;
    margin-bottom: 8px;
    color: #ccc;
}

.shop-extra-info p strong {
    color: #FFD700;
    margin-right: 10px;
}


/* ===============================================
   4. スマホ表示 (768px以下)
   =============================================== */
@media (max-width: 768px) {
    body { padding-top: 80px; }

    .concept-container-rich {
        gap: 60px;
    }

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

    .menu-container {
        flex-direction: column;
        gap: 40px;
    }

    .shop-extra-info {
        text-align: center;
    }
}