/*会社情報とアクセス*/
#access-section {
    background-color: #3a3a3a;
    color: #ffffff;
    padding: 80px 0;
}

.access-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-side {
    width: 50%;
}

.info-side h2 {
    font-size: 36px;
    font-family: 'Georgia', serif;
    margin: 0 0 40px 0;
    font-weight: normal;
}

.info-row {
    display: flex;
    margin-bottom: 35px;
}

.info-icon {
    font-size: 24px;
    margin-right: 25px;
    width: 30px;
    text-align: center;
    opacity: 0.8;
}

.info-text p {
    margin: 0 0 6px 0;
    font-size: 15px;
}

.info-text .caption {
    color: #b0b0b0;
    font-size: 13px;
    margin-bottom: 15px;
}

.info-text .sub-text {
    color: #cccccc;
    font-size: 14px;
}

.map-side {
    width: 45%;
    height: 400px;
}

.map-side iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 2px;
}

/*フッター本体*/
footer {
    background-color: #3a3a3a;
    color: #888888;
    padding: 20px 5%;
    font-size: 12px;
    border-top: 1px solid #4a4a4a;
}

footer p {
    margin: 0;
}

/*スマホ対応用！*/
@media screen and (max-width: 900px) {
    .access-container {
        flex-direction: column;
        gap: 40px;
    }

    .info-side,
    .map-side {
        width: 100%;
    }

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