.map_wrap{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.map_wrap dd{
    font-weight: 700;
    font-size: 16px;
    color: var(--m_color);
    margin-bottom: 10px;
}
.map_wrap dt{
    padding-left: 12px;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
}

.map_wrap span {
    font-size: 18px;
}
.map_wrap dt::after{
    position: absolute;
    content: "";
    left: 0px;
    top: 0;
    height: 100%;
    width: 6px;
    background-color: #000;
}
.map_img_wrap{
    width: 1060px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
.map_img_wrap img{
    width: 49%;
    object-fit: cover;
}
.map_txt_wrap{
    align-self: flex-start;
}
.sub_visual{
    margin-top: var(--header_height);
    height: 260px;
}
.sub_visual .rel_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}
.visual_img_wrap{
    width: 210px;
    display: flex;
    gap: 20px;  
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.visual_img_wrap > img{
    max-width: 100%;
}
.visual_sub_title{
    width: 120%;
}
.visual_sub_title img{
    max-width: 100%;
}
.s_menu{
    height: 80px;
    margin-bottom: 40px;
    position: relative;
}
.s_menu_title{
    font-size: 20px;
    font-weight: 700;
}
.s_menu .rel_wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.s_menu::after{
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - calc(var(--rel_padding) * 2));
    height: 1px;
    background-color: #ddd;
}
.s_menu ul{
    display: flex;
    height: 100%;
}
.s_menu ul > li{
    height: 100%;
}
.s_menu ul > li a{
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    position: relative;
    padding: 0 10px;
}
.s_menu ul > li.active a{
    font-weight: 700;
}
.s_menu ul > li.active a::after{
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--m_color);
    z-index: 2;
}
.sub_content{
    margin-bottom: 40px;
    opacity: 0;
    animation: sub_content_ani 1s ease-in-out .5s forwards;
}
@keyframes sub_content_ani{
    to{
        opacity: 1;
    }
}
.sub_content > .rel_wrap{
    display: flex;
    height: auto;
}

.sub_content .rel_wrap > img {
    max-width: 100%;
    margin: 0 auto;
}