@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	padding: 0 120px;
	box-sizing: border-box;
	margin:0 auto;
}


#header {
	position: fixed;
	top: 0;
	left: 0;
	padding: 26px 60px;
	z-index: 2;
	background: var(--white);
	width: 100%;
	box-sizing: border-box;
}
#header .logo img {
	height: 60px;
	vertical-align: middle;
}
#header.white .menu_wrap h4 {
	color: var(--white);
}
#header.white .menu_wrap .line span {
	background: var(--white);
}


.menu_wrap {
  position: fixed;
  top: 42px;
  right: 60px;
  z-index: 101;
}
.menu_wrap label {
	position: relative;
	z-index: 1;
}
.menu_wrap h4 {
	font-size: 24px;
	font-weight: 800;
	margin-right: 10px;
}
.menu_wrap .toggle + label h4:after {
	content: 'MENU';
	transition: all .3s;
}
.menu_wrap .line {
	position: relative;
	width: 27px;
	height: 20px;
}
.menu_wrap .line span {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 50px;
	background: var(--red);
	transition: all .3s;
} 
.menu_wrap .line span:nth-child(1) {
	top: 3px;
}
.menu_wrap .line span:nth-child(2) {
	top: 17px;
}
.menu_wrap .line span:nth-child(3) {
	top: 10px;
}
.menu_wrap .toggle {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 115px;
  height: 30px;
  opacity: 0;
}
.menu_wrap .toggle:checked + label h4:after {
	content: 'CLOSE';
}
.menu_wrap .toggle:checked + label .line span:nth-child(1) {
	top: 9px;
	transform: rotate(45deg);
}
.menu_wrap .toggle:checked + label .line span:nth-child(2) {
	display: none;
}
.menu_wrap .toggle:checked + label .line span:nth-child(3) {
	top: 9px;
	transform: rotate(-45deg);
}
.menu_wrap .toggle:checked ~ .menu {
  visibility: visible;
}
.menu_wrap .toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 0.75s;
}
.menu_wrap .menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	overflow: hidden;
	display: flex;
	padding: 60px;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}
.menu_wrap .menu > div {
	background: var(--base);
	border-radius: 50%;
	width: 150vw;
	height: 150vh;
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	transform: scale(0);
	transition: all 0.4s ease;
}
.menu_wrap .menu ul > li > button {
	display: block;
	width: 100%;
	text-align: left;
	color: var(--black);
	font-size: 32px;
	padding: 20px 0;
}
/*
.menu_wrap .menu ul > li > button + ul {
	display: none;
}
.menu_wrap .menu ul > li > button + ul.on {
	display: block;
}
*/
.menu_wrap .menu ul > li > a {
	display: block;
  color: var(--black);
  font-size: 32px;
  padding: 20px 0;
  transition: color 0.4s ease;
}
.menu_wrap .menu ul.menu_depth2 {
	max-width: 500px;
}
.menu_wrap .menu ul.menu_depth2 li ul li {
	width: 50%;
}
.menu_wrap .menu ul > li > a:hover {
	color: var(--red);
}
.menu_wrap .box {
    width: calc(50% - -110px);
    max-width: 1614px;
    justify-content: center;
    gap: 100px;
    position: relative;
    top: 0;
    overflow-y: auto;
    height: calc(100vh - 107px);
	 -ms-overflow-style: none;
}
.menu_wrap .box::-webkit-scrollbar {
  display: none;
}
.menu_wrap .right {
	position: relative;
	bottom: calc(50vh - 135px);
}
.menu_wrap .right .lang {
	position: relative;
	width: 186px;
    height: 56px;
	border-radius: 5px;
	border: 1px solid var(--red);
	background: url("../images/arrow_down.svg")no-repeat calc(100% - 10px) 50% / 28px;
	padding: 7px 10px;
	box-sizing: border-box;
}
.gt_container-unisv1 > a.glink {
	display: inline-block;
    padding: 7px 0;
	width: 100%;
}
.gt_container-unisv1 > a.glink img {
	display: inline-block;
}
.gt_container-unisv1 > a.glink > span {
	height: 25px;
    display: inline-block;
    overflow: hidden;
    width: calc(100% - 60px);
	margin-right: 0!important;
}
.gt_container-unisv1 > a.glink > span:last-child {
	display: none;
}
.menu_wrap .right .lang .result {
	display: block;
	font-size: 16px;
    width: 100%;
	text-align: left;
	padding: 8px;
    box-sizing: border-box;
}
.menu_wrap .right .lang .ch {
	background: url("../images/lang_ch.svg")no-repeat 0 50% / 32px;
	padding-left: 38px;
}
.menu_wrap .right .lang .kr {
	background: url("../images/lang_kr.svg")no-repeat 0 50% / 32px;
	padding-left: 38px;
}
.menu_wrap .right .lang ul {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	border-radius: 5px;
	border: 1px solid var(--red);
	background: var(--white);
	box-sizing: border-box;
}
.menu_wrap .right .lang ul li {
	padding: 16px 10px;
}
.menu_wrap .right .lang ul li a {
	display: block;
	font-size: 16px;
}
.menu_wrap .right .grid3 a {
	display: block;
	width: 186px;
	height: 62px;
	line-height: 62px;
	background: var(--yellow);
	color: var(--white);
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	border-radius: 7px;
	margin-bottom: 10px;
}


#quick {
	position: fixed;
	bottom: 100px;
	right: 30px;
	width: 100px;
	border-radius: 10px;
	background: var(--red);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
	z-index: 3;
	padding: 6px 10px;
	box-sizing: border-box;
}
#quick a {
	display: block;
	width: 100%;
	color: var(--white);
	font-weight: 700;
	border-bottom: 1px dotted var(--white);
	text-align: center;
	line-height: 1.3;
	padding: 30px 0;
	box-sizing: border-box;
}
#quick a:nth-child(3) {
	padding: 19px 0;
	border-bottom: 0;
}




#container {
	width: 100%;
	padding: 142px 0 100px;
}

.title_area {
	text-align: center;
	font-size: 64px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 80px;
}







.modal {
	display: none;
}
.modal .black_bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 37;
}
.modal .modal_cont {
    width: 90%;
    max-width: 1800px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95vh;
    overflow: hidden;
	z-index: 102;
	background: #fff;
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.35);
	border-radius: 5px;
	box-sizing: border-box;
}
.modal .modal_cont .scroll {
	position: relative;
	background: #fff;
	max-height: 95vh;
    overflow-x: hidden;
    overflow-y: visible;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
	padding: 20px;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position:absolute;
	top: 20px;
    right: 20px;
	z-index: 1;
	width: 20px;
	height: 20px;
	background: url("../images/ico-close.svg")no-repeat 50% 50% / 100%;
}
.modal h3 {
	padding: 12px 0px 12px;
	margin-bottom: 30px;
}


.not_scroll {
	overflow: hidden;
}


.v_m {
	display: none;
}

#fix_bottom {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 2;
}
#fix_bottom .red_bar {
	flex: 1.5;
	background: var(--red);
	justify-content: center;
	padding: 20px 3% 20px 6%;
}
#fix_bottom .red_bar .sns {
	justify-content: center;
	width: 100%;
	max-width: 543px;
}
#fix_bottom .red_bar .sns a {
	gap: 8px;
	text-align: center;
	border-left: 1px solid var(--white);
	color: var(--white);
	padding: 0 40px;
	box-sizing: border-box;
}
#fix_bottom .red_bar .sns a:first-child {
	border-left: 0;
	padding-left: 0;
}
#fix_bottom .red_bar .sns a:last-child {
	padding-right: 0;
}
#fix_bottom .red_bar .sns span {
	line-height: 1.2;
	font-size: 14px;
	font-weight: 600;
}
#fix_bottom .black_bar {
	flex: 3;
	background: var(--black);
	justify-content: center;
	color: var(--white);
	gap: 60px;
}
#fix_bottom .black_bar p {
	font-size: 32px;
	font-weight: 500;
}
#fix_bottom .black_bar strong {
	font-size: 32px;
	font-weight: 900;
	color: var(--yellow);
	cursor: pointer;
}

.pagenavi {
	margin-top: 40px;
}
.pagenavi ol {
	font-size: 0;
	text-align: center;
	justify-content: center;
}
.pagenavi ol li {
	display: inline-block;
	vertical-align: middle;
	margin: 0 7.5px;
}
.pagenavi ol li.first,
.pagenavi ol li.prev,
.pagenavi ol li.next,
.pagenavi ol li.last {
	margin: 0;
}
.pagenavi .first a {
	background: url("../images/navi-first.svg")no-repeat 50% 50%;
}
.pagenavi .prev a {
	background: url("../images/navi-prev.svg")no-repeat 50% 50%;
}
.pagenavi .next a {
	background: url("../images/navi-next.svg")no-repeat 50% 50%;
}
.pagenavi .last  a {
	background: url("../images/navi-last.svg")no-repeat 50% 50%;
}
.pagenavi ol li a {
	display: block;
	width: 25px;
	height: 25px;
	line-height: 24px;
	font-size: 15px;
	border-radius: 5px;
}
.pagenavi ol li.on a {
	background: var(--red);
	color: var(--white);
}


#contact_pop .modal_cont {
	max-width: 800px;
}
#contact_pop .modal_cont .close {
	top: 30px;
	right: 60px;
	width: 30px;
	height: 30px;
	background: url("../images/ico-close2.svg")no-repeat 50% 50%;
}
#contact_pop .modal_cont .scroll {
    padding: 0px 60px 60px;
    margin-top: 100px;
    max-height: calc(95vh - 100px);
}
#contact_pop .modal_cont h3 {
	font-size: 48px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 40px;
}
#contact_pop .form {
	gap: 20px;
}
#contact_pop .form .input_line {
	border-radius: 7px;
	background: #F7F7F7;
}
#contact_pop .form .input_line input[type=text] {
	display: block;
	width: 100%;
	height: 56px;
	padding: 0 20px;
	font-size: 24px;
	font-weight: 500;
	background: transparent;
	box-sizing: border-box;
}
#contact_pop .form .select_box {
	padding: 40px 20px;
}
#contact_pop .form .select_box h4 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 40px;
}
#contact_pop .form .select_box .check {
	gap: 20px;
}
#contact_pop .form .select_box .check > div {
	position: relative;
	width: calc(25% - 15px);
}
#contact_pop .form .select_box .check > div input {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	z-index: -1;
	opacity: 0;
}
#contact_pop .form .select_box .check > div input + label {
	position: relative;
	font-size: 24px;
	padding-left: 38px;
}
#contact_pop .form .select_box .check > div input + label:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 2px;
	border: 1px solid #A5AEBC;
	background: var(--white);
	box-sizing: border-box;
}
#contact_pop .form .select_box .check > div input:checked + label:before {
	background: var(--red) url("../images/ic_check.svg")no-repeat 50% 50%;
	border: 1px solid var(--red);
}
#contact_pop .form > button {
	display: block;
	width: 100%;
	height: 70px;
	border-radius: 5px;
	font-size: 24px;
	font-weight: 700;
	margin-top: 20px;
}





@media screen and (max-width: 1680px) {
	#fix_bottom .red_bar {
		padding: 20px 2% 20px 2%;
	}
	#fix_bottom .red_bar .sns a {
		padding: 0 30px;
	}
}
@media screen and (max-width: 1440px) {
	.inner {
		padding: 0 30px;
	}
	#header {
		padding: 26px 30px;
	}
	.menu_wrap {
		right: 30px;
	}
	.menu_wrap .menu ul > li > button {
		font-size: 28px;
		padding: 10px 0;
	}
	.menu_wrap .menu ul > li > a {
		font-size: 28px;
		padding: 10px 0;
	}
	.menu_wrap .right {
		bottom: calc(50vh - 175px);
	}
	.menu_wrap .right .lang {
		margin-bottom: 80px;
	}
	.menu_wrap .right .grid3 a {
		font-size: 20px;
	}
	
	#quick {
		font-size: 14px;
	}
	
	
	#fix_bottom .red_bar {
		padding: 10px 5px;
	}
	#fix_bottom .red_bar .sns a {
		padding: 0 10px;
	}
	#fix_bottom .red_bar .sns svg{
		width: 25px;
	}
	#fix_bottom .black_bar {
		gap: 20px;
	}
	#fix_bottom .black_bar p,
	#fix_bottom .black_bar strong {
		font-size: 24px;
	}
	
	.title_area {
		font-size: 52px;
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 1024px) {
	#header {
		padding: 12px 20px;
	}
	#header .logo img {
		height: 45px;
	}
	.menu_wrap {
		top: 22px;
	}
	.menu_wrap .box {
		order: 1;
		gap: 5px;
		width: 100vw;
		height: calc(100vh - 225px);
		padding: 0 20px 0 60px;
		margin-top: 25px;
		box-sizing: border-box;
	}
	.menu_wrap .menu {
		padding: 15px 0;
	}
	.menu_wrap .menu ul {
		flex: 1;
	}
	.menu_wrap .menu ul > li > button {
		font-size: 16px;
	}
	.menu_wrap .menu ul > li > a {
		font-size: 14px;
	}
	.menu_wrap .menu > div {
		flex-direction: column;
		justify-items: baseline;
	}
	.menu_wrap .right {
		order: 0;
		width: calc(100vw - 40px);
		bottom: auto;
		top: 0;
	}
	.menu_wrap .right .lang {
		width: 145px;
		height: 40px;
		margin-bottom: 0;
	}
	.gt_container-unisv1 > a.glink {
		padding: 0;
	}
	.gt_container-unisv1 > a.glink > span {
		font-size: 16px!important;
	}
	.gt_container-unisv1 > a.glink img {
		width: 25px;
	}
	.menu_wrap .right .lang .result {
		padding: 0 0 0 38px;
	}
	.menu_wrap .right .lang ul {
		top: 45px;
	}
	.menu_wrap .right .lang ul li {
		padding: 10px 10px;
	}
	.menu_wrap .right .lang ul li a {
		padding: 0;
	}
	.menu_wrap .right .grid3 {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 20px;
	}
	.menu_wrap .right .grid3 a {
		flex: 1;
		font-size: 14px;
		height: 45px;
		line-height: 45px;
	}
	
	#quick {
		right: 10px;
	}
	
	#container {
		padding: 70px 0 80px;
	}
	
	.v_pc {
		display: none;
	}
	.v_m {
		display: block;
	}
	
	
	#fix_bottom .red_bar {
		flex: 1;
	}
	#fix_bottom .red_bar .sns a {
		flex: 1;
		justify-content: center;
		gap: 5px;
	}
	#fix_bottom .red_bar .sns span {
		display: block;
		width: 100%;
		text-align: center;
		font-size: 12px;
	}
	#fix_bottom .red_bar .sns span br {
		display: none;
	}
	#fix_bottom .red_bar .sns svg {
		width: 15px;
	}
	#fix_bottom .red_bar .sns .wechat svg {
		width: 20px;
	}
	#fix_bottom .black_bar {
		flex: none;
		width: 105px;
	}
	#fix_bottom .black_bar p, 
	#fix_bottom .black_bar strong {
		display: none;
	}
	#fix_bottom .black_bar:after {
		content: '';
		display: block;
		width: 30px;
		height: 30px;
		background: url("../images/ic_phone.svg")no-repeat 50% 50%;
		margin: 0 auto;
	}
	
	.title_area {
		font-size: 36px;
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 768px) {
	
	
	#quick {
		display: none;
	}
	
	#fix_bottom .red_bar {
		padding: 10px 0;
		box-sizing: border-box;
	}
	#fix_bottom .red_bar .sns a {
		padding: 0;
	}
	#fix_bottom .black_bar {
		width: 75px;
		box-sizing: border-box;
	}
	#fix_bottom .black_bar p, 
	#fix_bottom .black_bar strong {
		width: 100%;
		font-size: 14px;
		text-align: center;
	}
	
	
	.pagenavi {
		margin-top: 20px;
	}
	.pagenavi ol li {
		margin: 0 1px;
	}
	.pagenavi ol li a {
		width: 22px;
		height: 22px;
		line-height: 22px;
		font-size: 13px;
	}
	.pagenavi ol li img {
		height: 10px;
	}
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
	#fix_bottom .red_bar {
		width: 115px;
		padding: 10px 0;
	}
	#fix_bottom .red_bar .sns a svg {
		width: 16px;
	}
	#fix_bottom .black_bar {
		width: 60px;
		cursor: pointer;
	}
	
	.pagenavi {
		margin-left: -20px;
		width: 100vw;
	}
	.pagenavi ol li a {
		width: 18px;
		height: 18px;
		line-height: 19px;
		font-size: 12px;
	}
}