@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;
	letter-spacing: 0.05em;
}


/* --------------------------------------------------------------------------------
	ヘッダー
-------------------------------------------------------------------------------- */
#header-nyb {
	background: #ffffff;
	border-bottom: 1px solid #bbbaba;
}

#header-nyb .header-inner {
	display: flex;
	flex-wrap: wrap;

	max-width: 1248px;
	padding: 0 38px 0 12px;
	margin: 0 auto;
}

#header-nyb .header-inner a {
	color: #000000;
}

#header-nyb .header-inner a:visited {
	color: #000000;
}


/********** ロゴ **********/
#header-nyb .h-logo {
	width: 500px;
	margin: 0 auto;
	padding: 34px 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-logo ul.logo-box {
	display: flex;
	align-items: center;
}
#header-nyb .h-logo ul.logo-box .logo-fatwitchnewyork {
	width: 59%;
	padding: 0 5% 0 0;
	border-right: 1px solid #5E5A58;
}
#header-nyb .h-logo ul.logo-box .logo-babkacadabra {
	width: 41%;
	padding: 0 0 0 5%;
}


/********** ハンバーガーボタン **********/
#header-nyb #h-btn-ham-btn {
	position: absolute;
	top: 40px;
	right: 50px;
	cursor: pointer;

	width: 50px;
	height: 40px;
}

#header-nyb #h-btn-ham-btn .h-btn-close-marks {
	position: relative;
	
	width: 50px;
	height: 40px;
}
#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((40px - 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;
	z-index: 100;
	
	width: 50%;
	max-width: 560px;
	height: 100%;
	background: #F9F9F9;
	
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	
	display: none;
}
#header-nyb .h-menu .h-menu-wrapper {
	padding: 90px 30px 30px;
}
#header-nyb .h-menu .h-menu-nav-box {
	padding: 0 0 10px;
}
#header-nyb .h-menu .h-menu-nav-box:last-child {
	padding: 0;
}
#header-nyb .h-menu .h-menu-nav .heading {
	margin: 0 0 20px;
	padding: 10px 0;
	border-bottom: solid 1px #bbbaba;
	font-size: 32px;
}
#header-nyb .h-menu .h-menu-nav ul li {
	padding: 0 0 10px;
	text-align: center;
}

#header-nyb .h-menu .h-menu-nav ul li a {
	display: block;
	padding:10px 20px 20px;
}
#header-nyb .h-menu .h-menu-nav ul li.logo-fatwitchnewyork .h-menu-logo {
	width: 50%;
	max-width: 300px;
	margin: 0 auto;
}
#header-nyb .h-menu .h-menu-nav ul li.logo-babkacadabra .h-menu-logo {
	width: 35%;
	max-width: 250px;
	margin: 0 auto;
}


/* --------------------------------------------------------------------------------
	閉じるボタン（×ボタン）
-------------------------------------------------------------------------------- */
#header-nyb #h-btn-close-btn {
	position: absolute;
	top: 40px;
	right: 50px;
	z-index: 10;

	margin: 0 auto;
	width: 40px;
	height: 40px;
	
	padding: 0;
	cursor: pointer;
	transform: unset;
}
#header-nyb #h-btn-close-btn .h-btn-close-marks {
	position: absolute;
	width: 40px;
	height: 40px;
	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: 50px; /* 棒の高さ */
	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);
}




/* --------------------------------------------------------------------------------
	フッター
-------------------------------------------------------------------------------- */
#ym-footer .footer-contents-list {
	background: #fff;
}
