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

	SPハンバーガーボタン

================================================================================ */
@media (max-width: 767px) {

	/* ログイン対策 */
	body.customize-support .toggle,
	body.customize-support .toggleWrap {
		margin-top: 46px;
	}


	/* ハンバーガーボタン
	-------------------------------------------------------- */
	.toggle {
		display: block;
		text-align: center;
		background-color: #9FB7FF;
		width: 12.9vw;
		height: 12vw;
		position: fixed;
		top: 4vw;
		right: 4.5vw;
		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;
	}

	/* ログイン対策 */
	body.customize-support .toggle {
		margin-top: 46px;
	}

	.trigger,
	.trigger span {
		display: inline-block;
		-webkit-transition: all .4s;
		transition: all .4s;
	}
	.trigger {
		position: relative;
		width: 55%;
		height: 20px;
	}
	.trigger span {
		position: absolute;
		background-color: #fff;
		left: 0;
		width: 100%;
		height: 2px;
	}
	.trigger span:nth-of-type(1) {
		top: 0;
	}
	.trigger span:nth-of-type(2) {
		top: 9px;
	}
	.trigger span:nth-of-type(2)::after {
		position: absolute;
		background-color: #fff;
		top: 0;
		left: 0;
		content: '';
		width: 100%;
		height: 2px;
		-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);
	}


	/* メニュー画面
	-------------------------------------------------------- */
	.toggleWrap {
		position: fixed;
		background-color: #3a58b2;
		color: #262626;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		opacity: 0;
		z-index: 9997;
		line-height: 1.3;
		letter-spacing: 0.1em;
		font-family: paralucent, 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
	}
	.toggleWrap_in {
		margin-top: 11vw;
	}
	
	
	.toggleWrap_in > ul.mainNav li a:before {
		content: '';
		background: url(../img/navi-before.png) center top / 2vw 2vw no-repeat;
		width: 2vw;
		height: 2vw;
		position: absolute;
		z-index: 1;
		margin: 2.5vw 0 0 -6vw;
	}
	

	.animation {
		opacity: 1;
	}

	.mainNav > li {
		/*border-bottom: 1px solid #fff;*/
	}
	.mainNav > li:first-of-type {
		/*border-top: 1px solid #fff;*/
	}
	.mainNav > li.pushy-submenu > button {
		font-family: inherit; /* buttonバグ対策 */
	}
	.mainNav > li > a,
	.mainNav > li.pushy-submenu > button {
		display: inline-block;
		text-decoration: none;
		padding: 4.5vw 0;
		text-align: left;
		font-size: 5vw;
		font-weight: 400;
		color: #fff;
		margin-left: 19vw;
	}
	.navi_blog_date {
		font-size: 0.8em;
		margin: -0.3em 0 0 0;
	}
	
	
	/* 電話番号
	-------------------------------------------------------- */
	.navi_bottom {
		margin-left: 18vw;
		margin-top: 7vw;
	}
	.navi_bottom li img {
		width: 100%;
	}
	.navi_bottom li:first-of-type {
		margin-right: 6vw;
		float: left;
		width: 12vw;
	}
	.navi_bottom li:last-of-type {
		float: left;
		width: 12vw;
	}


	/* メニューを閉じる時のスタイル
	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;
	}


}