@charset "utf-8";

html.ovh,
body.ovh{
    overflow: hidden;
}
body{
    overflow-x: hidden;
}

/* header */
#dim{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.2);
}
#header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    padding: 30px 0 25px;
}
#header .inner-layer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo{
    display: block;
    width: 195px;
    height: 49px;
    background-repeat: no-repeat;
    background-position: center 0;
    background-image: url('/img/new-image/h1_logo.png');
}
.header-logo a{
    display: block;
    width: 100%;
    height: 100%;
}
.btn-open{
    display: block;
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/img/new-image/ic_allmenu.png');
}
#header.fixed{
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4
}
#header.fixed .header-logo{
    background-image: url('/img/new-image/h1_logo_on.png');
}
#header.fixed .btn-open{
    background-image: url('/img/new-image/ic_allmenu_on.png');
}
#allmenu{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    padding-top: 45px;
    background-color: #101929;
}
#allmenu .inner-layer{
    position: relative;
    padding-top: 155px;
}
.btn-close{
    position: absolute;
    top: 0;
    right: 10px;
    width: 26px;
    height: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('/img/new-image/ic_allmenu_close.png');
}
.allmenu-logo{
    text-align: center;
}
.allmenu-logo a{
    display: inline-block;
    width: 254px;
    height: 62px;
    background-repeat: no-repeat;
    background-position: center 0;
    background-image: url('/img/new-image/img_allmenu_logo.png');
}
.gnb{
    margin-top: 90px;
}
.gnb > li{
    position: relative;
    float: left;
    width: 25%;
    text-align: center;
}
.gnb > li:not(:first-child):before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 3px;
    left: 0;
    width: 1px;
    height: 25px;
    background-color: rgba(255,255,255,0.2);
}
.gnb > li > a{
    display: block;
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.gnb > li:hover > a{    
    color: #318bad;
}
.sub-gnb{
    margin-top: 20px;
}
.sub-gnb > li > a{
    display: block;
    padding: 10px 0;
    font-size: 2.4rem;
    font-weight: 500;
    color: #acacac;
    text-align: left;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.sub-gnb > li:hover > a{
    color: #fff;
}
.gnb > li:first-child .sub-gnb{
    width: min(148px,100%);
    margin: 20px auto 0;
}
.gnb > li:nth-child(3) .sub-gnb{
    width: min(115px,100%);
    margin: 20px auto 0;
}

/* visual */
#visual{
    overflow: hidden;
    width: 100%;
    height: 100vh;
}
#visual .visual-wrap:not(:first-child){
    display: none;
}
#visual.slick-initialized .visual-wrap{
    display: block;
}
.visual-wrap{
    position: relative;
    width: 100%;
    height: 100%;
}
.visual-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: transform 3s ease-in-out;
    transition: transform 3s ease-in-out;   
}
.visual-img img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}
.visual-con{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.visual-con.inner-layer{
    padding-left: 160px;
    padding-right: 160px;
}
.visual-tit, .visual-tit-ver2{
    position: relative;
    padding-top: 90px;
    font-size: 8.6rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}
.visual-tit:before, .visual-tit-ver2:before{
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 57px;
    height: 57px;
    background-color: #3b9bc0;
    border-radius: 50%;
}
.visual-text, .visual-text-ver2{
    margin-top: 70px;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    text-align: center;
    word-break: keep-all;
}
/*#visual{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.1s ease;
    transition: opacity 0.1s ease;
}
#visual.slick-initialized{
    opacity: 1;
    visibility: visible;
}*/
#visual .slick-list,
#visual .slick-track{    
    height: 100%;
}
#visual .slick-dots{
    display: none !important;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 50px;
}
#visual .slick-dots{
    line-height: 0;
    text-align: center;
}
#visual .slick-dots li{
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    vertical-align: top;
}
#visual .slick-dots li button{
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -9999em;
}
#visual .slick-dots li.slick-active{
    width: 50px;
    border-radius: 50px;
    background-color: #19448c;
}
.visual-tit,
.visual-text{
    opacity: 0;
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}
.visual-tit-ver2,
.visual-text-ver2{
    opacity: 1;
    -webkit-transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}
#visual .slick-slide.on .visual-tit{
	-webkit-animation: visualTextUp 1s 0.5s ease forwards;
	animation: visualTextUp 1s 0.5s ease forwards;
}
#visual .slick-slide.on .visual-text{
/* 	-webkit-animation: visualTextUp 1s 0.7s ease forwards; */
/* 	animation: visualTextUp 1s 0.7s ease forwards;	 */
}
#visual .slick-slide.on .visual-img{
/*     -webkit-transform: scale(1) rotate(0.002deg); */
/*     transform: scale(1) rotate(0.002deg); */
}
@keyframes visualTextUp{
	from{
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
	50%{
		opacity: 0.5;
	}
	to{
		opacity: 1;
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}

.banner-wrap{
    width: 100%;
    height: 100%;
}

.prize-banner{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #080808;
}

.prize-banner img{
    width: 1080px;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.prize-aside {
    display: none; /* 기본적으로 숨김 */
    cursor: pointer;
    position: absolute;
    top: 260px;
    right: 25px;
    z-index: 2;
    transition: transform 0.3s ease-out;
}

@media screen and (min-width: 1024px) {
    .prize-aside {
        display: block; /* PC에서만 표시 */
    }
}

.prize-aside img {
    max-width: 240px; /* 이미지 크기 조정 */
}

/* container */
.main-contents{
    width: 100%;
}
.main-contents:not(:first-child){
    padding-top: 160px;
    padding-bottom: 140px;
}
.main-contents:first-child{
    padding-top: 180px;
    padding-bottom: 150px;
}
.main-tit-wrap{
    margin-bottom: 50px;
}
.main-tit{
    position: relative;
    display: inline-block;
	margin-bottom: 20px;
    padding-right: 35px;
    font-size: 7.2rem;
    font-weight: 700;
    color: #19448c;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.main-tit:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 17px;
    height: 17px;
    background-color: #3b9bc0;
    border-radius: 50%;
}
.main-tit-wrap .tit{
    font-size: 4.6rem;
    font-weight: 300;
    line-height: 1.1;
    word-break: keep-all;
}
.main-tit-wrap .tit strong{
    font-weight: 700;
}
.main-tit-wrap p{
    display: block;
    margin-top: 15px;
    font-size: 2.4rem;
    color: #5a5a5a;
    letter-spacing: -0.025em;
    line-height: 1.4;
}
.main-contents:nth-child(3) .main-tit{
    color: #fff;
}
.main-contents:nth-child(3) .main-tit-wrap .tit{
    color: #8aa4ca;
}
.business-wrap{
    position: relative;
    left: calc((100% - 1290px)/2 + 85px);
    max-width: 1290px;
}
.business-con{
    padding-left: 0;
    padding-right: 0;
}
.business-con ul{
    margin-top: -40px;
}
.business-con ul li{
    overflow: hidden;
    position: relative;
    float: left;
    width: calc((88% - 41px)/2);
    max-width: 540px;
    height: 420px;
    margin-top: 40px;
    margin-left: 40px;
    border-radius: 20px;
    word-break: keep-all;
}
.business-con ul li > a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 60px 40px;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.business-con ul li:nth-child(2n+1){
    margin-left: 0;
}
.business-con ul li:nth-child(2){
    margin-right: 12%;
}
.business-con ul li:nth-child(3){
    margin-left: 12%;
}
.business-con ul li .tit{
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}
.business-con ul li p{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px;
    font-size: 2.4rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.16;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.business-con ul .con01 > a{
    background-image: url('/img/new-image/img_main_business01_on.png');
}
.business-con ul .con02 > a{
    background-image: url('/img/new-image/img_main_business02.png');
}
.business-con ul .con03 > a{
    background-image: url('/img/new-image/img_main_business03_on.png');
}
.business-con ul .con04 > a{
    background-image: url('/img/new-image/img_main_business04.png');
}
.business-con01 ul .con02 p,
.business-con01 ul .con04 p{
    opacity: 0;
}
.business-con02 ul .con01 > a{
    background-image: url('/img/new-image/img_main_business01.png');
}
.business-con02 ul .con02 > a{
    background-image: url('/img/new-image/img_main_business02_on.png');
}
.business-con02 ul .con03 > a{
    background-image: url('/img/new-image/img_main_business03.png');
}
.business-con02 ul .con04 > a{
    background-image: url('/img/new-image/img_main_business04_on.png');
}
.business-con02 ul .con01 p,
.business-con02 ul .con03 p{
    opacity: 0;
}
.business-con ul .con01:hover > a{
    background-image: url('/img/new-image/img_main_business01_on.png');
}
.business-con ul .con02:hover > a{
    background-image: url('/img/new-image/img_main_business02_on.png');
}
.business-con ul .con03:hover > a{
    background-image: url('/img/new-image/img_main_business03_on.png');
}
.business-con ul .con04:hover > a{
    background-image: url('/img/new-image/img_main_business04_on.png');
}
.business-con ul li:hover p{
    opacity: 1;
}
.business-wrap .slick-arrow{
    overflow: hidden;
    position: absolute;
    top: -107px;
    right: 170px;
    z-index: 1;
    width: 54px;
    height: 54px;
    border: 3px solid #ccc;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.business-wrap .slick-arrow:hover{
    background-color: #19448c;
    border-color: #19448c;
}
.business-wrap .slick-prev{
    margin-right: 65px;
    background-image: url('/img/new-image/ic_prev.png');
}
.business-wrap .slick-prev:hover{
    background-image: url('/img/new-image/ic_prev_on.png');
}
.business-wrap .slick-next{
    background-image: url('/img/new-image/ic_next.png');
}
.business-wrap .slick-next:hover{
    background-image: url('/img/new-image/ic_next_on.png');
}
.main-contents:nth-child(3) .main-tit-wrap{
    margin-bottom: 70px;
}
.main-contents:nth-child(4) .main-tit-wrap{
    margin-bottom: 90px;
}
.main-contents .btn-wrap{
    margin-top: 85px;
}
.portfolio-list{
    margin-top: -35px;
}
.portfolio-list li{
    overflow: hidden;
    position: relative;
    float: left;
    width: calc((100% - 71px)/3);
    height: 350px;
    margin-left: 35px;
    margin-top: 35px;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.portfolio-list li:nth-child(1){
    background-image: url('/img/new-image/portfolio/aia/aia_thumb_black.png');
}
.portfolio-list li:nth-child(2){    
    background-image: url('/img/new-image/portfolio/cuckoo/cuckoo_thumb_black.png');
}
.portfolio-list li:nth-child(3){
    background-image: url('/img/new-image/portfolio/pass/pass_thumb_black.png');
}
.portfolio-list li:nth-child(4){
    background-image: url('/img/new-image/portfolio/lotte_insu/lotte_thumb_black.png');
}
.portfolio-list li:nth-child(5){
    background-image: url('/img/new-image/portfolio/milkt/milkt_thumb_black.png');
}
.portfolio-list li:nth-child(6){
    background-image: url('/img/new-image/portfolio/hanhwa/hanhwa_thumb_black.png');
}
.portfolio-list li:nth-child(7){
    background-image: url('/img/new-image/portfolio/hk_fire/hk_fire_thumb_black.png');
}
.portfolio-list li:nth-child(8){
    background-image: url('/img/new-image/portfolio/childfund/childfund_thumb_black.png');
}
.portfolio-list li:nth-child(9){
    background-image: url('/img/new-image/portfolio/hi/hi_thumb_black.png');
}
.portfolio-list li:nth-child(3n+1){
    margin-left: 0;
}
.portfolio-list li a{    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.portfolio-tit{
    opacity: 1;
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    text-align: center;
    word-break: keep-all;
}
.portfolio-con{
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25,68,140,0.7);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.portfolio-list li a:hover .portfolio-tit{
    opacity: 0;
}
.portfolio-list li a:hover .portfolio-con{
    opacity: 1;
}
.video-wrap{
    width: 100%;
}
.video-wrap .video{
    overflow: hidden;
    width: 100%;
    height: 630px;
    border-radius: 20px;
}
.video-wrap .video a{
    display: block;
    width: 100%;
    height: 100%;
}
.video-wrap .video img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.video iframe{
    width: 100%;
    height: 100%;
}
.video-wrap .tit{
    margin-top: 35px;
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.1;
    text-align: center;
}
.video-rolling-wrap .video-wrap:not(:first-child){
    display: none;
}
.video-rolling-wrap.slick-initialized .video-wrap{
    display: block;
}
.video-rolling-wrap .slick-arrow{
    overflow: hidden;
    position: absolute;
    top: -120px;
    right: 0;
    z-index: 1;
    width: 54px;
    height: 54px;
    border: 3px solid #8aa4ca;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999em;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.video-rolling-wrap .slick-arrow:hover{
    border-color: #fff;
    border-color: #fff;
}
.video-rolling-wrap .slick-prev{
    margin-right: 65px;
    background-image: url('/img/new-image/ic_prev_skyblue.png');
}
.video-rolling-wrap .slick-prev:hover{
    background-image: url('/img/new-image/ic_prev_on.png');
} 
.video-rolling-wrap .slick-next{
    background-image: url('/img/new-image/ic_next_skyblue.png');
}
.video-rolling-wrap .slick-next:hover{
    background-image: url('/img/new-image/ic_next_on.png');
}
.main-contents:nth-child(4) .inner-layer{
    position: relative;
}
.main-contents:nth-child(4) .btn-wrap{
    display: inline-block;
    position: absolute;
    top: 0;
    right: 10px;
    margin-top: 115px;
}
.graph-wrap{
    text-align: center;
}
.graph-wrap ul{
    margin-top: 35px;
}
.graph-wrap ul li{
    float: left;
    width: 30%;
    font-size: 3.6rem;
    font-weight: 700;
    color: #19448c;
    line-height: 1.1;
}
.graph-wrap ul li:nth-child(2){
    width: 40%;
}
.graph-wrap ul li .num{
    font-size: 6rem;
    font-weight: 700;
}
.graph-wrap ul li span{
    display: block;
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 500;
    color: #727272;
}

/* sponsor banner */
.sponsor-banner{
    width: 100%;
    padding: 38px min(120px,16.5%);
    border-top: 1px solid #e5e5e5;
}
.sponsor-banner-list img{
    margin: 0 20px;
}

/* footer */
#footer{
    width: 100%;
    padding: 60px 0 50px;
    background-color: #363333;
}
.footer-logo{
    display: inline-block;
}
.footer-menu{
    float: right;
    margin-top: 25px;
}
.footer-menu li{
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.footer-menu li:not(:first-child){
    margin-left: 11px;
    padding-left: 15px;
}
.footer-menu li:not(:first-child):before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 1px;
    left: 0;
    width: 1px;
    height: 18px;
    background-color: rgba(255,255,255,0.2);
}
.footer-menu li a{
    display: block;
    font-size: 2rem;
    color: #7c7c7c;
    font-weight: 500;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}
.footer-menu li:hover a{
    color: #fff;
}
.footer-con{
    width: calc(100% + 20px);
    padding-top: 25px;
    margin-top: 25px;
    margin-left: -10px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 1.8rem;
}
.footer-contact{
    position: relative;
    float: right;
    z-index: 1;
}
.footer-contact a{
    font-size: 2rem;
    color: #7c7c7c;
    line-height: 1.2;
}
.footer-contact .footer-tel{
    display: block;
    font-size: 3rem;
    color: #ffffff;
    line-height: 1;
}
.footer-con p{
    line-height: 1.5;
}
.address{
    color: #7c7c7c;
}
.footer-con .copy{
    color: #555;
}
.pop-wrap .term-wrap{
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    font-size: 1.8rem;
    line-height: 1.4;
    color: #5a5a5a;
    word-break: keep-all;
}
.term-wrap a{
    color: #5a5a5a;
}
.term-paragraph + .list-type{
    margin-top: 40px;
}
.term-tit{
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}
.term-con .list-type li{
    font-size: 1.8rem;
    line-height: 1.4;
}
.term-paragraph p + .list-type{
    margin-top: 15px;
}
.term-con .list-type-num > li .list-type{
    margin-top: 0;
}
.term-con .list-type-num > li .list-type-decimal li + li{
    margin-top: 0;
}
.list-type-decimal{
    margin-left: 20px;
}
.list-type.list-type-decimal > li{
    padding-left: 0;
    list-style: decimal;
}
.list-type.list-type-decimal > li + li{
    margin-top: 20px;
}
.list-type.list-type-num > li{
    padding-left: 0;
}
.list-type-num span,
.list-type span + div{
    display: inline-block;
    vertical-align: top;
}
.list-type-num span{
    width: 20px;
}
.list-type-num span + div{
    width: calc((100% - 25px));
}
.list-type-bar > li:before{
    display: block;
    content: '';
    clear: both;
    position: absolute;
    top: 11px;
    left: 0;
    width: 7px;
    height: 1px;
    background-color: #5a5a5a;
}

/* button */
.btn{
    display: inline-block;
    vertical-align: top;
}
.btn.btn-type1{
    width: 393px;
    padding: 24.5px 0;
    border-radius: 50px;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}
.btn.color-type1{
    background-color: #19448c;
    color: #fff;
}
.btn.color-type2{
    background-color: #379bc1;
    color: #fff;
}

/* common */
.inner-layer{
    max-width: 1140px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.bg-skyblue{
    background-color: #e9f0f2;
}
.bg-navy{
    background-color: #143162;
}
.bg-gray{
    background-color: #f7f7f7;
}
.m-br{
    display: none;
}
.p-show{
    display: block !important;
}
.m-show{
    display: none !important;
}
.full-left{
    float: left !important;
}
.full-right{
    float: right !important;
}
.color-skyblue{
    color: #3b9bc0 !important;
}
.color-blue{
    color: #2576c1 !important;
}
.color-navy{
    color: #19448c !important;
}
.img-wrap img{
    max-width: 100%;
}
.top-btn{
    display: none;
    cursor: pointer;
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    opacity: 1;
    background-color: #3b9bc0;
    color: #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    padding: 19px 9.5px;
    font-size: 20px;
    text-decoration: none;
}
.top-btn:hover{
    color: #19448c;
}
.img-radius{
    border-radius: 20px;
}

    /* logo */
    #logo-area{
    	display:flex; 
    	justify-content: space-between; 
    	align-items:center
    }
    #naver-logo {
    	width:250px; 
    	height:51px; 
    	margin-top:14px
    }
    #kakao-logo {
    	width:232px; 
    	height:71px;
    }
    #google-logo {
    	width:239px; 
    	height:74px
    }
    #meta-logo {
    	width:259px; 
    	height:47px; 
    	margin-top:12px
    }

/* =================================
    responsive
================================= */

@media screen and (min-width: 769px) {

    .portfolio-upload,
    .contact-upload {
        height: 80px !important;
        font-size: 15px !important;
    }

    .filepond--drop-label label {
        font-size: 15px;
    }

    .filepond--root {
        height: 80px; /* 원하는 높이로 설정 */
        width: 500px;
        font-size: 15px !important;
    }
}

@media (max-width: 1290px){
    /* container */
    .business-wrap{
        left: auto;
        max-width: 1140px;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: auto;
        margin-right: auto;
    }
    .business-wrap .slick-arrow{
        right: 10px;
    }
}
@media (max-width: 1200px){
    /* visual */
    .visual-con.inner-layer{
        padding-left: 8.5%;
        padding-right: 8.5%;
    }

    .inner-layer{
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 1024px){
    .prize-banner img{
        width: 100%;
    }
    html{
        font-size: 8px;
    }

    /* visual */
    .visual-text, .visual-text-ver2{
        text-align: left;
    }

    /* container */
    .main-contents:nth-child(4) .btn-wrap{
        right: 20px;
        margin-top: 85px;
    }
    .main-contents:nth-child(4) .btn-wrap .btn{
        width: auto;
        padding: 24.5px 60px;
    }
    
    .business-con ul{
        margin-top: -30px;
    }
    .business-con ul li{
        width: calc((88% - 31px)/2);
        margin-left: 30px;
        margin-top: 30px;
    }
    .business-con ul li > a{        
        padding: 60px 30px;
    }
    .business-con ul li p{
        padding: 40px 30px;
    }
    .business-wrap .slick-arrow{
        right: 20px;
    }

    .portfolio-list li{
        width: calc((100% - 41px)/3);
        margin-left: 20px;
        margin-top: 20px;
    }

    /* sponsor banner */
    .sponsor-banner{
        padding-left: 20px;
        padding-right: 20px;
    }

    /* footer */
    .footer-con{
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 768px){
    html{
        font-size: 62.5%;
    }

    /* header */
    #header{
        padding: 20px 0;
    }
    .header-logo{
        width: 130px;
        height: 34px;
        background-size: 100%;
    }
    .btn-open{
        width: 23px;
        height: 23px;
        background-size: 23px;
    }
    #allmenu{
        padding-top: 25px;
    }
    #allmenu .inner-layer{
        padding-top: 0;
    }
    .allmenu-logo a{
        width: 53px;
        height: 52px;
        background-image: url('/img/new-image/img_allmenu_logo_m.png');
        background-size: cover;
    }
    .btn-close{
        right: 6%;
        width: 19px;
        height: 19px;
        background-image: url('/img/new-image/ic_allmenu_close_m.png');
        background-size: 18px;
    }
    .gnb{
        width: min(135px,50%);
        margin: 50px auto 0;
    }
    .gnb > li{
        float: none;
        width: 100%;
        text-align: left;
    }
    .gnb > li:not(:first-child){
        margin-top: 10px;
    }
    .gnb > li:not(:first-child):before{
        display: none;
    }
    .gnb > li > a{
        font-size: 2.9rem;
    }
    .sub-gnb{
        display: none;
        margin-top: 15px;
        padding-bottom: 25px;
    }
    .sub-gnb > li > a{
        padding: 5px 0;
        font-size: 1.8rem;
    }
    .gnb > li:has(.sub-gnb) .sub-gnb{
        padding-left: 0;
    }

    /* visual */
    #visual{
        height: 80vh;
    }
    #visual .slick-list, 
    #visual .slick-track{
        height: 100%;
    }
    .visual-con.inner-layer{
        padding-left: min(25px,6%);
        padding-right: min(25px,6%);
    }
    .visual-tit, .visual-tit-ver2{
        padding-top: 45px;
        padding-left: 4%;
        padding-right: 4%;
        font-size: 4.3rem;
    }
    .visual-tit:before, .visual-tit-ver2:before{
        left: 15px;
        width: 28px;
        height: 28px;
    }
    .visual-text, .visual-text-ver2{
        margin-top: 35px;
        padding-left: 4%;
        padding-right: 4%;
        font-size: 1.5rem;
        text-align: left;
    }
    .visual-text br, .visual-text-ver2 br{
        display: none;
    }
    .visual-text br.m-br, .visual-text-ver2 br.m-br{
        display: block;
    }
    #visual .slick-dots li{
        width: 8px;
        height: 8px;
    }
    #visual .slick-dots li.slick-active{
        width: 35px;
    }
    #visual .slick-dots{
        bottom: 30px;
    }

    .prize-aside {
        right: 3vw;
    }

    .prize-aside img {
        max-width: 25vw; /* 이미지 크기 조정 */
    }

    /* container */
    .main-contents:first-child{
        padding-top: 70px;
        padding-bottom: 85px;
    }
    .main-contents:nth-child(2){
        padding-top: 90px;
        padding-bottom: 120px;
    }
    .main-contents:nth-child(3){
        padding-top: 80px;
        padding-bottom: 70px;
    }
    .main-contents:nth-child(4){
        padding-top: 90px;
        padding-bottom: 75px;
    }
    .main-tit-wrap{
        margin-bottom: 35px;
    }
    .main-tit{
        padding-right: 18px;
		margin-bottom: 10px;
        font-size: 3.9rem;
    }
    .main-tit:before{
        bottom: 7px;
        width: 10px;
        height: 10px;
    }
    .main-tit-wrap .tit{
        font-size: 2.6rem;
        line-height: 1.18;
        letter-spacing: -0.025em;
        word-break: keep-all;
    }
    .main-tit-wrap p{
        font-size: 1.6rem;
        line-height: 1.18;
		word-break: keep-all;
    }
    .business-wrap{
        padding-left: min(25px,6%);
        padding-right: 0;
    }
    .business-wrap .business-con:not(:first-child){
        display: none;
    }
    .business-wrap.slick-initialized .business-con{
        display: block;
    }
    .business-con ul{
        margin-top: -15px;
        width: calc((100% + 8px));
    }
    .business-con ul li{
        float: none;
        width: calc((100% - 10px));
        margin-left: 0;
        margin-top: 15px;
        height: 207px;
        border-radius: 10px;
        background-position: center;
        word-break: keep-all;
    }
    .business-con ul li > a{        
        padding: 25px;
    }
    .business-con ul li:nth-child(1){
        margin-right: 8px;
    }
    .business-con ul li:nth-child(2){
        margin-left: 8px;
    }
    .business-con ul li p{
        opacity: 0;
    }
    .business-con ul .con01 > a{
        background-image: url('/img/new-image/img_main_business01.png');
    }
    .business-con ul .con02 > a{
        background-image: url('/img/new-image/img_main_business02.png');
    }
    .business-con ul .con03 > a{
        background-image: url('/img/new-image/img_main_business03.png');
    }
    .business-con ul .con04 > a{
        background-image: url('/img/new-image/img_main_business04.png');
    }    
    .business-con ul li .tit{
        font-size: 2.8rem;
    }
    .business-con ul li p{
        padding: 25px;
        font-size: 1.6rem;
    }
    .business-wrap .slick-list{
        overflow: hidden;
        height: 428px;
        margin-left: -15px;
        padding-right: 21%;
    }
    .business-wrap.active{
        padding-left: 0;
        padding-right: min(25px,6%);
    }
    .business-wrap .slick-list.active{
        padding-left: calc(21% - 10px);
        padding-right: 10px;
        margin-left: 0;
        margin-right: -15px;
    }
    .business-wrap .slick-track{
        overflow: hidden;
        height: 100%;
    }
    .business-con .con01{
        margin-left: -8px;
    }
    .business-wrap .slick-slide.slick-current .con01 > a{        
        background-image: url('/img/new-image/img_main_business01_on.png');
    }
    .business-wrap .slick-slide.slick-current .con02 > a{
        background-image: url('/img/new-image/img_main_business02_on.png');
    }
    .business-wrap .slick-slide.slick-current .con03 > a{        
        background-image: url('/img/new-image/img_main_business03_on.png');
    }
    .business-wrap .slick-slide.slick-current .con04 > a{
        background-image: url('/img/new-image/img_main_business04_on.png');
    }
    .business-wrap .slick-slide.slick-current p{
        opacity: 1;
    }
    .business-wrap .slick-slide{
        margin: 0 6px;
    }
    .business-wrap .slick-arrow{
        top: -70px;
        right: min(25px,6%);
        width: 35px;
        height: 35px;
        border-width: 2px;
        background-size: 12px;
    }
    .business-wrap .slick-prev{
        margin-right: 40px;
    }
    .main-contents:nth-child(4) .btn-wrap .btn{
        width: 100%;
        padding: 15px 10px;
    }

    /* sponsor banner */
    .sponsor-banner{
        padding: 15px min(25px,6%);
    }
    .sponsor-banner-list img{
        width: 93px;
    }

    /* footer */
    #footer{
        padding-top: 10px;
        padding-bottom: 20px;
        word-break: keep-all;
    }
    .footer-menu-wrap{
        text-align: right;
    }
    .footer-logo{
        float: left;
        margin-right: 35px;
    }
    .footer-logo img{
        width: 112px;
    }
    .footer-menu{
        display: inline-block;
        float: none;
        width: 100%;
        /* margin-top: -15px; */
    }
    .footer-menu li a{
        padding: 5px 0;
        font-size: 1.4rem;
    }
    .footer-menu li:not(:first-child){
        padding-left: 10px;
        margin-left: 6px;
    }
    .footer-menu li:not(:first-child):before{
        top: 6px;
        height: 13px;
    }
    .footer-menu br + li:before{
        display: none !important;
    }
    .footer-con{
        margin-top: 10px;
        padding-top: 20px;
    }
    .footer-contact{
        float: none;
    }
    .footer-contact a{
        font-size: 1.6rem;
    }
    .footer-contact .footer-tel{
        margin-bottom: 5px;
        font-size: 2.4rem;
        color: #b8b4b4;
    }
    .footer-con p{
        display: inherit;
        font-size: 1.4rem;
    }
    .address{
        margin-top: 20px;
    }
    .pop-wrap .term-wrap{
        font-size: 1.4rem;
    }
    .term-paragraph + .list-type{
        margin-top: 30px;
    }
    .term-paragraph .list-type{
        margin-top: 10px;
    }
    .term-con .list-type li{
        font-size: 1.4rem;
    }
    .list-type.list-type-decimal > li + li{
        margin-top: 15px;
    }
    .list-type-bar > li:before{
        top: 8px;
        width: 5px;
    }

    /* button */
    .btn.btn-type1{
        max-width: 228px;
        padding: 15px 10px;
        font-size: 1.8rem;
    }
    .portfolio-list{
        margin-top: -10px;
    }
    .portfolio-list li{
        width: calc((100% - 11px)/2);
        height: 157.5px;
        margin-top: 10px;
        margin-left: 10px;
        border-radius: 10px;
    }
    .portfolio-list li:nth-child(3n+1){
        margin-left: 10px;
    }
    .portfolio-list li:nth-child(2n+1){
        margin-left: 0;
    }
    .portfolio-tit{
        font-size: 1.6rem;
    }
    .portfolio-con img{
        max-height: 100%;
    }
    .main-contents .btn-wrap{
        margin-top: 40px;
    }
    .main-contents:nth-child(3) .main-tit-wrap{
        margin-bottom: 35px;
    }
    .video-rolling-wrap .slick-arrow{
        top: auto;
        bottom: -8px;        
        width: 35px;
        height: 35px;
        border-width: 2px;
        background-size: 12px;
    }
    .video-rolling-wrap .slick-prev{
        margin-right: 40px;
    }
    .video-wrap .video{
        height: auto;
        border-radius: 10px;
    }
    .video-wrap .tit{
        padding-right: 75px;
        margin-top: 25px;
        font-size: 1.5rem;
        text-align: left;
        word-break: keep-all;
    }
    .main-contents:nth-child(4) .main-tit-wrap{
        margin-bottom: 20px;
    }
    .main-contents:nth-child(4) .btn-wrap{
        position: static;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 40px;
        text-align: center;
    }
    .graph-wrap .img-wrap{
        padding: 0 15px;
    }
    .graph-wrap ul{
        margin-top: 15px;
    }
    .graph-wrap ul li{
        width: 33%;
        min-height: 80px;
        font-size: 1.8rem;
        letter-spacing: -0.025em;
    }
    .graph-wrap ul li:nth-child(2){
        width: 33%;
    }
    .graph-wrap ul li .num{
        font-size: 3rem;
    }
    .graph-wrap ul li span{
        font-size: 1.2rem;
    }
    .main-contents:nth-child(4) .btn-wrap{
        margin-top: 20px;
    }

    /* coomon */
    .inner-layer{
        padding-left: min(25px,6%);
        padding-right: min(25px,6%);
    }
    .p-br{
        display: none;
    }
    .m-br{
        display: block;
    }    
    .p-show{
        display: none !important;
    }
    .m-show{
        display: block !important;
    }
    
    /* logo */
    #logo-area{
    	display:flex; 
    	justify-content: space-between; 
    	align-items:center;
    	height: 40px;
    	margin-bottom: 10px;
    }
    #naver-logo {
    	width:80px; 
    	height:18px; 
    	margin-top:0px;
    }
    #kakao-logo {
    	width:75px; 
    	height:26px;
    	margin-bottom: 5px;
    }
    #google-logo {
    	width:76px; 
    	height:26px
    }
    #meta-logo {
    	width:81px; 
    	height:18px; 
    	margin-top:0px;
    }
}
@media (max-width: 374px){
    /* visual */
    .visual-text, .visual-text-ver2{
        letter-spacing: -0.025em;
    }
    /* footer */
    .footer-menu li:not(:first-child){
        padding-left: 6px;
        margin-left: 4px;
    }
    .footer-con{
        letter-spacing: -0.025em;
    }
}    
/*===============================================*/
.layer-popup {
/* 	display: none; */
  position:fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000; 
  width: 590px; 
  height: 500px; 
  background-color: #fff;
/*   box-shadow: 4px 1px 11px -3px gray; */
  border: 8px solid #18468C;
  overflow: scroll;
}

#layer-x {
  text-align: right;
  pointer-events: auto;
  margin-top: 7px;
}

#layer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 24px;
  margin-top: 25px;
}

#privacy-policytable-tr-1{
  width: 100px; 
  text-align:center; 
  background-color: #ededed; 
  border: 1px solid #ededed;
  font-size: 15px;
}

#privacy-policytable-tr-2{
  width: 300px; 
  border: 1px solid #ededed;
  font-size: 15px;
}

