/* アクセス情報ページのスタイル */

/* ヒーローセクション */
.info-hero {
    position: relative;
    height: 45vh;
    background-color: var(--bg-gray);
    overflow: hidden;
}

.info-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.info-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
}

.info-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.info-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.info-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* 紹介セクション */
.dining-intro {
    background-color: white;
    padding: 60px 20px;
    margin: 0;
    text-align: center;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background-color: transparent;
    box-shadow: none;
}

.intro-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 0 0 30px;
    font-family: var(--font-serif);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 1.5px;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-dark);
    margin: 0;
}

/* アクセス情報セクション */
.meal-sections {
    padding: 0;
    margin: 0;
}

.meal-category {
    padding: 80px 0;
    position: relative;
    margin: 0;
}

.meal-category.body {
    background-color: var(--bg-gray);
}

.meal-category.facial {
    background-color: white;
}

.meal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.meal-text {
    display: flex;
    justify-content: center;
}

.meal-description {
    max-width: 800px;
    width: 100%;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.meal-title {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin: 0 0 10px;
    font-family: var(--font-serif);
    line-height: 1.4;
    font-weight: normal;
    text-align: center;
}

.meal-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0 0 25px;
    letter-spacing: 0.2em;
    line-height: 1.4;
    font-family: var(--font-en);
    text-align: center;
}

/* アクセス情報のスタイル */
.access-info {
    margin-top: 20px;
}

.access-image {
    margin-bottom: 30px;
    text-align: center;
}

.access-img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

/* 電車の画像を大きく表示 */
.access-info:first-of-type .access-img {
    max-width: 120%;
    margin-left: -10%;
    margin-right: -10%;
}

.access-info h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.access-info h3:first-child {
    margin-top: 0;
}

.access-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.access-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.access-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2em;
}

.parking-info {
    background-color: var(--bg-gray);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.parking-info h3 {
    margin-top: 0;
}

/* 地図セクション */
.map-container {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.address-info {
    text-align: center;
    margin-top: 30px;
}

.address-info h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.address-info p {
    margin: 10px 0;
    line-height: 1.6;
}

.address-info .tel {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin-top: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .info-hero {
        height: 35vh;
    }
    
    .info-hero-title {
        font-size: 2rem;
    }
    
    .info-hero-subtitle {
        font-size: 1rem;
    }
    
    .meal-description {
        padding: 30px 20px;
    }
    
    .meal-title {
        font-size: 1.8rem;
    }
    
    .access-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .info-hero {
        height: 30vh;
    }
    
    .info-hero-title {
        font-size: 1.5rem;
    }
    
    .info-hero-subtitle {
        font-size: 0.9rem;
    }
    
    .meal-description {
        padding: 20px 15px;
    }
    
    .meal-title {
        font-size: 1.5rem;
    }
    
    .access-info h3 {
        font-size: 1.2rem;
    }
    
    .address-info .tel {
        font-size: 1.1rem;
    }
} 