@charset "utf-8";


.inner {
	position: relative;
	width: 100%;
	max-width: 1500px;	
	padding: 0 20px;
	box-sizing: border-box;
	margin:0 auto;
}


#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 33;
	background: var(--white);
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
}
#header .top_area {
	height: 110px;
	max-width: 1720px;
	padding: 0 20px;
	box-sizing: border-box;
	margin: 0 auto;
}
#header .top_area h1 img {
	height: 50px;
}
#header .top_area .download {
	gap: 16px;
}
#header .top_area .download a {
	width: 200px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50px;
}
#header .top_area .download a img {
	vertical-align: middle;
	margin-right: 10px;
}
#header .top_area > .flex {
	gap: 16px;
}
#header .top_area .lang_default a img {
    vertical-align: middle;
    height: 38px;
    border: 1px solid #e1e1e1;
    box-sizing: border-box;
}
#header .top_area .lang {
	position: relative;
	width: 155px;
	height: 50px;
	border-radius: 50px;
	border: 1px solid var(--black);
	background: url("../images/ic_global.svg")no-repeat 10px 50%;
	box-sizing: border-box;
}
#header .top_area .lang select {
    display: block;
    width: 100%;
    height: 100%;
	background: url("../images/arrow_down.svg")no-repeat calc(100% - 20px) 50%;
	padding-left: 50px;
}
#header .top_area .lang > button {
    display: block;
    width: 100%;
    height: 100%;
	background: url("../images/arrow_down.svg")no-repeat calc(100% - 20px) 50%;
}
#header .top_area .lang .lang_select {
	display: none;
	position: absolute;	
	width: 100%;
	padding-top: 10px;
}
#header .top_area .lang:hover .lang_select {
	display: block;
}
#header .top_area .lang .lang_select > div {
    background: var(--white);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 15px;
    box-sizing: border-box;
}
#header .top_area .lang .lang_select a {
	display: block;
}
#header .top_area .lang .lang_select a img {
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#header .top_area .lang .lang_select a span {
	font-size: 16px;
    display: inline-block;
    width: 62%;
    margin: 0 0 0 5px;
}






.side_wrap {
	width: 250px;
	height: 100%;
	position: fixed; 
	top: 0;
	right: -100%;
	z-index: 35;
	background: var(--white);
	overflow-y: auto;
	box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
	transition: all .2s;
}
.side_wrap.on {
	right: 0;
}
.side_wrap .side_close {
    display: block;
    position: absolute;
    top: 15px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: url("../images/ico-close.svg")no-repeat 50% 50% / 20px;
    z-index: 1;
}
.side_wrap .depth {
    padding: 60px 0 30px;
}
.side_wrap .depth01 {
	position: relative;
}
.side_wrap .depth01 button {
	position: relative;
	display: block;
	width: 100%;
	text-align: left;
	text-transform: uppercase;
	border-bottom: 1px solid #ddd;
	font-size: 18px;
	padding: 15px 20px;
	box-sizing: border-box;
}
.side_wrap .depth01.active button {
	background: var(--key-color);
	border-bottom: 1px solid var(--key-color);
}
.side_wrap .depth02 {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: all .3s;
}
.side_wrap .depth01.active .depth02 {
	max-height: 1000px;
}
.side_wrap .depth .depth02 li a {
	display: block;
    text-align: left;
    font-size: 16px;
    font-weight: 300;
	background: var(--base2);
	padding: 10px 20px;
	box-sizing: border-box;
}
.black_bg {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 34;
}



#container {
	width: 100%;
}


#fix_btn {
	position: fixed;
	bottom: 43px;
	right: 50px;
	z-index: 35;
}
#fix_btn a {
	display: block;
	width: 80px;
	height: 80px;
	border-radius: 20px;
	background: linear-gradient(180deg, #34B8FB 0%, #0482C0 100%);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
	color: var(--white);
	text-align: center;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 0;
	box-sizing: border-box;
}



.modal {
	display: none;
}
.modal .black_bg {
	display: block;
	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: 765px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    max-height: 95%;
    overflow: hidden;
	z-index: 38;
	background: #fff;
	border-radius: 5px;
}
.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: 30px;
}
.modal .modal_cont .scroll::-webkit-scrollbar {
    display: none;
}
.modal .close {
	position:absolute;
	top: 43px;
    right: 40px;
	z-index: 1;
	width: 24px;
	height: 24px;
	background: url("../images/ico-close.svg")no-repeat 50% 50% / 100%;
}
.modal h3 {
	padding: 12px 0px 12px;
	margin-bottom: 30px;
}
.agree_modal .scroll {
	white-space: pre-line;
}


.not_scroll {
	overflow: hidden;
}


h3.tit {
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	text-align: center;
}






@media screen and (max-width: 1500px) {
}
@media screen and (max-width: 1024px) {
	#header .top_area {
		height: 70px;
	}
	#header .top_area h1 img {
		height: 30px;
	}
	#header .top_area .download {
		gap: 8px;
	}
	#header .top_area .download a {
		width: auto;
		padding: 0 20px;
	}
	#header .top_area .lang {
		width: 62px;
		height: 42px;
		background-position: 10px 50%;
	}
	#header .top_area .lang > select {
		background-position: calc(100% - 8px) 50%;
		background-size: 16px;
	}
	#header .top_area .lang > button {
		font-size: 0;
		background-position: 85% 50%;
	}
	#header .top_area .lang .lang_select a span {
		font-size: 0;
	}
	#header .top_area .lang_default a img {
		height: 32px;
	}
	
	
	h3.tit {
		font-size: 38px;
	}
}
@media screen and (max-width: 768px) {
	#header .top_area .download {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 3;
		background: #fff;
		padding: 15px;
		box-shadow: 4px 0px 4px rgba(0, 0, 0, 0.25);
		box-sizing: border-box;
	}
	#header .top_area .download a {
		width: calc(50% - 4px);
		padding: 0;
	}
	
	#fix_btn {
		bottom: 100px;
		right: 20px;
	}
	#fix_btn a {
		font-size: 0;
		width: 55px;
		height: 55px;
		border-radius: 10px;
	}
	#fix_btn a svg {
		width: 32px;
	}
	
	
	h3.tit {
		font-size: 26px;
	}
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}