@charset "utf-8";
/* CSS Document */

/* PC時からハンバーガーメニューの場合は#sp_boxのみ削除  */
#open_menu {
	display: none;
}

/*****************************************************************

	色の設定

******************************************************************/
/* ハンバーガーメニューの線 */
#spicon span {
	border-bottom: 2px solid #ffffff;
}

/* ハンバーガーメニュー【MENU】のテキスト色（いらない場合はdisplay:none;） */

/* 開閉後、ハンバーガーメニューの色を変更する場合 */
#spicon.m_active span:nth-child(1) {
	/*border-color: #FFF;*/
}

#spicon.m_active span:nth-child(3) {
	/*border-color: #FFF;*/
}

#spicon.m_active:before {
	/*color: #FFF;*/
}

/* 開閉後の背景の色 */
#center_box {
	background-color: #FBF7EF;
}

/* テキストメニューの色 */
.page_link>li>a {
	color: #231815;
}

/** リンクをホバーした後の色 **/
.page_link a:hover {
	color: #900F1B;
}

/**************************************
	ハンバーガーアイコン
***************************************/

#spicon {
	position: fixed;
	right: 50px;
	top: 25px;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	width: 55px;
	height: 55px;
	z-index: 9999;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #231815;
	padding: 17px 15px;
	border-radius: 50%;
}

#spicon span {
	width: 100%;
	height: 2px;
	transition: all .4s;
}

/* ボタンを押した後のボタンのスタイル */
#spicon.m_active span:nth-child(1) {
	transform: translateY(10px) rotate(-45deg);
}

#spicon.m_active span:nth-child(2) {
	opacity: 0;
}

#spicon.m_active span:nth-child(3) {
	transform: translateY(-9px) rotate(-135deg);
}



/**************************************
	メニューオープン
***************************************/


#open_menu {
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	z-index: 9990;
	top: 0;
	left: 0;
	width: 100%;
}


/***********/

#center_box {
	/* text-align:center; */
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	margin: 0;
	height: 100%;
	display: block;
	overflow-y: scroll;
	/* padding:180px 0; */
	/* width: 600px; */
}

#close {
	position: absolute;
	text-align: center;
	bottom: -20px;
	left: 0;
	width: 100%;
	color: #21ceb2;
	font-size: 20px;
}

/**************************************
	MENUの中身
***************************************/

.m_width {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}


.page_link>li>a {
	text-decoration: none;
	position: relative;
	display: block;
	font-size: clamp(24px, 2.6vw, 32px);
	z-index: 500;
	line-height: 1.3em;
	padding: 20px 0 20px 0;
	font-family: "ZenOldMincho-Black", sans-serif;
}

.page_link li {
	position: relative;
}

.sp_ja {
	display: block;
	font-size: 16px;
	color: #900F1B;
	font-family: "Handel-Gothic-D-Bold", sans-serif;
}

.page_link {
	text-align: left;
}

.page_link a {
	transition: 0.3s ease;
}

/* 追加 */
.menu_flex {
	display: flex;
}

.menu__flex__left {
	width: 60%;
	height: 100vh;
}

.menu__flex__left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.menu__right {
	width: 40%;
	/* width: 100%; */
	padding: 6vw 4vw;
	height: 100vh;
}

.menu__info_flex {
	display: flex;
	gap: 10px;
}

.menu_tel {
	font-size: 26px;
	font-family: "Handel-Gothic-D-Bold", sans-serif;
	letter-spacing: 0.1em;
}

.tel_icon {
	position: relative;
	top: 10px;
}

.menu_holiday {
	background-color: #A52123;
	color: #fff;
	padding: 3px 8px;
	margin-left: 10px;
}

.menu__info {
	border-top: 1px solid #A52123;
	margin-top: 60px;
}

@media only screen and (max-width: 1300px) {
	.menu__right {
		width: 52%;
	  }
}
@media only screen and (max-width: 1200px) {
	#spicon {
		right: 30px;
	}
}


@media only screen and (max-width: 1024px) {
	#sp_box {
		display: block;
	}

	/**************************************
	MENUの中身
***************************************/
	.menu__flex__left {
		width: 40%;
		height: 100vh;
	}

	.menu__right {
		width: 64%;
		/* width: 100%; */
		padding: 12vw 4vw;
	}


	.page_link>li>a {
		padding: 15px 0 15px;
	}

	/* #center_box {
		width: 400px;
	} */

}

@media only screen and (max-width: 740px) {
	/**************************************
	ハンバーガーアイコン
***************************************/

	#spicon {
		position: fixed;
		right: 20px;
		top: 20px;
	}

	.menu__right {
		width: 100%;
		padding: 20vw 6vw;
	}

	.menu__flex__left {
		width: 0;
	}

	#center_box {
		width: 90%;
	}

	/**************************************
	MENUの中身
***************************************/




}