/* 共通 */
:root {
	--main-font: "TheImpressionist", serif;
	/* --noto-font: "Noto Sans JP", sans-serif; */
	--sub-font: "Parisienne", cursive;
	--noto-font: "Noto Serif", serif;
	--base-font-size: 16px;
	--heading-font-size: 2rem;
	--main-color: #B59B9B;
	--main-blue: #1F233A;
	--main-gray: #D9D9D9;
	--font-gray: #4E4E4E;
}

.wrap {
	/* padding: 6rem 0 0; */
}

.h_container {
	position: fixed;
	z-index: 99998;
	top: 0;
	left: 0;
	width: 100%;
}

.h_wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 10rem;
	padding-right: 5rem;
	color: #ffffff;
	background-color: #1F233A;
}

.sp_only {
	display: none;
}

.h_logo {
	width: 10rem;
	height: 10rem;
	margin-left: 3rem;
}

.h_logo_img {
	width: 100%;
	height: 100%;
}

.menu {
	display: flex;

	gap: 5.5rem;
}

.h_content {
	color: rgb(255, 255, 255);
	font-family: var(--main-font);
	font-size: 3rem;
	font-weight: 100;
}

.sp_only {
	display: none;
}



/* スマホ版 */
@media (max-width: 699.98px) {
	.sp_only {
		display: block;
	}

	.wrap {
		padding: 6rem 0 0;
	}

	.h_wrapper {
		height: 6.5rem;
		padding: 0 0.7rem;
	}

	.gnavi {
		display: none;
	}

	.h_container {
		display: flex;
	}

	.h_logo {
		width: 5.5rem;
		height: 5.5rem;
		margin-left: 0.7rem;
		font-size: 0;
	}

	.gNav_sp .btn_gnavi {
		position: absolute;
		z-index: 100;
		top: 2.3rem;
		right: 3.7rem;
		width: 3.4rem;
		height: 0.9rem;
		cursor: pointer;
	}

	.gNav_sp .btn_gnavi span {
		position: absolute;
		display: inline-block;
		width: 100%;
		height: 0.2rem;
		border-radius: 1rem;
		background: #ffffff;
	}

	.gNav_sp .btn_gnavi span:nth-child(1) {
		top: 0;
	}

	.gNav_sp .btn_gnavi span:nth-child(2) {
		top: 1.3rem;
	}

	.gNav_sp .btn_gnavi span:nth-child(3) {
		bottom: 0;
	}

	.gNav_sp .btn_gnavi.open {
		position: fixed;
		/* top: 3rem; */
		/* right: 1.5rem; */
		top: 2.3rem;
		right: 3.7rem;
	}

	.gNav_sp .btn_gnavi.open span:nth-of-type(1) {
		transform: translateY(0.5rem) rotate(-45deg);
		background: #ffffff;
	}

	.gNav_sp .btn_gnavi.open span:nth-of-type(2) {
		opacity: 0;
	}

	.gNav_sp .btn_gnavi.open span:nth-of-type(3) {
		transform: translateY(-0.2rem) rotate(45deg);
		background: #ffffff;
	}

	.gNav_sp #global_navi {
		position: fixed;
		z-index: 99;
		top: 0;
		right: -70rem;
		overflow-y: scroll;
		width: 100%;
		/* height: 39.3rem; */
		height: 100%;
		margin: auto;
		background: #1F233A;
		/* height: 100vh; */
		/* overflow: hidden; */
	}

	.menu {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin-right: 0rem;
		padding-top: 2.4rem;
		padding-left: 3rem;
		color: #ffffff;

		gap: 1.6rem;
	}


	/* .menu_middle {
		width: 100%;
		margin-top: 2.4rem;
		margin-bottom: 9.5rem;
		padding-left: 3rem;
	}

	.menu_middle_text {
		display: flex;
		flex-direction: column;
		width: 100%;
		color: #ffffff;
		font-size: 1.2rem;
		line-height: 1.7rem;

		gap: 1rem;
	} */
}