.access-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.access-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.access-section {
    margin-bottom: 3rem;
    padding: 1rem;
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.access-title {
    font-size: 1.5rem;
    border-left: 4px solid #1E88E5;
    padding-left: 0.6rem;
    margin-bottom: 0.8rem;
}

.access-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.access-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

/* 画像 */
.access-image {
    flex: 0 0 40%;
    /* 画像幅40%固定 */
}

.access-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.access-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.8rem;
    background: #E53935;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
}

.access-pdf:hover {
    background: #b71c1c;
}

/* ===========================
   レスポンシブ対応
   画面幅768px以下（タブレット） 
=========================== */
@media (max-width: 768px) {
    .access-wrapper {
        padding: 1.5rem;
    }

    .access-title {
        font-size: 1.3rem;
    }

    .access-text {
        font-size: 0.95rem;
    }

    .access-content {
        flex-direction: column;
        gap: 0.6rem;
    }

    .access-image {
        flex: 0 0 100%;
    }
}

/* 画面幅480px以下（スマホ） */
@media (max-width: 480px) {
    .access-wrapper {
        padding: 1rem;
    }

    .access-title {
        font-size: 1.1rem;
    }

    .access-text {
        font-size: 0.9rem;
    }

    .access-pdf {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0;
    }

    .access-image img {
        max-width: 100%;
        height: auto;
    }
}