/* ================================================================================

	ログイン対策

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* ハンバーガーボタン */
	body.customize-support .toggle {
		margin-top: 32px;
	}

	/* 中身 */
	body.customize-support .toggleWrap {
		margin-top: 32px;
		height: calc( 100% - 32px );
	}
}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* ハンバーガーボタン */
	body.customize-support .toggle {
		margin-top: 46px;
	}

	/* 中身 */
	body.customize-support .toggleWrap {
		margin-top: 46px;
		height: calc( 100% - 46px );
	}

}




/* ================================================================================

	ハンバーガーボタン

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
	.toggle {
		display: block;
		background-color: rgba(26,23,18,0.8);
		text-align: center;
		width: 6.5vw;
		height: 6.5vw;
		position: fixed;
		top: 2.1vw;
		right: 2.1vw;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		cursor: pointer;
		z-index: 9998;
	}

	.trigger,
	.trigger span {
		display: inline-block;
		-webkit-transition: all .4s;
		transition: all .4s;
	}
	.trigger {
		position: relative;
		width: 55%;
		height: 33%;
	}
	.trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #d5c7b4;
	}
	.trigger span:nth-of-type(1) {
		top: 0;
	}
	.trigger span:nth-of-type(2) {
		top: 42.5%;
	}
	.trigger span:nth-of-type(2)::after {
		position: absolute;
		top: 0;
		left: 0;
		content: '';
		width: 100%;
		height: 1px;
		background-color: #d5c7b4;
		-webkit-transition: all .4s;
		transition: all .4s;
	}
	.trigger span:nth-of-type(3) {
		bottom: 0;
	}
	
	
}




/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	.toggle {
		display: block;
		background-color: rgba(26,23,18,0.8);
		text-align: center;
		width: 13vw;
		height: 13vw;
		position: fixed;
		top: 4vw;
		right: 4vw;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		cursor: pointer;
		z-index: 9998;
	}

	.trigger,
	.trigger span {
		display: inline-block;
		-webkit-transition: all .4s;
		transition: all .4s;
	}
	.trigger {
		position: relative;
		width: 55%;
		height: 33%;
	}
	.trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #d5c7b4;
	}
	.trigger span:nth-of-type(1) {
		top: 0;
	}
	.trigger span:nth-of-type(2) {
		top: 42%;
	}
	.trigger span:nth-of-type(2)::after {
		position: absolute;
		top: 0;
		left: 0;
		content: '';
		width: 100%;
		height: 1px;
		background-color: #d5c7b4;
		-webkit-transition: all .4s;
		transition: all .4s;
	}
	.trigger span:nth-of-type(3) {
		bottom: 0;
	}
	
	
}





/* ================================================================================

	ハンバーガーボタンのアニメーション
	※使いたいものをコメントアウトから外してください。

================================================================================ */

/* ①オーソドックス
-------------------------------------------------------- */
.trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(8px) scale(0);
	transform: translateY(8px) scale(0);
}
.trigger.active span:nth-of-type(2) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.trigger.active span:nth-of-type(2)::after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) scale(0);
	transform: translateY(-8px) scale(0);
}



/* ================================================================================

	ハンバーガーメニューの中身 PC

================================================================================ */

/* PC設定
-------------------------------------------------------- */
@media screen and (min-width: 768px) {
	
	.toggleWrap {
		position: fixed;
		background-color: rgba(26,23,18,0.9);
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		overflow-y:auto;
		z-index: 9997;
		opacity: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.toggleWrap.toggleWrap_pc {
		display: none;
	}

	.animation {
		opacity: 1;
	}

	.mainNav > li {
	}
	.mainNav > li.pushy-submenu > button {
		font-family: inherit; /* buttonバグ対策 */
	}
	.mainNav > li > a,
	.mainNav > li.pushy-submenu > button {
		display: block;
		text-decoration: none;
		color: #d5c7b4;
		padding: 1vw 0;
		text-align: center;
		font-size: 1.6vw;
		font-weight: 500;
	}


	/* メニューを閉じる時のスタイル
	display:none; を使用せず、opacityを使うとfadeっぽくなる
	-------------------------------------------------------- */
	.hide {
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
	}

	/* アニメーションはメニューの開閉時のみでいいので
	.toggleWrapに書かず、別にclassを用意
	-------------------------------------------------------- */
	.animation {
		-webkit-transition-property: opacity, visibility;
		transition-property: opacity, visibility;
		-webkit-transition-duration: .3s;
						transition-duration: .3s;
		-webkit-transition-timing-function: ease-in;
						transition-timing-function: ease-in;
	}

	/* メニューオープン時のみ、メニューの後ろのコンテンツをスクロールさせない
	iOS safariには別途対応が必要（jQueryに記述）
	-------------------------------------------------------- */
	.no-scroll {
		overflow: hidden;
	}
	
	
}




/* ================================================================================

	ハンバーガーメニューの中身 SP

================================================================================ */

/* SP設定
------------------------------------------- */
@media (max-width: 767px) {

	.toggleWrap {
		position: fixed;
		background-color: rgba(26,23,18,0.9);
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		overflow-y:auto;
		z-index: 9997;
		opacity: 0;
	}
	.toggleWrap.toggleWrap_pc {
		display: none;
	}

	.animation {
		opacity: 1;
	}

	.mainNav {
		padding: 20vw 0 0;
	}
	.mainNav > li {
		
	}
	.mainNav > li.pushy-submenu > button {
		font-family: inherit; /* buttonバグ対策 */
	}
	.mainNav > li > a,
	.mainNav > li.pushy-submenu > button {
		display: block;
		text-decoration: none;
		color: #d5c7b4;
		padding: 3vw 0;
		text-align: center;
		font-size: 4.3vw;
		font-weight: 500;
	}


	/* 電話・地図
	-------------------------------------------------------- */
	.mainNavBottom {
		width: 32vw;
		margin: 5vw auto 0;
	}
	.mainNavBottom > li:first-of-type {
		float: left;
	}
	.mainNavBottom > li:last-of-type {
		float: right;
	}
	.mainNavBottom > li:first-of-type {
	}
	.mainNavBottom > li > a {
		display: block;
		text-decoration: none;
		color: #000000;
		text-align: center;
		width: 12vw;
	}
	.mainNavBottom > li > a img {
		width: 100%;
	}


	/* メニューを閉じる時のスタイル
	display:none; を使用せず、opacityを使うとfadeっぽくなる
	-------------------------------------------------------- */
	.hide {
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
	}

	/* アニメーションはメニューの開閉時のみでいいので
	.toggleWrapに書かず、別にclassを用意
	-------------------------------------------------------- */
	.animation {
		-webkit-transition-property: opacity, visibility;
		transition-property: opacity, visibility;
		-webkit-transition-duration: .3s;
						transition-duration: .3s;
		-webkit-transition-timing-function: ease-in;
						transition-timing-function: ease-in;
	}

	/* メニューオープン時のみ、メニューの後ろのコンテンツをスクロールさせない
	iOS safariには別途対応が必要（jQueryに記述）
	-------------------------------------------------------- */
	.no-scroll {
		overflow: hidden;
	}

}