
@font-face {
    font-family: 'Spoqa Han Sans Regular';
    font-weight: 400;
    src: local('Spoqa Han Sans Regular'),
    url('../fonts/SpoqaHanSans_subset/Spoqa\ Han\ Sans\ Light.woff2') format('woff2'),
    url('../fonts/SpoqaHanSans_subset/Spoqa\ Han\ Sans\ Light.woff') format('woff'),
    url('../fonts/SpoqaHanSans_subset/Spoqa\ Han\ Sans\ Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Spoqa Han Sans Light';
    font-weight: 300;
    src: local('Spoqa Han Sans Light'),
    url('../fonts/SpoqaHanSans_subset/Spoqa\ Han\ Sans\ Light.woff2') format('woff2'),
    url('../fonts/SpoqaHanSans_subset/Spoqa\ Han\ Sans\ Light.woff') format('woff'),
    url('../fonts/SpoqaHanSans_subset/Spoqa\ Han\ Sans\ Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'RIDIBatang';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_twelve@1.0/RIDIBatang.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: '777Balsamtint';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_nine_@1.1/777Balsamtint.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'YiSunShinDotumM';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_two@1.0/YiSunShinDotumM.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GyeonggiBatang';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/GyeonggiBatang.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}




body { 
    font-family: 'Spoqa Han Sans Light'; position: relative; 
    overflow-x: hidden;
}

header {
    width: 90%;
    margin: auto;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

header h1{
    width: 150px;
}
header .hamburger{
    display: none;
}

header nav{
    width: 550px;
    text-align: center;
}
header nav ul{
    display: flex;
    padding-top: 10px;
    justify-content: space-around;
}
header nav ul li {
    width: 100%;
    position: relative;
    font-size: 1.1em;
}
header nav ul li a{ 
    display: block;
    padding: 5px 0;
    color: #024534;
    transition: 0.2s;
}
header nav ul li::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #024534;
    width: 90%;
    height: 1px;
    opacity: 0;
    transition: 0.3s;
}
header nav ul li:hover a{ font-weight: bold;}
header nav ul li:hover::after{
    opacity: 1;
}

#side-meun{
    position: fixed;
    width: 30px;
    bottom: 5vh;
    left: 5%;
    z-index: 20;
}
#side-meun p { margin: 20px 0;}


#modal .modal_bg{
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0; left: 0;
    background: rgb(0, 0, 0, 0.7);
    
    z-index: 1000;
}
#modal .madal{
    display: none;
    position: fixed;
    top:50%; left: 50%;
    transform: translate(-50%, -50%); 
    width: 50%;
    height: 150px;
    z-index: 2000;
}
#modal .madal input {
    position: absolute;
    background-color: transparent;
    border-color: transparent transparent #838383;
    line-height: 0;
    width: 90%;
    height: 50px;
    color: white;
    outline: transparent;
    font-size: 1.5em;
    text-align: center;
    font-weight: lighter;
}
input::-ms-input-placeholder { color: rgb(182, 182, 182); }
input::-webkit-input-placeholder { color:rgb(182, 182, 182);}
input::-moz-placeholder { color: rgb(182, 182, 182); }
#modal .madal button{
    position: absolute;
    right: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    outline: transparent;
    cursor: pointer;
    border: transparent;
}
#modal .madal ul {
    position: absolute;
    text-align: center;
    width: 100%;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    bottom: -100%;
    font-size: 1.2em;
    color: #202020;
}
#modal .madal  ul li{
    background-color: rgba(255, 255, 255, 0.5);
    height: 40px;
    text-align: center;
    padding: 0 3%;
    border-radius: 50px;
    line-height: 40px;
}

@media(max-width: 1440px){
    header {
        width: 95%;
    }
    header h1{
        width: 130px;
    }
    #side-meun{
        width: 30px;
        left: 3%;
        bottom: 1vh;
    }

}
@media(max-width: 1280px){
    header {
        display: block;
    }
    header .hamburger{
        display: block;
        position: absolute;
        right: 3%;
        top: 30px;
        z-index: 100;
    }
    .hamburger .line {
        width: 40px;
        height: 4px;
        background-color: #024534;
        display: block;
        margin: 7px auto;
        transition: all 0.3s ease-in-out;
        border-radius: 2.5px;
    }

    #hamburger-11 {
        transition: all 0.3s ease-in-out;
      }

      #hamburger-11.on {
        animation: smallbig 0.6s forwards;
      }

      @keyframes smallbig {
    
        0%,
        100% {
          transform: scale(1);
        }
    
        50% {
          transform: scale(0);
        }
      }

      #hamburger-11.on .line:nth-child(1),
      #hamburger-11.on .line:nth-child(2),
      #hamburger-11.on .line:nth-child(3) {
        transition-delay: 0.2s;
      }

      #hamburger-11.on .line:nth-child(2) {
        opacity: 0;
      }

      #hamburger-11.on .line:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
      }

      #hamburger-11.on .line:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
      }

    header nav{
        background-color: rgb(255, 255, 255);
        position: fixed;
        z-index: 50;
        right: -100%;
        top: 0;
        width: 60%;
        height: 100vh;
        text-align: center;
        padding: 10%;
        box-shadow: -5px -5px 20px rgb(223, 223, 223);

        transition: 0.5s;
    }
    header nav.navmove{ right: 0%;}
    header nav::after{
        content: "";
        position: absolute;
        top: 3%;
        left: 5%;
        width: 200px;
        height: 50px;
        background-image: url(../img/logo_02.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }


    header nav ul{
        flex-direction: column; /*수직 정렬*/
        height: 50%;
    }
    header nav ul li {
        width: 100%;
        position: relative;
        font-size: 1.5em;
    }
    header nav ul li::after{
        width: 50%;
        height: 2px;
    }
}
@media(max-width: 960px){
    #modal .madal{
        width: 80%;
    }
    #modal .madal  ul li{
        height: 30px;
        line-height: 30px;
        font-size: 0.8em;
    }
}


@media(max-width: 600px){
    header nav{
        width: 80%;
        padding: 20% 10%;
    }
    header nav::after{
        width: 180px;  
    }
    header .hamburger{
        top: 20px;
    }

    header nav ul li {
        width: 100%;
        position: relative;
        font-size: 1.2em;
    }
}
@media(max-width: 480px){
    header h1{
        width: 100px;
        padding-left: 2%;
    }
    header nav::after{
        width: 130px;  
    }
    header .hamburger{
        display: block;
        position: absolute;
        right: 5%;
        z-index: 100;
    }
    .hamburger .line {
        width: 30px;
        height: 3px;
    }
    #hamburger-11.on .line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
      }

      #hamburger-11.on .line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
      }

      #side-meun{ 
        width: 25px;
        left: 5%;
    }
    #side-meun p { margin: 10px 0;}
    header nav ul{
        height: 40%;
    }
    header nav ul li {
        font-size: 1em;
    }

    #modal .madal input {
        height: 40px;
        font-size: 1em;
    }
    #modal .madal button{
        width: 35px;
        height: 40px;
    }
    #modal .madal  ul li{
        font-size: 0.7em;
    }
    #modal .madal{
        height: 100px;
    }

}















/* 배너 -------------------------------------------------------------------------------------- */

.banner{
    /* border: 2px solid gray; */
    /* background-color: gray; */
    width: 80%;
    margin: auto;
    height: 600px;
    position: relative;
}

.banner .swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner .swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #e2e2e2;
    height: 90%;
    margin-top: auto;

  }
  
.banner .swiper-slide>p{
    position: absolute;
    width: 30%;
    height: 100%;
    z-index: 10;
    color: transparent;
    background-size: contain;
    background-repeat: no-repeat;
    top: -5%;
    left: 15%;
    /* transform-origin: 50%, 50%; */
}



.banner .swiper-slide .hidden{
    position: absolute;
    width: 100%;
    height: 100%;
}
.banner .hidden p{
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.banner .hidden p img{ 
    opacity: 0.8;
    width: 100%;
}
.banner .hidden .text-box{
    position: absolute;
    width: 60%;
    right: 0;
    text-align: left;
    padding: 6%;
}
.banner .hidden .text-box li {
    margin: 20px 0;
}
.banner .hidden .text-box .txlist-01{
    font-family: 'RIDIBatang';
    text-align: center;
    color: white;
}


.banner .hidden .text-box .txlist-03{
    font-size: 1.3em;    
    line-height: 30px;
}



/* 배너 페이지별 */


.banner #slide-01>p{
    background-image: url(../img/banner01_png.png); 
}

.banner #slide-01 .txlist-01{
    background-color: #024534;
    width: 110px;
}
.banner #slide-01 .txlist-02{
    font-family: '777Balsamtint';
    color: #024534;
    font-size: 3.6em;
    margin: -20px 0;
}
.banner #slide-01 .txlist-04{
    color: #024534;
}



.banner #slide-02>p{
    background-image: url(../img/banner02_png.png);
}

.banner #slide-02 .txlist-01{
    background-color: #d24966;
    width: 150px;
}
.banner #slide-02 .txlist-02{
    font-family: 'YiSunShinDotumM';
    color: #d24966;
    margin: -10px 0;
    font-size: 3em;
}
.banner #slide-02 .txlist-04{
    color: #d24966;
}
.banner #slide-02 .text-box{
    padding: 8%;
}




.banner .sd-box{
    position: absolute;
    width: 100px;
    font-size: 1.8em;
    right: -4%;
    top: 40%;   
    z-index: 5;
}
.banner .sd-box div{
    width: 90%;
    margin: auto;
}
.banner .sd-box div img{
    width: 100%;
}
.banner .sd-box .swiper-pagination{
    position: static;
    margin: 10px;
    /* text-align: center !important; */
}
.swiper-button-prev,
.swiper-button-next {
  position: static;
  width: auto;
  height: auto;
  margin-top: 0;
  z-index: 10;
  cursor: pointer;
  outline: none;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: none;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: none;
}




@media(max-width: 1440px){
    .banner{
        width: 90%;
    }
    .banner .hidden .text-box li {
        margin: 25px 0;
    }
    .banner .hidden .text-box .txlist-03{
        font-size: 1.1em;    
        line-height: 30px;
    }

    .banner #slide-01 .txlist-02{
        font-size: 3em;
        margin: 0;  
    }
    .banner #slide-02 .txlist-02{
        font-size: 2.6em;
        margin: 0;  
    }

    .banner .sd-box{
        width: 90px;
        font-size: 1.5em;
        top: 40%;   
    }
}
@media(max-width: 1280px){
    .banner{
        width: 95%;
        margin: 0;
    }
}
@media(max-width: 960px){
    .banner{
        width: 90%;
        margin: auto;
        height: 65vh;
    }
    .banner .swiper-slide>p{
        width: 30%;
        top: -10%;
        left: 50%;
        transform: translateX(-50%);
    }
    .banner .hidden .text-box{
        position: absolute;
        width: 100%;
        top: inherit;
        right: 0;
        bottom: 0;
        text-align: center;
    }
    .banner .hidden p img{ 
        opacity: 0.8;
        width: inherit;
        min-width: 100%;
        min-height: 100%;
        transform-origin: center;
    }
    .banner .hidden .text-box li {
        margin: 1% 0;
    }
    .banner .hidden .text-box .txlist-01{
        margin: auto;

        font-size: 0.8em;
    }
    .banner .hidden .text-box .txlist-02{
        padding: 0%;
    }

    .banner .hidden .text-box .txlist-03{
        font-size:  1em;    
        line-height: 25px;
        font-family: 'Spoqa Han Sans Regular';
    }
    .banner .hidden .text-box .txlist-04{
        font-size: 0.8em;
        font-weight: bold;
    }

    .banner #slide-01 .txlist-02{
        font-size: 2.8em;
    }
    .banner #slide-02 .txlist-02{
        font-size: 2.6em;
    }
    .banner #slide-02>p{
        width: 35%;
    }


    .banner .sd-box{
        position: absolute;
        width: 80px;
        font-size: 1.5em;
        right: 8%;
        top: 0%;   
        z-index: 5;
    }
    .banner .sd-box .swiper-pagination{
        margin: 5px;
    }
}
@media(max-width: 600px){
    .banner .swiper-slide>p{
        width: 40%;
    }
    .banner #slide-02>p{
        width: 45%;
    }
    .banner .hidden .text-box .txlist-03{
        font-size:  0.9em;    
        line-height: 20px;
    }
    .banner #slide-01 .txlist-02{
        font-size: 2.2em;
    }
    .banner #slide-02 .txlist-02{
        font-size: 2em;
    }
}

@media(max-width: 480px){
    .banner{
        width: 90%;
        margin: auto;
        height: 430px;
    }
    .banner .swiper-slide>p{
        width: 45%;
    }
    .banner #slide-02>p{
        width: 52%;
    }
    .banner #slide-01 .txlist-02{
        font-size: 1.8em;
    }
    .banner #slide-02 .txlist-02{
        font-size: 1.5em;
    }
    .banner .hidden .text-box .txlist-03{
        font-size:  0.7em;    
    }
    .banner .hidden .text-box .txlist-04{
        font-size: 0.6em;
    }
    .banner .sd-box{
        position: absolute;
        width: 65px;
        font-size: 1.2em;
        right: 3%;
        top: 0%;   
        z-index: 5;
    }
}










/* about-------------------------------------------------------------------------------- */

#about{
    /* border: 1px solid red; */
    padding: 5%;
    text-align: center;
}
#about .tx01{
    font-family: 'GyeonggiBatang';
    font-size: 1.2em;
}
#about h2{
    font-family: 'RIDIBatang';
    font-size: 3.5em;
    line-height: 80px;
}
#about .tx02{
    margin: 1% 0 3%; 
    color: #747474;
}
#about .img{
    position: relative;
    width: 60%;
    height: 40vh;
    margin: auto;
    background: url(../img/aobut_img.png) no-repeat fixed;
    background-size: 70%;
    background-position: center;
}

@media(max-width: 1440px){
    #about .img{
        height: 35vh;
        background-position: center 110%;
    }

}
@media(max-width: 1280px){
    #about .img{
        width: 70%;
        height: 35vh;
        background-position: center 100%;
        background-size: contain;
    }
}
@media(max-width: 960px){
    #about{
        padding: 6% 0;
        text-align: center;
    }
    #about .tx01{
        font-size: 1em;
    }
    #about h2{
        font-size: 3em;
        line-height: 50px;
    }
    #about .tx02{
        margin: 3% 0 5%; 
        font-size: 0.8em;
    }
    #about .img{
        width: 70%;
        height: 300px;
        background-position: center 80%;
    }
}
@media(max-width: 600px){
    #about .tx01{
        font-size: 0.8em;
    }

    #about h2{
        font-size: 2.5em;
        line-height: 50px;
    }
    #about .img{
        width: 80%;
        height: 230px;
        background-attachment: inherit;
        background-size: cover;
    }
}
@media(max-width: 480px){
    #about .tx01{
        font-size: 0.7em;
    }
    #about h2{
        font-size: 2.2em;
        line-height: 40px;
    }
    #about .tx02{
        font-size: 0.7em;
    }
    #about .img{
        width: 80%;
        height: 150px;
    }
}







/* best-------------------------------------------------------------------------------- */
#best{
    text-align: center;
    padding: 3% 0;
}
#best h2{
    font-family: 'RIDIBatang';
    font-size: 3.5em;
    line-height: 80px;
}
#best h3{
    color: #727272;
}
#best>div{
    width: 80%;
    margin: 3% auto;
}
#best>div ul{
    display: flex;
    justify-content: space-between;
}

#best .imgbox{
    margin: auto;
    width: 400px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

#best .imgbox div {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  
}
  
  #best .imgbox:before,
  #best .imgbox:after {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    transition: all 0.5s ease;
  }
  #best #best01:before,
  #best #best01:after {
    background: #ffd588;
  }
  #best #best02:before,
  #best #best02:after {
    background: #ffeadc;
  }
  
  #best #best03:before,
  #best #best03:after {
    background: #ffdddb;
  }
  
  #best .imgbox:before {
    height: 0%;
    width: 2px;
  }
  
  #best .imgbox:after {
    width: 0%;
    height: 2px;
  }
  
  #best .imgbox:hover:before {
    height: 100%;
  }
  
  #best .imgbox:hover:after {
    width: 100%;
  }
  
  #best .imgbox:hover {
    background: transparent;
  }
  
  
  #best .imgbox div:before,
  #best .imgbox div:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    transition: all 0.5s ease;
  }

  #best #best01 div:before,
  #best #best01 div:after {
    background: #ffd588;
  }
  
  #best #best02 div:before,
  #best #best02 div:after {
    background: #ffeadc;
  }
  
  #best #best03 div:before,
  #best #best03 div:after {
    background: #ffdddb;
  }
  
  
  #best .imgbox div:before {
    width: 2px;
    height: 0%;
  }
  
  #best .imgbox div:after {
    height: 2px;
    width: 0%;
  }
  
  #best .imgbox div:hover:before {
    height: 100%;
  }
  
  #best .imgbox div:hover:after {
    width: 100%;
  }


#best .imgbox .png{
    position: absolute;
    width: 100%;
    height: 100%;
}
#best .imgbox .png img{width: 80%;position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}

#best .imgbox .hvimg{
    position: absolute;
    width: 99%;
    height: 100%;
    left: 50%; 
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.5s;
    overflow: hidden;
}
#best .imgbox .hvimg img{ width: 100%;}

#best>div ul li:hover .hvimg{
    opacity: 1;
}

#best .imgbox .btn{
    position: absolute;
    right: 10%;
    bottom: 10%;
    width: 50px;
    height: 50px;
    overflow: hidden;
    outline: transparent;
    background-color: transparent;
    border: transparent;
}
#best .imgbox .btn b{
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 50%;
    border: transparent;
    outline: none;
    font-size: 0.8em;
    color: white;
    background-color: #024534;
    left: 0;
    bottom: -100%;
    transition: 0.7s;
    padding: 25% 0;
    line-height: 15px;
}
#best .imgbox .btn b span{ display: block;}
#best>div ul li:hover .btn  b{
    bottom: 0%;
}

#best .title{
    font-size: 1.2em;
    margin: 10px;
}
#best .txt{
    font-family: 'GyeonggiBatang';
    color: #727272;
    font-size: 0.9em;
    width: 60%;
    margin: auto;
}







@media(max-width: 1440px){
    #best>div{
        width: 85%;
    }
    #best .imgbox{
        width: 300px;
        height: 300px;
    }
}
@media(max-width: 1280px){
    #best .imgbox{
        width: 250px;
        height: 250px;
    }
    #best .title{
        font-size: 1em;
    }
    #best .txt{
        font-size: 0.8em;
    }
}
@media(max-width: 960px){
    #best h2{
        font-size: 3em;
        line-height: 60px;
    }
    #best>div ul{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    #best .imgbox{
        width: 400px;
        height: 400px;
    }
    #best .title{
        font-size: 1.2em;
    }
    #best .txt{
        color: #727272;
        font-size: 0.7em;
        width: 55%
    }
}
@media(max-width: 600px){
    #best h2{
        font-size: 2.5em;
        line-height: 50px;
    }
    #best h3{
        font-size: 0.8em;
    }
    #best .imgbox{
        width: 300px;
        height: 300px;
    }
    #best .title{
        font-size: 1.1em;
    }

}
@media(max-width: 480px){
    #best h2{
        font-size: 2.2em;
        line-height: 40px;
    }
    #best h3{
        font-size: 0.7em;
    }
    #best .imgbox{
        width: 250px;
        height: 250px;
    }
    #best .imgbox .btn{
        width: 30px;
        height: 30px;
    }
    #best .imgbox .btn b{
        font-size: 1.2em;
        color: transparent;
    }
    #best .imgbox .btn b span{
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        color: white;}

    #best .title{
        font-size: 0.9em;
    }
}





/*키워드 아이템---------------------------------------------------------  */
#keyword{
    background-color: #efeded;
    padding: 3% 0;
}
#keyword article{
    width: 80%;
    margin: auto;
    display: flex;
}

#keyword article .tab{
    width: 25%;
    text-align: center;
    padding: 2% 0;
}
#keyword article .tab h2{
    font-family: 'RIDIBatang';
    font-size: 2.3em;
    line-height: 4vh;
}
#keyword article .tab h3{
    font-family: 'GyeonggiBatang';
    color: #747474;
    font-size: 0.9em;
}

#keyword article .tab ul{
    margin: 2% 0;
}
#keyword article .tab ul li{
    background-color:#dddddd;
    margin: 15% auto;
    width: 60%;
    border-radius: 50px;
}
#keyword article .tab ul li a{
    display: block; 
    padding: 10px 10%;
    transition: 0.3s;
    color: #005842;
}
#keyword article .tab li:hover,
#keyword article .tab li.active{
    background-color: white;
}


#keyword .contain{
    width: 100%;
    
}

#keyword .contain ul{
    width: 100%;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

#keyword .contain ul li{
    width: calc(100% / 3);
    position: relative;
}

#keyword .contain li figure{
    position: relative;
    width: 100%;
    height: 300px;
    padding: 3% 0;
}

@keyframes rad-move {
    0%{ border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    10%{ border-radius: 53% 47% 33% 67% / 60% 30% 70% 40%; }
    20%{ border-radius: 71% 29% 38% 62% / 72% 48% 52% 28%; }
    30%{ border-radius: 41% 59% 45% 55% / 33% 56% 44% 67%; }
    40%{ border-radius: 55% 45% 67% 33% / 77% 48% 52% 23%; }
    50%{ border-radius: 44% 56% 22% 78% / 31% 74% 26% 69%; }
    60%{ border-radius: 46% 54% 48% 52% / 61% 59% 41% 39%; }
    70%{ border-radius: 44% 56% 60% 40% / 63% 36% 64% 37%; }
    80%{ border-radius: 20% 80% 45% 55% / 31% 79% 21% 69%; }
    90%{ border-radius: 66% 34% 57% 43% / 49% 51% 49% 51%; }
    100%{ border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  }


#keyword .contain li figure div{
    position: absolute;  
    z-index: 5;
    width: 80%; 
    height: 80px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: white;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 0;
    animation: rad-move 30s linear infinite;

    transition: 0.5s;
}
#keyword .contain li figure div img{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}
#keyword .contain li figure div img:nth-child(2){
    display: none;
}
#keyword .contain li:hover div img:nth-child(1){
    display: none;
}
#keyword .contain li:hover div{
    box-shadow:  5px 5px 10px rgba(189, 189, 189, 0.5);
    
}
#keyword .contain li:hover div img:nth-child(2){
    display: block;
    position: absolute;
    width: 105%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);

}
#keyword .contain li:hover figure div{
    width: 95%; 
    height: 95%;
    border-radius:50%;
    overflow: hidden;
}

#keyword .contain .title{
    padding: 30px 0 5px;
    font-size: 1.1em;
}

#keyword .contain .txt{
    font-family: 'GyeonggiBatang';
    color: #727272;
    font-size: 0.9em;
}



@media(max-width: 1280px){
    #keyword article{
        display: flex;
        flex-direction: column;
    }
    #keyword article .tab{
        width: 100%;
    }
    #keyword article .tab ul{
        width: 80%;
        margin: 30px auto;
        display: flex;
        justify-content: space-around;  
    }
    #keyword article .tab ul li{
        width: calc(100% / 3);
        margin: 0 10px;
      }
      #keyword .contain .title{
        padding: 30px 0 5px;
        font-size: 1em;
    }
}

@media(max-width: 960px){
    #keyword article .tab ul{
        width: 100%;
    }
    #keyword .contain ul .none{
        display: none;
    }
    #keyword .contain ul li{
        width: calc(100% / 2);
    }
}

@media(max-width: 600px){
    #keyword article .tab ul li a{
        font-size: 0.7em;
    }
    #keyword .contain ul{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    #keyword .contain ul li{
        width: calc(85% / 1);
        margin: auto;
    }

    #keyword .contain .txt{
        font-size: 0.8em;
    }
    
}

@media(max-width: 480px){
    #keyword article{
        width: 100%;
        margin: 20px auto;
    }
    #keyword article .tab h2{
        line-height: 4vh;
    }
    #keyword article .tab h3{
        font-size: 0.7em;
    }

    #keyword .contain ul li{
        width: calc(75% / 1);
        margin: auto;
    }
    #keyword .contain li figure{
        height: 240px;
    }
}



/* 이벤트----------------------------------------------------------------------------- */
#event{
    padding: 5% 0;
}
#event .ev{
    width: 900px;
    height: 400px;
    margin: auto;
}

#event .evbox{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
#event .boxitem{
    width: calc(100% / 2);
    position: relative;
    overflow: hidden;
}
#event .boxitem>img{ 
    width: 100%; position: absolute; 
    top: 50%; transform: translateY(-50%); 
    transform-origin: center;
}
#event .item02{
    background-color: #ececec;
}

#event .item02 div{
    padding: 10%;
}
#event .item02 div h4{
    font-family: 'GyeonggiBatang';
    color: #727272;
}
#event .item02 div ul{
    font-size: 1.3em;
    padding: 15px 0;
}
#event .item02 div .btn{
    margin-top: 15%;
}
#event .item02 div .btn a{
    border: 2px solid #005842;
    padding: 10px 30px;
    color: #005842;
}
#event .item02 div .btn:hover a{ background-color: #005842; color: white;}


@media(max-width: 1280px){
    #event .ev{
        width: 600px;
        height: 300px;
    }
    #event .item02 div h4{
        font-size: 0.8em;
    }
    #event .item02 div ul{
        font-size: 1em;
        padding: 5% 0;
    }
    #event .item02 div .dd{ font-size: 0.8em;}
    #event .item02 div .btn a{
        border: 1px solid #005842;
        padding: 3% 10%;
        font-size: .9em;
    }
}

@media(max-width: 600px){
    #event .ev{
        width: 80%;
        height: 600px;
        margin: auto;
    }
    #event .evbox{
        flex-direction: column;
    }
    #event .boxitem{
        width: calc(100% / 1);
    }
    #event .item01{ height: 70%;}
    #event .boxitem>img{ 
        width: 100%;
        position: absolute; 
        top: 50%; transform: translateY(-50%);
        transform-origin: center;
    }
    #event .item02{
        background-color: transparent;
        height: 40%;
    }
    #event .item02 div{
        padding: 5% 10%;
        text-align: center;
    }
    #event .item02 div ul{
        font-size: 1em;
        padding: 15px 0;
    }
    #event .item02 div ul li { display: inline-block;}
    #event .item02 div .btn{
        margin-top: 10%;
   
    }
    #event .item02 div .btn a{
        padding: 2% 8%;
        background-color: #005842;
        color: white;
    }

}

@media(max-width: 480px){
    #event .ev{
        width: 80%;
        height: 450px;
    }
    #event .item02 div h4{
        font-size: 0.7em;
    }
    #event .item02 div ul{
        font-size: .9em;
        padding: 10px 0;
    }
    #event .item02 div .dd{ font-size: 0.7em;}
    #event .item02 div .btn{
        margin-top: 5%;
    }
    #event .item02 div .btn a{
        font-size: 0.7em;
    }
}





/* 스토리--------------------------------------------------------------------------------- */
#story{
    height: 450px;
    display: flex;
    text-align: center;
    margin-bottom: 5%;
}

#story div{
    width: calc(100% / 2);
    height: 100%;
    overflow: hidden;
    position: relative;
}
/* #story #video{ position: relative; border: 1px solid violet;} */
#story #video video {
    position: absolute;
    display: block;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center;
    width: 100%;
    height: auto;
    /* min-height: 100%; */
}
/* #story #video video source{
    width: 100%;
    height: 100%;
} */
#story #txt{
    background-color: #ececec;
    position: relative;
}

#story #txt div{
    position: absolute;
    height: auto;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}
#story #txt div p{
    margin-bottom: 20px;
}
#story #txt .txt_01{
    font-family: 'GyeonggiBatang';
}
#story #txt .txt_logo{
    width: 20%;
    height: auto;
    margin: 0 auto 10px;
}
#story #txt .txt_02{
    color: #6b6b6b;
}
#story #txt .txt_btn{
    font-family: 'GyeonggiBatang';
    width: 180px;
    margin: auto;
}
#story #txt .txt_btn a{ 
    display: block;
    border: 1px solid #024534;
    color: #024534;
    padding: 5% 10%; 
 }
#story #txt .txt_btn:hover{
    background-color: #024534;
}
#story #txt .txt_btn:hover a{
    color: white;
}


@media(max-width: 1440px){
    #story{
        height: 400px;
    }
    #story #video video {
        width: 120%;
    }
}
@media(max-width: 1280px){
    #story{
        height: 380px;
    }
    #story #video{
        width: 60%;
    }
    #story #video video {
        width: 130%;
    }
    #story #txt .txt_01{
        font-size: 0.8em;
    }
    #story #txt .txt_02{
        color: #6b6b6b;
        font-size: 0.9em;
    }
    #story #txt .txt_btn{
        width: 150px;
        font-size: 0.8em;
    }
}

@media(max-width: 960px){
    #story{
        flex-direction: column;
        height: 600px;
        width: 80%;
        margin: auto;
    }
    #story div{
        width: calc(100% / 1) !important;
        height: 100%;
        overflow: hidden;
        position: relative;
    }  
    #story #video video {
        width: 100%;
    } 
    #story #txt{
        background-color: transparent;
    }
}
@media(max-width: 600px){
    #story{
        display: none;
    }

    
}





/* 풋터--------------------------------------- */

footer{
    border-top: 2px solid #838383;
}
footer div{
    width: 80%;
    margin: 10px auto;
    
    position: relative;
}
footer .number{
    font-size: 1.5em;
    line-height: 30px;
    font-family: 'Spoqa Han Sans Regular';
    font-weight: bold;
}

footer ul{
    margin: 15px 0;
    font-size: 0.9em;
    line-height: 20px;
    color: #838383;
}

footer address{
    font-size: 0.8em;
    color: #838383;
}
footer .sns{
    position: absolute;
    right: 0;
    bottom: 40%;
    text-align: center;
}
footer .sns i{
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #024534;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 1.3em;
    color: white;
    border: 1px solid #024534;
}

footer .logo{
    position: absolute;
    right: 0;
    width: 110px;
    bottom: 0;
}
footer .sns i:hover{
    background-color: transparent;
    color: #024534;
}


@media(max-width: 960px){
    footer .number{
        font-size: 1.3em;
        line-height: 20px;
    }
    footer ul{
        margin: 15px 0;
        font-size: 0.8em;
        color: #838383;
        display: flex;
        justify-content: space-between;
        width: 65%;
    }
    footer .sns i{
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 1em;
    }
    footer .logo{
        width: 90px;
    }
}

@media(max-width: 600px){
    footer ul{
        width: 100%;
    }
    footer .sns{
        position: initial;
        margin: 10px 0;
    }
    footer .logo{
        position: initial;
        width: 90px;
        margin: auto;
    }
}
@media(max-width: 440px){
    footer ul{
        font-size: 0.6em;
    }
    footer address{
        font-size: 0.1em;
    }
}