*::-moz-selection{color:#fff;background-color:#461fff}
*::selection{color:#fff;background-color:#461fff}
*::-webkit-selection{color:#fff;background-color:#461fff}

::-webkit-scrollbar { width:5px; height: 5px; }

::-webkit-scrollbar-track {
	background:#eee;
	-moz-border-radius:0;
	-webkit-border-radius:0;
	border-radius:0;
}
::-webkit-scrollbar-thumb {
	height:50px;
	width:50px;
	background:#461fff;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border-radius:0px;
}

::-webkit-scrollbar-thumb:window-inactive {
	background:#461fff;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
	border-radius:0px;
}

/* motion */
.fade_m{ /* fade */
    transition: opacity 1.3s;
    opacity: 0;
}

.upto_m{ /* 위에서 아래로 */
    transform: translate(0, -150px);
    transition: transform 1.2s, opacity 1.2s;
    opacity: 0;
}

.btmto_m{ /* 아래에서 위로 */
    transform: translate(0, 150px);
    transition: transform 1.2s, opacity 1.2s;
    opacity: 0;
}

.lftto_m{ /* 왼쪽에서 오른쪽으로 */
    transform: translate(-150px, 0);
    transition: transform 1.2s, opacity 1.2s;
    opacity: 0;
}

.rgtto_m{ /* 오른쪽에서 왼쪽으로 */
    transform: translate(150px, 0);
    transition: transform 1.2s, opacity 1.2s;
    opacity: 0;
}

.roll_l{
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.2s, opacity 0.8s;
    opacity: 0.3;
}

.active .roll_l{
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

.active .upto_m, .active .btmto_m, .active .lftto_m, .active .rgtto_m, .active .fade_m{ /* active */
    transform: translate(0,0);
    opacity: 1;
}

.main_wrap {
	width: 90%;
	/* margin: 0 auto; */
    margin: -93px auto 0;
}

.main_vis .main_wrap {
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrap {
	position: relative;
	width: 1280px;
	margin: 0 auto;
}

/* intro */
.intro_main {
	overflow: hidden;
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100% !important;
	background: url('../image/main/intro_bg01.jpg?v=2') center center no-repeat;
	background-size: cover;
}

ul.intro_main_inner {
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
    align-items: center;
	width: 80%;
    margin: 0 auto;
}

ul.intro_main_inner li {
	overflow: hidden;
	width: 45%;
	background: #fff;
    text-align: center;
	border-radius: 10px;
	font-family: 'NanumSquareRound';
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);

	opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
    -webkit-transition: opacity 1.2s, -webkit-transform 1.2s;
    transition: opacity 1.2s, -webkit-transform 1.2s;
    transition: opacity 1.2s, transform 1.2s;
    transition: opacity 1.2s, transform 1.2s, -webkit-transform 1.2s;
}

.intro_main.active ul.intro_main_inner li {
	-webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

ul.intro_main_inner li a {
    display: block;
    padding-bottom: 50px;
}

.intro_imgbox {
    overflow: hidden;
    margin-bottom: 50px;
	width: 100%;
    height: 350px;
}

ul.intro_main_inner li a:hover .intro_imgbox { }

.intro_imgbox01 { background: url('../image/intro/intro_img01.jpg') center center no-repeat; background-size: cover; }
.intro_imgbox02 { background: url('../image/intro/intro_img02.jpg') center center no-repeat; background-size: cover; }

ul.intro_main_inner li h3 {
    margin-bottom: 10px;
    color: #000;
    font-family: 'NanumSquareRound';
    font-size: 1.3em;
    font-weight: 900;
    letter-spacing: -0.5px;
}

ul.intro_main_inner li span.more {
    display: inline-block;
    position: relative;
    padding: 5px 15px;
    color: #461fff;
    font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

ul.intro_main_inner li span.more:before {
    content: "";
    position: absolute;
    left: 0;
    top: -4px;
    z-index: -1;
    width: 40px;
    height: 40px;
    background: #461fff;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    -webkit-animation: btnMotOff linear 0.4s forwards;
    -moz-animation: btnMotOff linear 0.4s forwards;
    -ms-animation: btnMotOff linear 0.4s forwards;
    -o-animation: btnMotOff linear 0.4s forwards;
    animation: btnMotOff linear 0.4s forwards;
	opacity: 0.1;
}

ul.intro_main_inner li span.more:hover:before {
	-webkit-animation: btnMotOn linear 0.4s forwards;
    -moz-animation: btnMotOn linear 0.4s forwards;
    -ms-animation: btnMotOn linear 0.4s forwards;
    -o-animation: btnMotOn linear 0.4s forwards;
    animation: btnMotOn linear 0.4s forwards;    
}

@-webkit-keyframes btnMotOn {
	0% { left: 0; }
	50% { width: 100%; }
	100% { left: auto; right: 0; width: 40px; }
}
@-moz-keyframes btnMotOn {
	0% { left: 0; }
	50% { width: 100%; }
	100% { left: auto; right: 0; width: 40px; }
}

@-ms-keyframes btnMotOn {
	0% { left: 0; }
	50% { width: 100%; }
	100% { left: auto; right: 0; width: 40px; }
}

@-o-keyframes btnMotOn {
	0% { left: 0; }
	50% {	width: 100%; }
	100% { left: auto; right: 0; width: 40px; }
}

@keyframes btnMotOn {
	0% { left: 0; }
	50% { width: 100%; }
	100% { left: auto; right: 0; width: 40px; }
}

@-webkit-keyframes btnMotOff {
	0% { left: auto; right: 0; width: 40px; }
	50% { width: 100%; }
	100% { left: 0; }
}

@-moz-keyframes btnMotOff {
	0% { left: auto; right: 0; width: 40px; }
	50% { width: 100%; }
	100% { left: 0; }
}

@-ms-keyframes btnMotOff {
	0% { left: auto; right: 0; width: 40px; }
	50% { width: 100%; }
	100% { left: 0; }
}

@-o-keyframes btnMotOff {
	0% { left: auto; right: 0; width: 40px; }
	50% {	width: 100%; }
	100% { left: 0; }
}

@keyframes btnMotOff {
	0% { left: auto; right: 0; width: 40px; }
	50% { width: 100%; }
	100% { left: 0; }
}

/* head */
.head {
    position: sticky;
    top: 0px;
    width: 100%;
    padding: 10px 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	transition: 0.5s;
	z-index: 999;
}

.head.scrolled {
	-webkit-backdrop-filter: blur(35px);
    backdrop-filter: blur(35px);
    background-color: rgba(255,255,255,0.1);
}

.head_right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

ul.menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.menu li {
	position: relative;
	padding: 10px 50px;
}

ul.menu li a {
	color: #000;
	font-size: 18px;
	font-weight: 800;
	transition: 0.5s;
}

ul.menu li:hover a, ul.menu li a:hover { color: #461fff; }

.smenu_dl {
    position: absolute;
    left: 0px;
    top: 99%;
    padding: 15px 0px;
    width: 100%;
    background-color: #461fff;
    border-radius: 5px;
    z-index: 99;
    display: none;
}

.smenu_dl dd {
    padding: 6px 0px;
    text-align: center;
}

ul.menu .smenu_dl dd a {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.smenu_dl dd a:hover {
    color: #fff;
    text-decoration: underline;
}

.smenu_dl > dd:hover .smenu_dl2 {
    display: block;
}

.smenu_dl2 {
    position: absolute;
    left: 100%;
    top: 0;
    padding: 15px 0;
    width: 100%;
    background-color: #461fff;
    border-radius: 5px;
    z-index: 99;
    display: none;
}

.select {
	position: relative;
    display: flex;
	justify-content: center;
    align-items: center;
    text-align: center;
    width: 90px;
    height: 40px;
    border: 3px solid #461fff;
	color: #461fff;
	transition: 0.5s;
}

.select:hover {
    background: #461fff;
    color: #fff;
}

.select .selected { }

.select .selected .selected-value {
	max-width: 90px;
}

.select .selected .arrow {
	width: 24px;
	background: url("https://uxwing.com/wp-content/themes/uxwing/download/02-arrow-direction/arrow-bottom.png") no-repeat 70% 50%;
	background-size: 50% 50%;
}

.select ul li, .select .selected .selected-value {
	white-space: nowrap;
	/* 줄바꿈 안함 */
	overflow: hidden;
	text-overflow: ellipsis;
	/* 말줄임 적용 */
	font-weight: 700;
}

.select ul {
    position: absolute;
    top: 33px;
    left: -2px;
	width: 90px;
    display: none;
	background: #fff;
	border: 3px solid #461fff;
    border-top: none;
    margin: 1px 0 0 -1px;
    cursor: pointer;
}

.select.active ul {
	display: initial;
}

.select ul li {
	padding: 8px 5px;
	color: #000;
}

.select ul li:hover { background: #461fff; }

.select ul li a { display:block; }

.select ul li:hover a { color: #fff; }

.menu-toggler, nav.mobile_menu { display: none; }

/* footer */
.footer {
    padding: 50px 0;
    background: #000;
	text-align: center;
    font-size: 0.9em;
	color: #fff;
	line-height: 1.4;
}

.footer .snsbox {
	position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
	margin-bottom: 15px;
}

.footer .snsbox > div {
	position: relative;
}

.footer .snsbox > div > a {
	display: flex;
    align-items: center;
    justify-content: center;
	margin: 0 10px;
	color: #fff;
    font-size: 22px;
}

.share_box {
    display: flex;
    justify-content: center;
    align-items: center;
	position: absolute;
    top: -45px;
    left: -65px;
    padding: 8px 0;
    width: 160px;
    background: #461fff;
    border-radius: 500px;
}

.footer .share_box a {
	display: flex;
    align-items: center;
    justify-content: center;
	margin: 0 5px;
	color: #fff;
	font-size: 18px;
}

.footer .share_box a svg {
	width: 18px;
}

.zepeto_logo img { width: 20px; }

.footer h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
}

p.company_info {
    margin-bottom: 20px;
    font-weight: 300;
    color: #aaa;
}

.footer .copyright {
	font-weight: 300;
	opacity: 0.4;
}

.partner_logobox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.partner_logobox img {
	margin: 0 10px;
}

/* 공유메뉴 */
.zoom {
	position: fixed;
	bottom: 45px;
	right: 24px;
	height: 70px;
}

.zoom-fab {
	display: flex;
    align-items: center;
    justify-content: center;
	vertical-align: middle;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	color: #fff;
	font-size: 20px;
}

.zoom-fab:hover { }

.zoom-btn-large {
	width: 60px;
	height: 60px;
	line-height: 60px;
}

.zoom-btn-person {  }
.zoom-btn-person:hover {  }

.zoom-btn-doc {  }
.zoom-btn-doc:hover {  }

.zoom-btn-tangram {  }
.zoom-btn-tangram:hover {  }

.zoom-btn-report {  }
.zoom-btn-report:hover {  }

.zoom-btn-feedback {  }
.zoom-btn-feedback:hover {  }

.zoom-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    position: absolute;
    right: -60px;
    left: auto;
    top: 0;
    transform: translateY(-140%);
    width: auto;
    list-style: none;
    text-align: right;
    background: #461fff;
    border-radius: 500px;
    padding: 7px 10px;
	transition: transform 0.3s cubic-bezier(0.53, 0.01, 0.36, 1.63) !important;
}

.zoom-menu:after {
    border-top: 6px solid #461fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 0px solid transparent;
    content: "";
    position: absolute;
    top: 33px;
    left: 50%;
}

.zoom-menu.scale-out {
	transform: scale(0);
	transition: transform 0.2s !important;
}

.zoom-menu.scale-in { transform: scale(1); }

.zoom-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 0 7px;
}

.zoom-card {
	position: absolute;
	right: 150px;
	bottom: 70px;
	transition: box-shadow 0.25s;
	padding: 24px;
	border-radius: 2px;
	background-color: #009688;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
	color: #FFF;
}

.zoom-card ul {
	-webkit-padding-start: 0;
	list-style: none;
	text-align: left;
}


/* main */

.main_vis {
	overflow: hidden;
	position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
	width: 100%;
    height: 100vh;
	/* background: url('../image/main/main_vis_bg012.png') right top no-repeat; */
}

.main_text {
	position: relative;
	width: 45%;
	z-index: 99;
}

.main_text h2 {
    margin-bottom: 30px;
    color: #461fff;
    /* font-size: 4.5em; */
    font-weight: 900;
    line-height: 1em;
    -webkit-text-stroke: 2.2px #461fff;
    color: hsla(0,0%,100%,0);
}

.ml10 .letter {
  display: inline-block;
  line-height: 1em;
  transform-origin: 0 0;
}

.main_text h2 strong { font-weight: 900; }

.main_text h2 strong {
    font-weight: 900;
    /* -webkit-text-stroke: 2.2px #000; */
    color: #461fff;
}

.main_text p strong { font-weight: 700; }

span.point01 {
    display: inline-block;
    position: relative;
	color: #461fff;
    font-size: 1.4em;
    font-weight: 300;
}

ul.main_btnbox_inner {
    display: flex;
    /* flex-wrap: wrap; */
	margin-top: 50px;
}

ul.main_btnbox_inner li {
	width: 32%;
	margin-right: 2%; 
	padding-top: 15px; 
	text-align: center; 
	border: 3px solid #461fff; 
	border-bottom: none;
}

ul.main_btnbox_inner li:first-child {
    border: 3px solid #461fff;
	border-bottom: none;
}

ul.main_btnbox_inner li:nth-child(2) {
    border: 3px solid #a561ff; /* 원하는 색상으로 변경 */
    border-bottom: none;
}

ul.main_btnbox_inner li:nth-child(3) {
    border: 3px solid #f270b7; /* 원하는 색상으로 변경 */
    border-bottom: none;
}

ul.main_btnbox_inner li:last-child {
	margin-right: 0px;
	border: 3px solid #f4b183;
	border-bottom: none;
}

ul.main_btnbox_inner li img {
    width: 120px;
    margin-bottom: 15px;
}

a.main_more {
	position: relative;
    display: flex;
	justify-content: center;
    align-items: center;
	/* padding-left: 20px; */
    width: 100%;
    height: 55px;
	background: #461fff;
    color: #fff;
	font-family: 'NanumSquareRound';
    font-size: 0.9em;
    font-weight: 500;
	letter-spacing: -0.5px;
	transition: 0.5s;
}

a.main_more02 { background: #a561ff; }
a.main_more03 { background: #f270b7; }
a.main_more04 { background: #f4b183; }

a.main_more span { position:relative; z-index:3; }

a.main_more .main_title {
    /* flex-grow: 1; */
}

a.main_more span.arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 55px;
	height: 55px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

a.main_more:after {
	content:'';
	position: absolute;
	left:0px;
	top: 0px;
	width: 0px;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	transition: 0.5s;
	z-index:1;
}

a.main_more02:after { background: #a838d1; }
a.main_more03:after { background: #e12b8e; }
a.main_more04:after { background: #f27e2e; }

a.main_more:hover:after { width: 100%; }

a.main_more:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

a.main_more01 {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 50px;
    width: 280px;
    height: 55px;
    background: #fff;
	border: 2px solid #000;
    border-radius: 500px;
	font-weight: 600;
	letter-spacing: -1px;
	transition: 0.5s;
}

a.main_more01:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 0px;
    width: 270px;
    height: 65px;
    background: #000;
    border-radius: 500px;
    z-index: -1;
}

a.main_more01:hover { top: 2px; }

.main_vis_imgbox {
	position: relative;
    width: 50%;
	height: 540px;
    text-align: center;
}

.main_vis_imgbox:after {
    content: '';
    position: absolute;
    right: -15%;
    top: 50%;
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    width: 125%;
    height: 540px;
    background: url('../image/main/main_vis.png') center center no-repeat;
	background-size: cover;
    border-radius: 500px 0px 0px 500px;
    z-index: -1;

	-webkit-clip-path: inset(0 0 0 100%);
		  clip-path: inset(0 0 0 100%);
	opacity: 0;
	-webkit-transition: opacity 1.2s, -webkit-clip-path 1.2s;
	transition: opacity 1.2s, -webkit-clip-path 1.2s;
	transition: clip-path 1.2s, opacity 1.2s;
	transition: clip-path 1.2s, opacity 1.2s, -webkit-clip-path 1.2s;
}

.main_vis_imgbox:before {
    content: '';
    position: absolute;
    right: -110px;
    top: 0px;
	width: 125%;
    height: 550px;
    background: #f8f6ff;
    border-radius: 500px 0px 0px 500px;
    z-index: -2;

	-webkit-clip-path: inset(0 0 0 100%);
		  clip-path: inset(0 0 0 100%);
	opacity: 0;
	-webkit-transition: opacity 1.5s, -webkit-clip-path 1.5s;
	transition: opacity 1.5s, -webkit-clip-path 1.5s;
	transition: clip-path 1.5s, opacity 1.5s;
	transition: clip-path 1.5s, opacity 1.5s, -webkit-clip-path 1.5s;
}

.main_vis.active .main_vis_imgbox:after, .main_vis.active .main_vis_imgbox:before {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

.main_vis_imgbox img {
    position: absolute;
    left: -5%;
    bottom: -60px;
    width: 50%;
	opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
    -webkit-transition: opacity 1.2s, -webkit-transform 1.2s;
    transition: opacity 1.2s, -webkit-transform 1.2s;
    transition: opacity 1.2s, transform 1.2s;
    transition: opacity 1.2s, transform 1.2s, -webkit-transform 1.2s;
}

 .main_vis.active .main_vis_imgbox img {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.main_con {
    width: 100%;
    height: 100vh;
}

.main_con_text {
	line-height: 1.6;
	letter-spacing: -1px;
}

.main_con_text h2 {
    margin-bottom: 30px;
	color: #461fff;
    font-size: 3.5em;
	font-weight: 200;
	line-height: 1em;
}

.main_con_text h2 span { font-weight: 900; }

.main_con_text p {
    font-size: 1.15em;
	word-break: keep-all;
}

p.itzy_bi { margin-bottom: 30px; }
/* p.itzy_bi img { width: 300px; } */

.main_con_text p strong { font-weight: 900; }

.main_con01 {
	padding: 150px 0;
	background: linear-gradient(-45deg, #461fff 0%, #6A48FF 20.61%, #764DFF 40.71%, #8955FF 60.62%, #A561FF 80.31%, #C870FF 99.84%, #C870FF 100%);
}

.main_con01 .main_wrap {
    height: 100%;
}

ul.main_con01_list {
    display: flex;
    /* flex-wrap: wrap; */
    /* justify-content: space-between; */
    justify-content:space-around;
    align-items: stretch;
    width: 100%;
    height: 100%;
}

ul.main_con01_list li {
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    
    width: 23%;
    background: #fff;
    border-radius: 10px;
    -webkit-backdrop-filter: blur(35px);
    backdrop-filter: blur(35px);
    background-color: rgba(255,255,255,0.8);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
	transition: 0.5s;
    overflow: hidden;
}

ul.main_con01_list li:hover {
	background-color: rgba(255,255,255,1);
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);

	animation: animatedBackground 20s linear infinite;
    -moz-animation: animatedBackground 20s linear infinite;
    -webkit-animation: animatedBackground 20s linear infinite;
    -ms-animation: animatedBackground 20s linear infinite;
    -o-animation: animatedBackground 20s linear infinite;
}

ul.main_con01_list li.main_con01_bg {
	background-size: cover !important;
}

ul.main_con01_list li.main_con01_bg01 { background: url('../image/main/kwonderland_img01.png') center center no-repeat; margin-right:20px;}
/* ul.main_con01_list li.main_con01_bg02 { background: url('../image/main/kwonderhall_img01.jpg?v=3') -445px center no-repeat; margin-right:20px;} */
ul.main_con01_list li.main_con01_bg03 { background: url('../image/main/kpopstage_img01.png') -455px center no-repeat; margin-right:20px;}
ul.main_con01_list li.main_con01_bg04 { background: url('../image/main/kdramastudio_img01.png') -490px center no-repeat; margin-right:20px;}
ul.main_con01_list li.main_con01_bg05 { background: url('../image/main/kwonderawards_img01.png') -480px center no-repeat; margin-right:0px;}

@media screen and (min-width: 1441px) {
    .main_text h2 {
        font-size: 70px;
    }

    /* .main_text 클래스에 속한 h2 이외의 다른 h2 요소에 대한 스타일 지정 */
    h2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 1440px) {
    ul.main_con01_list li.main_con01_bg02 {
		margin-right: 20px;
	}
	ul.main_con01_list li.main_con01_bg04 {
		margin-right: 20px;
	}
    .main_text h2 {
        font-size: 55px;
    }
    
    h2 {
		font-size: 20px;
	}

}
@media screen and (max-width: 1280px) {
    ul.main_con01_list li.main_con01_bg02 {
		margin-right: 0px;
	}
	ul.main_con01_list li.main_con01_bg04 {
		margin-right: 0px;
	}

    .main_text h2 {
        font-size: 45px;
    }

    h2 {
		font-size: 20px;
	}

}
@media screen and (max-width: 575px) {
    ul.main_con01_list li.main_con01_bg01 {
		margin-right: 0px;
	}
	ul.main_con01_list li.main_con01_bg03 {
		margin-right: 0px;
	}

}

@keyframes animatedBackground {
	0% { background-position: left center; }
	50% { background-position: right center; }
	100% { background-position: left center; }
}
@-moz-keyframes animatedBackground {
	0% { background-position: left center; }
	50% { background-position: right center; }
	100% { background-position: left center; }
}
@-webkit-keyframes animatedBackground {
	0% { background-position: left center; }
	50% { background-position: right center; }
	100% { background-position: left center; }
}
@-ms-keyframes animatedBackground {
	0% { background-position: left center; }
	50% { background-position: right center; }
	100% { background-position: left center; }
}
@-o-keyframes animatedBackground {
	0% { background-position: left center; }
	50% { background-position: right center; }
	100% { background-position: left center; }
}

.main_cont {
    overflow: hidden;
}

ul.main_con01_list li a {
	overflow: hidden;
	display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
	width: 100%;
    height: 100%;
	/* padding: 35px; */
	padding: 25px;
	transition: 0.2s;
}

ul.main_con01_list li a:hover {
	background: rgba(255, 255, 255, 0.7);
}

ul.main_con01_list li h3 {
    margin-bottom: 0px;
	color: #fff;
    font-family: 'TmoneyRoundWind';
    font-size: 1.1em; /* 1.5em; */
    letter-spacing: -1px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
	transition: 0.5s;
}

ul.main_con01_list li a:hover h3 {
    margin-bottom: 15px;
	color: #461fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0);
}

ul.main_con01_list li p {
	/* display: none; */
	height: 0px;
	font-family: 'TmoneyRoundWind';
	font-size: 0.85em;
	line-height: 1.5;
	letter-spacing: -0.5px;
	opacity: 0;
	transition: 0.5s;
	word-break: keep-all;
}

ul.main_con01_list li a:hover p {
    /* height: 170px; */
    height: 260px;
    opacity: 1;
}

.main_con02 {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.main_con02 .main_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

.main_con02_imgbox {
	position: relative;
    width: 50%;
    text-align: center;
}

.main_con02_imgbox:after {
    content: '';
    position: absolute;
    left: -15%;
    top: 50%;
	-webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    width: 130%;
    height: 500px;
    background: linear-gradient(-45deg, #461fff 0%, #6A48FF 20.61%, #764DFF 40.71%, #8955FF 60.62%, #A561FF 80.31%, #C870FF 99.84%, #C870FF 100%);
    border-radius: 0 500px 500px 0px;
    z-index: -1;

	-webkit-clip-path: inset(0 100% 0 0);
		  clip-path: inset(0 100% 0 0);
	opacity: 0;
	-webkit-transition: opacity 1.2s, -webkit-clip-path 1.2s;
	transition: opacity 1.2s, -webkit-clip-path 1.2s;
	transition: clip-path 1.2s, opacity 1.2s;
	transition: clip-path 1.2s, opacity 1.2s, -webkit-clip-path 1.2s;
}

.main_con02.active .main_con02_imgbox:after {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
}

.main_con02_imgbox img { max-width: 100%; }

.main_con02 .main_con_text {
    width: 50%;
    text-align: right;
}

.main_con03 {
    display: flex;
    flex-wrap: wrap;
	align-content: center;
    align-items: center;
    justify-content: center;
	background: #f8f6ff;
}

.main_con03 .main_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	align-items: center;
}

.main_con03 .main_con_text { width: 50%; }

.main_con03_imgbox {
	position: relative;
	width: 50%;
	opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
    -webkit-transition: opacity 1.2s, -webkit-transform 1.2s;
    transition: opacity 1.2s, -webkit-transform 1.2s;
    transition: opacity 1.2s, transform 1.2s;
    transition: opacity 1.2s, transform 1.2s, -webkit-transform 1.2s;
}

.main_con03.active .main_con03_imgbox {
	-webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.main_con03_imgbox img { max-width: 100%; }

a.main_con03_btn {
	position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80px;
    height: 30px;
    background: linear-gradient(45deg, #461fff 0%, #6A48FF 20.61%, #764DFF 40.71%, #8955FF 60.62%, #A561FF 80.31%, #C870FF 99.84%, #C870FF 100%);
    border-radius: 50px;
	color: #fff;
}

a.main_con03_btn i {
    display: flex;
    justify-content: center;
    align-items: center;
	width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 500px;
    color: #461fff;
    opacity: 0;
	animation: btn_scale 1.5s 1.5s infinite linear;
}

a.main_con03_btn span {
	width: calc(100% - 25px);
	font-size: 12px;
    text-align: center;
}

@keyframes btn_scale {
	0% {
		opacity: 0;
		transform: scale(0.5, 0.5);
	}
	50% {
		opacity: 1;
		transform: scale(1, 1);
	}
	100% {
		opacity: 0;
		transform: scale(1.2, 1.2);
	}
}

/* a.main_con03_btn01 { top: 35%; right: 36%; }
a.main_con03_btn02 { top: 12%; left: 7%; }
a.main_con03_btn03 { top: 46%; left: 43%; }
a.main_con03_btn04 { top: 3%; right: 15%; }
a.main_con03_btn05 { top: 23%; left: 33%; } */

a.main_con03_btn01 { top: 34%; right: 78%; }
a.main_con03_btn02 { top: 33%; left: 59%; }
a.main_con03_btn03 { top: 20%; left: 28%; }
a.main_con03_btn04 { top: 0%; right: 15%; }
a.main_con03_btn05 { top: 46%; left: 43%; }

.fancybox__content { border-radius: 10px; }

.qrpage h3 {
    margin-bottom: 50px;
    padding: 20px 0;
    background: #eee;
    border-radius: 10px;
    text-align: center;
    font-size: 1.2em;
    font-weight: 400;
	line-height: 1.4;
}

.qrpage h3 span { font-weight: 700; }

/* sub */
.sub_vis {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 300px;
    margin-top: 110px;
    background: url('../image/sub/sub_top.jpg') center center no-repeat;
	background-size: 110% 110%;
	background-position: center center;
	animation: shrink 5s infinite alternate;
    color: #fff;
}

.sub_textbox {
    width: 100%;
}

@keyframes shrink {
	0% {
		background-size: 110% 110%;
	}
	100% {
		background-size: 100% 100%;
	}
}

.sub_textbox h2 {
    margin-bottom: 20px;
    font-family: 'SDSamliphopangche_Outline';
	font-size: 3.5em;
    font-weight: 400;
}

.sub_textbox p {
	font-family: 'TmoneyRoundWind';
	line-height: 1.6;
}

.sub_contents { margin: 100px auto; }

.sub_title {
    margin-bottom: 50px;
	text-align: center;
	letter-spacing: -0.5px;
}

.sub_title h2 {
	margin-bottom: 20px;
    font-size: 2.5em;
	word-break: keep-all;
}

.sub_title p {
    color: #aaa;
    font-size: 1.1em;
    letter-spacing: 0px;
}

#sub_page {
	letter-spacing: -0.5px;
}

.tourgiude_titlebox {
	position: relative;
	margin-bottom: 50px;
}

.comingsoon_box {
    position: absolute;
    left: 0;
    top: 0;
	width: 100%;
    height: 100%;    
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
	font-size: 2.5em;
    font-weight: 700;    
	z-index: 997;
}

.tourgiude_imgbox { margin-bottom: 50px; }
.tourgiude_imgbox img { max-width: 100%; }

.tourgiude_titletext {
    padding: 50px;
	background: #f4f4f4;
}

.tourgiude_titletext h3 {
    margin-bottom: 30px;   
    font-size: 1.6em;
    word-break: keep-all;
}

.tourgiude_titletext p {
    line-height: 1.6;
	word-break: keep-all;
}

.tourgiude_tipinner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.tourgiude_tip_imgbox, .tourgiude_tipimg { width: 50%; }
.tourgiude_tip_imgbox img { width: 100%;}

.k-studio .tourgiude_tiplist img { width: 100%;}

.tourgiude_tip_textbox {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    align-content: center;
    flex-direction: column;
    justify-content: center;
	padding: 0 50px;
    width: 50%;
    background: #461fff;
    color: #fff;
}

.k-studio .tourgiude_tip_textbox {
	padding: 0px 0px 0 50px;
    background: #461fff;
    color: #fff;
    /* background: #fff; */
	/* color: #000; */
}

.tourgiude_tip_textbox h3 {
    position: relative;
    margin-bottom: 30px;
	width: 100%;
	color: #fff;
    font-size: 1.8em;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.k-studio .tourgiude_tip_textbox h3 { 
    /* color: #461fff;  */
    color: #fff;
}

.tourgiude_tip_textbox p {
    font-weight: 400;
	line-height: 1.6;
    word-break: keep-all;
    opacity: 0.7;
}

.k-studio .tourgiude_tip_textbox p {
	/* font-size: 0.9em; */
    /* font-weight: 500; */
	/* opacity: 1; */
}

dl.drama_list {
    margin-top: 20px;
}

dl.drama_list dd {
	position: relative;
	margin-bottom: 5px;
	padding-left: 20px;
	text-align: left;
	font-size: 0.9em;
}

dl.drama_list dd:last-child {
	margin-bottom: 0px;
}

dl.drama_list dd:after {
	content:'';
	position: absolute;
	left: 0px;
	top: 9px;
	width: 7px;
	height: 1px;
	background: #444;
}

dl.drama_list dd span {
	font-weight: 600;
}

.event_inner { margin-bottom: 80px; }
.event_inner_last { margin-bottom: 0px; }

p.event_maintext {
    padding: 50px;
    margin-bottom: 50px;
    background: #f4f4f4;
    border-radius: 10px;
	text-align: center;
    line-height: 1.5;
	word-break: keep-all;
}

.end_text {
    color: #888;
	font-size: 1.5em;
    font-weight: 500;
}

.event_inner h3 {
    margin-bottom: 30px;
	color: #461fff;
    font-size: 1.5em;
}

.event_imgbox {
    margin-bottom: 50px;
}

.event_imgbox img { width: 100%; }

.event_datelist {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
	margin-bottom: 50px;
}

.event_datelist dt, .event_datelist dd { margin-bottom: 15px; }

.event_datelist dt { width: 180px; }
.event_datelist dt span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
	border: 2px solid #000;
    border-radius: 500px;
    color: #000;
	font-size: 0.9em;
	font-weight: 600;
    letter-spacing: -1px;
}

.event_datelist dd {
    display: flex;
	flex-wrap: wrap;
    align-items: center;
	padding-left: 30px;
    width: calc(100% - 180px);
    word-break: keep-all;
    line-height: 1.6;
}

.event_datelist dd p { width: 100%; }

.event_datelist dd .tag {
    display: inline-block;
    margin-right: 5px;
    padding: 4px 10px;
    background: #fff;
    border: 1px solid #8955ff;
    border-radius: 3px;
    color: #8955ff;
    font-size: 0.85em;
}

.event_datelist02 dd {
	font-size: 1.2em;
	font-weight: 700;
    word-break: keep-all;
    line-height: 1.6;
}

.event_datelist03 { margin-bottom: 30px; }
.event_datelist03:last-child { margin-bottom: 0px; }

.event_datelist03 dt {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.2em;
}

.event_datelist03 dd {
    word-break: keep-all;
    line-height: 1.6;
}

.arrow-right {
    margin: 0 10px;
    font-size: 1.3em;
}

p.warning_box {
	position: relative;
    padding: 30px;
	padding-left: 100px;
    border: 1px solid #ddd;
	border-radius: 10px;
	font-size: 0.9em;
    line-height: 1.5;
}

p.warning_box span {
    position: absolute;
    left: 30px;
    top: 30px;
    color: #8955ff;
	font-size: 50px;
}

table.event03_table01 { margin: 15px 0; border-top: 2px solid #000; }
table.event03_table01 th, table.event03_table01 td { padding: 10px 0; font-size: 0.9em; }
table.event03_table01 thead th { border-bottom: 1px solid #000; }
table.event03_table01 thead th:first-child { border-right: 1px solid #ccc; }
table.event03_table01 tbody th, table.event03_table01 tbody td { border-bottom: 1px solid #ccc; }
table.event03_table01 tbody th { background: #f4f4f4; border-right: 1px solid #ccc; }
table.event03_table01 tbody td { text-align: center; }

.event_btnbox {
    display: flex;
    justify-content: center;
    align-items: center;
	margin-top: 50px;
}

a.event_more01 {
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
    width: 200px;
    height: 55px;
    background: #461fff;
    border-radius: 500px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -1px;
    transition: 0.5s;
}

a.event_more01:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

a.event_more01 i {
    margin-top: 3px;
	margin-left: 5px;
    font-size: 1.2em;
}

.archiving_inner { margin-bottom: 80px; }
.archiving_inner_last { margin-bottom: 0px; }

.archiving h3 {
	display: flex;
    align-items: center;
    justify-content: flex-start;
	margin-bottom: 30px;
    font-size: 1.5em;
	font-weight: 400;
	letter-spacing: -1px;
}

.archiving h3 span {
    position: relative;
    margin-top: -4px;
    color: #461fff;
    font-weight: 800;
}

.archiving h3 img {
	position: relative;
    margin-right: 5px;
	height: 22px;
}