@charset "UTF-8";

/* スマホメニュー */
.button_container {
	position: absolute;
	top: 15px;
	right: 35px;
	cursor: pointer;
	z-index: 1000;
	transition: opacity 0.25s ease;
}
.button_container:before {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, 0);
}
.button_container .top, .button_container .middle, .button_container .bottom {
	width: 20px;
	height: 3px;
	background: #132847;
}
.button_container .middle {
	background: #3971B7;
}
.button_container.active .top {
	opacity: 0;
}
.button_container.active .middle {
	opacity: 0;
}
.button_container.active .bottom {
	transform: translateY(-12px) translateX(0) rotate(0deg);
}
.button_container span {
	background: #132847;
	border: none;
	height: 3px;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.35s ease;
	cursor: pointer;
}
.button_container span:nth-of-type(2) {
	top: 8px;
}
.button_container span:nth-of-type(3) {
	top: 16px;
}
.overlay {
	position: fixed;
	background: #F5F7F8;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s, visibility 0.35s, height 0.35s;
	overflow: hidden;
}
.overlay.open {
	opacity: 1;
	visibility: visible;
	height: 100%;
}
.gmenuBoxWrap {
	position: relative;
	width: 80%;
	height: 80%;
	overflow-y: scroll;
	box-sizing: border-box;
	padding: 0 0 5;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.gmenuBoxWrap > ul {
	width: 100%;
	box-sizing: border-box;
	padding: 0;
}
.gmenuBoxWrap > ul > li {
	margin: 0 0;
	width: 100%;
}
.gmenuBoxWrap a {
	text-decoration: none;
	color: #000;
}
.spmc {
	display: none;
	height: 0;
	padding-bottom: 10px;
}
.spmc.open {
	display: block;
	height: 100%;
	transition: all .5s;
}
.menu > li a, .menu > li p {
	display: block;
	color: #22304F;
	font-size: 16px;
	font-weight: 400;
	line-height: 40px;
	text-decoration: none;
}
.menu > li p {
	cursor: pointer;
}
.menu_mega .p01 {
	position: relative;
}
.menu_mega .p01:after {
	content: "";
	position: absolute;
	right: 0;
	top: calc(50% - 8px);
	width: 10px;
	height: 10px;
	background: url("../img/menu-plus.svg") no-repeat center center;
	background-size: contain;
}
.menu_mega .p01.on:after {
	background: url("../img/menu-minus.svg") no-repeat center center;
	background-size: contain;
}
li.menu_mega ul.menu_second-level a {
	color: #22304F;
	line-height: 2em;
	font-size: 13px;
	padding-left: 20px;
	position: relative;
	transition: all .3s;
}
li.menu_mega ul.menu_second-level a:before {
	width: 10px;
	height: 1px;
	background: #3a82f3;
	content: "";
	position: absolute;
	left: 0;
	top: 1em;
}
li.menu_mega ul.menu_second-level a[target="_blank"]:before {
	display: none;
}
li.menu_mega ul.menu_second-level a[target="_blank"]::after {
	display: inline-block;
	background: url(../img/new-win_blue.png) no-repeat center / cover;
	width: 13px;
	height: 13px;
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
}
.entry-btn {
	width: 120px;
	height: 50px;
	background: linear-gradient(-90deg, #65e7ff 0%, #00509a 100%);
	position: absolute;
	right: 50px;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.entry-btn p {
	text-align: center;
	line-height: 50px;
	color: #FFF;
	font-weight: 500;
	font-size: 12px;
}
.entry-btn::after {
	width: 8px;
	height: 8px;
	content: "";
	display: inline-block;
	background: url("../img/new-win.png") no-repeat center center;
	background-size: contain;
	margin-left: 5px;
}
/* @media screen and (max-width: 767px) {
	.entry-btn {
		width: 100px;
	}
} */

/*ヘッダ*/
header {
	position: fixed;
	top: 0;
	height: 50px;
	width: 100%;
	z-index: 10;
	background: #FFF;
	transition: all 1s;
}
.top header {
	top: -50px;
	transition: all 1s;
}
.top header.eon {
	top: 0;
}
.logo {
	width: 110px;
	position: absolute;
	top: 18px;
	left: 15px;
	z-index: 1001;
}
.logo-text {
	font-family: 'Noto Serif JP', serif;
	color: #707070;
	font-size: 15px;
	position: absolute;
	left: 140px;
	top: 17px;
	line-height: 1em;
	z-index: 1001;
}
@media screen and (max-width: 767px) {
	.logo {
		width: 80px;
	}
	.logo-text {
		left: 105px;
		font-size: 12px;
	}
}


.page_irtop .logo a {
	pointer-events: none;
}