﻿/* ============================
   全体
============================ */
body {
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    margin: 0;
    font-weight: 600;
}

/* ============================
   ヘッダー
============================ */
.event-header {
    background: #2c3e50;
    color: #fff;
    padding: 20px 15px;
    text-align: center;
}

.event-header h1 {
    font-size: 22px;
    margin-bottom: 5px;
}

.event-sub {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================
   ナビゲーション
============================ */
.event-nav {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.event-nav a {
    display: inline-block;
    padding: 6px 12px;
    background: #fff;
    color: #2c3e50;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    border: 1px solid #ddd;
    transition: 0.2s;
}

.event-nav a:hover {
    background: #f0f0f0;
}

/* ============================
   メイン
============================ */
.event-main {
    padding: 20px 15px;
}

.event-intro {
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}

/* ============================
   店舗リスト
============================ */
.shop-list h2 {
    font-size: 18px;
    margin-bottom: 15px;
    border-left: 4px solid #2c3e50;
    padding-left: 8px;
}

.shop-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 15px;
}

.shop-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #2c3e50;
}

.shop-item .sake {
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

.shop-item .addr,
.shop-item .tel {
    font-size: 13px;
    color: #666;
}

/* ============================
   フッター
============================ */
.event-footer {
    text-align: center;
    padding: 20px 10px;
    font-size: 12px;
    color: #777;
    background: #f5f5f5;
    margin-top: 30px;
}

/* ============================
   エリア選択
============================ */
.area-select h2 {
    font-size: 18px;
    margin-bottom: 15px;
    border-left: 4px solid #2c3e50;
    padding-left: 8px;
}

.area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.area-card {
    display: block;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.area-card:hover {
    background: #f5f5f5;
}

.area-card h3 {
    margin-bottom: 6px;
    font-size: 16px;
    color: #2c3e50;
}

.area-card p {
    font-size: 13px;
    color: #666;
}

/* ============================
   マップ
============================ */
.event-map h2 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
    border-left: 4px solid #2c3e50;
    padding-left: 8px;
}

.event-map p {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

/* エリア名を大きく */
.area-header .event-year {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.area-header .area-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ナビの現在地を強調 */
.event-nav a.active {
    background: #2c3e50;
    color: #fff;
    border-color: #2c3e50;
}

/* トップへ戻る */
.back-to-top {
    text-align: center;
    margin: 30px 0 10px;
}

.back-to-top a {
    display: inline-block;
    padding: 10px 16px;
    background: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.back-to-top a:hover {
    background: #1a242f;
}

/* ============================
   エリアヘッダー強化
============================ */
.area-header {
    background: #1f2d3a;
    padding: 25px 15px;
    text-align: center;
    color: #fff;
}

.area-header .event-year {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 6px;
}

.area-header .area-title {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* ============================
   店舗カード強化
============================ */
.shop-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 18px 18px;
    margin-bottom: 18px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.shop-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.shop-item .sake {
    font-size: 15px;
    margin-bottom: 10px;
    color: #444;
    font-weight: 600;
}

/* アイコン付き情報 */
.shop-item .addr::before {
    content: "📍 ";
}
.shop-item .tel::before {
    content: "📞 ";
}

.shop-item .addr,
.shop-item .tel {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

/* ============================
   トップへ戻るリンク
============================ */
.back-to-top {
    text-align: center;
    margin: 35px 0 20px;
}

.back-to-top a {
    display: inline-block;
    padding: 12px 20px;
    background: #1f2d3a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
}

.back-to-top a:hover {
    background: #0f1a23;
}

/* ============================
   ナビの現在地強調
============================ */
.event-nav a.active {
    background: #1f2d3a;
    color: #fff;
    border-color: #1f2d3a;
}

/* ピックアップ店の強調 */
.shop-item.pickup {
    border: 2px solid #ffb400;
    background: #fff8e1;
    position: relative;
}

.shop-item.pickup::before {
    content: "PICK UP";
    position: absolute;
    top: -10px;
    left: -10px;
    background: #ffb400;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}
