/* アクセスページスタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* メインコンテンツ */
.main-content {
    padding-top: 0px;
    /* ヘッダーの高さ分 */
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, #e70100, #ff4444);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

/* セクション共通スタイル */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e70100, #ff4444);
    border-radius: 2px;
}

/* 会場情報 */
.venue-info {
    background: white;
}

.venue-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.venue-address {
    background: linear-gradient(135deg, #e70100, #ff4444);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(231, 1, 0, 0.3);
}

.venue-address h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.venue-address p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.venue-address h4 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-top: 1rem;
}

.venue-notice {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #e70100;
}

.venue-notice p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

.warning {
    background: #fff3cd;
    color: #856404;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    font-weight: 600;
    margin-top: 1rem;
}

/* 車でのアクセス */
.access-by-car {
    background: #f8f9fa;
}

.car-info {
    max-width: 800px;
    margin: 0 auto;
}

.route-info {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #e70100;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.parking-info,
.disabled-parking {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.parking-info h3,
.disabled-parking h3 {
    color: #e70100;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.parking-info p,
.disabled-parking p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* バスでのアクセス */
.access-by-bus {
    background: white;
}

.bus-info {
    text-align: center;
    margin-bottom: 3rem;
}

.bus-info .route-info {
    margin-bottom: 1rem;
}

.note {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.fare {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e70100;
    background: #ffe8e8;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
}

.bus-schedule {
    max-width: 1000px;
    margin: 0 auto;
}

.bus-schedule h3 {
    color: #e70100;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.schedule-table {
    margin-bottom: 3rem;
}

.schedule-table h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

thead {
    background: linear-gradient(135deg, #e70100, #ff4444);
    color: white;
}

th {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

tbody tr:hover {
    background-color: #f8f9fa;
}

tbody tr:last-child td {
    border-bottom: none;
}

/* 臨時駐車場 */
.temporary-parking {
    background: #f8f9fa;
}

.temp-parking-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.temp-parking-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.shuttle-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.shuttle-info h3 {
    color: #e70100;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.shuttle-info p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.free-note {
    background: #ffe8e8;
    color: #5a2d2d;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
}

/* 地図セクション */
.map-section {
    background: white;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .venue-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .venue-address {
        padding: 1.5rem;
    }

    .venue-address h3 {
        font-size: 1.3rem;
    }

    .venue-address h4 {
        font-size: 1.5rem;
    }

    .route-info {
        font-size: 1.1rem;
    }

    .parking-info,
    .disabled-parking,
    .shuttle-info {
        padding: 1.5rem;
    }

    .parking-info h3,
    .disabled-parking h3,
    .shuttle-info h3 {
        font-size: 1.2rem;
    }

    table {
        font-size: 0.85rem;
    }

    th,
    td {
        padding: 0.8rem 0.5rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .venue-address {
        padding: 1rem;
    }

    .venue-address h3 {
        font-size: 1.1rem;
    }

    .venue-address h4 {
        font-size: 1.3rem;
    }

    .route-info {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .parking-info,
    .disabled-parking,
    .shuttle-info {
        padding: 1rem;
    }

    .parking-info h3,
    .disabled-parking h3,
    .shuttle-info h3 {
        font-size: 1.1rem;
    }

    table {
        font-size: 0.8rem;
    }

    th,
    td {
        padding: 0.6rem 0.3rem;
    }

    .fare {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .container {
        padding: 0 10px;
    }

    section {
        padding: 2rem 0;
    }
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.venue-details,
.car-info,
.bus-schedule,
.temp-parking-info,
.map-container {
    animation: fadeInUp 0.8s ease-out;
}

/* ホバーエフェクト */
.venue-address:hover,
.parking-info:hover,
.disabled-parking:hover,
.shuttle-info:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

table:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}