/* --- ヒーローセクション（下層ページ用） --- */
.hero {
    height: 400px;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/kodawari2.png'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-content p {
    font-size: 1.1rem;
    font-family: 'Zen Old Mincho', serif;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    letter-spacing: 0.1em;
}

/* --- 店舗情報 --- */
.access {
    padding-bottom: 80px;
}

.shop-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.shop-details {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.shop-details h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 10px;
    display: inline-block;
}

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

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

.shop-details th {
    width: 100px;
    color: var(--primary-color);
    vertical-align: top;
    font-weight: bold;
}

.pickup-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
    font-family: sans-serif;
    font-weight: normal;
}

.map-container {
    height: 100%;
    min-height: 400px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    display: block;
}

.shop-details h3 {
    line-height: 1.4;
}

.shop-details .pickup-badge {
    vertical-align: 4px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .nav-menu { margin-top: 15px; gap: 15px; font-size: 0.9rem; flex-wrap: wrap; justify-content: center; }
    .shop-info-grid { grid-template-columns: 1fr; gap: 30px; }
    .shop-details { padding: 20px; }
    .map-container { min-height: 300px; }
    .map-container iframe { min-height: 300px; }
    .pickup-badge {
        margin: 0;
        margin-top: 10px;
    }
    .shop-details .pickup-badge {
        vertical-align: 2px;
        margin-left: 10px;
    }
}
