@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');


/* --------------------------------------------------------------------------------
	ヘッダー
-------------------------------------------------------------------------------- */
.font-inter {
	font-family: "Inter", sans-serif;
	font-weight: 500;
}


/* --------------------------------------------------------------------------------
	ヘッダー
-------------------------------------------------------------------------------- */
#header-nyb {
	position: relative;
	background: #eeebe1;
}

#header-nyb .header-inner {
}

/********** ロゴ **********/
#header-nyb .h-logo {
	width: 46%;
	margin: 0 auto;
	padding: 8.5vw 0;
}
#header-nyb .h-logo h1 {
	margin: 0;
}
#header-nyb .h-logo a {
	display: block;
}
#header-nyb .h-logo img {
	display: block;
	width: 100%;
	height: auto;
}


/********** ハンバーガーボタン **********/
#header-nyb #h-btn-ham-btn {
	position: absolute;
	top: 8vw;
	right: 10.2vw;
	cursor: pointer;

	width: 7vw;
	height: 6vw;
}

#header-nyb #h-btn-ham-btn .h-btn-close-marks {
	position: relative;
	
	width: 7vw;
	height: 6vw;
}
#header-nyb #h-btn-ham-btn span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #000;

	display: inline-block;
	transition: all 0.5s;
	box-sizing: border-box;
}

#header-nyb #h-btn-ham-btn span:nth-of-type(1) {
	top: 0;
}

#header-nyb #h-btn-ham-btn span:nth-of-type(2) {
	top: calc((6vw - 2px) / 2);
}

#header-nyb #h-btn-ham-btn span:nth-of-type(3) {
	bottom: 0;
}


/* --------------------------------------------------------------------------------
	h-menu
-------------------------------------------------------------------------------- */
#header-nyb .h-menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	
	width: 100%;
	height: 100%;
	background: #eeebe1;
	
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	
	display: none;
}
#header-nyb .h-menu .h-menu-wrapper {
	padding: 15vw 5vw 5vw;
}
#header-nyb .h-menu .h-menu-nav-box {
	padding: 0 0 5vw;
}
#header-nyb .h-menu .h-menu-nav-box:last-child {
	padding: 0;
}
#header-nyb .h-menu .h-menu-nav .heading {
	margin: 0 0 2vw;
	padding: 0.5vw 0;
	border-bottom: solid 1px #bbbaba;
	font-size: 5vw;
}
#header-nyb .h-menu .h-menu-nav ul li {
	padding: 0 2vw 1vw;
}
#header-nyb .h-menu .h-menu-nav ul li a {
	display: block;
	padding: 2vw;
	font-size: 4vw;
}




/* --------------------------------------------------------------------------------
	閉じるボタン（×ボタン）
-------------------------------------------------------------------------------- */
#header-nyb #h-btn-close-btn {
	position: absolute;
	top: 7.5vw;
	right: 10.2vw;
	z-index: 10;

	margin: 0 auto;
	width: 7vw;
	height: 7vw;
	
	padding: 0;
	cursor: pointer;
	transform: unset;
}
#header-nyb #h-btn-close-btn .h-btn-close-marks {
	position: absolute;
	width: 7vw;
	height: 7vw;
	top: 0;
	right: 0;
}
#header-nyb #h-btn-close-btn .h-btn-close-marks span { /* 共通設定 */
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px; /* 棒の幅（太さ） */
	height: 8vw; /* 棒の高さ */
	background: #000;
}
#header-nyb #h-btn-close-btn span:nth-of-type(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}
#header-nyb #h-btn-close-btn span:nth-of-type(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}
