
/* ========= park ========= */
.access {
    width: 90%;
    max-width: 1400px;
    margin: 80px auto 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.access picture {
    display: block;
    width: 50%;
}
.access picture img {
    width: 100%;
    height: auto;
}
.access-text {
    width: 45%;
}
.access-text h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 2.4rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.03em;
}
.access-text h3 {
    font-family: serif;
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 500;
}
.access-text p {
    color: var(--ink-soft);
    line-height: 2.1;
    margin-bottom: 20px;
    font-size: 1.2rem;
}
.access-text small {
    font-size: 0.8rem;
}
.access-text dl {
    margin: 0;
}
.access-text dt {
    font-weight: 500;
    margin-top: 20px;
}
.access-text dd {
    padding-left: 25px;
}



/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {

}
@media (max-width: 700px) {
    .access {
        margin: 40px auto;
    }
    .access picture {
        display: block;
        width: 100%;
        margin-bottom: 25px;
    }
    .access-text {
        width: 100%;
    }
}