@charset "utf-8";

@keyframes move1 {
    0% {
        margin-left: 0%;
    }
    100% {
        margin-left: -200%;
    }
}
@keyframes move2 {
    0% {
        margin-left: -200%;
    }
    100% {
        margin-left: 0%;
    }
}

html{
    -webkit-text-size-adjust : none;  /* 크롬, 사파리, 오페라 신버전 */
    -ms-text-size-adjust : none;  /* IE */
    -moz-text-size-adjust : none;  /* 파이어폭스 */
    -o-text-size-adjust : none;  /* 오페라 구버전 */
}
body{
    -webkit-text-size-adjust : none;  /* 크롬, 사파리, 오페라 신버전 */
    -ms-text-size-adjust : none;  /* IE */
    -moz-text-size-adjust : none;  /* 파이어폭스 */
    -o-text-size-adjust : none;  /* 오페라 구버전 */
    overflow-x: hidden;
}

/* head */
#header{
    position: fixed;
    z-index: 999;
    width: 100%;
    background-color: #000;
    padding: 20px;
    height: 23px;
}
.head_in{
    display: flex;
    align-items: center;
}
.head_logo{
    cursor: pointer;
    text-align: center;
}
.head_logo img{
    height: 23px;
    line-height: 23px;
}
.head_nav{
    display: none;
}
.head_nav ul{
    display: flex;
}

#icon + label + #ham_menu{
    width: 200px;
}

#ham_icon{
    position: fixed !important;
    right: 10px;
    z-index: 999;
}
#ham_icon{
    margin: auto 0;
}
#ham_menu li{
    margin-bottom: 20px;
    text-align: center;
}
input[id="icon"] {
    display:none;
} 

input[id="icon"] + label{
    display:block;
    width:40px;
    height:30px;
    cursor:pointer;  /* 커서를 올려놓을 때 모양이 바뀐다. */
    z-index: 900 !important;
} 

input[id="icon"] + label > span {
    position: absolute;
    display:block;
    width:100%;
    height:2px;
    border-radius:30px;
    background: #D9D9D9;
    transition: all 0.35s;  /* 진행되는 과정들을 천천히 보여줄 수 있다. 0.35초 동안 진행됨 */
}

input[id="icon"] + label > span:nth-child(1) {
    top:0px;
}

input[id="icon"] + label > span:nth-child(2) {
    top:50%;
    transform: translateY(-50%);  /* 엘리먼트를 변형할 때 쓴다. 비틀거나 구부리거나 돌릴 때 . 여러가지로 모양을 바꿀 때 */
}

input[id="icon"] + label > span:nth-child(3) {
    bottom:0px;
}


input[id="icon"]:checked + label > span:nth-child(1) {
    top:50%;
    transform:translateY(-50%) rotate(45deg);
}

input[id="icon"]:checked + label > span:nth-child(2) {
    opacity: 0;
}

input[id="icon"]:checked + label > span:nth-child(3) {
    bottom:50%;
    transform:translateY(50%) rotate(-45deg);
}

#icon + label + #ham_menu {
    position:fixed !important;  /* 스크롤을 내리더라도 같은 위치에서 붙어다닌다. */
    width:200px;
    height:100%;
    background: #000;
    top:0px;
    padding:60px 25px 25px 25px;
    box-sizing:border-box;
    left:-300px;
    z-index: 800 !important;
    transition: all 0.35s;
}

#icon:checked + label + #ham_menu {
    left:0px;
}
#icon:checked + label + #ham_menu > ul {
    padding-left: 0;
}
#icon:checked + label + #ham_menu > ul > li > a {
    color: #fff;
    text-decoration: none;
    text-align: left;
    margin-bottom: 30px;
    font-family: 'Danjo-bold-Regular';
}
/* head */

#main{
    padding-top: 50px;
}
/* sec1 */
.sec1_in img{
    width: 100%;
    height: auto;
    display: none;
}
.mo_banner img{
    display: block;
}
/* sec1 */

.main_slide li{
    padding: 0 5px;
}
.main_slide img{
    width: 100%;
    height: auto;
    padding: 0 5px;
}
.slick-slider{
    width: 1px;
    min-width: 100%;
    width: 100%;
}

/* sec1 marquee */

/* sec1 marquee */

/* video */
.sec_video{
    width: 100%;
    height: auto;
}
.sec_video video{
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}
.sec_video h3{
    font-size: 14px;
    padding: 20px 10px;
    text-align: center;
}
/* video */

/* sec1-1 */
#sec1-1 h3{
    text-align: center;
    margin-bottom: 20px;
}
.sec1-1_list li{
    margin-bottom: 10px;
}
.sec1-1_list li:last-child{
    margin-bottom: 0;
}
.sec1-1_list video{
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
}
/* sec1-1 */

/* sec2 */
.sec2_in{
    padding: 30px 20px;
}
.sec2_title h2{
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.sec2_title h2 span{
    color: #fff;
    background-color: #000;
}
.sec2_text1, .sec2_text2{
    text-align: center;
    font-weight: 700;
}
.sec2_text1{
    font-size: 0.8rem;
    margin-bottom: 10px;
}
.sec2_text2{
    font-size: 0.8rem;
}
.sec2_text2 span{
    font-weight: 700;
    font-size: 20px;
}
.sec2_infoL div, .sec2_infoR div{
    margin-bottom: 10px;
}
.sec2_infoL img, .sec2_infoR img{
    width: 100%;
    height: auto;
}
.sec2_info{
    display: flex;
}
.sec2_info p{
    text-align: center;
}
.sec2_info img{
    border-radius: 10px;
}
.sec2_infoL{
    margin-right: 10px;
}

.sec2_info4 > p > br{
    display: block;
}
/* sec2 */

/* sec3 */
#sec3{
    background-image: url(../img/sec3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.sec3_in{
    padding: 40px 20px;
}
.sec3_in h3{
    margin-bottom: 15px;
}
.sec3_in em{
    text-emphasis: dot;
    font-size: 1.2em;
}
.sec3_in span{
    font-size: 1.2em;
    background-color: #000;
    color: #fff;
}
.sec3_in p{
    font-weight: 700;
    margin-bottom: 10px; 
}
/* sec3 */

/* sec3-line */
#marquee{
    overflow: hidden;
    position: relative;
    height: 100px;
    background-color: #000;
}
.marquee_strok img{
    width: auto;
    height: 50px;
    position: absolute;
    top: 0;
    white-space: nowrap;
    animation: move1 50s linear infinite;
}
.marquee_strok img, .marquee_fill img{
    height: 50px;
}
.marquee_fill img{
    width: auto;
    height: 50px;
    position: absolute;
    bottom: 0;
    white-space: nowrap;
    animation: move2 50s linear infinite;
}
/* sec3-line*/

/* sec4 */
#sec4{
    background-image: url(../img/sec4_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}
.sec4_in{
    padding: 20px;
}
.sec4_title h3{
    margin-bottom: 10px;
}
.sec4_title h3 span{
    text-emphasis: dot;
    font-size: 1.2em;
}
.sec4_title p{
    font-weight: 700;
}
.sec4_img img{
    width: 100%;
    height: auto;
}
/* sec4 */

/* sec5 */
#sec5{
    overflow: hidden;
    background-image: url(../img/sec5bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.sec5_in{
    padding: 40px 20px;
}
.sec5_title{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin: 0 auto 10px auto;
}
.sec5_title h3{
    font-size: 1em;
    margin-bottom: 5px;
    margin-right: 10px;
}
.sec5_title img{
    width: 70%;
    height: auto;
}
.sec5_list ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.sec5_list li{
    padding: 0 5px;
    box-sizing: border-box;
    width: 50%;
    margin-bottom: 10px;
}
.sec5_list img{
    width: 100%;
    height: auto;
    border: 1px solid #fff;
}
.slick img{
    width: 100%;
    height: auto;
}
.slick span {
    background: #3498db;
    color: #fff;
    font-size: 36px;
    position: relative;
    text-align: center;
    transform: translate(0, 0) scale(.4);
    transition: all .4s ease;
    filter: brightness(30%);
}
.slick-slide.lt2 span {
    transform: translate(10%, 0) scale(.6);
}
.slick-slide.lt1 span {
    filter: brightness(30%);
    transform: translate(5%, 0) scale(.8);
}
.slick-slide.gt1 span {
    filter: brightness(30%);
    transform: translate(-5%, 0) scale(.8);
}
.slick-slide.gt2 span {
    transform: translate(-10%, 0) scale(.6);
}
.slick-slide.slick-center span {
    z-index: 1;
    transform: scale(1);
    filter: brightness(100%);
    opacity: 1;
    color: #e67e22;
}
.slick-prev, .slick-next{
    position: absolute;
    top: 50%;
    appearance: none;
    margin-top: -10px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    color: transparent;
    outline: none;
    z-index: 100;
}
  
.slick-prev {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
    left: 5%;
}
.slick-next {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
    right: 5%;
}
  
/* sec5 */

/* 쇼츠 */
.short_in{
    padding: 30px 0 0;
}
.short_title{
    text-align: center;
    margin-bottom: 20px;
}
.short_title h3{
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.short_title p{
    font-size: 0.8rem;
}
.short_tab{
    max-width: 292px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.short_tab ul{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.short_tab li{
    cursor: pointer;
    margin: 0 5px;
    width: 80px; height: 30px; 
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100% auto;
}
.content{
    background-image: url(../img/concon.png);
}
.dance{
    background-image: url(../img/inin.png);
}
.store{
    background-image: url(../img/camcam.png);
}
.card{
    background-image: url(../img/cardcard.png);
}
.short_tab .on{
    padding-bottom: 20px;
    margin-bottom: -20px;
}
.content.on{
    background-image: url(../img/conconb.png);
}
.dance.on{
    background-image: url(../img/ininb.png);
}
.store.on{
    background-image: url(../img/camcamb.png);
}
.card.on{
    background-image: url(../img/cardcardb.png);
}
.short_list ul{
    display: none;
}
.short_list .view{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.short_list li{
    position: relative; /* absolute는 부모가 relative일 때 부모를 따라간다. */
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 비율 */
}
.short_list iframe{
    position: absolute;
    width: 100%; /* 부모에 맞게 꽉 채운다. */
    height: 100%;
}
#card_news, #insta_slide, #food_slide{
    padding: 0 10px;
}
#card_news ul, #insta_slide ul, #food_slide ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#card_news li, #insta_slide li, #food_slide li{
    width: 50%;
    padding-bottom: 0;
    padding: 5px;
    box-sizing: border-box;
}
#card_news img, #insta_slide img, #food_slide img{
    width: 100%; height: auto;
}
/* 쇼츠 */

/* sec6 */
#sec6{
    background-color: #F5F5F5;
}
.sec6_in{
    padding: 20px;
}
.sec6_in h3, .sec6_in > p{
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}
.sec6_in > p{
    margin-bottom: 20px;
}
.sec6_list li{
    display: flex;
    margin-bottom: 10px;
    justify-content: center;
}
.sec6_list img{
    width: 50%;
    height: auto;
    margin-right: 10px;
}
.sec6_txt{
    margin-top: 20px;
}
/* sec6 */

/* sec7 */
#sec7{
    background-image: url(../img/sec7_Bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}
.sec7_in{
    padding: 0 10px 40px 10px;
}
.sec7_in h3{
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
}
.sec7_title p{
    text-align: center;
    font-size: 0.8rem;
    color: #fff;
    margin-bottom: 30px;
}
.sec7_tab{
    margin: 0 auto;
    padding-top: 30px;
    background: linear-gradient(to bottom, #1b4194, transparent);
}
.sec7_tab ul{
    max-width: 260px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.sec7_tab li{
    cursor: pointer;
    margin: 0 5px;
    margin-bottom: 20px;
    width: 30%; height: 30px; 
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100% auto;
}
.sec7_tab .on{
    padding-bottom: 20px;
    margin-bottom: 0px;
}
.hos{
    background-image: url(../img/hhh.png);
}
.vlog{
    background-image: url(../img/vvv.png);
}
.fashion{
    background-image: url(../img/fff.png);
}
.company{
    background-image: url(../img/sss.png);
}
.lizard{
    background-image: url(../img/lll.png);
}

.hos.on{
    background-image: url(../img/hosb.png);
}
.vlog.on{
    background-image: url(../img/vlob.png);
}
.fashion.on{
    background-image: url(../img/pasb.png);
}
.company.on{
    background-image: url(../img/comb.png);
}
.lizard.on{
    background-image: url(../img/liab.png);
}
/*
.sec7_tab .on::before{
    position: absolute;
    top: 20px; left: 0;
    content: "";
    display: block;
    height: 20px;
    width: 100%;
    background-image: url(../img/after2.png);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}
*/
.sec7_list ul{
    display: none;
}
.sec7_list .view{
    display: flex;
    flex-wrap: wrap;
}
.sec7_list li{
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
}
.sec7_list img{
    width: 100%;
    height: auto;
}
.sec7_list li{
    position: relative; /* absolute는 부모가 relative일 때 부모를 따라간다. */
    width: 100%;
}
.sec7_list iframe{
    position: absolute;
    width: 100%; /* 부모에 맞게 꽉 채운다. */
    height: 100%;
}
/* sec7 */

/* sec72 */
.sec72_in{
    padding: 30px 10px;
}
.sec72_in h3{
    font-size: 1.3rem;
    text-align: center;
    color: #000;
    margin-bottom: 20px;
}
.sec72_in p{
    text-align: center;
    margin-bottom: 30px;
}
.sec72_tab ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    border-radius: 10px;
}
.sec72_tab li{
    margin: 0 5px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    padding: 10px;
    height: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
}
.sec72_tab li img{
    width: auto;
    height: 15px;
}
.sec72_tab .on{
    border: none;
    color: #fff;
    border: 1px solid #000;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}
.sec72_list ul{
    display: none;
}
.sec72_list li{
    margin-bottom: 10px;
}
.sec72_list .view{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.sec72_list img{
    width: 100%;
    height: auto;
}
.sec72_list li{
    position: relative; /* absolute는 부모가 relative일 때 부모를 따라간다. */
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 비율 */
}
.sec72_list iframe{
    position: absolute;
    width: 100%; /* 부모에 맞게 꽉 채운다. */
    height: 100%;
}
/* sec72 */

/* sec8 */
#sec8{
    background-color: #F5F5F5;
}
.sec8_in{
    padding: 40px 20px;
}
.sec8_logo{
    width: 100%;
    text-align: right;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.sec8_logo img{
    width: 75%;
    height: auto;
}
.sec8_text{
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 700;
}
.sec8_text em{
    display: block;
    margin-bottom: 5px;
}
.sec8_text span{
    background-color: #000;
    color: #fff;
    font-size: 1.2em;
}
.sec8_view{
    margin-top: 20px;
}
.sec8_view ul{
    display: flex;
}
.sec8_view li{
    width: 50%;
    border-radius: 10px;
    padding: 10px;
    background-color: #e2e2e2;
}
.sec8_view li:first-child{
    margin-right: 10px;
}
.sec8_name{
    font-size: 0.8rem;
}
.sec8_count{
    font-weight: 700;
}
.sec8_img{
    margin-top: 30px;
}
#sec8 .slick-prev{
    border-color: transparent rgba(0, 0, 0, 0.6) transparent transparent;
}
#sec8 .slick-next{
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.6);
}
/* sec8 */

/* sec9 */
#sec9{
    padding: 20px;
    background-color: #D9D9D9;
}
.sec9_in{
    border: 1px solid #fff;
    padding: 10px;
}
.sec9_in h3{
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 10px;
}
.sec9_in h3 br{
    display: none;
}
.sec9_text{
    display: flex;
    justify-content: center;
    align-items: center;
}
.sec9_text h4{
    margin-top: -4px;
}
.sec9_text span{
    font-size: 0.9rem;
    font-weight: 900;
    margin: 0 2px;
}
.sec9_text1, .sec9_text2{
    display: flex;
    font-size: 10px;
    font-weight: 700;
}
.sec9_text1{
    margin-right: 20px;
}
.sec9_info{
    font-size: 10px;
}
.sec9_more{
    text-align: center;
    margin-bottom: 10px;
}
.sec9_more a{
    color: #fff;
    padding: 7px 10px;
    background-color: #000;
    font-size: 10px;
}
/* sec9 */

/* sec10 */
#sec10{
    background-image: url(../img/sec10bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.sec10_in{
    padding: 150px 20px;
}
.sec10_in h3{
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    font-size: 0.8rem;
}
.sec10_que{
    text-align: center;
}
.sec10_que a{
    border: 1px solid #fff;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
}
/* sec10 */

/* foot */
#footer{
    background-color: #000;
}
.foot_in{
    padding: 40px 20px;
}
.foot_in h3, .foot_in p{
    color: #fff;
}
.foot_in h3{
    margin-bottom: 10px;
}
.foot_in p{
    display: inline;
}
.f_info p::after{
    content: "";
    display: inline-block;
    width: 1px;
    height: 13px;
    margin-left: 6px;
    margin-right: 0px;
    margin-bottom: -1px;
    background-color: #fff;
}
.f_info p:last-child::after{
    display: none;
}
.copyright{
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 1em;
}
/* foot */

.youtube {
    background-color: #000;
    margin-bottom: 30px;
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
    cursor: pointer;
}
.youtube img {
    width: 100%;
    top: -16.82%;
    left: 0;
    opacity: 0.7;
}
.youtube .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba( 0,0,0,0.6 );
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
}
.youtube .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
}
.youtube img, .youtube .play-button {
    cursor: pointer;
}
.youtube img, .youtube iframe, .youtube .play-button, .youtube .play-button:before {
    position: absolute;
}
.youtube .play-button, .youtube .play-button:before {
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0 );
}
.youtube iframe {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

/* 탑 버튼 */
.top_btn{
    cursor: pointer;
    position: fixed;
    bottom : 2%; right: 10px;
    z-index: 500;
}
.topbt{
    width: 50px;
    height: 50px;
    border-radius: 500px;
    background-color: rgba(255, 255, 255, 0.5);
    background-image: url(../img/topbtn.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50% auto;
}

.sec_video h3{
    font-size: 1.3rem;
}



/* 영상 팝업 */
.wrapper iframe {
    display: none;
}
.fslightbox-slide-number-container{
    display: none;
}
.fslightbox-toolbar div:first-child{
    display: none;
}



.sec8_img img{
    width: 100%;
    height: auto;
}


@media screen and (min-width:300px) {

    .sec7_video iframe{
        height: 250px;
    }

    #sec4{
        margin-bottom: 50px;
    }

    /* short */
    .short_title h3{
        font-size: 25px;
    }
    .short_title p{
        font-size: 23px;
    }
    /* short */

    /* sec72 */
    .sec72_tab li{
        font-size: 18px;
    }
    /* sec7 */
}

@media screen and (min-width:350px) {
    
    .sec8_name{
        margin-bottom: 10px;
    }

    .sec9_text span{
        font-size: 1rem;
    }
    .sec9_in h3{
        font-size: 14px;
    }
    .sec9_text p, .sec9_text h4{
        font-size: 0.7rem;
    }
    .sec9_text h4{
        margin-top: -5px;
    }
}

@media screen and (min-width:400px) {

    .sec2_title h2, .sec7_in h3, .sec72_in h3, .sec5_title h3{
        font-size: 1.8rem;
    }
    .sec2_text1, .sec2_text2, .sec7_title p, .sec9_in h3, #sec10_in h3, .sec8_name{
        font-size: 1rem;
    }
    .sec8_text{
        font-size: 1.3rem;
    }

    .sec9_in{
        padding: 20px 10px;
    }
    .sec9_in h3 br{
        display: block;
    }
}



@media screen and (min-width:500px) {

    .sec2_title h2, .sec7_in h3, .sec72_in h3, .sec5_title h3, .sec_video h3, .short_title h3{
        font-size: 1.8rem;
    }
    .sec2_text1, .sec2_text2, .sec7_title p, .sec9_in h3, #sec10_in h3, .sec8_name, .short_title p{
        font-size: 1rem;
    }
    .sec8_text{
        font-size: 1.3rem;
    }

    /* sec1 */
    .sec_video video{
        width: 70%;
        height: auto;
    }
    /* sec1 */

    #sec1-1 h3{
        font-size: 25px;
    }
    .sec1-1_list ul{
        display: flex;
        justify-content: center;
    }
    .sec1-1_list li{
        width: 50%;
        height: auto;
    }

    /* sec3-line */
    #marquee{
        height: 120px;
    }
    .marquee_strok img{
        width: auto;
        height: 60px;
        position: absolute;
        top: 0;
        white-space: nowrap;
    }
    .marquee_strok img, .marquee_fill img{
        height: 60px;
    }
    .marquee_fill img{
        height: 60px;
    }
    /* sec3-line*/

    /* sec2 */
    .sec2_in{
        padding: 60px 20px;
    }
    .sec2_text1, .sec2_text2{
        font-size: 1.2em;
    }
    .sec2_text2 span{
        font-size: 1.7em;
    }
    /* sec2 */

    /* sec3 */
    .sec3_in h3{
        font-size: 1.5em;
    }
    .sec3_in p{
        font-size: 1.2em;
    }
    /* sec3 */

    /* sec4 */
    .sec4_in{
        padding: 40px 20px;
    }
    .sec4_title h3{
        font-size: 1.5em;
        margin-bottom: 20px;
    }
    .sec4_title p{
        font-size: 1.2em;
    }
    /* sec4 */

    .sec7_in{
        padding: 0 20px 60px 10px;
    }
    .sec7_tab{
        padding-top: 60px;
        margin-bottom: 30px;
    }
    .sec72_in{
        padding: 60px 10px;
    }
    .sec72_tab li{
        height: 20px;
    }
    .sec72_tab li img{
        height: 20px;
    }

    /* short */
    .short_tab li{
        width: 100px;
        height: 50px;
    }

    /* sec5 */
    .sec5_in{
        padding: 60px 0px;
    }
    .sec5_title h3{
        font-size: 1.7em;
    }
    .sec5_title img{
        width: 60%;
    }
    .sec5_list{
        margin-top: 20px;
    }
    .sec5_list li{
        padding: 0 30px;
    }
    /* sec5 */

    /* 쇼츠 */
    .short_in{
        padding: 60px 20px 20px 20px;
    }
    /* 쇼츠 */

    /* sec6 */
    .sec6_in{
        padding: 40px 20px;
    }
    .sec6_in h3{
        font-size: 1.5em;
    }
    .sec6_in p{
        font-size: 1.2em;
    }
    /* sec6 */

    /* sec7 */
    .sec7_in h3{
        font-size: 1.5em;
    }
    .sec7_tab li{
        width: 80px;
        height: 30px;
    }
    .sec7_list ul{
        flex-wrap: wrap !important;
        justify-content: center;
    }
    .sec7_list li{
        margin: 0 10px;
        width: 45%;
        margin-bottom: 10px;
    }
    /* sec7 */

    /* sec72 */
    .sec72_in h3{
        font-size: 1.5em;
    }
    .sec72_tab li{
        font-size: 25px;
    }
    .sec72_list ul{
        flex-wrap: wrap !important;
        justify-content: center;
    }
    .sec72_list li{
        margin: 0 10px;
        width: 45%;
        padding-bottom:26.25%;
        padding-top: 30px; height:0;
        margin-bottom: 10px;
    }
    /* sec72 */

    /* sec8 */
    .sec8_logo img{
        width: 60%;
    }
    .sec8_text{
        font-size: 1.3em;
    }
    /* sec8 */

    /* sec9 */
    .sec9_in{
        padding: 20px;
    }
    .sec9_in h3{
        font-size: 1em;
        margin-bottom: 20px;
    }
    .sec9_in h3{
        font-size: 18px;
    }
    .sec9_text1 p, .sec9_text2 p{
        font-size: 14px;
    }
    .sec9_text h4{
        font-size: 14px;
        margin-top: -8px;
    }
    .sec9_text h4 span{
        font-size: 20px;
    }
    .sec9_more a{
        font-size: 18px;
    }
    /* sec9 */
}



@media screen and (min-width:700px) {

    .sec2_title h2, .sec7_in h3, .sec72_in h3, .sec5_title h3, .sec_video h3, .short_title h3{
        font-size: 2rem;
    }
    .sec2_text1, .sec2_text2, .sec7_title p, .sec9_in h3, #sec10_in h3, .sec8_name, .short_title p{
        font-size: 1rem;
    }
    .sec_video h3 br{
        display: none;
    }
    .sec8_text{
        font-size: 1.3rem;
    }
    .sec8_name{
        margin-bottom: 30px;
    }
    .sec9_text h4{
        font-size: 28px;
    }
    .sec9_text1 p, .sec9_text2 p{
        font-size: 28px;
    }
    .sec9_text h4 span{
        font-size: 2.2rem;
    }

    .short_tab{
        max-width: 500px;
    }

    /* sec1 */
    .sec_video video{
        width: 50%;
    }
    .sec7_tab ul{
        max-width: 700px;
    }
    /* sec1 */

    #sec1-1 h3{
        font-size: 30px;
    }
    .sec1-1_list{
        max-width: 700px;
        margin: 0 auto;
    }

    .sec_video h3{
        padding: 40px 0 60px 0;
        font-size: 1.5rem;
    }

    .short_title{
        margin-bottom: 50px;
    }
    .short_title h3{
        font-size: 35px;
    }
    .short_title p{
        font-size: 27px;
    }
    .short_title p br{
        display: none;
    }

    .sec6_list{
        max-width: 500px;
        margin: 0 auto;
    }
    .sec6_list img{
        width: 50%;
    }
    .sec6_txt{
        width: 50%;
    }

    .sec7_tab li{
        width: 120px;
        height: 50px;
    }

    .short_tab li{
        width: 150px;
        height: 80px;
    }

    .slick-prev {
        border-width: 20px 20px 20px 0;
    }
    .slick-next {
        border-width: 20px 0 20px 20px;
    }

    #card_news ul, #insta_slide ul, #food_slide ul{
        justify-content: center;
    }
    #card_news li, #insta_slide li, #food_slide li{
        width: 30%;
    }
}



@media screen and (min-width:800px) {

    #main{
        padding-top: 60px;
    }

    /* sec2 */
    .sec2_infoL, .sec2_infoR{
        display: flex;
    }
    .sec2_infoL{
        margin-left: 120px;
        margin-bottom: 30px;
    }
    .sec2_infoR{
        margin-right: 120px;
    }
    .sec2_info1, .sec2_info2{
        margin-right: 20px;
    }
    .sec2_title h2{
        font-size: 2.5em;
        margin-bottom: 40px;
    }
    .sec2_text1, .sec2_text2{
        font-size: 1.5em;
    }
    /* sec2 */

    /* sec3 */
    .sec3_in{
        padding: 100px 20px;
    }
    .sec3_in h3{
        font-size: 2em;
        margin-bottom: 30px;
    }
    .sec3_in p{
        font-size: 1.3em;
    }
    /* sec3 */

    /* sec4 */
    .sec4_in{
        padding: 100px 20px;
        display: flex;
        justify-content: center;
    }
    .sec4_title{
        width: 50%;
    }
    .sec4_title h3{
        font-size: 1.5em;
        margin-bottom: 40px;
    }
    .sec4_title h3 span{
        font-size: 1.4em;
    }
    .sec4_title p{
        font-size: 1.5em;
    }
    .sec4_img{
        width: 40%;
    }
    /* sec4 */

    /* 쇼츠 */
    .short_tab{
        max-width: 800px;
    }
    .short_tab li{
        font-size: 22px;
    }
    .short_tab .on::before{
        top: 29px;
    }
    /* 쇼츠 */

    /* sec6 */
    .sec6_in{
        padding: 70px 20px;
    }
    .sec6_in h3{
        font-size: 2em;
        margin-bottom: 20px;
    }
    .sec6_in p{
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    /* sec6 */

    /* sec7 */
    .sec7_in h3{
        font-size: 2em;
    }
    .sec7_title p{
        font-size: 20px;
    }
    .sec7_tab li{
        font-size: 20px;
    }
    /* sec7 */

    /* sec72 */
    .sec72_in h3{
        font-size: 2em;
    }
    .sec72_tab li{
        font-size: 20px;
    }
    /* sec72 */

    /* sec8 */
    .sec8_logo img{
        width: 40%;
    }
    .sec8_text{
        font-size: 1.5em;
    }
    .sec8_text span{
        font-size: 1.4em;
    }
    /* sec8 */

    /* sec9 */
    .sec9_in{
        padding: 40px 0;
    }
    .sec9_in h3{
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .sec9_info{
        font-size: 1em;
        margin-bottom: 30px;
    }
    .sec9_count97, .sec9_count8, .sec9_dot, .sec9_count1284{
        font-size: 4em !important;
        margin-top: -15px;
    }
    .sec9_text1 p, .sec9_text2 p{
        font-size: 28px;
    }
    .sec9_more a{
        font-size: 1.5em;
        padding: 10px 15px;
    }
    /* sec9 */

    /* sec10 */
    .sec10_in h3{
        font-size: 1.7em;
        margin-bottom: 60px;
    }
    .sec10_que a{
        font-size: 1.4em;
    }
    /* sec10 */

    /* 탑 버튼 */
    .top_btn{
        position: fixed;
        bottom : 4%; right: 20px;
        z-index: 500;
    }
    .topbt{
        width: 60px;
        height: 60px;
        background-color: rgba(255, 255, 255, 0.5);
        background-image: url(../img/topbtn.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 50% auto;
    }
}




@media screen and (min-width:900px) {

    /* head */
    .head_in{
        padding-right: 40px;
    }
    .head_logo{
        text-align: left;
    }
    .head_nav{
        display: block;
        width: 100%;
    }
    .head_nav ul{
        justify-content: right;
    }
    .head_nav li{
        margin-left: 20px;
    }
    .head_nav a{
        color: #fff;
        font-size: 1.2em;
    }
    #ham_icon{
        display: none;
    }
    /* head */

    .sec1_in img{
        display: block;
    }
    .mo_banner{
        display: none;
    }

    /* sec1 */
    .sec_video video{
        width: 40%;
    }
    /* sec1 */

    .sec9_count1284, .sec9_count97, .sec9_dot, .sec9_count8{
        font-size: 3.7rem !important;
        margin-top: -25px;
    }

    .short_list{
        margin-bottom: 30px;
    }
}



@media screen and (min-width:1200px) {


    .short_tab{
        max-width: 800px;
    }
    .sec7_tab ul{
        max-width: 1300px;
    }
    .sec7_tab li{
        width: 150px;
    }

    .sec2_title h2, .sec7_in h3, .sec72_in h3, .sec5_title h3, .sec_video h3, .short_title h3{
        font-size: 2rem;
    }
    .sec2_text1, .sec2_text2, .sec7_title p, .sec9_in h3, #sec10_in h3, .sec8_name, .short_title p{
        font-size: 1rem;
    }
    .sec_video h3 br{
        display: none;
    }
    .sec8_text{
        font-size: 1.3rem;
    }
    .sec8_name{
        margin-bottom: 30px;
    }
    .sec9_text h4{
        font-size: 30px;
    }
    .sec9_text1 p, .sec9_text2 p{
        font-size: 28px;
    }
    .sec9_text h4 span{
        font-size: 2.8rem;
    }

    /* head */
    #header{
        height: 50px;
    }
    .head_in{
        height: 50px;
    }
    .head_logo img{
        width: 300px;
        height: auto;
    }
    .head_nav a{
        font-size: 1.5em;
    }
    /* head */

    .sec_video h3{
        padding: 30px 0 60px 0;
        font-size: 2rem;
    }

    /* sec2 */
    .sec2_title h2{
        font-size: 2.5em;
    }
    .sec2_title > h2 > br{
        display: none;
    }
    .sec2_text2 .mo-br{
        display: none;
    }
    .sec2_info{
        max-width: 1200px;
        margin: 0 auto;
    }
    /* sec2 */

    /* sec3 */
    .sec3_in{
        padding: 100px;
    }
    .sec3_in h3{
        font-size: 3em;
        margin-bottom: 50px;
    }
    .sec3_in p{
        font-size: 1.8em;
    }
    /* sec3 */
    
    /* sec4 */
    .sec4_title h3{
        font-size: 2.8em;
    }
    .sec4_title p{
        font-size: 2.3em;
    }
    /* sec4 */

    /* sec5 */
    .sec5_in{
        padding: 100px 0;
    }
    .sec5_title{
        margin-bottom: 50px;
    }
    .sec5_title h3{
        font-size: 3em;
        margin-right: 30px;
    }
    .sec5_title img{
        width: 40%;
    }
    .sec5_list li{
        padding: 0 10px;
        width: 33.33% !important;
    }
    /* sec5 */

    .short_title h3{
        font-size: 40px;
    }
    .short_title p{
        font-size: 34px;
    }
    .short_tab li{
        font-size: 25px;
    }
    .short_list{
        max-width: 1400px;
        margin: 0 auto;
    }
    .short_list li{
        width: 30%;
        padding-bottom: 17%;
        margin-bottom: 30px;
    }
    .short_tab .on::before{
        top: 35px;
    }

    .sec7_tab{
        padding-top: 60px;
    }

    .sec72_tab li{
        height: 30px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .short_tab .on::before{
        top: 35px;
    }
    .sec72_tab li img{
        height: 30px;
    }

    /* sec6 */
    .sec6_in{
        padding: 120px 0;
    }
    .sec6_in h3{
        font-size: 3em;
    }
    .sec6_in h3 br{
        display: none;
    }
    .sec6_in p{
        font-size: 2em;
    }
    /* sec6 */

    .sec7_in{
        padding: 0 20px 80px 20px;
    }
    .sec7_in h3{
        font-size: 3em;
    }
    .sec7_title p{
        font-size: 25px;
    }
    .sec7_tab li{
        font-size: 25px;
    }
    .sec7_list{
        max-width: 1400px;
        margin: 0 auto;
    }
    .sec7_list li{
        width: 30%;
        margin-bottom: 30px;
    }

    .sec72_in{
        padding: 80px 20px;
    }
    .sec72_in h3{
        font-size: 3em;
        margin-bottom: 50px;
    }
    .sec72_tab{
        max-width: 1200px;
        margin: 0 auto;
    }
    .sec72_tab li{
        padding: 10px 20px;
        border-radius: 15px;
        font-size: 25px;
    }
    .sec72_list{
        max-width: 1400px;
        margin: 0 auto;
    }
    .sec72_list li{
        width: 30%;
        padding-bottom: 17%;
        margin-bottom: 30px;
    }

    /* sec8 */
    .sec8_in{
        padding: 80px 60px;
    }
    .sec8_text{
        font-size: 2.2em;
    }
    /* sec8 */

    /* sec9 */
    .sec9_in{
        padding: 60px 0;
    }
    .sec9_in h3{
        font-size: 35px;
        margin-bottom: 40px;
    }
    .sec9_text1{
        margin-right: 30px;
    }
    .sec9_info{
        font-size: 1.8em;
    }
    .sec9_text1 p, .sec9_text2 p{
        font-size: 35px;
    }
    .sec9_count97, .sec9_count8, .sec9_dot, .sec9_count1284{
        font-size: 2.3em;
    }
    .sec9_more a{
        font-size: 1.7em;
    }
    /* sec9 */

    /* sec10 */
    .sec10_in{
        padding: 250px 0;
    }
    .sec10_in h3{
        font-size: 2.5em;
    }
    .sec10_que a{
        font-size: 2em;
    }
    /* sec10 */

    /* foot */
    .foot_in{
        padding: 50px 0;
        max-width: 1200px;
        margin: 0 auto;
    }
    .foot_in h3{
        font-size: 1.5em;
        margin-bottom: 30px;
    }
    .f_info p{
        font-size: 1.5em;
    }
    .f_info p::after{
        height: 20px;
        margin-left: 15px;
        margin-right: 10px;
    }
    .copyright{
        margin-top: 30px;
    }
    /* foot */
}



@media screen and (min-width:1400px) {

    .sec2_title h2, .sec7_in h3, .sec72_in h3, .sec5_title h3, .sec_video h3, .short_title h3{
        font-size: 3rem;
    }
    .sec2_text1, .sec2_text2, .sec7_title p, .sec9_in h3, #sec10_in h3, .sec8_name, .short_title p{
        font-size: 1.8rem;
    }
    .sec_video h3 br{
        display: none;
    }
    .sec8_text{
        font-size: 3rem;
        margin-bottom: 50px;
    }
    .sec8_name{
        margin-bottom: 30px;
    }
    .sec9_text h4{
        font-size: 30px;
        margin-top: -20px;
    }
    .sec9_text1 p, .sec9_text2 p{
        font-size: 28px;
    }
    .sec9_text h4 span{
        font-size: 2.8rem;
    }
    
    /* head */
    #header{
        padding: 40px;
    }
    .head_in{
        justify-content: space-between;
    }
    .head_nav ul{
        justify-content: right;
    }
    .head_nav li{
        margin-right: 30px;
    }
    /* head */

    /* sec1 */
    .sec_video video{
        width: 25%;
    }
    /* sec1 */

    /* sec2 */
    .sec2_info{
        max-width: 1400px;
    }
    /* sec2 */

    .sec7_in h3{
        font-size: 3em;
    }

    .sec72_in h3{
        font-size: 3em;
    }

    .slick-prev {
        border-width: 30px 30px 30px 0;
    }
    .slick-next {
        border-width: 30px 0 30px 30px;
    }
}