/* pctb */
.header_wrap {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
}

@media screen and (min-width: 1280px) {

	.hamb_btn {
		display: none;
	}

	.gnavi_body {
		padding: 0;
		display: flex;
		justify-content: flex-end;
	}

	.gnavi_body a {
		text-decoration: none;
		font-family: var(--min);
		display: block;
		color: #000;
	}

	.gnavi_body>.menu-item {
		position: relative;
	}

	.gnavi_body>.menu-item>a {
		padding: 5px 20px 13px 20px;
		font-size: 1.7rem;
		position: relative;
	}

	.gnavi_body>.menu-item-has-children>a {
	cursor: pointer;
}

	.gnavi_body>.menu-item-has-children>a:before {
		content: '';
		display: block;
		position: absolute;
		bottom: 8px;
		left: 50%;
		width: 7px;
		aspect-ratio: 1/1;
		z-index: 1;
		border-right: 1px solid #000000;
		border-bottom: 1px solid #000000;
		transform: translateX(-50%) rotate(45deg);
		transition: 0.3s;
	}

	.gnavi_body .sub-menu {
		display: block !important;
		opacity: 0;
		background: var(--blue);
		padding: 5px 10px;
		pointer-events: none;
		transition: 0.3s;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		width: 250px;
	}

	.gnavi_body>.menu-item-has-children:hover .sub-menu {
		opacity: 1;
		pointer-events: auto;
	}

	.gnavi_body .sub-menu li {
		border-bottom: 1px solid #ffffff;
	}

	.gnavi_body .sub-menu li:last-of-type {
		border-bottom: 0;
	}

	.gnavi_body .sub-menu a {
		font-size: 15px;
		padding: 7px 17px 9px 5px;
		color: #fff;
		position: relative;
	}

.gnavi_body .sub-menu a::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 15px;
	right: 7px;
	width: 7px;
	aspect-ratio: 1 / 1;
	z-index: 1;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	transform: rotate(-45deg);
	transition: 0.3s;
}

.gnavi_body .sub-menu a::before {
	position: absolute;
}
}

/* pcのみ */
@media screen and (min-width: 1280px) {}

/* tb ＆ SP */
@media screen and (max-width: 1279px) {
	.hamb_btn {
		position: fixed;
		top: 2vw;
		right: 2vw;
		background: #fff;
		width: 10vw;
		aspect-ratio: 1/1;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 200;
		border: 1px solid var(--color);
	}

	.hamb_btn .btn_body {
		width: 4vw;
		aspect-ratio: 1/0.9;
		position: relative;
		transition: 0.7s;
		cursor: pointer;
	}

	.hamb_btn .btn_body span,
	.hamb_btn .btn_body:after,
	.hamb_btn .btn_body:before {
		content: "";
		width: 100%;
		height: 1px;
		position: absolute;
		left: 0;
		background: var(--color);
		transition: 0.7s;
	}

	.hamb_btn .btn_body:before {
		top: 50%;
		transform: translateY(-50%);
	}

	.hamb_btn .btn_body:after {
		bottom: 0;
	}

	.hamb_btn .btn_body span {
		overflow: hidden;
		text-indent: 100%;
		white-space: nowrap;
		top: 0;
	}

	body.js_header_on .hamb_btn .btn_body span {
		top: auto;
		transform: rotate(45deg);
		bottom: calc(50% - 1px);
	}

	body.js_header_on .hamb_btn .btn_body:before {
		display: none;
	}

	body.js_header_on .hamb_btn .btn_body:after {
		bottom: 50%;
		transform: translateY(50%) rotate(-45deg);
	}

	.gnavi {
		background: rgba(255, 255, 255, 0.95);
		transition: ease-in-out 0.3s;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 150;
		transform: translateX(100%);
	}

	body.js_header_on .gnavi {
		transform: translateX(0);
	}

	.gnavi_body {
		height: 100dvh;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-y: contain;
		padding: 14vw 5vw;
	}

	.gnavi_body a {
		text-decoration: none;
		display: block;
		color: var(--blue);
		text-align: center;
		position: relative;
	}

	.gnavi_body>.menu-item>a {
		padding: 3vw 2vw;
		border-bottom: 1px solid var(--blue);
	}

	.gnavi_body>.menu-item-has-children>a:before,
	.gnavi_body>.menu-item-has-children>a:after {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 10px;
		width: 3vw;
		height: 1px;
		z-index: 1;
		background: var(--blue);
		transform: translateY(-50%);
		transition: 0.3s;
	}

	.gnavi_body>.menu-item-has-children>a:before {}

	.gnavi_body>.menu-item-has-children>a:after {
		transform: translateY(-50%) rotate(90deg);
	}

	.gnavi_body>.menu-item-has-children.on>a:after {
		transform: translateY(-50%) rotate(0deg);
	}

	.gnavi_body .sub-menu {
		display: none;
		background:  var(--blue);
	}

	.gnavi_body .sub-menu a {
	color: #fff;
	padding: 3vw 2vw;
	border-bottom: 1px solid #ffffff;
	font-size: var(--rem14);
	}
}

/* tbのみ */
@media screen and (min-width: 601px) and (max-width: 1279px) {}

/* spのみ */
@media screen and (max-width: 600px) {
	.hamb_btn {width: 50px;height: 50px;aspect-ratio: inherit;top: 50%;transform: translate(0%, -50%);position: absolute;}
.hamb_btn .btn_body {width: 20px;height: 20px;aspect-ratio: inherit;}
	.hamb_btn .btn_body:before {transform: initial;}
}
@media screen and (max-width: 500px) {
	.hamb_btn {width: 40px;height: 40px;}
.hamb_btn .btn_body {width: 14px;height: 14px;}
	.hamb_btn .btn_body:before {transform: initial;}
}


@media screen and (max-width: 400px) {
	.hamb_btn {width: 30px;height: 30px;}
.hamb_btn .btn_body {width: 10px;height: 10px;}
	.hamb_btn .btn_body:before {transform: initial;}
}