@charset "UTF-8";

/* ハンバーガーボタン */

.hamburger {
	position: fixed;
	top: 0;
	right: 0px;
	z-index: 10000;
	line-height: 30px;
	width: 80px;
	height: 80px;
	background-color: #0068B1;
}

.hamburger span {
	display: block;
	position: absolute;
	width: 30px;
	height: 3px;
	left: 50%;
	translate: -50% 0;
	background: #fff;
	border-radius: 100vmax;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
	top: 30px;
}

.hamburger span:nth-child(2) {
	top: 38px;
}

.hamburger span:nth-child(3) {
	top: 48px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top: 38px;
	left: 50%;
	translate: -50% 0;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	top: 38px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

.hamburger p.ttl {
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}

.globalMenuSp_main_menu_box {
	position: fixed;
	top: 80px;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	border: 5vw solid #004576;
	z-index: 500;
	display: none;
}

.globalMenuSp_main_menu_box .inner {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 7vw;
	height: 100%;
}

.globalMenuSp_main_menu_box ul {
	width: 100%;
}

.globalMenuSp_main_menu_box ul li a {
	display: inline-flex;
	color: #000;
	font-weight: bold;
	text-align: center;
	align-items: center;
	gap: .7em;
	font-size: 4vw;
}

.globalMenuSp_main_menu_box ul li a::before {
	content: "";
	width: .55em;
	height: .55em;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: #0068B1;
}

.globalMenuSp_main_menu_box ul li+li {
	margin-top: 5.5vw;
}

/* サブメニュー */

.sp_sub_menu .inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
}

.js-sp_sub_menu {
	position: fixed;
	z-index: 600;
	height: 100%;
	width: 100%;
	background-color: #fff;
	display: none;
}

.sp_sub_menu .inner .ttl {
	font-weight: bold;
	font-size: 5vw;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: .7em;
}

.sp_sub_menu .inner .ttl::before {
	content: "";
	width: .55em;
	height: .55em;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: #0068B1;
}

.sp_sub_menu .inner ul {
	margin-top: 6vw;
}

.sp_sub_menu .inner ul li a {
	color: #000;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: .7em;
}

.sp_sub_menu .inner ul li a::before {
	content: "";
	width: 1.2em;
	height: 2px;
	background-color: #D5D5D5;
	flex-shrink: 0;
}

.sp_sub_menu .inner ul li+li {
	margin-top: 3.7vw;
}

/* 戻るボタン */

.sp_sub_menu .inner p.back_btn {
	width: 40vw;
	text-align: center;
	font-weight: bold;
	margin: 50px auto 0;
	/* border: 2px solid #000; */
	background-color: #0068B1;
	color: #fff;
	border-radius: 100px;
	padding: .5em;
}