@font-face {
    font-family: 'NanumSquare_EB';
    src: url('../font/NanumSquareOTF_acEB.otf') format('opentype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NanumSquare_B';
    src: url('../font/NanumSquareOTF_acB.otf') format('opentype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NanumSquare_R';
    src: url('../font/NanumSquareOTF_acR.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'NanumSquare_L';
    src: url('../font/NanumSquareOTF_acL.otf') format('opentype'); 
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins_SB';
    src: url('../font/Poppins-SemiBold.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'JalnanGothic';
    src: url('../font/JalnanGothic.otf') format('opentype'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Freesentation-7Bold';
    src: url('../font/Freesentation-7Bold.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Freesentation-5Medium';
    src: url('../font/Freesentation-5Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Freesentation-3Light';
    src: url('../font/Freesentation-3Light.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins_SB';
    src: url('../font/Poppins-SemiBold.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

/*모바일 nav 추가*/
.mBtn, .closeBtn, .mNav { display: none; }

.header_mobile nav .nav_wrap .menu-row {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

.mBtn {
    display: block;
    position: static;
}

.mBtn a {
  display: block;
  position: static;
  width: 27px;
  height: 20px;
  background: url(../img/menu.webp) no-repeat;
  background-size: contain;
  text-indent: -9999px;
  margin: 0;
}

.closeBtn {
    position: absolute;
    margin-top: 60px;
    top: calc(100% - 45px);
    right: 6%;
    z-index: 10;
}

.closeBtn a {
    display: block;
    position: static;
    top: auto;
    left: auto;
    width: 32px;
    height: 25px;
    background: url(../img/close.webp) no-repeat center center;
    background-size: contain;
    text-indent: -9999px;
}

.mNav {
    position: fixed; 
    z-index: 2; 
    right: -100%; 
    width: 100%; 
    height: 100%; 
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}
.mNav.on { right: 0; }

.m-menu { 
    position: relative;
    padding-bottom: 300px;
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mNav .m-menu li h1{
    height: 50px;
    margin-bottom: 30px;
}
.mNav .m-menu li h1 a{
    font-size: 0;
}
.mNav .m-menu li h1 a img { display: block; width: 220px; margin: 0 auto 20px; }
.mNav .m-menu li h1 a:after { display: none;}
.m-menu li a {
    display: inline-block;
    position: relative;
    padding: 7px 0;
    color: white;
    font-family: 'Freesentation-7Bold', sans-serif;
    font-size: 27px; 
    text-shadow: 2px 2px 15px #000000, -2px -2px 4px #555555; 
    
}
.m-menu li a:after { content: ''; display: block; width: 176px; height: 7px; margin: 7px auto 0; background: url('../img/img_line1.webp') center center no-repeat; }
.m-menu li:last-child a:after { display: none; }
.m-menu li {
    position: relative;
    background-image: url('../img/img_line1.webp');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 176px 7px;
    padding-bottom: 10px; 
}
.m-menu li:last-child {
    background-image: none;
}

.m-menu li a:after {
    display: none !important;
}

.nav-indicator-mobile {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: -30px; 
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-indicator-mobile.active {
    opacity: 1;
    animation: blink 1.4s infinite;
}

.bg-shadow { display: none; position: fixed; top: 0; right: 0; z-index: 1; width: 100%; height: 100%; background: rgba(29, 37, 44, 0.9); cursor: pointer; opacity: 0.9;}
.mBtn, .closeBtn, .mNav { display: block; }
/*모바일 nav 추가 끝*/

.nav_wrap ul li {
  position: relative;
}

.nav-indicator {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    position: absolute;
    top: 33px;
    left: -30%;
    transform: translateX(-50%) scale(0.7);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.nav-indicator.color-1 { background-color: #e68552;}
.nav-indicator.color-2 { 
    background-color: #adcd47; 
    left: -20px;
}
.nav-indicator-mobile.color-1 { background-color: #e68552;}
.nav-indicator-mobile.color-2 { background-color: #adcd47; }

.nav-indicator.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  animation: blink 1.4s infinite; 
}   
header{
    background: url(../img/header_bg.webp)no-repeat center/cover;
    height: 200px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}           
header nav{
    height: 60px;
    padding-top: 3%;
    width: 70%;
    margin: 0 auto;
}
header nav .nav_wrap{
   display: flex;
    justify-content: center; 
   align-items: center;
}
header nav .nav_wrap h1 a{
   font-size: 0;
}
header nav .nav_wrap h1 img{
    height: 49px;
    width: 260px;
    cursor: pointer;
    margin-right: 80px;
}
header nav .nav_wrap ul{
    display: flex;
    align-items: baseline;
      
}
header nav .nav_wrap ul li{
   display: inline-block;
   margin-left: 65px;
   padding-top: 25px;
}
header nav .nav_wrap ul li a{
    color: white;
    font-family: 'Freesentation-7Bold', sans-serif;
    font-size: 25px; 
    text-shadow: 2px 2px 15px #000000, -2px -2px 4px #555555; 
} 
header nav .nav_wrap .language{
    bottom: 2px;
}
header nav .nav_wrap .language a{
    font-size: 21px;
    font-family: 'Freesentation-5Medium', sans-serif;
}
header nav .nav_wrap .language a i{
    margin-right: 10px;
}
#nav_hover {
    opacity: 52%;
    transition: opacity 0.3s ease;
}
#nav_hover:hover {
     opacity: 100%;
}
.hover{
    opacity: 0.5;
}

.hover:hover {
    opacity: 1;
}        

.pc .swiper-wrapper .content01{
    height: 100vh;
}

.pc .swiper-wrapper .content01 .center .text_wrap{
    /*margin-top: 24%; */
}

.pc .swiper-wrapper .content01 .center .text_wrap img{
    display: none;
}       


.pc .swiper-wrapper .content01 .center .text_wrap .banner_text p{
    color: white;
    font-family: 'JalnanGothic', sans-serif;
    font-size: 55px;
    letter-spacing: 1px;
    line-height: 75px;
    margin-bottom: 10px;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8), 
        0 0 20px rgba(0, 0, 0, 0.6), 
        0 0 40px rgba(0, 0, 0, 0.4);  
} 
         
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper02 {
  width: 70%;
  height: 450px;
} 

video#bgvid {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    background-size: cover;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: -1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.6); 
}

.content-wrapper {
  position: relative;
  bottom: 30%;
  left: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  color: white;
  font-size: 24px;
  font-weight: bold;
  z-index: 10;
  pointer-events: none;
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 8px) ;
    display: block;
}
          
.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 11px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 11px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #fff);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .3);
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-bullet-inactive-color, #fff);
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 11px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 11px));
}
        
#game_tos{
    height: 100vh;      
    width: 100vw;
    position: relative;
    background: url(../img/game01_bg_3_2.webp) center/cover no-repeat;
    background-color: #191919;
    height: 100%;
    overflow: hidden;
}

.content02 .center{
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.content02 .center .container_left{
    width: 550px;
    height: 548px; 
}

.content02 .center .container_left .text_wrap{
    width: 450px;
    text-align: left;
    color: #354352;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.6), 
        0 0 40px rgba(255, 255, 255, 0.4), 
        0 0 70px rgba(255, 255, 255, 0.2);
}

.content02 .center .container_left .text_wrap h2{
    font-family: 'Freesentation-7Bold', sans-serif;
    font-size: 24px;
    margin-bottom: 55px;
}

.content02 .center .container_left .text_wrap h3{
    font-family: 'Freesentation-7Bold', sans-serif;
    font-size: 34px;
    letter-spacing: 0.6px;
    margin-bottom: 23px;
}

.content02 .center .container_left .text_wrap h3 strong{
    font-family: 'Poppins_SB', sans-serif;
    font-size: 42px;
    line-height: 70px;
}

.content02 .center .container_left .text_wrap p{
    font-family: 'NanumSquare_B', sans-serif;
    font-size: 1rem;
    line-height: 30px;
    letter-spacing: 0.3px;
    word-break: keep-all;
}

.content02 .center .container_left .button_wrap{
    margin-top: 68px;
    height: 54px;
    display: flex;
    gap: 20px;
}

.content02 .center .container_left .button_wrap .game_button{
    background: url(../img/btn01.webp) no-repeat;
    width: 211px;
    height: 100%;
    border-radius: 100px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.4), 0 0 70px rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center; 
}/**/
.content02 .center .container_left .button_wrap .game_button a{
    font-family: 'NanumSquare_B', sans-serif;
    letter-spacing: 0.8px;
    font-size: 17px;
    color: #ffffff;
    position: unset;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}/**/

.content02 .center .container_right{
    width: 59%;     
}

.content02 .center .container_right img{
    width: 91%;
    margin-left: 50px;
}/**/
.content02 .wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}
.content01 .center .scroll-down{
   position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%) !important;
    animation: down 2.5s infinite, blink 2.7s infinite;
} /**/
.content02 .center .scroll-down{
   position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%) !important;
    animation: down 2.5s infinite, blink 2.7s infinite;
} /**/
.content03 .center .scroll-down{
   position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%) !important;
    animation: down 2.5s infinite, blink 2.7s infinite; 
} /**/
.content04 .center .scroll-down{
   position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%) !important;
    animation: down 2.5s infinite, blink 2.7s infinite;
} /**/
.content06 .center .scroll-down{
   position: absolute;
    top: 82%;
    left: 50%;
    transform: translateX(-50%) !important;
    animation: down 2.5s infinite, blink 2.7s infinite;
} /**/
.content05-1 .center .scroll-down{
   position: absolute;
    top: 82%;
    left: 50%;
    transform: translateX(-50%) !important;
    animation: down 2.5s infinite, blink 2.7s infinite;
} /**/


@keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}

@-webkit-keyframes down {
	0% {
		transform: translate(0);
	}
	20% {
		transform: translateY(15px);
	}
	40% {
		transform: translate(0);
	}
}

@keyframes blink {
  0% {
    opacity: 1; 
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1; 
  }
}

#game_ge{
    height: 100vh;
    width: 100vw;
    position: relative;
    background: url(../img/game02_bg.webp) center/cover no-repeat;
    background-color: #191919;
    overflow: hidden;
}

.content03 .center{
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.content03 .center .container_right{
    position: relative;
    right: 5%;
    text-align: left;
    width: 500px; 
}

.content03 .center .container_right .text_wrap{
    text-align: left;
    color: #354352;
}

.content03 .center .container_right .text_wrap h2{
    font-family: 'Freesentation-7Bold', sans-serif;
    font-size: 24px;
    margin-bottom: 55px;
}

.content03 .center .container_right .text_wrap h3{
    font-family: 'Freesentation-7Bold', sans-serif;
    font-size: 34px;
    letter-spacing: 0.6px;
    margin-bottom: 23px;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.content03 .center .container_right .text_wrap h3 strong{
    font-family: 'Poppins_SB', sans-serif;
    font-size: 42px;
    line-height: 70px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.content03 .center .container_right .text_wrap p{
    font-family: 'NanumSquare_B', sans-serif;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.3px;
    word-break: keep-all;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4);
}

.content03 .center .container_right .text_wrap .mobile{
    display: none;
}

.content03 .center .container_right .button_wrap{
    margin-top: 54px;
    height: 54px;
    display: flex;
    gap: 20px;
}

.content03 .center .container_right .button_wrap .game_button{
    background: url(../img/btn01.webp) no-repeat;
    width: 211px;
    height: 100%;
    border-radius: 100px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.4), 0 0 70px rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center; 
}/**/
.content03 .center .container_right .button_wrap .game_button a{
    font-family: 'NanumSquare_B', sans-serif;
    letter-spacing: 0.8px;
    font-size: 17px;
    color: #ffffff;
    position: unset;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}/**/

.content03 .center .container_left{
    width: 40%; 
}

.content03 .center .container_left img{
    position: relative;
    right: 28%;
    width: 167%;
    top: 153px;
    overflow: hidden;
}

.content05{
    height: 100vh;
    width: 100vw;
    position: relative;
    background: url(../img/about_company_bg.webp) center/cover no-repeat;
    background-color: #191919;
    display: flex;
    flex-direction: column; 
} 

.content05 .center{
    display: flex;
   height: 85%;
   padding-top: 110px;
}

.content05 .center .container_left h2{
    color: white;
    font-size: 28px;
    font-family: 'NanumSquare_EB', sans-serif;
    text-align: left;
    margin-bottom: 43px;
}

.content05 .center .container_left ul{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.content05 .center .container_left ul li{
    display: flex;
    margin-bottom: 25px;
}

.content05 .center .container_left ul li .ci_border{  
    height: 61px;
    margin-left: 30px;
    margin-right: 30px;
}

.content05 .center .container_left ul li .text_wrap img{
    display: flex;
}

.content05 .center .container_left ul li .text_wrap{
    text-align: left;
     margin-right: 30px;
}/**/

.content05 .center .container_left ul li .text_wrap strong{
    font-size: 25px;
    font-family: 'NanumSquare_EB', sans-serif;
}

.content05 .center .container_left ul li .text_wrap .ci_text01{
    color: #ef834b;
}

.content05 .center .container_left ul li .text_wrap .ci_text02{
    color: #a3c93a;
}

.content05 .center .container_left ul li .text_wrap .ci_text03{
    color: #00aae7;
}

.content05 .center .container_left ul li .text_wrap .ci_description{
    color: white;
    font-size: 17px;
    font-family: 'NanumSquare_R', sans-serif;
    margin-top: 17px;
    line-height: 28px;
    word-break: keep-all;

}/**/

.content05 .center .container_right{
   /* position: relative;
    left: 70px; */
}/**/

.content05 .center .container_right h2{
    color: white;
    font-size: 28px;
    font-family: 'NanumSquare_EB', sans-serif;
    text-align: left;
    margin-bottom: 43px;
}

.content05 .center .container_right img{
    width: 100%;
    margin-bottom: 20px;
    border-radius: 20px;
}

.content05 .center .container_right .text_wrap dl{
    display: flex;
    justify-content: space-between;
}

.content05 .center .container_right .text_wrap dl div{
    text-align: left;
}

.content05 .center .container_right .text_wrap dl div dt{
    color: white;
    font-size: 17px;
    font-family: 'NanumSquare_EB', sans-serif;
    margin-bottom: 17px;
    word-break: keep-all;
}

.content05 .center .container_right .text_wrap dl div dd{
    color: white;
    font-size: 16px;
    font-family: 'NanumSquare_R', sans-serif;
    margin: unset;
    line-height: 29px;
    word-break: keep-all;
    padding-right: 20px; 
}
.content05-1{
    height: 100vh;
    width: 100vw;
    position: relative;
    background: url(../img/content05-1_bg.webp) center/cover no-repeat;
}
.content05-1 .center h2{
    color: #fff;
    text-align: left;
    padding-top: 40px;
    font-size: 27px;
    font-family: 'JalnanGothic', sans-serif;
    margin-bottom: 53px;
    letter-spacing: 1.5px;
    font-weight: 300;
}
.content05-1 .center p{
    color: white;
    font-family: 'Freesentation-3Light', sans-serif;
    text-align: left;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.7px;
    word-break: keep-all;
}
.content05-1 .center .partner_list {
    height: 500px;
    width:100%;
    display: flex;
    flex-direction: column;
    margin-top: 35px;
}
.content05-1 .center .partner_list .container_top{
    height: 250px;
    margin-bottom: 10px;
}
.content05-1 .center .partner_list .container_top ul{
width: 100%;
}
.content05-1 .center .partner_list .container_top .partner_slider {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  margin: auto;
  overflow-x: scroll;
  white-space: nowrap;
  background-color: transparent;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.content05-1 .center .partner_list .container_top .partner_slider li {
  min-width: 390px; 
  border-radius: 5px;
  margin-right: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
  transition: transform 1.5s ease, background 1.5s ease;
}
.content05-1 .center .partner_list .container_top .partner_slider li .wrapper {
  height: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
  transition: transform 1.5s ease, background 1.5s ease; 
}
.content05-1 .center .partner_list .container_top .partner_slider li .partner_content{
  position: relative; 
  overflow: hidden; 
  height: 250px;
  border-radius: 5px;
  background-color: rgba(211,211,211,.6);
  box-shadow: 0 4px 4px rgba(0,0,0,.1);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  color:#fff; font-weight:700;
  transition: all .4s ease;
}
.content05-1 .center .partner_list .container_top .partner_slider li .partner_content img{
    width: 50%;
}
.content05-1 .center .partner_list .container_top .partner_slider li .partner_content::before{
  content:"";
  position:absolute; inset:0; 
  background: linear-gradient(to top,#222221,#0e0e0e,#6f6f6f);
  opacity:0;
  transition: opacity 0.4s ease-in-out; 
  border-radius: inherit;
}
.content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover::before{
  opacity:.9;
}
.content05-1 .center .partner_list .container_top .partner_slider li .partner_content .partner_text h3{
    display: none;
}
.content05-1 .center .partner_list .container_top .partner_slider li .partner_content p{
    display: none;
}
.content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover img{
   display: none;
}
.content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text{
    width: 100%;
    height: 250px;
    overflow:hidden;
    padding: 25px 25px 25px 25px;
    z-index: 1000;
}
.content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text h3{
    display: block;
    color: #fff;
    text-align: center;
    font-size: 19px;
    font-family: 'JalnanGothic', sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    font-weight: 300;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
.content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text p{
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break:keep-all;
    text-align: center;
    font-family: 'Freesentation-5Medium', sans-serif;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.6px;
    font-weight:300;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
.content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text .partner_games{
    font-size: 15px;
    border: 1px solid white;
    padding: 5px;
    margin-bottom: 10px;
    font-family: 'Freesentation-5Medium', sans-serif;
    font-weight:300;
}
.content05-1 .center .partner_list .container_top .partner_slider li .content > div {
  height: 2rem;
  background-color: lightgray;
  margin: 2rem auto 0 auto;
  width: 85%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
  border-radius: 5px;
}
.content05-1 .center .partner_list .container_top .partner_slider li .content > div:last-child {
  height: 5rem;
}

.content05-1 .center .partner_list .partner_slider li .partner_content:hover .partner_text::-webkit-scrollbar {
  display: none;
}

/******bottom*******/

.content05-1 .center .partner_list .container_bottom{
   height: 250px;
}
.content05-1 .center .partner_list .container_bottom .partner_slider {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  margin: auto;
  /*max-width: 1440px; */
  overflow-x: scroll;
  white-space: nowrap;
  background-color: transparent;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.content05-1 .center .partner_list .container_bottom .partner_slider li {
  min-width: 390px;
  border-radius: 5px;
  margin-right: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .wrapper {
/*  padding: 1rem; */
  height: 100%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content img{
  width: 50%;
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover img{
   display: none;
	-webkit-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content .partner_text h3{
    display: none;
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content p{
    display: none;
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content{
  position: relative; 
  overflow: hidden;  
  height: 250px;
  border-radius: 5px;
  background-color: rgba(211,211,211,.6);
  box-shadow: 0 4px 4px rgba(0,0,0,.1);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  color:#fff; font-weight:700;
  transition: all .4s ease; 
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content::before{
  content:"";
  position:absolute; inset:0; 
  background: linear-gradient(to top,#222221,#0e0e0e,#6f6f6f);
  opacity:0;                 
  transition: opacity 0.4s ease-in-out;
  border-radius: inherit; 
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover::before{
  opacity:.9;
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover img{
   display: none;
	-webkit-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text{
    width: 100%;
    height: 250px;
    overflow:hidden;
    padding: 25px 25px 25px 25px;
    z-index: 1000;
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text h3{
    display: block;
    color: #fff;
    text-align: center;
    font-size: 19px;
    font-family: 'JalnanGothic', sans-serif;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    font-weight: 300;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text p{
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break:keep-all;
    text-align: center;
    font-family: 'Freesentation-5Medium', sans-serif;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.6px;
    font-weight:300;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text .partner_games{
    font-size: 15px;
    border: 1px solid white;
    padding: 5px;
    margin-bottom: 10px;
    font-family: 'Freesentation-5Medium', sans-serif;
    font-weight:300;
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .content > div {
  height: 2rem;
  background-color: lightgray;
  margin: 2rem auto 0 auto;
  width: 85%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
  border-radius: 5px;
}
.content05-1 .center .partner_list .container_bottom .partner_slider li .content > div:last-child {
  height: 5rem;
}

.content05-1 .center .partner_list .container_bottom{
    height: 50%;
}

.content05-1 .center .partner_list .container_bottom ul{
    width: 100%;
}


.content06 {
    height: 100vh;
    width: 100vw;
    position: relative;
    background: url(../img/company_history_bg.webp) center/cover no-repeat;
}

.content06 .center{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content06 .center .history_wrap{
    height: 65%;
    flex: 1;
    padding-top: 110px;
}

.content06 .center .history_wrap h2{
    color: #fff;
    text-align: left;
    padding-top: 40px;
}

.content06 .center .history_wrap .swiper03 {
    height: 70%;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.1);    
}

.content06 .center .history_wrap .swiper03 .swiper-wrapper .swiper-slide {  
      height: auto;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 30px;
}


.content06 .center .history_wrap .swiper03 .swiper-wrapper .swiper-slide .timeline li h3{
    color: white;
    font-family: 'NanumSquare_R', sans-serif;
    text-align: left;
   
}

.content06 .center .history_wrap .swiper03 .swiper-wrapper .swiper-slide .timeline li h4{
    color: white;
    font-family: 'NanumSquare_R', sans-serif;
    text-align: left;
    display: contents;
}

.content06 .center .history_wrap .swiper03 .swiper-wrapper .swiper-slide .timeline li p{
     color: white;
    font-family: 'NanumSquare_L', sans-serif;
    text-align: left;
    font-size: 17px;
    line-height: 29px;
    word-break: keep-all;    
}

.content06 .center .history_wrap .scroll-down .scroll-icon::before{
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fff;
  position: absolute;
  top: 30px;
  left: 668px;
  border-radius: 100%;
  animation: mouse 2s infinite;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

.swiper-scrollbar{
    background: #fff; 
}

#footerhover {
    color: gray;
    transition: color 0.3s ease;
  }
  
#footerhover:hover {
    color: white;
}

@media (min-width: 1282px){ 
    .timeline {
        list-style: none;
    }

    .timeline > li {
        margin-bottom: 60px;
    }

    .monthly-history {
        display: flex;
    }
       
    .timeline > li {
        overflow: hidden;
        margin: 0;
        position: relative;
    }

    .timeline-date {
        width: 110px;
        float: left;
        margin-top: 20px;
    }

    .timeline-content {
        float: left;
        border-left: 3px #e5e5d1 solid;
        padding-left: 40px;
        padding-top: 20px;
        padding-bottom: 100px;
    }
    
    .timeline-content:before {
        content: '';
        width: 40px;
        height: 70px;
        position: absolute;
        left: 91px;
        top: 0;
        border-radius: 100%;
        background: url(../img/company_history_icon.webp) center no-repeat;
    }
    
    .timeline-content .monthly-history p{
        margin-bottom: 30px;
        margin-left: 47px;
    }
        
    .content05 footer{
        background-color: black;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        height: 140px; 
        flex: 1; /* 동일한 비율로 차지 */
        position: absolute;
        bottom: 0;
    }

    .content05 footer .text_wrap{
        color: white;
        width: 70%;
        height: 100%;
        text-align: left;
        display: flex;
        justify-content:center;
        justify-content: space-evenly;
        align-items: center;
        margin: 0 auto;
    }

    .content05 footer .text_wrap img:first-child{
        z-index: 1000;
        width: 215px;
        height: 41px;
    }

    .content05 footer .text_wrap p{
        font-family: 'NanumSquare_R', sans-serif;
        font-size: 15px;
        line-height: 32px;
        letter-spacing: 0.6px;
        color: white;
        word-break: keep-all;
    }

    .content05 footer .text_wrap #footerLink li a{
        font-family: 'NanumSquare_R', sans-serif;
        font-size: 15px;
        line-height: 32px;
        letter-spacing: 0.6px;
        word-break: keep-all;
    }

    .swiper-button-next:after{
        content: none;    
    }

    .swiper-button-next{
        width: 50px;
        height: 60px;
    }

    .swiper-button-next img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .swiper-button-prev:after{
        content: none;
        object-fit: cover;
    }

    .swiper-button-prev{
        width: 50px;
        height: 60px;
    }

    .swiper-button-prev img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .swiper-button-next, .swiper-button-prev {
        position: absolute;
        top: var(--swiper-navigation-top-offset, 45%);
        width: calc(var(--swiper-navigation-size) / 44* 27);
        height: var(--swiper-navigation-size);
        margin-top: calc(0px -(var(--swiper-navigation-size) / 2));
        z-index: 10;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--swiper-navigation-color, var(--swiper-theme-color));
    }
}

@media (max-width: 1560px) {
    .video-background video {
        width: auto;
        height: auto;
    }     
    
    .content03 .center .container_left img {          
        content: url(../img/game02_illust_eng.webp);
        position: relative;
        right: 30%;
        top: 100px;
        width: 730px !important;
    }/**/
    
    .content03 .center .container_right {
    position: relative;
    left: 5%;
    top: 10%;
    text-align: left;
    width: 500px;
    }/**/
    
    .content03 .center .container_right .text_wrap{
       margin-top: 40px;
        
    }/**/
    .content03 .center .container_right .text_wrap h2 {
    font-family: 'NanumSquare_EB', sans-serif;
    font-size: 24px;
    margin-bottom: 35px;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    }/**/
}

@media (max-width: 1355px){
    header nav .nav_wrap h1 img{
        width: 190px;
        height: auto;
        cursor: pointer;  
        margin-top: 20px;
    }
    
    header nav .nav_wrap ul {
        margin-top: 20px;
    }
    
    .content02 .center .container_left {
        width: 550px;
        height: 448px;
    }
    
    .content02 .center .container_right img {
        width: 600px;
        margin-left: 30px;
        margin-bottom: 60px;
    }

    .content02 .center .container_left .text_wrap{
        text-align: left;
        color: #354352;
    }

    .content02 .center .container_left .text_wrap h2{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 24px;
        margin-bottom: 40px;
    }

    .content02 .center .container_left .text_wrap h3{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 34px;
        letter-spacing: 0.6px;
        margin-bottom: 23px;
    }

    .content02 .center .container_left .text_wrap h3 strong{
        font-family: 'Poppins_SB', sans-serif;
        font-size: 34px;
        line-height: 62px;
    }

    .content02 .center .container_left .text_wrap p{
        font-family: 'NanumSquare_B', sans-serif;
        font-size: 16px;
        line-height: 30px;
        letter-spacing: 0.3px;
        word-break: keep-all;
    }
       
    .content02 .center .container_left .button_wrap .game_button {
        background-image: url(../img/btn01.webp);
        background-repeat: no-repeat;
        width: 190px;
        height: 100%;
        border-radius: 100px;
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.4), 0 0 70px rgba(255, 255, 255, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .content02 .center .container_left .button_wrap .game_button a {
        font-family: 'NanumSquare_B', sans-serif;
        letter-spacing: 0.8px;
        font-size: 17px;
        color: #ffffff;
        position: unset;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    }
}

@media (max-width: 1390px){    
    .content02 .center .container_right img {
        width: 115%;
       /* margin-left: 90px; */
        margin-bottom: 40px;
    } /**/

    .content02 .center .container_left .text_wrap h2 {
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 24px;
        margin-bottom: 35px;
    }
    .content03 .center .container_left img {          
        content: url(../img/game02_illust_eng.webp);
        position: relative;
        right: 50%;
        top: 100px;
        width: 690px !important;
    }
    
    .content03 .center .container_right {
    position: relative;
    left: 10%;
    top: 10%;
    text-align: left;
    width: 500px;
    }
    
    .content03 .center .container_right .text_wrap{
       margin-top: 40px;
        
    }
    
    .content03 .center .container_right .text_wrap h2 {
    font-family: 'NanumSquare_EB', sans-serif;
    font-size: 24px;
    margin-bottom: 35px;
     text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
    }
    
}


@media (min-width: 863px) and (max-width: 1280px) {
    
    .center{
        width: 88%;
    }
    .header_mobile{
        display: block;
    }
    
    .header_mobile nav {
        height: 60px;
        padding-top: 1%;
        width: 88%;
        margin: 0 auto;
    }
    .header_mobile nav .nav_wrap{
      align-items: flex-start;
      height: 150px;
      display: block;
    }
    .header_mobile nav .nav_wrap .container_top{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
    }
    .header_mobile nav .nav_wrap .container_top h1{
       font-size: 0;    
       width: 260px;
       display: inline-flex;
        margin-left: 10px;
    }
    .header_mobile nav .nav_wrap .container_top h1 a{
       font-size: 0;
       width: 100%;
    }
    .header_mobile nav .nav_wrap .container_top h1 img {
        height: unset;
        width: 260px; 
    }
    .header_mobile nav .nav_wrap .container_top .language{
        padding-top: 19px;
    }
    .header_mobile nav .nav_wrap .container_top .language a{
        font-size: 19px;
        font-family: 'Freesentation-5Medium', sans-serif; 
       
    }
    .header_mobile nav .nav_wrap .container_top .language a i{
        margin-right: 10px !important;
    }
    .header_mobile nav .nav_wrap .container_top .language #nav_hover{
     opacity: 90%;   
    }
    .header_mobile nav .nav_wrap .container_top .language #nav_hover:hover{
      opacity: 100%; 
    } 
    .header_mobile nav .nav_wrap ul {
        display: flex;
        flex-direction: column;
        text-align: end;  
        position: unset;
        margin-right: 10px;
        float: right;
    }
    .header_mobile nav .nav_wrap ul li {               
        margin-left: 1.5rem;
        height: 50px;
        padding-top: 8px !important;
    }
    .header_mobile nav .nav_wrap ul li a {
        color: white;
        font-family: 'Freesentation-7Bold', sans-serif;
        font-size: 26px;
        text-shadow: 2px 2px 4px #000000, -2px -2px 4px #555555;
    }
    .m-menu li a {
        display: inline-block;
        position: relative;
        padding: 20px 0;
        color: white;
        font-family: 'Freesentation-7Bold', sans-serif;
        font-size: 30px;
        text-shadow: 2px 2px 15px #000000, -2px -2px 4px #555555;
    }
    .header_mobile nav .nav_wrap .menu-row {
        display: flex;
        justify-content: flex-end;
        padding-top: 30px;
    }
    .mBtn a {
        display: block;
        position: static;
        width: 40px;
        height: 40px;
        background: url(../img/menu.webp) no-repeat;
        background-size: contain;
        text-indent: -9999px;
        margin: 0;
    }
    .mNav .m-menu li h1 {
        height: 50px;
        margin-bottom: 40px;
    }
    .mNav .m-menu li h1 a img { display: block; width: 250px; margin: 0 auto 20px; }
   .nav-indicator-mobile {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    position: absolute;
    top: 33px;
    left: -30%;
    transform: translateX(-50%) scale(0.7);
    opacity:0; 
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 1000;
    }/**/
    
    .nav-indicator-mobile.active {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        animation: blink 1.4s infinite;
     }/**/

    .nav-indicator-mobile.color-1 { background-color: #e68552;}
    .nav-indicator-mobile.color-2 { 
    background-color: #adcd47;
    left: -21px;
    }/**/

    .mobile .mobile_contents{
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mobile .content01{
        height: 100vh;
        width: 100vw;   
    }
    
    .mobile .upper-sections {
        position: relative;
    }

    .mobile .upper-sections .scroll-down {
         position: fixed;
        top: 75%;
        z-index: 1000;
    }
    
    .mobile .scroll-down{
        display: flex;
        width: 100%;
        top: 75%;
        z-index: 1000;
        animation: down 2.5s infinite, blink 2.7s infinite;
        
    }/**/
    
    .mobile .scroll-down img{
        width: 60px;
        margin: 0 auto;
        
       
    }/**/
    .mobile .content01 .center .text_wrap{
        margin-top: unset;
    }
    
    .mobile .content01 .center .text_wrap img{
        display: block;
        height: 50px;
        margin: 0 auto 40px;
    }   
    
    .mobile .content01 .center .text_wrap .banner_text p{
        font-size: 49px;
        line-height: 65px;
        /*margin-bottom: 230px; */
        word-break: keep-all;
        font-family: 'JalnanGothic', sans-serif;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 0, 0, 0.4);
    }/**/
    
    .mobile #game_tos-mobile{
        padding-top: 100px;
        padding-bottom: 100px;
        width: 100vw;
        background: url(../img/game01_bg_mo_3.webp) center/cover no-repeat;
        background-color: #191919;
    }
    
    
    .mobile .content02 .center{
        display: flex;
        flex-direction: column-reverse;
    }
    
    .mobile .content02 .center .container_left{
        width: 60%;
        height: 100%;
        margin-top: 10px;
        margin-bottom: 120px;    
    }

    .mobile .content02 .center .container_left .text_wrap{
        text-align: center;
        color: #354352;
        width: 100%; 
    }
    
    .content02 .center .container_left .text_wrap h2{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 25px;
        margin-bottom: 42px;
    }
    
    .content02 .center .container_left .text_wrap h3{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 30px;
        letter-spacing: 0.3px;
        margin-bottom: 20px;
    }

    .mobile .content02 .center .container_left .text_wrap h3 strong{
        font-family: 'Poppins_SB', sans-serif;
        font-size: 40px;
        line-height: 70px;
    }
    
    .mobile .content02 .center .container_left .text_wrap p{
        font-family: 'NanumSquare_B', sans-serif;
        font-size: 18px;
        line-height: 35px;
        letter-spacing: 0.3px;
        word-break: keep-all;
    }    

    .mobile .content02 .center .container_left .button_wrap{
        margin-top: 70px;
        display: flex;
        justify-content: center;
        gap: 20px;
        height: unset;
    }
    
    .mobile .content02 .center .container_left .button_wrap .game_button{
        height: 61px;
        width: 230px;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center; 
    }
    
    .mobile .content02 .center .container_left .button_wrap .game_button a{    
        font-size: 18px;
        position: unset;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    }
    
    .mobile .content02 .center .container_right{
        display: flex;
        justify-content: center; 
        align-items: center;   
    }

    .mobile .content02 .center .container_right img{   
        content: url(../img/game01_illust_02.webp);
        width: 150%;
        height: auto;
        margin-left: unset;
        margin-bottom: unset;
    }

    .mobile #game_ge-mobile{
        padding-top: 100px;
        width: 100vw;
        position: relative;
        background: url(../img/game02_bg_mo_03.webp) center/cover no-repeat;
        background-color: #191919;
        overflow: hidden;
    }

    .mobile .content03 .center{
        display: flex;
        flex-direction: column; 
    }

    
    .mobile .content03 .center .container_left{
        display: flex;
        justify-content: center; 
        align-items: center;
        width: unset;
    }

    .mobile .content03 .center .container_left img {
        content: url(../img/game02_illust_eng.webp);
        width: 850px !important;
        height: auto;
        position: relative;
        right: 20px;
        top: -20px;
    }/**/
    
    .mobile .content03 .center .container_right {  
        height: 100%; 
         position: relative;
        left: 0;
        bottom: 300px;
        width: 60%; 
    }

    .mobile .content03 .center .container_right .text_wrap{
        text-align: center;
        color: #354352;
        width: 100%; 
    }
    
    .mobile .content03 .center .container_right .text_wrap h2{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 25px;
        margin-bottom: 42px;
    }
    
    .mobile .content03 .center .container_right .text_wrap h3{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 30px;
        letter-spacing: 0.3px;
        margin-bottom: 20px;
    }

    .mobile .content03 .center .container_right .text_wrap h3 strong{
        font-family: 'Poppins_SB', sans-serif;
        font-size: 40px;
        line-height: 70px;
    }

     .mobile .content03 .center .container_right .text_wrap p {
        font-family: 'NanumSquare_B', sans-serif;
        font-size: 18px;
        line-height: 35px;
        letter-spacing: 0.3px;
        word-break: keep-all;
    }
    
    .mobile .content03 .center .container_right .button_wrap{
        margin-top: 70px;
        display: flex;
        justify-content: center;
        gap: 20px;
        height: unset;
    }
    
    .mobile .content03 .center .container_right .button_wrap .game_button{
        height: 61px;
        width: 230px;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center; 
    }
    
    .mobile .content03 .center .container_right .button_wrap .game_button a{
        font-size: 18px;
        position: unset;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    }

    .mobile .content05{
        height: 1750px;
        padding-top: 100px;
        position: relative;
        background: url(../img/about_company_bg.webp) center/cover no-repeat;
        background-color: #191919;
    }/**/
    
    .mobile .content05 .center{
        display: flex;
        flex-direction: column;
        position: relative;
        bottom: 300px;
        width: 80%;
        justify-content: center;
    }

    .mobile .content05 .center .container_left{
        width: 100%;   
        margin-top: 10px;
        height: 50%;
        display: inline;
    }

    .mobile .content05 .center .container_left h2{
        color: white;
        font-size: 30px;
        font-family: 'NanumSquare_EB', sans-serif;
        text-align: center;
        margin-bottom: 40px;
        margin-top: 100px;
    }

    
    .mobile .content05 .center .container_left .text_wrap{
        border: 1px solid white; 
        padding: 50px 60px 50px 60px;
        border-radius: 20px;
    }

    .mobile .content05 .center .container_left .text_wrap .about_ci{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .mobile .content05 .center .container_left .text_wrap .about_ci li{
        margin: 0 auto;
        font-size: 26px;
        font-family: 'NanumSquare_EB', sans-serif;
        word-break: keep-all;
    }

    .mobile .content05 .center .container_left .text_wrap .ci_description{
        margin-top: 27px;
    }

    .mobile .content05 .center .container_left .text_wrap .ci_description li{
        color: white;
        font-size: 18px;
        font-family: 'NanumSquare_R', sans-serif;
        text-align: center;
        line-height: 25px;
        display: block;
        word-break: keep-all;
    }

    .mobile .content05 .center .container_right{
        width: 100%;
        margin-top: 40px;
        position: unset;
    }

    .mobile .content05 .center .container_right h2{
        color: white;
        font-size: 30px;
        font-family: 'NanumSquare_EB', sans-serif;
        text-align: center;
        margin-bottom: 40px;
        margin-top: 50px;
    }

    .mobile .content05 .center .container_right .text_wrap{
        margin-top: 30px;
    } 

    .mobile .content05 .center .container_right img{
        width: 100%;
    }

    .mobile .content05 .center .container_right .text_wrap{
       display: flex;
       flex-direction: column;
       justify-content: space-between;
    }

    .mobile .content05 .center .container_right .text_wrap dl{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile .content05 .center .container_right .text_wrap dl div{
        display: flex;
        text-align: left;
        margin-bottom: 30px;
    }

    .mobile .content05 .center .container_right .text_wrap dl div dt{
        color: white;
        font-size: 19px;
        font-family: 'NanumSquare_EB', sans-serif;
        width: unset;
        word-break: keep-all;
    }

    .mobile .content05 .center .container_right .text_wrap dl div dd{
        color: white;
        font-size: 18px;
        font-family: 'NanumSquare_R', sans-serif;
        margin: unset;
        line-height: 27px;
        padding-left: 22px;
        word-break: keep-all;
    }
    .mobile .content05-1{
        height: 1100px;
        width: 100vw;
        position: relative;
        background: url(../img/content05-1_bg.webp) center/cover no-repeat;
    }
    .mobile .content05-1 .center h2{
        color: #fff;
        text-align: center;
        padding-top: 40px;
        font-size: 27px;
        font-family: 'JalnanGothic', sans-serif;
        margin-bottom: 53px;
        letter-spacing: 1.5px;
        font-weight: 300;
    }
    .mobile .content05-1 .center p{
        color: white;
        font-family: 'Freesentation-3Light', sans-serif;
        text-align: center;
        font-size: 18px;
        line-height: 29px;
        letter-spacing: 0.7px;
        word-break: keep-all;
    }
    .mobile .content05-1 .center .partner_list {
        height: 500px;
        width:100%;
        display: flex;
        flex-direction: column;
        margin-top: 35px;
    }
    .mobile .content05-1 .center .partner_list .container_top{
        height: 250px;
        margin-bottom: 10px;
    }
    .mobile .content05-1 .center .partner_list .container_top ul{
    width: 100%;
    }
    /**오토 슬라이드 테스트**/
    .mobile .content05-1 .center .partner_list .container_top .partner_slider {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: row;
      margin: auto;
      /*max-width: 1440px; */
      overflow-x: scroll;
      white-space: nowrap;
      background-color: transparent;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li {
      min-width: 390px;
      border-radius: 5px;
      margin-right: 10px;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
      transition: transform 1.5s ease, background 1.5s ease;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .wrapper {
      height: 100%;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
      transition: transform 1.5s ease, background 1.5s ease;      
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content{
      position: relative; 
      overflow: hidden; 
      height: 100%;
      border-radius: 5px;
      background-color: rgba(211,211,211,.6);
      box-shadow: 0 4px 4px rgba(0,0,0,.1);
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      color:#fff; font-weight:700;
      transition: all .4s ease; 
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content img{
        width: 50%;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content::before{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(to top,#222221,#0e0e0e,#6f6f6f);
      opacity:0;
      transition: opacity 0.4s ease-in-out;
      border-radius: inherit;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover::before{
      opacity:.9;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content .partner_text h3{
        display: none;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content p{
        display: none;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover img{
        display: none;
        -webkit-transition: .1s ease-in-out;
        transition: .1s ease-in-out;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text{
        width: 100%;
        height: 100%;
        overflow: auto;
        padding: 30px;
        z-index: 1000;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text h3{
        display: block;
        color: #fff;
        text-align: center;
        font-size: 18px;
        font-family: 'JalnanGothic', sans-serif;
        margin-bottom: 10px;
        letter-spacing: 1.5px;
        font-weight: 300;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text p{
        display: block;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break:keep-all;
        text-align: center;
        font-family: 'Freesentation-5Medium', sans-serif;
        font-size: 15px;
        line-height: 21px;
        letter-spacing: 0.6px;
        font-weight:300;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text .partner_games{
        font-size: 14px;
        border: 1px solid white;
        padding: 5px;
        margin-bottom: 10px;
        font-family: 'Freesentation-5Medium', sans-serif;
        font-weight:300;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .content > div {
      height: 2rem;
      background-color: lightgray;
      margin: 2rem auto 0 auto;
      width: 85%;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
      border-radius: 5px;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .content > div:last-child {
      height: 5rem;
    }
    /******bottom*******/
    .mobile .content05-1 .center .partner_list .container_bottom{
       height: 250px;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: row;
      margin: auto;
      /*max-width: 1440px; */
      overflow-x: scroll;
      white-space: nowrap;
      background-color: transparent;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li {
      min-width: 390px;
      border-radius: 5px;
      margin-right: 10px;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .wrapper {
      height: 100%;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content img{
      width: 50%;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover img{
       display: none;
        -webkit-transition: .1s ease-in-out;
        transition: .1s ease-in-out;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content .partner_text h3{
        display: none;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content p{
        display: none;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content{
      position: relative;
      overflow: hidden;
      height: 100%;
      border-radius: 5px;
      background-color: rgba(211,211,211,.6);
      box-shadow: 0 4px 4px rgba(0,0,0,.1);
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      color:#fff; font-weight:700;
      transition: all .4s ease;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content::before{
      content:"";
      position:absolute; inset:0;
      background: linear-gradient(to top,#222221,#0e0e0e,#6f6f6f);
      opacity:0;
      transition: opacity 0.4s ease-in-out; 
      border-radius: inherit;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover::before{
      opacity:.9;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover img{
       display: none;
        -webkit-transition: .1s ease-in-out;
        transition: .1s ease-in-out;

    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li     .partner_content:hover .partner_text{
        width: 100%;
        height: 100%;
        overflow: auto;
        padding: 30px;
        z-index: 1000;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text h3{
        display: block;
        color: #fff;
        text-align: center;
        font-size: 18px;
        font-family: 'JalnanGothic', sans-serif;
        margin-bottom: 10px;
        letter-spacing: 1.5px;
        font-weight: 300;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text p{
        display: block;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break:keep-all;
        text-align: center;
        font-family: 'Freesentation-5Medium', sans-serif;
        font-size: 15px;
        line-height: 21px;
        letter-spacing: 0.6px;
        font-weight:300;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
        
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text .partner_games{
        font-size: 14px;
        border: 1px solid white;
        padding: 5px;
        margin-bottom: 10px;
        font-family: 'Freesentation-5Medium', sans-serif;
        font-weight:300;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .content > div {
      height: 2rem;
      background-color: lightgray;
      margin: 2rem auto 0 auto;
      width: 85%;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
      border-radius: 5px;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .content > div:last-child {
      height: 5rem;
    }
    .mobile .content05-1 .center .partner_list .container_bottom{
        height: 50%;
    }
    .mobile .content05-1 .center .partner_list .container_bottom ul{
        width: 100%;
    }
    .mobile .content06 {
        height: 1100px;
        width: 100vw;
        position: relative;
        background: url(../img/company_history_bg.webp) center/cover no-repeat;
        display: flex;
    }
    .mobile .content06 .center{
        height: 80%;
    }

    .mobile .content06 .center  .history_wrap h2{
        font-size: 30px;
        padding-top: unset;
        margin-bottom: 40px;
        text-align: center;
        font-family: 'NanumSquare_EB', sans-serif;
    }

    .mobile .content06 .center  .history_wrap .swiper .swiper-wrapper .swiper-slide ul li .timeline-content{
        width: 90%;
        margin: 0 auto;
    }

    .mobile .monthly-history {
        display: flex;
        align-items: baseline;
    }

    .mobile .content06 .center  .history_wrap .swiper03 .swiper-wrapper .swiper-slide .timeline li p {
        color: white;
        font-family: 'NanumSquare_L', sans-serif;
        text-align: left;
        font-size: 18px;
        line-height: 40px;
        margin-left: 30px;
        flex-direction: column;
        word-break: keep-all;
    }
    
    .mobile .content06 .center  .history_wrap .swiper03 .swiper-wrapper .swiper-slide .timeline li #text_margin{
            
         margin-left: 55px !important; 
         position: relative;
         bottom: 13px;

    }

    .mobile .content06 .center  .history_wrap .swiper03 .swiper-wrapper .swiper-slide .timeline li h3 { 
        color: white;
        font-family: 'NanumSquare_R', sans-serif;
        text-align: center;
        font-size: 28px;
        margin-bottom: 20px;
        margin-top: 60px;
    }

    .mobile .content06 .center  .history_wrap .swiper03 .swiper-wrapper .swiper-slide .timeline li h4 {
        color: white;
        font-family: 'NanumSquare_R', sans-serif;
        top: 0;
    }
    
    .mobile .content05 footer{
        background-color: black;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        height: 370px;
    }

    .mobile .content05 footer .text_wrap{
        color: white;
        width: 75%;
        height: 70%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        margin: 0 auto;
        margin-top: 40px;
    }/*현재*/


    .mobile .content05 footer .text_wrap img:first-child{
        width: 200px;
    }/**/
    .mobile .content05 footer .text_wrap p{
        font-size: 14px;
        font-family: 'NanumSquare_R', sans-serif;
        letter-spacing: 0.6px;
        line-height: 26px;
        color: white;
        word-break: keep-all;
    }/**/
    .mobile .content05 footer .text_wrap #footerLink{
        display: flex;
    }/**/
    .mobile .content05 footer .text_wrap #footerLink li{
        margin-right: 16px;
    }/**/
    .mobile .content05 footer .text_wrap #footerLink li:first-child a i{
      padding-top: 1px;      
    }/**/
    .mobile .content05 footer .text_wrap #footerLink li:last-child {
        margin-right: unset;
    }/**/
    .mobile .content05 footer .text_wrap #footerLink li a{
        font-family: 'NanumSquare_R', sans-serif;
        font-size: 14px;
        line-height: 25px;
        letter-spacing: 0.6px;
        word-break: keep-all;
    } 

    .swiper-slide:nth-of-type(6){
        text-align: center;
        font-size: 18px;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .swiper-slide:nth-of-type(1),
    .swiper-slide:nth-of-type(2),
    .swiper-slide:nth-of-type(3),
    .swiper-slide:nth-of-type(4),
    .swiper-slide:nth-of-type(5),
    .swiper-slide:nth-of-type(7),
    .swiper-slide:nth-of-type(8) {
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .mobile .swiper02 {
        width: 70%;
        height: unset;
    }

    .mobile .swiper-pagination{
        display: none;
    }
}




@media (max-width: 1210px){    
    .content03 .center .container_left img {
        content: url(../img/game02_illust_eng.webp);
        position: relative;
        right: 110%;
        top: 170px;
        width: 830px;
    }
}



@media (max-width: 1120px){
    .content03 .center .container_left img {
        content: url(../img/game02_illust_eng.webp);
        position: relative;
        right: 110%;
        top: 170px;
        width: 750px;
    }
} 

@media (min-width: 546px) and (max-width: 862px){
    .center{
        width: 88%;  
    }
    
    .header_mobile nav {
        height: 60px;
        padding-top: 3%;
        width: 88%;
        margin: 0 auto;
    }
    .header_mobile nav .nav_wrap h1{
       font-size: 0;
       width: 180px;
       display: inline-flex;
    }  
    .header_mobile nav .nav_wrap h1 a{
       font-size: 0;
       width: 100%;
    }
    .header_mobile nav .nav_wrap h1 img {
        height: unset;
        width: 100%;
        margin-left: 10px;
    }
    .header_mobile nav .nav_wrap{
      align-items: flex-start;
        display: block;
    }
    .header_mobile nav .nav_wrap .container_top{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }
    .header_mobile nav .nav_wrap .container_top .language{
        padding-top: 23px;
    }
    .header_mobile nav .nav_wrap .container_top .language a{
        font-size: 18px;
        font-family: 'Freesentation-5Medium', sans-serif; 
    }
    .header_mobile nav .nav_wrap .container_top .language #nav_hover{
     opacity: 90%;   
    }
    .header_mobile nav .nav_wrap .container_top .language #nav_hover:hover {
     opacity: 100%;
    }
    .header_mobile nav .nav_wrap ul {
        display: flex;
        flex-direction: column;
        text-align: end;
        position: unset;
        margin-right: 10px;
        float: right;
    } 
    .header_mobile nav .nav_wrap ul li {
        font-size: 0.8rem;
        margin-left: 1.5rem;
        height: 50px;
        padding-top: 8px !important;
        position: relative;
    }
    .header_mobile nav .nav_wrap ul li a {
        color: white;
        font-family: 'Freesentation-7Bold', sans-serif;
        font-size: 25px;
        text-shadow: 2px 2px 4px #000000, -2px -2px 4px #555555;
    }
    .mNav .m-menu li h1 {
        height: 50px;
        margin-bottom: 30px;
    }
    .mNav .m-menu li h1 a img { display: block; margin: 0 auto 20px; }
    .m-menu li a {
        display: inline-block;
        position: relative;
        padding: 17px 0;
        color: white;
        font-family: 'Freesentation-7Bold', sans-serif;
        font-size: 28px; 
        text-shadow: 2px 2px 15px #000000, -2px -2px 4px #555555; 
    }
    .nav-indicator-mobile {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    left: -24px;
    top: 37px;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    }

    .nav-indicator-mobile.active {
    opacity: 1;
    animation: blink 1.4s infinite;
    }
    .nav-indicator-mobile.color-1 { 
        background-color: #e68552;
    }/**/
    .nav-indicator-mobile.color-2 { 
        background-color: #adcd47;
        left: -17%;
    }/**/
    .mobile .mobile_contents{
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center; 
    }
    .mobile .content01{
        height: 100vh;
        width: 100vw;
    }
     .mobile .upper-sections {
        position: relative;
    }

    .mobile .upper-sections .scroll-down {
        position: fixed;
        top: 75%;
        z-index: 1000;
    }/**/
    
    .mobile .scroll-down{
        display: flex;
        top: 75%;
        width: 100%;
        z-index: 1000;
        animation: down 2.5s infinite, blink 2.7s infinite;
    }/**/
    
    .mobile .scroll-down img{
        width: 50px;
        margin: 0 auto;
    }/**/

    .mobile .content01 .center .text_wrap{
        margin-top: unset;
    }

    .mobile .content01 .center .text_wrap img{
        display: block;
        height: 50px;
        margin: 0 auto 40px;

    }   

    .mobile .content01 .center .text_wrap .banner_text p{
        font-size: 39px;
        line-height: 53px;
        /* margin-bottom: 320px; */
        word-break: keep-all;
        font-family: 'JalnanGothic', sans-serif;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 0, 0, 0.4);
    }/**/


    .mobile #game_tos-mobile{
        padding-top: 100px;
        padding-bottom: 200px;
        width: 100vw;
        background: url(../img/game01_bg_mo_3.webp) center/cover no-repeat;
        background-color: #191919;
    }

    .mobile .content02 .center{
        display: flex;
        flex-direction: column-reverse;
    }

    .mobile .content02 .center .container_left{
        width: 80%;
        height: 100%; 
        margin-top: 10px;
    }

    .mobile .content02 .center .container_left .text_wrap{
        text-align: center;
        color: #354352;
        display: inline;
    }

    .content02 .center .container_left .text_wrap h2{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 18px;
        margin-bottom: 22px;
    }

    .content02 .center .container_left .text_wrap h3{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 25px;
        letter-spacing: 0.3px;
        margin-bottom: 25px;
    }

    .mobile .content02 .center .container_left .text_wrap h3 strong{
        font-family: 'Poppins_SB', sans-serif;
        font-size: 35px;
        line-height: 60px;
    }

     .mobile .content02 .center .container_left .text_wrap p{
        font-family: 'NanumSquare_R', sans-serif;
        font-size: 16px;
        line-height: 30px;
        letter-spacing: 0.3px;
    }

    .mobile .content02 .center .container_left .button_wrap{
        margin-top: 50px;
        display: flex;
        justify-content: center;
        gap: 20px;
        height: unset;
    }

    .mobile .content02 .center .container_left .button_wrap .game_button{
        height: 41px;
        width: 163px;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center; 
    }

    .mobile .content02 .center .container_left .button_wrap .game_button a{
        font-size: 14px;
        position: unset;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    }

    .mobile .content02 .center .container_right{

        display: flex;
        justify-content: center; 
        align-items: center; 
    
    }

    .mobile .content02 .center .container_right img{
        content: url(../img/game01_illust_02.webp);
        width: 550px;
        max-width: 600px;
        height: auto;
        margin-left: unset;
        margin-bottom: unset;
    }

    .mobile #game_ge-mobile{
        height: 1400px;
        width: 100vw;
        position: relative;
        background: url(../img/game02_bg_mo_03.webp) center/cover no-repeat;
        background-color: #191919;
    }

    .mobile .content03 .center{
        display: flex;
        flex-direction: column;  
    }

    .mobile .content03 .center .container_left{
        display: flex;
        justify-content: center; 
        align-items: center;
        width: unset;
    }

    .mobile .content03 .center .container_left img{
        content: url(../img/game02_illust_eng.webp);
        width: 700px;
        max-width: 650px;
        height: auto;
        position: relative;
        left: 0;
        top: 40px;
    }

     .mobile .content03 .center .container_right {
        width: 80%;
        height: 100%;
        position: relative;
        left: 0; 
        bottom: 170px;
    }   

    .mobile .content03 .center .container_right .text_wrap{
        display: inline;
        word-break: keep-all; 
        text-align: center;
        color: #354352;
    }

    .mobile .content03 .center .container_right .text_wrap h2{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 18px;
        margin-bottom: 22px;
    }

    .mobile .content03 .center .container_right .text_wrap h3{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 25px;
        letter-spacing: 0.3px;
        margin-bottom: 25px;
    }  
    .mobile .content03 .center .container_right .text_wrap h3 strong{
        font-family: 'Poppins_SB', sans-serif;
        font-size: 35px;
        line-height: 60px;
    }

     .mobile .content03 .center .container_right .text_wrap p {  
        font-family: 'NanumSquare_R', sans-serif;
        font-size: 16px;
        line-height: 30px;
        letter-spacing: 0.3px;
    }

    .mobile .content03 .center .container_right .button_wrap{
        margin-top: 50px;
        display: flex;
        justify-content: center;
        gap: 20px;
        height: unset;
    }

     .mobile .content03 .center .container_right .button_wrap .game_button{
        height: 41px;
        width: 163px;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center; 
    }

    .mobile .content03 .center .container_right .button_wrap .game_button a{
        font-size: 14px;
        position: unset;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
    }     

    .mobile .content05{
       height: 1650px;
    }    

    .mobile .content05 .center{
        display: flex;
        flex-direction: column;
        position: relative;
        bottom: 200px;
        width: 80%;
        justify-content: center;
    }

    .mobile .content05 .center .container_left{
        width: 100%;   
        margin-top: 273px;
        height: 50%;
        display: inline;
    }

    .mobile .content05 .center .container_left h2{
        color: white;
        font-size: 25px;
        font-family: 'NanumSquare_EB', sans-serif;
        text-align: center;
        margin-bottom: 40px;
        margin-top: 100px;
    }

    .mobile .content05 .center .container_left .text_wrap{
        border: 1px solid white; 
        padding: 50px 30px 50px 30px;
        border-radius: 20px;
    }

    .mobile .content05 .center .container_left .text_wrap .about_ci{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .mobile .content05 .center .container_left .text_wrap .about_ci li{ 
        margin: 0 auto;
        font-size: 19px;
        font-family: 'NanumSquare_EB', sans-serif;
        word-break: keep-all;
    }

    .mobile .content05 .center .container_left .text_wrap .ci_description{
        margin-top: 27px;
    }

    .mobile .content05 .center .container_left .text_wrap .ci_description li{
        color: white;
        font-size: 18px;
        font-family: 'NanumSquare_R', sans-serif;
        text-align: center;
        line-height: 25px;
        display: block;
        word-break: keep-all;
    }

    .mobile .content05 .center .container_right{
        width: 100%;
        margin-top: 40px;
        position: unset;
    }

    .mobile .content05 .center .container_right h2{
        color: white;
        font-size: 25px;
        font-family: 'NanumSquare_EB', sans-serif;
        text-align: center;
        margin-bottom: 40px;
        margin-top: 20px;
    }

    .mobile .content05 .center .container_right .text_wrap{
      margin-top: unset;
    } 

    .mobile .content05 .center .container_right img{
        width: 100%;
    }

    .mobile .content05 .center .container_right .text_wrap{
       display: flex;
       flex-direction: column;
       justify-content: space-between;
    }

    .mobile .content05 .center .container_right .text_wrap dl{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mobile .content05 .center .container_right .text_wrap dl div{
        display: flex;
        text-align: center;
        flex-direction: column;
        margin-top: 30px;
    }

    .mobile .content05 .center .container_right .text_wrap dl div dt{
        color: white;
        font-size: 20px !important;
        font-family: 'NanumSquare_EB', sans-serif;
        margin-bottom: 15px;
        word-break: keep-all;
    }

    .mobile .content05 .center .container_right .text_wrap dl div dd{
        color: white;
        font-size: 16px !important;
        font-family: 'NanumSquare_R', sans-serif;
        margin: unset;
        line-height: 30px;
        padding-right: unset;
        word-break: keep-all;
        display: unset;
    }
    .mobile .content05-1{
       /* height: 100vh; */
        width: 100vw;
        position: relative;
        background: url(../img/content05-1_bg.webp) center/cover no-repeat;
        height: 1000px;
    }
    .mobile .content05-1 .center h2{
        text-align: center;
        padding-top: 40px;
        font-size: 27px;
        margin-bottom: 40px;
    }
    .mobile .content05-1 .center p{
        text-align: center;
        font-size: 18px;
        line-height: 29px;
        margin-bottom: 40px;
    }
    .mobile .content05-1 .center .partner_list {
        height: 420px;
        width:100%;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider{
       height: 210px;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li {
      min-width: 330px;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content img{
        width: 50%;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content{
        height: 210px;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text{
        width: 100%;
        height: 210px;
        overflow: auto;
        padding: 24px 25px 22px 25px;
        z-index: 1000;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text h3{
        font-size: 15px;
        margin-bottom: 10px;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text p{
        font-size: 13px;
        line-height: 19px;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text .partner_games{
        font-size: 12px;
        margin-bottom: 9px;
    }
    /******bottom*******/
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider{
       height: 210px;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li {
      min-width: 330px;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .wrapper {
      padding 1rem;
      height: 100%;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content img{
      width: 50%;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content{
        height: 210px;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text{
        width: 100%;
        height: 210px;
        overflow: auto;
        padding: 20px 25px 22px 25px;
        z-index: 1000;
        
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text h3{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text p{
        font-size: 13px;
        line-height: 19px;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text .partner_games{
        font-size: 12px;
        margin-bottom: 9px;
    }


    .mobile .content06 {
        height: 1100px;
        width: 100vw;
        position: relative;
        background: url(../img/company_history_bg.webp) center/cover no-repeat;
        display: flex;
    }

    .mobile .content06 .center{
        height:  80%;
    }

    .mobile .content06 .center h2{
        font-size: 25px;
        padding-top: unset;
        margin-bottom: 40px;
        text-align: center;
        font-family: 'NanumSquare_EB', sans-serif;
    }

    .mobile .content06 .center .swiper .swiper-wrapper .swiper-slide ul li .timeline-content{
        margin: 0 auto;
    }

    .mobile .monthly-history {
        display: flex;
        align-items: baseline;
    }

    .mobile .content06 .center .swiper03 .swiper-wrapper .swiper-slide .timeline li p {
        color: white;
        font-family: 'NanumSquare_L', sans-serif;
        text-align: left;
        font-size: 15px;
        line-height: 25px;
        margin-left: 20px;
        flex-direction: column;
        word-break: keep-all;
        width: 430px;
        margin-bottom: 10px;
    }
    
    .mobile .content06 .center .swiper03 .swiper-wrapper .swiper-slide .timeline li #text_margin{
        margin-left: 44px !important;
        
    }
    
    

    .mobile .content06 .center .swiper03 .swiper-wrapper .swiper-slide .timeline li h3 {
        color: white;
        font-family: 'NanumSquare_R', sans-serif;
        text-align: center;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .mobile .content06 .center .swiper03 .swiper-wrapper .swiper-slide .timeline li h4 {
        color: white;
        font-family: 'NanumSquare_R', sans-serif;
        top: 0;
    }

.mobile .content05 footer{
        background-color: black;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        height: 300px;
    }

    .mobile .content05 footer .text_wrap{
        color: white;
        width: 75%;
        height: 70%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        margin: 0 auto;
        margin-top: 40px;
    }/*현재*/


    .mobile .content05 footer .text_wrap img:first-child{
        width: 200px;
    }/**/
    .mobile .content05 footer .text_wrap p{
        font-size: 14px;
        font-family: 'NanumSquare_R', sans-serif;
        letter-spacing: 0.6px;
        line-height: 26px;
        color: white;
        word-break: keep-all;
    }/**/
    .mobile .content05 footer .text_wrap #footerLink{
        display: flex;
    }/**/
    .mobile .content05 footer .text_wrap #footerLink li{
        margin-right: 16px;
    }/**/
    .mobile .content05 footer .text_wrap #footerLink li:first-child a i{
      padding-top: 1px;      
    }/**/
    .mobile .content05 footer .text_wrap #footerLink li:last-child {
        margin-right: unset;
    }/**/
    .mobile .content05 footer .text_wrap #footerLink li a{
        font-family: 'NanumSquare_R', sans-serif;
        font-size: 14px;
        line-height: 25px;
        letter-spacing: 0.6px;
        word-break: keep-all;
    } 
   

    .swiper-slide:nth-of-type(6){
        text-align: center;
        font-size: 18px;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .swiper-slide:nth-of-type(1),
    .swiper-slide:nth-of-type(2),
    .swiper-slide:nth-of-type(3),
    .swiper-slide:nth-of-type(4),
    .swiper-slide:nth-of-type(5),
    .swiper-slide:nth-of-type(7),
    .swiper-slide:nth-of-type(8) {
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile .swiper02 {
        width: 70%;
        height: unset;
    }

    .mobile .swiper-pagination{
        display: none;
    }
}

@media (min-width: 300px) and (max-width: 545px) {
    .center{
        width: 88%;  
    }
.header_mobile nav {
        height: 58px;
        width: 88%;
        margin: 0 auto;
    }
    .header_mobile nav .nav_wrap{
      align-items: flex-start;
      height: 100px;
      margin-top: 10px;    
      display: block;    
    }
    .header_mobile nav .nav_wrap .container_top{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2px;
    }
    .header_mobile nav .nav_wrap .container_top .language{
        padding-top: 4px;
    }
    .header_mobile nav .nav_wrap .container_top .language a{
        font-size: 13px;
        font-family: 'Freesentation-5Medium', sans-serif; 
    }
    .header_mobile nav .nav_wrap .container_top h1{
       font-size: 0;
       display: inline-flex;
       width: 165px;
    }
    .header_mobile nav .nav_wrap .container_top h1 a{
       font-size: 0;
       width: 100%;
    }
    .header_mobile nav .nav_wrap .container_top h1 img {
      height: unset;
      width: 100%;
      margin-left: 10px;
      margin-top: unset;
    }
    .header_mobile nav .nav_wrap ul {
        display: flex;
        flex-direction: column;
        text-align: end;
        position: unset;
        margin-right: 10px;
        float: right;
    }
    .header_mobile nav .nav_wrap ul li {
        font-size: 0.8rem;
        margin-left: 1.5rem;
        height: 33px;
        padding-top: 5px !important;
    }
    .header_mobile nav .nav_wrap ul li a {
        color: white;
        font-family: 'Freesentation-7Bold', sans-serif;
        font-size: 17px;
        line-height: 23px;
        text-shadow: 2px 2px 4px #000000, -2px -2px 4px #555555;
    }
    .mNav .m-menu li h1 {
        height: 30px;
        margin-bottom: 10px !important;
    }
    .mNav .m-menu li h1 a img { display: block; width: 130px; margin: 0 auto 20px; }
    .m-menu li a {
        display: inline-block;
        position: relative;
        padding: 7px 0;
        color: white;
        font-family: 'Freesentation-7Bold', sans-serif;
        font-size: 20px; 
        text-shadow: 2px 2px 15px #000000, -2px -2px 4px #555555; 
    }
    .mBtn a {
    display: block;
    position: static;
    width: 20px;
    height: 20px;
    background: url(../img/menu.webp) no-repeat;
    background-size: contain;
    text-indent: -9999px;
    margin: 0;
    }
    .header_mobile nav .nav_wrap .menu-row {
    display: flex;
    justify-content: flex-end;
    padding-top: 16px;
    }
    .nav-indicator-mobile {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        position: absolute;
        top: 13px;
        left: -30%;
        transform: translateX(-50%) scale(0.7);
        opacity:0; 
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
         z-index: 1000;
    }/**/    
    .nav-indicator-mobile.active {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        animation: blink 1.4s infinite;
        left: -30%;
    }/**/
    .nav-indicator-mobile.color-1 { 
        background-color: #e68552;
    }
    .nav-indicator-mobile.color-2 { 
        background-color: #adcd47;
        left: -20%;
    }/**/
    .hover {
        opacity: 0.6;
    }
    .hover:hover {
        opacity: 1;
    }

    .mobile .mobile_contents{
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center; 
    }
    
    .mobile .content01{
        height: 100vh;
        width: 100vw;
    }
    
    .mobile .upper-sections {
        position: relative;
    }

    .mobile .upper-sections .scroll-down {
        position: fixed;
        top: 75%;
        z-index: 1000;
    }
    .mobile .scroll-down{
        display: flex;
        width: 100%;
        top: 75%;
        z-index: 1000;
        animation: down 2.5s infinite, blink 2.7s infinite;
        
    }/**/
    .mobile .scroll-down img{
        width: 50px;
        margin: 0 auto;
    }/**/
    
    .mobile .content01 .center{
        width: 80%;    
    }  
   
    .mobile .content01 .center .text_wrap{
        margin-top: unset;
    }
     
    .mobile .content01 .center .text_wrap img{
        display: block;
        height: 45px;
        margin: 0 auto 40px;
    }   
    
    .mobile .content01 .center .text_wrap .banner_text p{
        font-size: 22px !important;
        line-height: 32px !important;
        word-break: keep-all;
        font-family: 'JalnanGothic', sans-serif;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 0, 0, 0.4);
    }/**/

    .mobile #game_tos-mobile{
        height: 1300px;
        width: 100vw;
        background: url(../img/game01_bg_mo_3.webp) center/cover no-repeat;
        background-color: #191919;
    }
    
    
    .mobile .content02 .center{ 
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 100px;
    }
    
    .mobile .content02 .center .container_left{
        width: 90%;
        height: 100%; 
        margin-top: 10px;      
    }

    .mobile .content02 .center .container_left .text_wrap{
        text-align: center;
        color: #354352;
        display: inline;
    }
    
    .content02 .center .container_left .text_wrap h2{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 18px;
        margin-bottom: 22px;
    }
    
    .content02 .center .container_left .text_wrap h3{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 23px;
        letter-spacing: 0.3px;
        margin-bottom: 15px;
    }

    .mobile .content02 .center .container_left .text_wrap h3 strong{
        font-family: 'Poppins_SB', sans-serif;
        font-size: 32px;
        line-height: 50px;
    }

    .mobile .content02 .center .container_left .text_wrap p{
        font-family: 'NanumSquare_R', sans-serif;
        font-size: 13.5px;
        line-height: 28px;
        letter-spacing: 0.3px;
    }
    
    .mobile .content02 .center .container_left .button_wrap{
        margin-top: 40px;
        display: flex;
        justify-content: center;
        gap: 20px;
        height: unset;
    }
    .mobile .content02 .center .container_left .button_wrap .game_button{
        height: 41px;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
    }/**/
    .mobile .content02 .center .container_left .button_wrap .game_button a{
        font-size: 13px;
        position: unset !important;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
        /*width: 154px; */
    }/**/
    .mobile .content02 .center .container_right{
        display: flex;
        justify-content: center; 
        align-items: center; 
    }
    .mobile .content02 .center .container_right img{    
        width: 400px;
        max-width: 600px;
        height: auto;
        margin-left: unset;
        margin-bottom: unset;
    }/**/
    .mobile #game_ge-mobile{
        height: 1250px;
        width: 100vw;
        position: relative;
        background: url(../img/game02_bg_mo_03.webp) center/cover no-repeat;
        background-color: #191919;
    }/**/
    .mobile .content03 .center{
        display: flex;
        flex-direction: column;  
    }
    .mobile .content03 .center .container_left{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 110px;
        width: 550px;
    }/**/

    .mobile .content03 .center .container_left img{   
        content: url(../img/game02_illust_eng.webp);
        position: unset !important;
        width: 450px !important;
        margin-bottom: 80px;
    }/**/

    .mobile .content03 .center .container_right {
        width: 90%;
        height: 100%;
        position: relative;
        left: 0; 
        bottom: 230px;
    }   

    .mobile .content03 .center .container_right .text_wrap{
        display: inline;
        word-break: keep-all; 
        text-align: center;
        color: #354352;
    }
    
    .mobile .content03 .center .container_right .text_wrap h2{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 18px;
        margin-bottom: 22px;
    }

    .mobile .content03 .center .container_right .text_wrap h3{
        font-family: 'NanumSquare_EB', sans-serif;
        font-size: 23px;
        letter-spacing: 0.3px;
        margin-bottom: 15px;
    }

    .mobile .content03 .center .container_right .text_wrap h3 strong{
        font-family: 'Poppins_SB', sans-serif;
        font-size: 32px;
        line-height: 50px;
    }

     .mobile .content03 .center .container_right .text_wrap p {
        font-family: 'NanumSquare_R', sans-serif;
        font-size: 14px;
        line-height: 28px;
        letter-spacing: 0.3px;
    }

    .mobile .content03 .center .container_right .button_wrap{
        margin-top: 40px;
        display: flex;
        justify-content: center;
        gap: 20px;
        height: unset;
    }
    
    .mobile .content03 .center .container_right .button_wrap .game_button{
        height: 41px;
        background-size: cover;
        display: flex;
        justify-content: center;
        align-items: center;
    } /**/ 
    .mobile .content03 .center .container_right .button_wrap .game_button a{
        font-size: 13px;
        position: unset !important;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
       /* width: 154px; */
    } /**/
    
    .mobile .content03 .center .container_right .button_wrap .btn02 a{
        position: relative;
        left: 21px !important;
    }
   
    .mobile .content05{
        height: 1400px;
        
    }    
    
    .mobile .content05 .center{
        display: flex;
        flex-direction: column;
        position: relative;
        bottom: 200px;
        width: 80%;
        justify-content: center;
    }

    .mobile .content05 .center .container_left{
        width: 100%;   
        margin-top: 50px;
        height: 50%;
        display: inline;
    }

    .mobile .content05 .center .container_left h2{
        color: white;
        font-size: 25px;
        font-family: 'NanumSquare_EB', sans-serif;
        text-align: center;
        margin-bottom: 30px;
        margin-top: 100px;
    }
    
    .mobile .content05 .center .container_left .text_wrap{
        border: 1px solid white; 
        padding: 50px 30px 50px 30px;
        border-radius: 20px;
    }

    .content05 .center .container_left ul li {
        margin-bottom: 20px;
    }    
    
    .mobile .content05 .center .container_left .text_wrap .about_ci{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 30px; 
    }

    .mobile .content05 .center .container_left .text_wrap .about_ci li{
        margin: 0 auto;
        font-size: 13.5px;
        font-family: 'NanumSquare_EB', sans-serif;
        word-break: keep-all;
    }/**/

    .mobile .content05 .center .container_left .text_wrap .ci_description{
        margin-top: 27px;  
    }

    .mobile .content05 .center .container_left .text_wrap .ci_description li{
        color: white;
        font-size: 15px;
        font-family: 'NanumSquare_R', sans-serif;
        text-align: center;
        line-height: 25px;
        display: block;
        word-break: keep-all;
    }

    .mobile .content05 .center .container_right{
        width: 100%;
        margin-top: 40px;
        position: unset;
    }

    .mobile .content05 .center .container_right h2{
        color: white;
        font-size: 25px;
        font-family: 'NanumSquare_EB', sans-serif;
        text-align: center;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    .mobile .content05 .center .container_right .text_wrap{
        margin-top: unset;
    } 

    .mobile .content05 .center .container_right img{
        width: 100%;
        margin-bottom: unset !important;
    }
    
    .mobile .content05 .center .container_right .text_wrap{
       display: flex;
       flex-direction: column;
       justify-content: space-between;
    }

    .mobile .content05 .center .container_right .text_wrap dl{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mobile .content05 .center .container_right .text_wrap dl div{
        display: flex;
        text-align: center;
        flex-direction: column;
        margin-top: 20px;
    }

    .mobile .content05 .center .container_right .text_wrap dl div dt{
        color: white;
        font-size: 19px !important;
        font-family: 'NanumSquare_B', sans-serif;
        margin-bottom: 15px;
        word-break: keep-all;
    }

    .mobile .content05 .center .container_right .text_wrap dl div dd{
        color: white;
        font-size: 15px !important;
        font-family: 'NanumSquare_L', sans-serif;
        margin: unset;
        line-height: 25px;
        padding-right: unset;
        word-break: keep-all;
        display: unset;
        letter-spacing: 0.3px;
    }
        .mobile .content05-1{
        height: 1000px !important;
        width: 100vw;
        position: relative;
        background: url(../img/content05-1_bg.webp) center/cover no-repeat;
    }
    .mobile .content05-1 .center h2{
        color: #fff;
        text-align: center;
        padding-top: 40px;
        font-size: 21px;
        font-family: 'JalnanGothic', sans-serif;
        margin-bottom: 30px;
        letter-spacing: 1.5px;
        font-weight: 300;
    }
    .mobile .content05-1 .center p{
        color: white;
        font-family: 'Freesentation-3Light', sans-serif;
        text-align: center;
        font-size: 15px;
        line-height: 25px;
        letter-spacing: 0.7px;
        word-break: keep-all;
    }
    .mobile .content05-1 .center .partner_list {
        height:400px;
        width:100%;
        display: flex;
        flex-direction: column;
        margin-top: 35px;
    }
    .mobile .content05-1 .center .partner_list .container_top{
        height: 200px;
        margin-bottom: 10px;
    }
    .mobile .content05-1 .center .partner_list .container_top ul{
    width: 100%;
    }
    /**오토 슬라이드 테스트**/
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li {
      min-width: 330px;
      border-radius: 5px;
      margin-right: 10px;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
      transition: transform 1.5s ease, background 1.5s ease;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .wrapper {
      padding 1rem;
      height: 100%;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
      transition: transform 1.5s ease, background 1.5s ease;      
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content .partner_text h3{
        display: none;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content p{
        display: none;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover img{
       display: none;
        -webkit-transition: .1s ease-in-out;
        transition: .1s ease-in-out;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content{
        height: 200px;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text{
        width: 100%;
        height: 200px;
        overflow: auto;
        padding: 20px 25px 20px 25px;
        z-index: 1000;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text h3{
        display: block;
        font-size: 15px;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text p{
        display: block;
        font-size: 12px;
        line-height: 18px;
    }
    .mobile .content05-1 .center .partner_list .container_top .partner_slider li .partner_content:hover .partner_text .partner_games{
        font-size: 12px;
        border: 1px solid white;
    }
    /******bottom*******/
    .mobile .content05-1 .center .partner_list .container_bottom{
       height: 200px;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li {
      min-width: 330px;
      border-radius: 5px;
      margin-right: 10px;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .wrapper {
      padding 1rem;
      height: 200px;
      box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content img{
      width: 50%;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover img{
       display: none;
        -webkit-transition: .1s ease-in-out;
        transition: .1s ease-in-out;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content .partner_text h3{
        display: none;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content p{
        display: none;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover img{
       display: none;
        -webkit-transition: .1s ease-in-out;
        transition: .1s ease-in-out;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content{
        height: 200px;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text{
        width: 100%;
        height: 200px;
        overflow: auto;
        padding: 20px 25px 20px 25px;
        z-index: 1000;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text h3{
        display: block;
        font-size: 15px;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text p{
        display: block;
        font-size: 12px;
        line-height: 18px;
    }
    .mobile .content05-1 .center .partner_list .container_bottom .partner_slider li .partner_content:hover .partner_text .partner_games{
        font-size: 12px;
        border: 1px solid white;
    }

    .mobile .content06 {
        height: 900px;
        width: 100vw;
        position: relative;
        background: url(../img/company_history_bg.webp) center/cover no-repeat;
        display: flex;
    }

    .mobile .content06 .center{
        height:  80%;
    }

    .mobile .content06 .center h2{
        font-size: 25px;
        padding-top: unset;
        margin-bottom: 40px;
        text-align: center;
        font-family: 'NanumSquare_EB', sans-serif;
    }

    .content06 .center .swiper03 .swiper-wrapper .swiper-slide {
        height: auto;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 19px !important;    
    }  
    
    .mobile .content06 .center .swiper .swiper-wrapper .swiper-slide ul li .timeline-content{
        margin: 0 auto;
    }

    .mobile .monthly-history {
        display: flex;
        align-items: baseline;
    }

   
    .mobile .content06 .center .swiper03 .swiper-wrapper .swiper-slide .timeline li p {
        color: white;
        font-family: 'NanumSquare_L', sans-serif;
        text-align: left;
        font-size: 13px;
        line-height: 25px;
        margin-left: 10px;
        flex-direction: column;
        word-break: keep-all;
        width: 240px;
        margin-bottom: 18px;
    }/**/

    .mobile .content06 .center .swiper03 .swiper-wrapper .swiper-slide .timeline li h3 {
        color: white;
        font-family: 'NanumSquare_R', sans-serif;
        text-align: center;
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .mobile .content06 .center .swiper03 .swiper-wrapper .swiper-slide .timeline li h4 {
        color: white;
        font-family: 'NanumSquare_R', sans-serif;
        top: 0;
        font-size: 15px;
    }    
    
.mobile .content05 footer{
        background-color: black;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        height: 290px;
    }

    .mobile .content05 footer .text_wrap{
        color: white;
        width: 75%;
        height: 70%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        margin: 0 auto;
        margin-top: 40px;
    }/*현재*/


    .mobile .content05 footer .text_wrap img:first-child{
        width: 170px;
    }/**/
    .mobile .content05 footer .text_wrap p{
        font-size: 13px;
        font-family: 'NanumSquare_R', sans-serif;
        letter-spacing: 0.6px;
        color: white;
        word-break: keep-all;
    }/**/
    .mobile .content05 footer .text_wrap #footerLink{
        display: flex;
    }/**/
    .mobile .content05 footer .text_wrap #footerLink li{
        margin-right: 16px;
    }/**/
    .mobile .content05 footer .text_wrap #footerLink li:first-child a i{
      padding-top: 1px;      
    }/**/
    .mobile .content05 footer .text_wrap #footerLink li:last-child {
        margin-right: unset;
    }/**/
    .mobile .content05 footer .text_wrap #footerLink li a{
        font-family: 'NanumSquare_R', sans-serif;
        font-size: 13px;
        line-height: 25px;
        letter-spacing: 0.6px;
        word-break: keep-all;
    } 
  
    
    .swiper-slide:nth-of-type(6){
        text-align: center;
        font-size: 18px;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }
    
    .swiper-slide:nth-of-type(1),
    .swiper-slide:nth-of-type(2),
    .swiper-slide:nth-of-type(3),
    .swiper-slide:nth-of-type(4),
    .swiper-slide:nth-of-type(5),
    .swiper-slide:nth-of-type(7),
    .swiper-slide:nth-of-type(8) {
        text-align: center;
        font-size: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile .swiper02 {
        width: 70%;
        height: unset;
    }
    
    .mobile .swiper-pagination{
        display: none;
    }
}

@media (hover: none) and (pointer: coarse) {
  #main_banner-mobile {
    position: relative !important;
    overflow: hidden !important;
    height: 100vh !important;
    min-height: 100vh !important;
  }
  @supports (height: 100dvh) {
    #main_banner-mobile { height: 100dvh !important; min-height: 100dvh !important; }
  }
  @supports (height: 100svh) {
    #main_banner-mobile { height: 100svh !important; min-height: 100svh !important; }
  }
  @supports (height: 100lvh) {
    #main_banner-mobile { height: 100lvh !important; min-height: 100lvh !important; }
  }
  #main_banner-mobile > .center {
    position: static !important;
    height: 100% !important;
    min-height: 100% !important;
  }
  #main_banner-mobile .video-background {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    transform: none !important;
    background-attachment: scroll !important;
    z-index: 0 !important;
  }
  #main_banner-mobile .video-background video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: none !important;
    max-width: none !important;
    max-height: none !important;
  }
}
@media (hover:none) and (pointer:coarse){
  .mobile [class^="content"],
  .mobile [class*=" content"],
  #main_banner-mobile {
    position: relative;           
    overflow: clip;               
    contain: layout paint;        
  }
  @supports not (overflow: clip){
    .mobile [class^="content"],
    .mobile [class*=" content"],
    #main_banner-mobile { overflow: hidden; } 
  }
  #main_banner-mobile { height: 100vh; min-height: 100vh; }
  @supports (height: 100dvh){
    #main_banner-mobile { height: 100dvh; min-height: 100dvh; }
  }
  @supports (height: 100svh){
    #main_banner-mobile { height: 100svh; min-height: 100svh; }
  }
  #main_banner-mobile .video-background { position: absolute; inset: 0; width: 100%; height: 100%; }
  #main_banner-mobile .video-background video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .mobile .game_illust,
  .mobile .container_left.game_illust,
  .mobile .container_right.game_illust {
    z-index: 0;
    pointer-events: none;    
  }
  .mobile .game_illust { left: 50%; bottom: 0; transform: translateX(-50%); }
  .mobile .container_left.game_illust { left: 0; bottom: 0; transform: none; }
  .mobile .container_right.game_illust{ right: 0; bottom: 0; transform: none; }
  .mobile .game_illust img,
  .mobile .container_left.game_illust img,
  .mobile .container_right.game_illust img {
    display: block;
    width: auto; height: auto;
    max-width: none; max-height: none;
  }
  .mobile .game_illust[data-aos],
  .mobile .container_left.game_illust[data-aos],
  .mobile .container_right.game_illust[data-aos] {
    opacity: 1 !important;
  }
}
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    -webkit-video-processing: optimizeLegibility;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    filter: brightness(0.6);
}
@supports (-webkit-appearance: none) {
    .video-background video {
        left: 0;
        top: 0;
        transform: none;
        width: 100vw;
        height: 100vh;
        max-width: none;
        max-height: none;
    }
}
@supports (-webkit-touch-callout: none) {
    .video-background {
        height: 100vh;
        height: -webkit-fill-available;
    }
    .video-background video {
        width: 100vw;
        height: 100vh;
        height: -webkit-fill-available;
        transform: translate(-50%, -50%) scale(1.05);
    }
}
@media (hover: none) and (pointer: coarse) {
    #main_banner-mobile {
        position: relative !important;
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
        overflow: hidden !important;
        contain: layout style;
    }
    @supports (height: 100dvh) {
        #main_banner-mobile { 
            height: 100dvh; 
            min-height: 100dvh; 
        }
    }
    @supports (height: 100svh) {
        #main_banner-mobile { 
            height: 100svh; 
            min-height: 100svh; 
        }
    }
    #main_banner-mobile > .center {
        position: relative !important;
        width: 100%;
        height: 100%;
        min-height: 100%;
        z-index: 2;
        margin-top: unset;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        
    }
    #main_banner-mobile .video-background {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
        z-index: 0 !important;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: transform;
    }
    #main_banner-mobile .video-background video {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        transform: none !important;
        max-width: none !important;
        max-height: none !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
    }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .video-background video {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transform: none;
        object-fit: cover;
        object-position: center;
    }
    .mobile .mobile_contents {
        position: relative;
        z-index: 10;
        width: 100%;
        min-height: 100vh;
    }
}
@media screen and (-webkit-min-device-pixel-ratio: 1) {
    .video-background {
        -webkit-perspective: 1000px;
        perspective: 1000px;
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d;
    }
    .video-background video {
        -webkit-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
    }
}
@media (hover: none) and (pointer: coarse) {
    .mobile .content01 .center .text_wrap .banner_text p {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
    }
}
.swiper,
.swiper-wrapper,
.swiper-slide {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}
@supports (display: -webkit-box) {
    .mobile [class^="content"],
    .mobile [class*=" content"] {
        position: relative;
        width: 100vw;
        contain: layout;
        isolation: isolate;
    }
}
@supports (-webkit-touch-callout: none) and (not (transform-style: preserve-3d)) {
    .mobile .content01 {
        height: 100vh;
        height: -webkit-fill-available;
    }
    .video-background {
        height: 100vh;
        height: -webkit-fill-available;
    }
}
.mobile * {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.mobile img,
.mobile video {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
@-moz-document url-prefix() {
    .video-background video {
        transform: translate(-50%, -50%) scale(1.02);
    }
}
@supports (-ms-ime-align: auto) {
    .video-background video {
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}
@media (hover: none) and (pointer: coarse) {
    .mobile {
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
        touch-action: manipulation;
        -webkit-touch-callout: none;
        -webkit-tap-highlight-color: transparent;
    }
}
.video-background video {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: -1 !important;
}
@media (max-width: 862px) {
    .mobile #main_banner-mobile {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }
    .mobile #main_banner-mobile .video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
    }
    .mobile #main_banner-mobile .video-background video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        transform: translate(-50%, -50%);
        filter: brightness(0.6);
        z-index: 0;
    }
    .mobile #main_banner-mobile .center {
        position: relative;
        z-index: 10;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        margin-top: unset;
    }
    .mobile #main_banner-mobile .center .text_wrap {
        position: relative;
        z-index: 15;
        text-align: center;
    }
    .mobile #main_banner-mobile .center .text_wrap .banner_text p {
        color: white;
        font-family: 'JalnanGothic', sans-serif;
        font-size: 30px;
        line-height: 50px;
        word-break: keep-all;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        position: relative;
        z-index: 20;
    }/**/
    .mobile #main_banner-mobile .scroll-down {
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
    }
    .mobile #main_banner-mobile .video-background video {
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
    }
}
@supports (-webkit-appearance: none) {
    @media (max-width: 862px) {
        .mobile #main_banner-mobile .video-background video {
            width: 100vw;
            height: 100vh;
            object-position: center center;
        }
    }
}
@media screen and (max-width: 862px) and (-webkit-min-device-pixel-ratio: 0) {
    .mobile #main_banner-mobile .video-background video {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 862px) and (orientation: landscape) {
    .mobile #main_banner-mobile .video-background video {
        width: 100%;
        height: auto;
        min-height: 100%;
    }
}
@media (max-width: 862px) and (orientation: portrait) {
    .mobile #main_banner-mobile .video-background video {
        width: auto;
        height: 100%;
        min-width: 100%;
    }
}
@media (min-width:1281px){
  .pc{display:block;}
  .header_mobile, .mobile{display:none;}
}
.scroll-indicator{
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  /*z-index: 2000;  */        
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  opacity: 1;
  z-index: 19;
}
.scroll-indicator.is-hidden{
  opacity: 0;
  transform: translate(-50%, 6px);
}
.scroll-indicator img{
  display:block;
  width: 44px; height:auto;
}
@keyframes si-blink {0%,100%{opacity:1} 50%{opacity:.35}}
@keyframes si-bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(6px)}}
.scroll-indicator:not(.is-hidden) img{
  animation: si-blink 2s infinite ease-in-out,
             si-bounce 1.8s infinite ease-in-out;
}
@media (prefers-reduced-motion: reduce){
  .scroll-indicator img{ animation:none; }
}
@media (max-width:1280px){
  .pc, header.pc{ display:none !important; }
  .header_mobile, .mobile{ display:block !important; }
}