@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
html.burger_menu {
	overflow: hidden;
}

@media screen and (max-width: 768px) {
  body[style*="top: 40px"] .burger-btn {
    top: 45px !important;
  }
}

#google_translate_element {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
  z-index: -1;
}

body {
	line-height: 1.7777;
	font-family: 'Inter', sans-serif;
	width: 100%;
	font-size: 18px;
}
p {
	color: #000;
}
a {
	text-decoration: none;
	transition: .2s;
	color: #000;
}
a:hover {
	transition: .2s;
}
ol, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
table, td, th {
	border: 1px solid #595959;
	border-collapse: collapse;
}
img {
	width: 100%;
	font-size: 0;
	object-fit: cover;
	-webkit-backface-visibility: hidden;
}
figure {
	font-size: 0;
}
#wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.pc_only,
.pc_tb,
.pc_sp {
	display: block;
}
.sp_only,
.tb_only,
.sp_tb {
	display: none!important;
}
.flex_box {
	display: flex;
}
.reverse {
	flex-direction: row-reverse;
}
.cf {
	 content: "";
	 display: block;
	 clear: both;
}


@media screen and (max-width:1200px) {
	.tb_only,
	.sp_tb {
		display: block!important;
	}
	.pc_only,
	.pc_sp {
		display: none!important;
	}
}

@media screen and (max-width:890px) { 
	.pc_only {
		display: none!important;
	}
	.pc_tb {
		display: block!important;
	}
	.sp_only {
		display: none!important;
	}
	.sp_tb {
		display: block!important;
	}
	.sp_none {
		display: none;
	}
}

@media screen and (max-width:599px) {
	.pc_only,
	.pc_tb {
		display: none!important;
	}
	.sp_only,
	.tb_only,
	.sp_tb,
	.pc_sp {
		display: block!important;
	}
}


/*== header ==*/
.site-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	background-image: url(../images/globals/pc/header_bk.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: 100%;
	color: #fff;
	box-sizing: border-box;
	padding: 0 50px 0 30px;
	height: 140px;
}

.site-title {
	max-width: 120px;
	width: 100%;
	margin-top: 22px;
}
.site-title a {
	display: inline-block;
	width: 100%;
}
.site-title span {
	display: none;
}

.main-nav {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	max-width: 870px;
	width: 100%;
}

.user-menu {
	margin-top: 30px;
}
.user-menu .menu-item {
	float: left;
	width: 167px;
	color: #000;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}
.user-menu .menu-item a {
	display: inline-block;
	width: 100%;
	background: #fff;
	box-sizing: border-box;
	border-radius: 50px;
	height: 42px;
	line-height: 42px;
	transition: .2s;
}
.user-menu .menu-item a:hover {
	background: linear-gradient(90deg,rgba(59, 59, 59, 1) 0%, rgba(76, 76, 76, 1) 60%, rgba(14, 14, 14, 0.92) 100%);
	color: #fff;
	border: none;
	box-shadow: 7px 7px 5px rgba(0, 0, 0, .3);
	transition: .2s;
}
.user-menu .language-switcher {
	float: left;
	margin-left: 30px;
}
.user-menu .language-switcher select {
	width: 167px;
	color: #fff;
	border-radius: 50px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	background: transparent;
	font-size: 18px;
	cursor: pointer;
	height: 42px;
	transition: .2s;
}
.user-menu .language-switcher select:hover {
	background: linear-gradient(90deg,rgba(59, 59, 59, 1) 0%, rgba(76, 76, 76, 1) 60%, rgba(14, 14, 14, 0.92) 100%);
	color: #fff;
	border: none;
	box-shadow: 7px 7px 5px rgba(0, 0, 0, .3);
	transition: .2s;
}
.user-menu .language-switcher select option {
	color: #000;
}

.nav-links {
	display: flex;
	gap: 80px;
	margin-top: 10px;
}
.nav-links li a {
	text-decoration: none;
	color: #fff;
	font-weight: 500;
	font-size: 18px;
}
.nav-links li a:hover {
	text-decoration: underline;
}


@media screen and (max-width:1200px) { 
	.site-header {
		background-size: cover;
		height: 70px;
		position: absolute;
		padding: 0 0 0 10px;
		z-index: 999;
	}
	.site-title {
		max-width: 70px;
		margin-top: 10px;
	}
	.main-nav {
		display: none;
	}
}


/*Burger Button*/
@media screen and (max-width:1200px) {
	.burger-btn {
		display: block;
		width: 50px;
		height: 50px;
		position: fixed;
		z-index: 9999999;
		top: 10px;
		right: 20px;
		cursor: pointer;
		transition: .3s;
	}
	.burger-btn:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		background-color: #000;
		background: linear-gradient(90deg, rgba(59, 59, 59, 1) 0%, rgba(76, 76, 76, 1) 60%, rgba(14, 14, 14, 0.92) 100%);
		width: 100%;
		height: 100%;
	}
	.burger-btn:hover {
		transition: .3s;
	}
	.bar {
		width: 35px;
		height: 1px;
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		background-color: #fff;
		transition: .3s;
	}
	.header_con .bar,
	.change .bar {
		background-color: #fff;
	}
	.close .bar {
		background-color: #fff;
	}
	.bar_top {
		top: 12px;
	}
	.bar_mid {
		top: 49%;
		transform: translate(-50%,-50%);
	}
	.bar_bottom {
		bottom: 12px;
	}
	.burger-btn.close .bar_top {
		transform: translate(-50%,12px) rotate(45deg);
		transition: transform .3s;
	}
	.burger-btn.close .bar_mid {
		opacity: 0;
		transition: opacity .3s;
	}
	.burger-btn.close .bar_bottom {
		transform: translate(-50%,-12px) rotate(-45deg);
		transition: transform .3s;
	}
	#sp_nav {
		transform: translateX(100%);
		transition: .5s;
		width: 100vw;
		height: 100%;
		position: fixed;
		top: 0;
		right: 0;
		background: linear-gradient(90deg, rgba(59, 59, 59, 1) 0%, rgba(76, 76, 76, 1) 60%, rgba(14, 14, 14, 1) 100%);
		transition: .2s;
		overflow-y: scroll;
	}
	#sp_nav.slide-in{
		transform: translateX(0);
		transition: .5s;
	}
	#sp_nav .inner {
		max-width: 300px;
		width: 100%;
		margin: 0 auto;
		margin-top: 100px;
    margin-bottom: 100px;
		text-align: center;
	}
	#sp_nav .menu_list {
		margin-top: 80px;
		border-top: 1px solid #999;
		padding-top: 80px;
	}
	#sp_nav .menu_list li {
		line-height: 1;
		text-align
	}
	#sp_nav .menu_list li+li {
		margin-top: 50px;
	}
	#sp_nav .menu_list li a {
		color: #fff;
		position: relative;
		font-size: 21px;
	}
	#sp_nav .menu_list li .sub_list {
		padding-left: 24px;
	}
	#sp_nav .menu_list li .sub_list li {
		margin-top: 30px;
	}
	#sp_nav .menu_list li .sub_list li a:before {
		content: "";
		position: absolute;
		top: 10px;
		left: -20px;
		width: 10px;
		height: 1px;
		background-color: #666;
	}

	#sp_nav .sp-menu li + li {
		margin-top: 30px;
	}
	#sp_nav .menu-apply {
		max-width: 280px;
		width: 100%;
		margin: 0 auto;
	}
	#sp_nav .menu-apply a {
		display: inline-block;
		width: 100%;
		border: 1px solid #fff;
		border-radius: 55px;
		text-align: center;
		color: #fff;
		height: 55px;
        line-height: 49px;
        font-size: 18px;
		position: relative;
		padding-right: 5px;
		box-sizing: border-box;
		transition: .2s;
	}
	#sp_nav .menu-apply a:before {
		content: "";
		position: absolute;
        top: 13px;
        right: 15px;
		background-image: url(../images/globals/pc/btn-gold.png);
		background-repeat: no-repeat;
		background-size: 25px;
        width: 25px;
        height: 25px;
		z-index: 0;
	}
	#sp_nav .menu-login {
		max-width: 280px;
		width: 100%;
		margin: 0 auto;
		color: #000;
		font-weight: bold;
		text-decoration: none;
		text-align: center;
	}
	#sp_nav .menu-login a {
		display: inline-block;
		width: 100%;
		background: #fff;
		box-sizing: border-box;
		border-radius: 55px;
		height: 55px;
        line-height: 49px;
        font-size: 18px;
		transition: .2s;
	}
	#sp_nav .menu-language {
		max-width: 280px;
		width: 100%;
		margin: 0 auto;
	}
	#sp_nav .menu-language select {
		display: inline-block;
		width: 100%;
		color: #fff;
		border: 1px solid #fff;
                border-radius: 50px;
		font-weight: bold;
		text-decoration: none;
		text-align: center;
		background: transparent;
		cursor: pointer;
		height: 55px;
                line-height: 49px;
                font-size: 18px;
		transition: .2s;
		text-align: center;
	}

        #sp_nav .menu-language select:hover {
                background: linear-gradient(90deg,rgba(59, 59, 59, 1) 0%, rgba(76, 76, 76, 1) 60%, rgba(14, 14, 14, 0.92) 100%);
                color: #fff;
                border: none;
                box-shadow: 7px 7px 5px rgba(0, 0, 0, .3);
                transition: .2s;
        }
        #sp_nav .menu-language select option {
                color: #000;
        }

}


/*== footer ==*/
.site-footer {
	background: #3B3B3B;
	background: linear-gradient(90deg,rgba(59, 59, 59, 1) 0%, rgba(76, 76, 76, 1) 60%, rgba(14, 14, 14, 0.92) 100%);
	color: #fff;
	font-family: 'Inter', sans-serif;
	padding: 40px 0 20px; 
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.site-footer .container {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer-menu {
	display: flex;
	gap: 80px;
	font-size: 18px;
	padding: 0;
	margin: 0;
}
.footer-menu li a {
	color: #fff;
	text-decoration: none;
}
.footer-menu li a:hover {
	text-decoration: underline;
}
.site-footer .copyright {
	color: #fff;
	font-size: 12px;
	text-align: right;
	margin-top: 0;
	padding-right: 40px;
}


@media screen and (max-width:1200px) {
	.site-footer {
		padding: 30px;
	}
	.site-footer .container {
		display: none;
	}
	.footer-menu {
		gap: 50px;
	}
	.site-footer .copyright {
		padding: 0;
		text-align: center;
	}
}
	
@media screen and (max-width:599px) {
	.site-footer {
		padding: 20px;
	}
	.footer-menu {
		display: block;
		text-align: center;
	}
	.footer-menu li {
		line-height: 1;
	}
	.footer-menu li + li {
		margin-top: 20px;
	}
}


/*hero*/
.hero {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #fff;
	position: relative;
}
h2.hero-title {
	font-size: 48px;
	font-weight: 700;
	text-align: center;
}

.hero .btn-wrap {
	max-width: 300px;
	margin: 0 0 0 auto;
	margin-right: 100px;
	position: absolute;
	bottom: 50px;
	right: 0;
	width: 100%;
}
.hero .btn-wrap a {
	display: inline-block;
	width: 100%;
	height: 65px;
	border: 1px solid #333;
	border-radius: 65px;
	line-height: 65px;
	text-align: center;
	position: relative;
	transition: .2s;
}
.hero .btn-wrap a:before {
	content: "";
	position: absolute;
	top: 16px;
	right: 15px;
	background-image: url(../images/globals/pc/btn-gold.png);
	background-repeat: no-repeat;
	background-size: 35px;
	width: 35px;
	height: 35px;
	z-index: 0;
}
.hero .btn-wrap a:hover {
	background: linear-gradient(90deg,rgba(59, 59, 59, 1) 0%, rgba(76, 76, 76, 1) 60%, rgba(14, 14, 14, 0.92) 100%);
	color: #fff;
	border: none;
	box-shadow: 7px 7px 5px rgba(0, 0, 0, .3);
	transition: .2s;
}

@media screen and (max-width:1440px) { 
	.hero {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.hero .btn-wrap {
		margin: 0 auto;
		margin-top: 20px;
		position: static;
	}
}

@media screen and (max-width:1200px) { 
	.hero {
			padding-top: 50px;
			padding-bottom: 50px;
			margin-top: 70px;
	}
	h2.hero-title {
			font-size: 36px;
	}
	.hero .btn-wrap {
		max-width: 280px;
		margin: 0 auto;
		margin-top: 20px;
		position: static;
	}
	.hero .btn-wrap a {
		height: 55px;
		line-height: 55px;
	}
	.hero .btn-wrap a:before {
		top: 15px;
		right: 20px;
		background-size: 28px;
		width: 28px;
		height: 28px;
	}
}

@media screen and (max-width:599px) {
	.hero {
		padding-top: 30px;
		padding-bottom: 30px;
	}
	h2.hero-title {
		font-size: 28px;
	}
	.hero .btn-wrap a:before {
		top: 15px;
		right: 12px;
		background-size: 25px;
		width: 25px;
		height: 25px;
	}
}


/*section-box*/
.section-box {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
	clip-path: inset(0);
}
.section-box > img {
	object-fit: cover;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -99;
}
.section-box .container {
	max-width: 1080px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	padding: 50px 100px 80px;
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #989898;
	border-radius: 5px;
	box-shadow: 4px 4px 4px rgba(0,0,0,0.3);
}

@media screen and (max-width:1440px) { 
	.section-box .container {
			max-width: 980px;
			padding: 50px 50px 80px;
	}
}

@media screen and (max-width:1200px) { 
	.section-box {
		padding-top: 50px;
		padding-bottom: 50px;
		padding-left: 5%;
		padding-right: 5%;
	}
	.section-box .container {
		padding: 0 30px;
	}
}

@media screen and (max-width:599px) { 
	.section-box .container {
		padding: 0 15px;
	}
}


/*PAGE TOP*/
.page_top {
	z-index: 98;
}
.page_top a {
	height: 50px;
	width: 50px;
	position: fixed;
	right: 30px;
	bottom: 50px;
	background: #000;
	background: linear-gradient(90deg,rgba(59, 59, 59, 1) 0%, rgba(76, 76, 76, 1) 60%, rgba(14, 14, 14, 0.92) 100%);
	display: flex;
	justify-content: center;
	border-radius: 50px;
	align-items: center;
	z-index: 2;
	transition: .2s;
}
.page_top a .arrow_up {
	height: 10px;
	width: 10px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: translateY(20%) rotate(-45deg);
}
.page_top a:hover {
	background: #a89150;
	background: linear-gradient(90deg, rgba(255, 252, 209, 1) 0%, rgba(243, 225, 139, 1) 37%, rgba(241, 197, 0, 1) 68%, rgba(203, 155, 12, 1) 100%);
	transition: .2s;
}
.page_top a:hover .arrow_up {
	border-top: 3px solid #000;
	border-right: 3px solid #000;
}

@media screen and (max-width:1200px) {
	.page_top a {
		bottom: 30px;
		right: 15px;
	}
}
