.access_page {
    background: #f3f3f3;
}
.access_map {
    background-image: url("../img/access/access_bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 56px 20px 64px;
}
.access_container {
    margin: 0 auto;
}
.access_container_narrow {
    width: min(90%, 1200px);
}
.access_map_box {
    width: 100%;
    width: min(90%, 1200px);
    height: 320px;
    margin: 0 auto 18px;
    background: #777;
    overflow: hidden;
}
.access_map_box iframe {
    width: 100%;
    height: 100%;
    display: block;
}
.access_address {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: #24356b;
    margin-bottom: 28px;
    text-align: left;
    width: min(90%, 1200px);
    margin-left: auto;
    margin-right: auto;
}
.access_info_wrap {
    display: flex;
    justify-content: center;
    gap: 64px;
    width: min(90%, 1200px);
    margin: 0 auto;
}
.access_info_col {
    flex: 1;
}
.access_block_title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 0 0 16px;
    color: #24356b;
    font-weight: 700;
}
.access_block_title span {
    font-size: 42px;
    line-height: 1;
    position: relative;
    padding-left: 16px;
}
.access_block_title span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    background: #24356b;
}
.access_block_title small {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}
.access_block_text p {
    color: #24356b;
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
    margin: 0;
}
.access_route {
    background: #f5f5f5;
    padding: 72px 20px 100px;
}
.access_heading {
    margin-bottom: 28px;
}
.access_heading_en {
    color: #24356b;
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
    position: relative;
    padding-left: 18px;
    margin: 0 0 8px;
}
.access_heading_en::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    background: #24356b;
}
.access_heading_jp {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 700;
    color: #24356b;
    margin: 0;
    padding-left: 18px;
}
.access_tabs {
    display: flex;
    gap: 14px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.access_tab {
    min-width: 210px;
    height: 60px;
    border: 2px solid #b9c0d7;
    background: transparent;
    color: #b9c0d7;
    font-size: 22px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s ease;
    padding: 0 20px;
}
.access_tab.is_active {
    background: #24356b;
    color: #fff;
    border-color: #24356b;
}
.access_tab_panel {
    display: none;
}
.access_tab_panel.is_active {
    display: block;
}
.access_route_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 22px;
}
.access_route_item {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.access_route_image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ddd;
}
.access_route_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.access_route_text {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.access_step {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    background: #24356b;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
    margin-top: 1px;
}

@media screen and (max-width: 767px) {
    .access_map {
        background-image: url(../img/access/access_bg_sp.webp);
        padding: 10% 0;
    }
    .access_map_box {
        height: 180px;
        margin-bottom: 12px;
    }
    .access_address {
        line-height: 1.8;
        margin-bottom: 20px;
    }
    .access_info_wrap {
        display: block;
    }
    .access_info_col + .access_info_col {
        margin-top: 20px;
    }
    .access_block_title {
        gap: 8px;
        margin-bottom: 10px;
    }
    .access_block_title span {
        font-size: 26px;
        padding-left: 12px;
    }
    .access_block_title small {
        font-size: 18px;
    }
    .access_block_text p {
        font-size: 15px;
        line-height: 1.9;
    }
    .access_route {
        padding: 10% 0;
    }
    .access_heading {
        margin-bottom: 20px;
    }
    .access_heading_en {
        font-size: 24px;
        padding-left: 12px;
        margin-bottom: 4px;
    }
    .access_heading_jp {
        font-size: 18px;
        padding-left: 12px;
    }
    .access_tabs {
        gap: 8px;
        margin: 20px 0;
    }
    .access_tab {
        min-width: calc(50% - 4px);
        height: 40px;
        font-size: 14px;
        border-radius: 4px;
        padding: 0 8px;
    }
    .access_route_grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .access_route_item {
        flex-direction: column-reverse;
    }
    .access_route_text {
        font-size: 18px;
        line-height: 1.8;
        margin: 0 0 8px;
    }
    .access_step {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}