@charset "UTF-8";

body,
h1,
h2,
h3,
select,
button {
    font-family: 'TheJamsil', 'SUIT Variable', sans-serif, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    letter-spacing: -1px;
    line-height: 150%;
}

img {
    border: none;
    vertical-align: top;
}


h1 {
    font-size: 64px;
    font-weight: 500;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 40px;
    font-weight: 500;
}

@media(max-width:800px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 34px;
    }
}

.top_btn {
    position: sticky;
    text-align: right;
    margin-right: 20px;
    margin-bottom: -50px;
    bottom: 20px;
    right: 30px;
    z-index: 999;
}

@media(max-width:800px) {
    .top_btn {
        margin-bottom: -25px;
    }

    .top_btn img {
        width: 50px;
    }
}

.red {
    color: red
}

/*메뉴타이틀용*/

#header {
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
    height: 100px;
    border-bottom: 1px solid #b8b8b8;
    background-color: #fff;
    color: #111;
}

#header .logo {
    font-size: 0;
    width: 286px;
    height: 80px;
    margin-top: 10px;
    background-image: url('../imgs/header/logo_black.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left;
    margin-left: 50px;
    border: none;
}

#header .login {
    font-size: 18px;
    margin-right: 50px;
    width: 286px;
    text-align: right;
}


#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .gnb {
    text-align: right;
}

#header .menu_btn {
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
}

#header .menu_btn div {
    width: 25px;
    height: 2px;
    background-color: #000;
    margin: 6px 0px;
    position: relative;
    transition: all .8s ease;
}

#header .menu_btn.lijo div {
    position: absolute;
    transition: all .8s ease;
}

#header .menu_btn.lijo div:nth-child(1) {
    transform: rotate(45deg);
    top: 7px;
    right: 0px;
}

#header .menu_btn.lijo div:nth-child(2) {
    width: 0px;
    top: 7px;
    right: 0px;
}

#header .menu_btn.lijo div:nth-child(3) {
    transform: rotate(-45deg);
    top: 7px;
    right: 0px;
}

#header .nav ul.gnb {
    margin-bottom: 0px;
    padding-left: 0px;
    display: flex;
    height: 100px;
    align-items: center;
}

#header .nav ul.gnb li {
    margin-bottom: 0px;
    color: #000;
    text-align: center;
    position: relative;
}

#header .nav ul.gnb li a {
    box-sizing: border-box;
    display: block;
    transition: .8s ease;
    text-transform: uppercase;
}

#header:hover .nav ul.gnb li a:hover,
#header.on .nav ul.gnb li a:hover {
    color: #0075bf
}

#header .nav ul.gnb>li>a {
    padding: 20px 40px;
}

#header .nav ul.gnb li ul.sub {
    position: absolute;
    padding-left: 0px;
    opacity: 0;
    visibility: hidden;
    padding-top: 50px;
    z-index: 3;
    width: 100%
}

#header .nav ul.gnb li ul.sub li {
    display: block;
    position: relative;
}

#header .nav ul.gnb li ul.sub li a {
    padding: 10px;
}



@media (min-width: 1024px) {
    #header .nav ul.gnb:hover li ul.sub {
        visibility: visible;
        opacity: 1;
        transform: translateY(0px);
    }

    #header .nav ul.gnb li:hover {
        display: inline-block;
        margin-bottom: 0px;
    }

    #header.open .hd_bg {
        position: absolute;
        width: 100%;
        background: #fff;
        z-index: 1;
        transition: all 0.3s;
    }

    #header .nav ul.gnb li ul.sub li a {
        text-align: center;
    }


    #header .nav .active {
        position: relative
    }

    #header .nav .active:hover:after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: #0075bf;
        position: absolute;
        left: 0;
        bottom: 0
    }

}

@media(max-width:1280px) {
    #header .logo {
        width: 180px;
    }

    #header .nav ul.gnb>li>a {
        padding: 20px
    }

    #header .login {
        width: 180px;
    }
}

@media(max-width:1024px) {
    #header {
        position: relative;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;

    }

    #header .login {
        margin-top: 10px;
        margin-right: 70px;
    }

    #header .menu_btn {
        display: block;
        top: 50%;
        transform: translateY(-50%)
    }

    #header .menu_btn.lijo {
        top: 30%
    }

    #header .nav ul.gnb {
        position: absolute;
        top: 65px;
        transform: translateX(100%);
        left: 0;
        transition: .8s ease;
        width: 100%;
        height: calc(100vh - 65px);
        background: #fff;
        overflow-y: auto;
        display: block
    }

    #header .nav ul.gnb li a {
        color: #111;
        text-align: left
    }

    #header .nav ul.gnb.surya {
        transform: translateX(0%);
    }

    #header .nav ul.gnb li ul.sub {
        opacity: 1;
        visibility: visible;
        display: none;
        position: relative;
        padding-top: 0px;
        padding-left: 20px;
        width: 100%;
        transition: 0s;
        transform: translateY(0px);
    }

    #header .nav ul.gnb li ul.sub:after {
        display: none;
    }

    .hd_bg {
        display: none !important
    }
}

@media(max-width:800px) {
    #header .logo {
        font-size: 0;
        width: 170px;
        height: 80px;
        margin-left: 20px;
    }

}

main {}

main .swiper {
    width: 100%;
    height: 100%;
}

main .swiper-slide {
    text-align: center;
    font-size: 18px;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

main .swiper-pagination {
    text-align: left
}

main .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    border: 1px solid white;
    opacity: 1;
}

main .swiper-pagination-bullet-active {
    width: 40px;
    transition: width .5s;
    border-radius: 5px;
    background: white;
    border: 1px solid transparent;
}

main.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 1240px;
    margin: 0 auto;
    position: inherit;
    bottom: 100px
}


main .swiper-slide .main_cont {
    display: flex;
    position: relative;
    width: 100%;
    height: 850px;
    text-align: center;
    align-items: center;
}

main .swiper-slide .text_area {
    position: absolute;
    color: white;
    text-align: left;
    width: 100%;
    margin: 0 auto;
    z-index: 99;
}

.text_area .cont {
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

main .swiper-slide .text_area .btn {
    width: 200px;
    height: 50px;
    text-align: center;
    color: #fff;
    border: 2px solid #fff;
    line-height: 50px;
    margin-top: 20px;
}

main .swiper-slide .main_cont .img-center {
    text-align: center;
    position: absolute;
    top: 0;
    right: -200%;
    bottom: 0;
    left: -200%;
    overflow: hidden;
  }
  
main .swiper-slide .main_cont img {
    max-width: 100%;
    max-height: 100%;
}
@media(max-width:1240px) {
    .text_area .cont {
        width: 90%;
    }

    main.swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal {
        width: 90%;
    }
}
@media(max-width:415px) {
    main .swiper-slide .main_cont {
        height: 600px;
    }
}
#section1 {
    max-width: 1240px;
    width: 95%;
    margin: 50px auto;
    padding: 50px 0;
}

#section1 h3 {
    padding-bottom: 30px
}

#section1 .swiper {
    width: 100%;
    max-width: 1240px;
    height: 100%;
}

#section1 .swiper-slide {
    text-align: left;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#section1 .button_box {
    display: flex;
    gap: 10px
}

#section1 .swiper-button-next {
    background: url(../imgs/main/next_on.png) no-repeat;
}

#section1 .swiper-button-prev {
    background: url(../imgs/main/prev_on.png) no-repeat;
}

#section1 .swiper-button-next,
#section1 .swiper-button-prev {
    position: inherit;
    margin-top: 0;
    width: 40px;
}

#section1 .swiper-button-next.swiper-button-disabled,
#section1 .swiper-button-next.swiper-button-disabled {
    background: url(../imgs/main/next_off.png) no-repeat;
    opacity: 1;
}

#section1 .swiper-button-next.swiper-button-disabled,
#section1 .swiper-button-prev.swiper-button-disabled {
    background: url(../imgs/main/prev_off.png) no-repeat;
    opacity: 1;
}

#section1 .swiper-button-next::after,
#section1 .swiper-button-prev::after {
    display: none;
}

#section1 .cont_box {
    border-radius: 10px;
    box-shadow: 1px 2px 13px 0px rgba(117, 117, 117, 0.68);
    width: 100%;
    padding: 30px 20px;
    margin: 10px;
    color: #111
}

#section1 .cont_box a {
    color: #111
}

#section1 .cont_box:hover {
    background-color: #0075bf;
}

#section1 .tag {
    background-color: #0075bf;
    border-radius: 5px;
    text-align: center;
    padding: 7px 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
}

#section1 .cont_box .title {
    color: #0075bf;
    font-size: 18px;
    font-weight: 400;
    padding: 20px 0;
}

#section1 .data,
#section1 .place {
    font-family: 'SUIT';
    font-size: 16px
}

#section1 .cont_box:hover .tag {
    background-color: #ffffff;
    color: #0075bf
}

#section1 .cont_box:hover .title,
#section1 .cont_box:hover .data,
#section1 .cont_box:hover .place {
    color: #fff
}

#section2 {
    width: 100%;
    margin: 50px auto;
    padding: 50px 0;
    background-image: url('../imgs/main/section2_bg.png');
    background-position: center;
    background-size: 100%;
}

#section2 .container {
    width: 95%;
    max-width: 1240px;
    margin: 0 auto;
}

#section2 h2,
#section2 h3 {
    color: #fff;
    padding-bottom: 10px;
}

#section2 .wrap {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    gap: 10px
}

#section2 .categori {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 240px;
    background-color: #fff;
    text-align: center;
}

#section2 .categori .img_box {
    background-color: red;
}

#section2 .categori .img_box img {
    width: 100%;
    max-width: 240px;
    object-fit: cover;
}

#section2 .categori span {
    padding: 10px;
    display: block;
}

@media(max-width:900px) {
    #section2 .wrap {
        display: block;
        overflow: auto;
    }

    #section2 .categori {
        float: left;
        width: 45%;
        max-width: none;
        margin: 10px;
    }

    #section2 .categori .img_box img {
        width: 100%;
        max-width: none;
    }

}

@media(max-width:560px) {
    #section2 .categori {
        width: 100%;
        max-width: none;
        margin: 0;
        margin-bottom: 10px;
    }

    #section2 .categori .img_box img {
        width: 100%;
        max-width: none;
    }

}

#section3 {
    width: 95%;
    max-width: 1240px;
    margin: 50px auto;
    text-align: center;
}

#section3 ul {
    border-top: 2px solid #111;
    margin: 30px 0
}

#section3 li {
    border-bottom: 1px solid #333333;
    padding: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    justify-content: space-between;
}

#section3 .type {
    font-size: 20px;
    border-radius: 50px;
    line-height: 50px;
    height: 50px;
    width: 100px;
    text-align: center;
    color: white;
}

#section3 .ing {
    background-color: #0075bf;
}

#section3 .end {
    background-color: #333333;
}

#section3 .notice_title {
    width: auto;
    text-align: left;
    flex: 1;
}

#section3 .notice_title a:hover {
    color: #0075bf
}

#section3 .data {
    text-align: right;
    width: 210px;
}

@media(max-width:800px) {
    #section3 li {
        padding: 15px 5px;
        font-size: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    #section3 .type {
        border-radius: 50px;
        line-height: 30px;
        height: 30px;
        width: 60px;
        text-align: center;
        color: white;
        font-size: 14px;
    }

    #section3 .data {
        width: 130px;
        font-size: 14px;
    }
}


footer {
    background-color: #333333;
    padding: 50px;
    font-size: 12px;
    font-weight: 200;
    color: #b8b8b8
}

footer a {
    color: #b8b8b8;
    text-decoration: underline;
}

footer .container {
    width: 95%;
    margin: 0 auto;
    max-width: 1240px;
}

footer .top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 40px;
}

footer .text {
    font-size: 12px;
    line-height: 24px;
}

@media(max-width:800px) {
    footer {
        padding: 20px;
    }

    footer img {
        width: 70%;
    }

    footer .top {
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }

}


/******서브페이지*******/
.menu_title {
    text-align: center;
    color: #fff;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 250px;
    margin-top: 100px;
    overflow: hidden;
}

.subimg1 {
    background-image: url('../imgs/sub/sub_menu_img1.png');
}

.subimg2 {
    background-image: url('../imgs/sub/sub_menu_img2.png');
}

.subimg3 {
    background-image: url('../imgs/sub/sub_menu_img3.png');
}

.menu_title h3 {
    line-height: 250px;
    background-color: rgba(3, 98, 175, 0.9);
}

.sub_menu {
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #b8b8b8;
}

.sub_menu ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 95%;
    max-width: 1240px;
    margin: 0 auto;
}

.sub_menu ul li {
    line-height: 50px;
}

.sub_menu .on {
    color: #0075bf;
    border-bottom: 2px solid #0075bf;
}

.sub_menu ul li:hover {
    color: #0075bf;
    border-bottom: 2px solid #0075bf;
}

.sub_menu ul::-webkit-scrollbar {
    height: 3px;
}

@media(max-width:415px) {
    .sub_menu ul {
        gap: 10px;
        width: 100%;
        overflow-x: auto;
    }
}

#search .wrap {
    width: 95%;
    max-width: 1240px;
    margin: 50px auto;
    text-align: center;
}

.filter {
    display: flex;
    background-color: #f2f2f2;
    border-radius: 10px;
    width: 100%;
    padding: 20px 50px;
    gap: 10px;
    margin-top: 30px;
    align-items: center;
}

.filter select {
    border-radius: 50px;
    background-color: #fff;
    flex: 1;
    height: 50px;
    padding: 10px;
    background-image: url(../imgs/sub/select_arrow.png);
    background-position: right 24px center;
    background-repeat: no-repeat;
}

.filter button {
    border-radius: 5px;
    width: 180px;
    font-size: 16px;
    height: 50px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter .plus {
    background-color: #0075bf;
    color: #fff;
}

.filter .excel {
    background-color: #fff;
    color: #111;
}

.filter .line {
    border-left: 1px solid #9b9b9b;
}

@media screen and (max-width: 900px) {
    .serach_icon img {
        width: 40px;
        padding-bottom: 10px;
    }

    .filter {
        display: flex;
        flex-direction: column;
        padding: 20px;
        align-items: normal;
    }

    .filter button {
        width: 100%;
    }

}

.data_list {
   /* margin: 50px auto;
    width: 95%;
    min-width:1200px*/
}

.delet_area {
    width: 100%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.delet {
    border-radius: 5px;
    border: 1px solid #bbbbbb;
    width: 120px;
    font-size: 16px;
    height: 50px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #111;
}

.delet_icon {
    border-radius: 50px;
    height: 18px;
    width: 18px;
    border: 2px solid #dc0000;
    color: #dc0000;
    line-height: 15px;
    margin: 0 auto;
}

.table {
    table-layout: fixed;
    width: 100%;
    text-align: center;
}

.table tr {}

.table th {
    background: #eef4ff;
    padding: 20px 10px;
    word-break: break-all
}

.table td {
    padding: 10px 10px;
    border-bottom: 1px solid #ccc;
    word-break: break-all
}

.table td a {
    text-decoration: underline;
}

.table td a:hover {
    color: #0075bf
}

/* 모달 스타일 */
/*모달버튼*/
.modal-content {
    width: 100%;
    top: 0;
}

.modal-custom {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 9999;
    cursor: pointer;
    display: none;
    text-align: center;
}

.modal-window {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    z-index: 9999;
    width: 95%;
    max-width: 700px;
}

.close-modal {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
}

.close-modal img {
    margin-bottom: 20px
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close-area {
    cursor: pointer;
    text-align: center;
    margin-bottom: 20px;
}

.modal-wrap {
    margin-top: 20px;
    font-size: 18px;
    background: rgba(255, 255, 255, 100);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 10px;
    max-width: 700px;
    width: 95%;
    padding: 50px 30px;
    margin: 0 auto;
    max-height: calc(100vh - 100px);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal_list {
    width: 100%;
    display: flex;
    font-size: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: left;
    gap: 10px;
}

.modal_list select {
    border-radius: 50px;
    background-color: #fff;
    flex: 1;
    width: 200px;
    height: 40px;
    padding: 10px;
    background-image: url(../imgs/sub/select_arrow.png);
    background-position: right 24px center;
    background-repeat: no-repeat;
}

.modal_list .type {
    width: 45%;
    padding-bottom: 15px;
}

.modal_list .full {
    width: 100%;
}


.modal_list .type .title {
    font-weight: 600;
}

.modal_list .type .data {
    margin-top: 10px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-weight: 400;
    /* border-bottom: 1px solid #333; */
}

.btn_wrap {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn_wrap button {
    border-radius: 5px;
    width: 180px;
    color: #fff;
    width: 40%;
    height: 50px;
}

.cancel {
    background-color: #666;
    color: #fff
}

.edit {
    background-color: #0075bf;
    color: #fff
}

.delete {
    background-color: red;
    color: #fff
}

.showCSS {
    /*display: inline;*/
}

.hideCss {
    display: none;
}

input {
    font-size: 18px;
    color: #222222;
    width: 250px;
    border: 1px solid black;
    padding: 3px;
    height: 40px;
    /*border-bottom: solid #aaaaaa 1px; */
    /* padding-bottom: 10px;
        padding-left: 10px; */
    /* position: relative; */
    background: none;
    z-index: 5;
}

input[type=checkbox] {
    height: 15px;
    width: 15px;
}

input::placeholder {
    color: #aaaaaa;
}

input:focus {
    outline: none;
}

input:focus,
.modal_list input:valid {
    font-size: 16px;
    bottom: 40px;
    color: #666;
    font-weight: bold;
}

input:focus,
.modal_list input:valid {
    width: 100%;
}
