/* アクセスページのレイアウト */
.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* 地図画像 */
.access-map img,
.access-wide-map img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

/* Twitter関連 */
.twitter-feed {
    border: none;
    border-radius: 1rem;
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.twitter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f2f5;
}

.twitter-timeline-wrapper {
    max-height: 540px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cfd9de transparent;
}

/* 情報カード */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.info-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* 駐車場情報 */
.parking-info {
    margin-top: 3rem;
}

.parking-table {
    margin-top: 1.5rem;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.parking-table th,
.parking-table td {
    padding: 1rem 1.5rem;
    border: 1px solid #edf2f7;
}

.parking-table th {
    background-color: #f8fafc;
    font-weight: 600;
    white-space: nowrap;
    color: #2d3748;
}

/* 送迎バス情報 */
.shuttle-info {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* 時刻表セクション */
.timetable-section {
    margin-top: 2rem;
}

.timetable-block {
    margin-bottom: 3rem;
}

.direction-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
    color: #2c5aa0;
}

.update-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.timetable {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timetable th,
.timetable td {
    border: 1px solid #ddd;
    padding: 0.8rem;
    text-align: center;
    font-size: 0.95rem;
}

.timetable th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #2d3748;
}

.shuttle-header {
    background-color: #2c5aa0 !important;
    color: #fff !important;
}

/* お知らせ */
.notice {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.notice p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.important-notice {
    color: #e53e3e !important;
    font-weight: 600;
}

/* 情報セクション */
.info-section {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(to right bottom, #ffffff, #f8f9fa);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.info-section .section-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #2c5aa0;
    position: relative;
}

.info-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #e53e3e;
}

/* タクシー情報 */
.taxi-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.notice-text {
    color: #e53e3e;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(229, 62, 62, 0.05);
    border-left: 4px solid #e53e3e;
    border-radius: 0 8px 8px 0;
}

.taxi-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.taxi-list p {
    padding: 1rem 1.5rem;
    position: relative;
    background: #f8fafc;
    border-radius: 8px;
}

.taxi-list p::before {
    content: "〇";
    position: absolute;
    left: 0.5rem;
    color: #2c5aa0;
    font-weight: bold;
}

/* ピクニックバス情報 */
.picnic-bus-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

.picnic-bus-info img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.schedule-info,
.fare-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(44, 90, 160, 0.08);
}

.schedule-info {
    margin-bottom: 2rem;
}

.period {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
    padding-bottom: 0.8rem;
    border-bottom: 2px dashed rgba(44, 90, 160, 0.2);
}

.schedule-info ul,
.fare-info ul {
    list-style: none;
    padding-left: 1.5rem;
}

.schedule-info li,
.fare-info li {
    position: relative;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 6px;
}

.schedule-info li::before,
.fare-info li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #2c5aa0;
    font-size: 1.5rem;
    line-height: 1;
}

.fare-info p {
    margin-bottom: 1rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .access-map img,
    .access-wide-map img {
        max-width: 100%;
        border-radius: 0.5rem;
    }

    .access-grid {
        gap: 1.5rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .parking-table {
        font-size: 0.875rem;
    }

    .parking-table th,
    .parking-table td {
        padding: 0.75rem 1rem;
    }

    .shuttle-info {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .timetable {
        font-size: 0.8rem;
    }

    .timetable th,
    .timetable td {
        padding: 0.5rem;
    }

    .notice {
        padding: 1rem;
    }

    .info-section {
        padding: 1.5rem;
        margin-top: 3rem;
    }

    .picnic-bus-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .taxi-info,
    .schedule-info,
    .fare-info {
        padding: 1.5rem;
    }

    .period {
        font-size: 1.1rem;
    }
}

