.access {
    padding: 80px 0;
    background: #f8f8f8;
}

.access-header {
    text-align: center;
    margin-bottom: 60px;
}

.access-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #0099B0;
    line-height: 1.5;
    margin-bottom: 10px;
}

.access-title {
    font-size: 32px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.access-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.access-info {
    background: #fff;
    padding: 40px;
    margin-bottom: 40px;
}

.access-name {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0099B0;
}

.access-list {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
}

.access-list dt {
    font-weight: bold;
    color: #0099B0;
}

.access-list dd {
    margin: 0;
    line-height: 1.6;
}

.access-map {
    width: 100%;
    height: 450px;
    margin-bottom: 20px;
}

.access-map iframe {
    border-radius: 8px;
}

.access-link {
    text-align: center;
    margin-bottom: 40px;
}

.map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: #0099B0;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.map-button:hover {
    background: #007a8a;
    transform: translateY(-2px);
}

.map-button .arrow {
    margin-left: 10px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .access {
        padding: 40px 0;
    }

    .access-content {
        padding: 0 15px;
    }

    .access-info {
        padding: 20px;
    }

    .access-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .access-list dt {
        margin-top: 15px;
    }

    .access-map {
        height: 300px;
    }
}

@media (max-width: 390px) {
    .access-title {
        font-size: 22px;
    }

    .access-subtitle {
        font-size: 13px;
    }

    .access-name {
        font-size: 20px;
    }
} 