.access-info {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.access-info p[data-ja],
.access-info p[data-en] {
    margin: 0;
}

.access-info h3 {
    color: var(--nature-blue);
}

.access-info ul li {
    text-align: left;
}

.access-info li {
    color: var(--secondary-color);
}

/* Access Page Image Styles */
.access-info img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

@media screen and (max-width: 768px) {
    .access-info h3 {
        font-size: 1.1em;
        text-align: center; 
    }
}

.access-info-address {
    color: var(--secondary-color);
    text-align: left;
}

/* SNS Section Styles in Gallery */
.highlight-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-box h3 {
    color: var(--nature-blue);
    font-size: 1.8em;
    margin-bottom: 20px;
}

.highlight-box p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

@media screen and (max-width: 1024px) {
    .highlight-box img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 767px) {
    .highlight-box {
        padding: 30px 20px;
        margin: 30px 0;
    }
    .highlight-box h3 {
        font-size: 1.1em;
    }

    .highlight-box p {
        font-size: 1em;
    }
    .highlight-box img {
        width: 100%;
        height: auto;
    }
}

/* JRチケットプラン */
.jr-ticket-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.jr-ticket-plan-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.jr-ticket-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,136,163,0.03) 0%, rgba(85,177,187,0.03) 100%);
    pointer-events: none;
}

.jr-ticket-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a202c;
    margin: 0;
}

.plan-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.plan-badge.premium {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.plan-content {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}

.route-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.route-icon {
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.route-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.25rem 0;
}

.route-details p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.route-arrow {
    text-align: center;
    font-size: 1.5rem;
    color: #0ea5e9;
    margin: 0.5rem 0;
    position: relative;
    z-index: 2;
}

.plan-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .plan-features {
        display: none;
    }
}

.feature-tag {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

@media (max-width: 768px) {
    .jr-ticket-plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .jr-ticket-plan-card {
        padding: 1.5rem;
    }
    
    .plan-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .route-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .route-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
}

/* シャトルバス画像 */
.shuttle-bus-image {
    margin: 2rem 0;
    text-align: center;
}

.shuttle-bus-image img {
    max-width: 800px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    object-fit: cover;
}

.shuttle-bus-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .shuttle-bus-image {
        margin: 1.5rem 0;
    }
}

.parking-map-image {
    border: 3px solid #2b6cb0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.3);
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .parking-map-image {
        width: 100%;
        height: auto;
        border-width: 2px;
    }
} 