/* visual sub 공통 start */
.sub_visual{
    width:100%;
    min-width:1300px;
    position: relative;
    overflow: hidden;
    padding-top:100px;
}
.sub_visual::before{
    position: absolute;
    content: '';
    width:100%;
    height:100%;
    background-color: rgba(0, 0, 0, .4);
    z-index: 1;
}
.sub_visual > img{
    width:100%;
    object-fit: cover;
    height:450px;
    transition: all 3s ease-in-out;
    transform:scale(1.2);
}
.sub_visual > img.zoom{transform:scale(1);}
.sub_visual .sub_typo{
    position: absolute;
    top:60%;
    left:50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width:100%;
    z-index: 99;
}
.sub_visual .sub_typo > span.up{opacity:1; transform:translate(0,0);}
.sub_visual .sub_typo span{
    color:#fff;
    display:block;
    opacity:0;
    transform:translate(0,100%);
    transition:all 1s ease-in-out;
    font-family:'GmarketSansMedium';
}
.sub_visual .sub_typo span:first-child{
    font-size:42px;
    transition-delay:0s;
}
.sub_visual .sub_typo span:nth-child(2){
    font-size:18px;
    transition-delay:0.5s;
    font-family:'GmarketSansLight';
}
/* visual sub 공통 end */

/* tab 메뉴 공통 */
/* .contents{padding:30px 0;} */
.sub_tabmenu{
    position: sticky;
    z-index: 99;
    top:171px;
    transform: translateY(-90px);
    background: rgba(0,0,0,0.6);
    height:60px;
    line-height: 60px;
}
.sub_tabmenu.on{
    position: fixed;
    width:100%;
    top:171px;
    z-index: 99;
    background: rgba(0,0,0,0.7);
}

.sub_tabmenu ul{font-size:0;}
.sub_tabmenu li{display:inline-block;}
.sub_tabmenu li a{
    display: block;
    font-size:18px;
    text-align: center;
    color:#fff;
    transition: all .3s ease-in-out;
}
.tabmenu01 li{width:33.333%;}
.tabmenu02 li{width:16.666%;}
.tabmenu03 li{width:100%;}
.tabmenu04 li{width:20%;}
.tabmenu05 li{width:50%;}
.tabmenu06 li{width:25%;}

.sub_tabmenu li a:hover{background-color: #003625; color:#fff; transition: all .3s ease-in-out;}

.sub01_01 .sub_tabmenu li:nth-child(1) a{background-color: #003625; color:#fff;}
.sub01_02 .sub_tabmenu li:nth-child(2) a{background-color: #003625; color:#fff;}
.sub01_03 .sub_tabmenu li:nth-child(3) a{background-color: #003625; color:#fff;}

.sub02_01 .sub_tabmenu li:nth-child(1) a{background-color: #003625; color:#fff;}
.sub02_02 .sub_tabmenu li:nth-child(2) a{background-color: #003625; color:#fff;}
.sub02_03 .sub_tabmenu li:nth-child(3) a{background-color: #003625; color:#fff;}
.sub02_04 .sub_tabmenu li:nth-child(4) a{background-color: #003625; color:#fff;}
.sub02_05 .sub_tabmenu li:nth-child(5) a{background-color: #003625; color:#fff;}
.sub02_06 .sub_tabmenu li:nth-child(6) a{background-color: #003625; color:#fff;}

.sub03_01 .sub_tabmenu li:nth-child(1) a{background-color: #003625; color:#fff;}

.sub04_01 .sub_tabmenu li:nth-child(1) a{background-color: #003625; color:#fff;}
.sub04_02 .sub_tabmenu li:nth-child(2) a{background-color: #003625; color:#fff;}
.sub04_03 .sub_tabmenu li:nth-child(3) a{background-color: #003625; color:#fff;}
.sub04_04 .sub_tabmenu li:nth-child(4) a{background-color: #003625; color:#fff;}
.sub04_05 .sub_tabmenu li:nth-child(5) a{background-color: #003625; color:#fff;}

.sub05_01 .sub_tabmenu li:nth-child(1) a{background-color: #003625; color:#fff;}
.sub05_02 .sub_tabmenu li:nth-child(2) a{background-color: #003625; color:#fff;}

.sub06_01 .sub_tabmenu li:nth-child(1) a{background-color: #003625; color:#fff;}
.sub06_02 .sub_tabmenu li:nth-child(2) a{background-color: #003625; color:#fff;}
.sub06_03 .sub_tabmenu li:nth-child(3) a{background-color: #003625; color:#fff;}
.sub06_04 .sub_tabmenu li:nth-child(4) a{background-color: #003625; color:#fff;}
/* tab 메뉴 공통 */

/* sub 타이틀 공통 */
.contents_title{
    padding:30px 0;
    position: relative;
    width:100%;
    min-width:1224px;
    overflow: hidden;
}
.contents_title h2{
    padding:30px 0;
    font-size:40px;
    color:#333;
    font-weight: 400;
    text-align: center;
    position: relative;
}
.contents_title h2::before{
    position: absolute;
    content: '';
    bottom:0px;
    width:50px;
    height:3px;
    left:50%;
    transform: translateX(-50%);
    background-color: #003625;
}
.contents_title h2 span{
    font-size:40px;
    font-weight:800;
    display: block;
}

.contents_detail{padding:30px 0;}
/* sub 타이틀 공통 */

/*****************  버튼 공통 *****************/
/* button */
.button .btn{
    position: relative;
    color: #fff;
    overflow: hidden;
    display: block;
    overflow: hidden;
    padding:15px 0px;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid #fff;
}

.button .btn::before,
.button .btn::after {
    position: absolute;
    top: 50%;
    content: '';
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: -1;
}
.button .btn::before {
    left: -20px;
    transform: translate(-50%, -50%);
}
.button .btn::after {
    right: -20px;
    transform: translate(50%, -50%);
}
.button .btn:hover {
    color: #000;
}
.button .btn:hover::before {
    animation: criss-cross-left 0.8s both alternate;
}
.button .btn:hover::after {
    animation: criss-cross-right 0.8s both alternate;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
        width: 20px;
        height: 20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}

@keyframes criss-cross-right {
    0% {
        right: -20px;
        width: 20px;
        height: 20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}
/* button */
/*****************  버튼 공통 *****************/

/* image_show_wrap 공통 */
section .image_show_wrap,
section .image_show_wrap2{
    position: relative;
    top: 0px;
    left: 0%;
    width: 100%;
}
section .image_show_wrap{overflow: hidden; animation-duration: 1.4s;}
section .image_show_wrap2{animation-duration: 1.4s;}

section .show_img01{animation-name: show_img01;}
@keyframes show_img01{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
section .show_img02{animation-name: show_img02;}
@keyframes show_img02{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
section .show_img03{animation-name: show_img03;}
@keyframes show_img03{
    0%{opacity: 0; transform: translate3d(100%, 0, 0);}
}
section .show_img04{animation-name: show_img04;}
@keyframes show_img04{
    0%{opacity: 0; transform: translate3d(-100%, 0, 0);}
}
section .show_img05{animation-name: show_img05;}
@keyframes show_img05{
    0%{opacity: 0; transform: translate3d(0, 100%, 0);}
}
section .show_img06{animation-name: show_img06;}
@keyframes show_img06{
    0%{opacity: 0; transform: translate3d(0, -100%, 0);}
}
section .show_img07{animation-name: show_img07;}
@keyframes show_img07{
    0%{opacity: 0; transform: translate3d(0, -100%, 0);}
}
section .show_img08{animation-name: show_img08;}
@keyframes show_img08{
    0%{opacity: 0; transform: translate3d(0, 100%, 0);}
}
/* image_show_wrap 공통 */

/* image 확대 공통 */
.clip-animation {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    animation: clipExpand 1s cubic-bezier(0.770, 0.000, 0.175, 1.000) forwards;
}
@keyframes clipExpand {
    from {
        clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}
/* image 확대 공통 */

/* ------------------------------------------- sub -------------------------------------------------------- */
/* sub01 */
.sub01_01 .facilities_box1 h3{
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    background: url(../img/bg_sub_tit1a.png) left 4px no-repeat;
}
.sub01_01 .facilities_box1 .chart{
    width:100%;
    border-top:3px solid #00389a;
    margin-top:10px;
}
.sub01_01 .facilities_box1 .chart tr th,
.sub01_01 .facilities_box1 .chart tr td{
    font-size:16px;
    color:#333;
    padding:20px;
    text-align: center;
    border:1px solid #ccc;
}
.sub01_01 .facilities_box1 .chart tr th{background-color: #f7f7f7;}
.sub01_01 .facilities_box1 p{
    font-size:16px;
    color:#333;
    text-align: left;
    margin-top:20px;
}

.sub01_01 .facilities_box2{margin-top:60px;}
.sub01_01 .facilities_box2 h3{
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    background: url(../img/bg_sub_tit1a.png) left 4px no-repeat;
}
.sub01_01 .facilities_box2 ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:20px;
}
.sub01_01 .facilities_box2 ul li{width:32.333%;}


.sub01_01 .facilities_map{margin-top:60px;}
.sub01_01 .facilities_map h3{
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    background: url(../img/bg_sub_tit1a.png) left 4px no-repeat;
}

.sub01_01 .facilities_map .cont{display: none;}

.sub01_01 .location{margin-top:60px}
.sub01_01 .location .tit{padding:10px 0;}
.sub01_01 .location h3{
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    background: url(../img/bg_sub_tit1a.png) left 4px no-repeat;
}
.sub01_01 .location > p{
    margin-top:10px;
    font-size:18px;
    color:#f00c22;
    text-align: left;
    font-weight: 600;
}

.sub01_01 .location .tit h4{
    font-size:16px;
    color:#00389a;
    text-align: left;
}
.sub01_01 .location .tit > p{
    font-size:16px;
    color:#333;
    text-align: left;
    margin-top:10px;
}
.sub01_01 .location .tit .txt{margin:20px 0;}
.sub01_01 .location .tit .txt p{
    font-size:16px;
    color:#333;
    text-align: left;
    margin-bottom:10px;
}
.sub01_01 .location .tit .txt span{
    display: inline-block;
    font-size:16px;
    padding:10px 20px;
    font-size:16px;
    color:#fff;
    font-weight: 600;
    border-radius: 5px;
}
.sub01_01 .location .tit .txt .blue{background-color: #00389a;}
.sub01_01 .location .tit .txt .green{background-color: #00d000;}
/* sub01 */




/* sub02 */
.sub02 .guide .guide_box1 h3{
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    background: url(../img/bg_sub_tit1a.png) left 4px no-repeat;
}
.sub02 .guide .guide_box1 .chart{
    width:100%;
    border-top:3px solid #00389a;
    margin-top:10px;
}
.sub02 .guide .guide_box1 .chart tr th,
.sub02 .guide .guide_box1 .chart tr td{
    font-size:16px;
    color:#333;
    padding:20px;
    border:1px solid #ccc;
    text-align: center;
    line-height:30px;
}
.sub02 .guide .guide_box1 .chart tr th{background-color: #f7f7f7;}
.sub02 .guide .guide_box1 .chart tr:nth-of-type(2) td:nth-of-type(4){text-align: left;}
.sub02 .guide .guide_box1 .chart tr:nth-of-type(2) td:nth-of-type(4) strong{color:#f00c22;}
.sub02 .guide .guide_box1 p{
    font-size: 16px;
    color: #333;
    text-align: left;
    line-height:30px;
    margin: 10px 0;
}
.sub02 .guide .guide_box1 span{
    display: block;
    font-size: 16px;
    color:#333;
    line-height:30px;
    text-align: left;
    padding-left:20px;
}
.sub02 .guide .guide_box1 span strong{
    font-size: 16px;
    color: #f00c22;
}




.sub02 .guide .guide_box2{margin-top:60px;}
.sub02 .guide .guide_box2 h3{
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    background: url(../img/bg_sub_tit1a.png) left 4px no-repeat;
}
.sub02 .guide .guide_box2 .chart{
    width:100%;
    border-top:3px solid #00389a;
    margin-top:10px;
}
.sub02 .guide .guide_box2 .chart tr th,
.sub02 .guide .guide_box2 .chart tr td{
    font-size:16px;
    color:#333;
    padding:20px;
    border:1px solid #ccc;
    text-align: center;
    line-height:30px;
}
.sub02 .guide .guide_box2 .chart tr th{background-color: #f7f7f7;}
.sub02 .guide .guide_box2 .chart tr td strong{
    font-size:16px;
    color:#00389a;
}

.sub02 .guide .guide_box2 span{
    display: block;
    font-size:16px;
    color:#333;
    text-align: left;
    margin-top:10px;
}

.sub02 .guide .guide_box2 p{
    font-size:16px;
    color:#333;
    text-align: left;
    margin-top:10px;
}
.sub02 .guide .guide_box2 span{
    display: block;
    padding-left:20px;
    line-height:30px;
    font-size:16px;
    color:#f00c22;
}

.sub02 .guide .guide_box3{margin-top:60px;}
.sub02 .guide .guide_box3 h3{
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    background: url(../img/bg_sub_tit1a.png) left 4px no-repeat;
}
.sub02 .guide .guide_box3 .chart{
    width:100%;
    border-top:3px solid #00389a;
    margin-top:10px;
}
.sub02 .guide .guide_box3 .chart tr td{
    font-size:16px;
    color:#333;
    padding:20px;
    border-bottom:1px solid #ccc;
    text-align: left;
    line-height:30px;
}
.sub02 .guide .guide_box3 .chart tr th{background-color: #f7f7f7;}
/* sub02 */



/* sub03 */
/* sub03_01 */
.sub03_01 .cont_box h3{
    font-size:32px;
    color:#333;
    text-align: left;
}
.sub03_01 .cont_box ul{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap:40px;
    margin-top:20px;
}
.sub03_01 .cont_box ul li{width:100%; border:1px solid #ccc; padding:20px;}

.sub03_01 .cont_box .tit h4{
    font-size:22px;
    color:#333;
    text-align: left;
    margin-bottom:20px;
}
.sub03_01 .cont_box .tit p{
    font-size:18px;
    color:#333;
    text-align: left;
    line-height:32px;
    padding:10px 0 10px 40px;
    position: relative;
}
.sub03_01 .cont_box .tit p::before{
    content: '※';
    position: absolute;
    top:10px;
    left:15px;
    font-size:18px;
    color:#333;
}

.sub03_01 .cont_box .tit h5{
    font-size:18px;
    color:#000;
    text-align: left;
    padding:10px 0 0 20px;
}
.sub03_01 .cont_box .tit span{
    display: block;
    font-size:16px;
    color:#f00c22;
    line-height:30px;
    padding:5px 0 5px 40px;
    position: relative;
}
.sub03_01 .cont_box .tit span::before{
    content: '※';
    position: absolute;
    top:5px;
    left:15px;
    font-size:18px;
    color:#f00c22;
}


.sub03_01 .calendar{margin-top:120px;}
.sub03_01 .calendar h3{
    font-size:32px;
    color:#333;
    text-align: left;
}
.sub03_01 .calendar h3 strong{
    font-size:32px;
    color:#f00c22;
}

.sub03_01 .calendar .chart{
    width:100%;
    border-top:3px solid #1c1786;
    margin-top:20px;
}
.sub03_01 .calendar .chart tr th,
.sub03_01 .calendar .chart tr td{
    font-size:16px;
    line-height:32px;
    padding:20px;
    border:1px solid #ccc;
}
.sub03_01 .calendar .chart tr th{background-color: #f7f7f7; width:14.285%;}
.sub03_01 .calendar .chart tr td{vertical-align: top;}
.sub03_01 .calendar .chart .off{color:#f00c22; font-weight: 600;}
.sub03_01 .calendar .chart .blue{color:#0080ff; font-weight: 600;}
.sub03_01 .calendar .chart .red{color:#f00c22; font-weight: 600;}

.sub03_01 .calendar .chart tr td span{
    display: block;
    font-size:15px;
    color:#333;
    font-weight: 200;
    text-align: left;
}
.sub03_01 .calendar .chart tr td span strong{
    font-size:15px;
    color:#fff;
    padding:2px 4px;
    background-color: #777;
    border-radius: 3px;
}
.sub03_01 .calendar .chart tr td span a{
    font-size:15px;
    color:#fff;
    padding:2px 4px;
    background-color: #f00c22;
    border-radius: 3px;
}



.sub03_01 .schedule{margin-top:120px;}
/* sub03_01 */



/* sub03_02 */
.sub03_02 .info_box{margin-top:30px;}
.sub03_02 .info_box h3{
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    background: url(../img/bg_sub_tit1a.png) left 4px no-repeat;
}

.sub03_02 .info_box .info_box_list{
    border:1px solid #ccc;
    padding:20px;
    height:300px;
    overflow: auto;
}

.sub03_02 .info_box .info_box_list .tit{margin:20px 0;}
.sub03_02 .info_box .info_box_list .tit h4{
    font-size:18px;
    color:#000;
    text-align: left;
    margin-bottom:20px;
}
.sub03_02 .info_box .info_box_list .tit p{
    font-size:14px;
    color:#333;
    text-align: left;
    line-height:28px;
}
.sub03_02 .info_box label{
    display: block;
    margin-top:10px;
    text-align: right;
    font-size:14px;
    color:#333;
}
.sub03_02 .info_box label input{vertical-align: middle;}


.sub03_02 .privacy-consent{margin-top:30px;}
.sub03_02 .privacy-consent h3{
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    background: url(../img/bg_sub_tit1a.png) left 4px no-repeat;
}

.sub03_02 .privacy-consent .privacy-consent_list{
    border:1px solid #ccc;
    padding:20px;
}
.sub03_02 .privacy-consent .privacy-consent_list .tit{
    margin:20px 0;
    font-size:14px;
    color:#333;
    text-align: left;
    line-height:28px;
}
.sub03_02 .privacy-consent label{
    display: block;
    margin-top:10px;
    text-align: right;
    font-size:14px;
    color:#333;
}
.sub03_02 .privacy-consent label input{vertical-align: middle;}

.sub03_02 .proposer{margin-top:30px;}
.sub03_02 .proposer h3{
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    background: url(../img/bg_sub_tit1a.png) left 4px no-repeat;
}
.sub03_02 .proposer .proposer_list table{width:100%;}
.sub03_02 .proposer .proposer_list table tr th,
.sub03_02 .proposer .proposer_list table tr td{
    font-size:14px;
    padding:20px;
    color:#333;
    border:1px solid #ccc;
}
.sub03_02 .proposer .proposer_list table tr th{background-color: #f7f7f7;}
.sub03_02 .proposer .proposer_list table tr th:nth-of-type(1){width:30%;}
.sub03_02 .proposer .proposer_list table tr th:nth-of-type(2){width:70%;}

.sub03_02 .info_button{
    margin-top:30px;
    display: flex;
    justify-content: end;
}
.sub03_02 .info_button a{
    display: block;
    width:100px;
    transition: all .3s ease-in-out;
    text-align: center;
    padding:10px 0;
    color:#fff;
    background-color: #1c1786;
}
/* sub03_02 */
/* sub03 */



/* sub04 */
/* sub04 */



/* sub05 */
.sub05 .free-lesson .tit{margin-top:60px;}
.sub05 .free-lesson .tit h3{
    font-size:32px;
    color:#333;
    text-align: center;
}
.sub05 .free-lesson .tit .chart{
    width:100%;
    border-top:3px solid #00389a;
    margin-top:30px;
}
.sub05 .free-lesson .tit .chart tr th,
.sub05 .free-lesson .tit .chart tr td{
    font-size:18px;
    color:#333;
    padding:20px;
    border:1px solid #ccc;
}
.sub05 .free-lesson .tit .chart tr th{background-color: #f7f7f7;}



.sub05 .free-lesson .button{
    width: 250px;
    margin:30px auto;
}
.sub05 .free-lesson .button .btn{
    position: relative;
    color: #fff;
    overflow: hidden;
    display: block;
    overflow: hidden;
    padding:15px 0px;
    text-align: center;
    text-transform: uppercase;
    background-color: #00389a;
    z-index: 0;
    transition: all .3 ease-in-out;
}

.sub05 .free-lesson .button .btn::before,
.sub05 .free-lesson .button .btn::after {
    position: absolute;
    top: 50%;
    content: '';
    width: 20px;
    height: 20px;
    background-color: fff;
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: -1;
}
.sub05 .free-lesson .button .btn::before {
    left: -20px;
    transform: translate(-50%, -50%);
}
.sub05 .free-lesson .button .btn::after {
    right: -20px;
    transform: translate(50%, -50%);
}
.sub05 .free-lesson .button .btn:hover {
    color: #000;
    border:1px solid #ccc;
}
.sub05 .free-lesson .button .btn:hover::before {
    animation: criss-cross-left 0.8s both alternate;
}
.sub05 .free-lesson .button .btn:hover::after {
    animation: criss-cross-right 0.8s both alternate;
}

@keyframes criss-cross-left {
    0% {
        left: -20px;
        width: 20px;
        height: 20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes criss-cross-right {
    0% {
        right: -20px;
        width: 20px;
        height: 20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}
.sub05 .free-lesson .board{margin-top:60px;}

.sub05 .free-lesson .board .AWbbs_input_table textarea{
    height:180px;
    font-size:16px;
    line-height:30px;
}
.sub05 .free-lesson .board .AWbbs_input_table .top10{margin:0;}
.sub05 .free-lesson .board .AWbbs_input_table .top10 .only_chk.right{margin-bottom:10px;}


.sub05 .free-lesson .board .consult_cont table tr:nth-of-type(3) td select{margin:0 10px;}
.sub05 .free-lesson .board .consult_cont table tr:nth-of-type(3) td select:nth-of-type(1){margin:0; margin-right:10px;}
/* sub05 */
/* ------------------------------------------- sub -------------------------------------------------------- */
