.sub_visual{
    margin-top: 160px;
    height: 280px;
    background: url(../img/main_bg.jpg) no-repeat top / cover;
    position: relative;
}
.sub_visual::after{
    content: "";
    position: absolute;
    width: 180px;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../img/sub_txt.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.rel_wrap{
    padding: 0 180px;
}
.sub_content{
    position: relative;
    padding: 0 180px;
    width: 100%;
    opacity: 0;
    animation: sub_content_ani 1s ease-in-out .5s forwards;
}
@keyframes sub_content_ani{
    to{
        opacity: 1;
    }
}
.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% - 360px);
    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: #0d695b;
    z-index: 2;
}
.sub_content > .rel_wrap{
    height: auto;
}

.sub_content {
    display: flex;
    flex-direction: column;
}
.sub_content > img {
    margin: 0 auto;
    max-width: 1299px;
    width: 100%;
}
iframe{
    width: 100%;
}
.contact_inner_wrap{
    display: flex;
    gap: 50px;
    margin-top: 50px;
    justify-content: center;
}
.contact_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.map_wrap{
    display: flex;
    width: 100%;
    gap: 40px;
}
.map_wrap img{
    max-width: 100%;
}
.map_txt_wrap dl{
    height: 32%;
}
.map_txt_wrap dd{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}
.map_txt_wrap dd strong{
    color: #01695A;
}
.map_address{
    font-size: 20px;
    margin-bottom: 20px;
}
.btn_contact_wrap{
    display: flex;
    gap: 20px;
}
.btn_contact{
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #01695A;
}
.btn_contact > div{
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #01695A;
    border-radius: calc(1px / 0);
}
.icon_naver img{
    width: 12px;
    height: 11px;
}
.icon_kakao img{
    width: 10px;
    height: 14px;
}
/* 이벤트 페이지.. 일단 한줄 CSV 기준으로 모바일/PC 다들어가도록 */
.event_result_table{
    margin: 20px auto 0;
    max-width: 1300px;
    width: 100%;
}
.event_result_table thead{
    background-color: #0d695b;
    color: #fff;
}

table.event_result_table thead tr th, table.event_result_table tbody tr td{
    text-align: center;
    padding: 16px 0;
    font-size: 15px;
}
table.event_result_table thead tr th{
    width: 25%;
}
.event_result_table thead tr{
    display: flex;
    flex-wrap: wrap;
}
table.event_result_table tbody{
    display: flex;
    flex-wrap: wrap;
}
table.event_result_table tbody tr{
    width: 50%;
    display: flex;
}
table.event_result_table tbody tr td{
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #eee;
}
@media (max-width: 1280px) {
    .sub_visual{
        margin-top: 60px;
    }
    .rel_wrap,.sub_content{
        padding: 0 18px;
    }
    .s_menu::after{
        width: calc(100% - 36px);
    }
    .s_menu_title{
        font-size: 16px;
    }
    .s_menu{
        height: 60px;
    }
    .s_menu ul > li a{
        font-size: 15px;
    }
    
    .s_menu ul > li:not(.active){
        display: none;
    }
}
@media (max-width: 768px) {
    table.event_result_table thead tr th:nth-child(n+3){
        display: none;
    }
    table.event_result_table thead tr th{
        width: 50%;
    }
    table.event_result_table tbody tr {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    table.event_result_table tbody tr td {
        width: 50%;
        box-sizing: border-box;
        display: block; /* inside flex row this makes two cells sit side-by-side at 50% each */
    }
}