@charset "UTF-8";

/*==== global
===============================================================*/
.global {
	width: 100%;
	/*
	position: fixed;
	top: 0;
	left: 0;
	z-index: 90;
	*/
}

.global__wrap {
	background: #fff;
	position: relative;
}

.global__inner {
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.global__logo {
	width: 100px;
	position: relative;
}

.global__logo img {
	width: 100%;
	height: auto;
	display: block;
}

.global__nav,
.global__link{
	display: none;
}

.global__btn {
	width: 50px;
	height: 50px;
	border: 1px solid #fff;
	background-color: #222;
	position: relative;
	cursor: pointer;
	transition: all ease 1s;
	z-index: 110;
}

.global__btn::before,
.global__btn::after {
	content: "";
	position: absolute;
	width: 30px;
	height: 1px;
	background: #fff;
	top: 50%;
	left: 50%;
	transition: all ease .6s;
}

.global__btn::before {
	transform: translateX(-50%) translateY(-3px);
}

.global__btn::after {
	transform: translateX(-50%) translateY(3px);
}

.global__btn.js-active {
	background: transparent;
}

.global__btn.js-active::before,
.global__btn.js-active::after {
	background-color: #FFFFFF;
}

.global__btn.js-active::before{
	top: 50%;
	transform: translateX(-50%) rotate(45deg);
}

.global__btn.js-active::after {
	top: 50%;
	transform: translateX(-50%) rotate(-45deg);
}

@media screen and (min-width:1024px) {
	.global__inner {
		max-width: 100%;
		min-height: 120px;
		padding: 15px 30px;
		margin: 0 auto;
	}

	.global__logo {
		width: 200px;
	}

	.global__logo img{
		max-width: 140px;
	}

	.global__nav {
		display: block;
	}

	.global__nav-list {
		display: flex;
		gap: 0 10px;
	}

	.global__nav-list li a{
		color: #222;
		font-weight: bold;
		display: inline-block;
		padding: 5px 20px;
	}

	.global__link {
		display: block;
	}

	.global__link-list {
		display: flex;
		gap: 0 10px;
	}

	.global__link li a{
		color: #fff;
		font-size: 18px;
		font-weight: bold;
		line-height: 60px;
		text-align: center;
		min-width: 200px;
		height: 60px;
		border-radius: 30px;
		padding: 0 30px;
		background: #222;
		display: inline-block;
	}

	.global__btn{
		display: none;
	}
}



/*==== hamburger
===============================================================*/
.hamburger {
	position: fixed;
	max-width: 480px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	background-color: #1955A6;
	display: none;
	top: 0;
	right: 0;
	z-index: 100;
	overflow-y: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.hamburger::-webkit-scrollbar {
	display: none;
}

.hamburger__inner {
	box-sizing: border-box;
	padding: 0 20px;
	margin: 120px auto;
	position: relative;
	z-index: 2;
}

.hamburger__nav-list > li {
	border-bottom: 1px solid #fff;
	display: block;
}

.hamburger__nav-list > li > a {
	color: #fff;
	font-weight: bold;
	padding: 15px 30px 15px 0;
	position: relative;
	display: block;
}

.hamburger__nav-list > li > a:before{
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -3px;
}

.hamburger__nav-list .sub-menu{
	padding: 0 0 20px 15px;
}

.hamburger__nav-list .sub-menu > li > a {
	color: #fff;
	font-size: 14px;
	padding: 5px 0;
	display: block;
}

.hamburger__link {
	margin: 45px auto 60px;
}

.hamburger__link li{
	text-align: center;
	display: block;
	margin-bottom: 10px;
}

.hamburger__link li a{
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 60px;
	text-align: center;
	width: 100%;
	max-width: 280px;
	height: 60px;
	border-radius: 30px;
	padding: 0 30px;
	background: #222;
	display: inline-block;
}

.hamburger__copy {
	text-align: center;
	margin-top: 80px;
}

.hamburger__copy small {
	color: #fff;
	font-size: 12px;
}

.hamburger__bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (min-width:1024px) {
	.hamburger{
		display: none!important;
	}
	.hamburger__inner {
		margin: 240px auto;
	}

}