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

	ハンバーガーボタン

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

/* PC非表示
----------------------------------------------- */
@media (min-width: 768px) {
	.menu-btn {
		display: none;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.menu-btn {
		position: fixed;
		border: 0;
		text-align: center;
		width: 40px;
		height: 40px;
		top: 4px;
		right: 4px;
		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: 100;
		opacity: 1;
		transition-property: opacity;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}
	.menu-btn:hover {
		opacity: 0.8;
	}
	/* ログイン対策 */
	body.customize-support .menu-btn {
		margin-top: 46px;
	}

	.trigger,
	.trigger span {
		display: inline-block;
		-webkit-transition: all .4s;
		transition: all .4s;
	}
	.trigger {
		position: relative;
		width: 24px;
		height: 15px;
	}
	.trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		border-radius: 4px;
	}
	.trigger span:nth-of-type(1) {
		top: 0;
	}
	.trigger span:nth-of-type(2) {
		top: 7px;
	}
	.trigger span:nth-of-type(2)::after {
		position: absolute;
		top: 0;
		left: 0;
		content: '';
		width: 100%;
		height: 1px;
		border-radius: 4px;
		-webkit-transition: all .4s;
		transition: all .4s;
	}
	.trigger span:nth-of-type(3) {
		bottom: 0;
	}
}



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

	Pushy

================================================================================ */
/*! Pushy - v1.1.0 - 2017-1-30
* Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions.
* https://github.com/christophery/pushy/
* by Christopher Yee */
/* Menu Appearance */
.pushy {
	position: fixed;
	width: 220px;
	height: 100%;
	top: 0;
	z-index: 9999;
	background: rgba(255,255,255,0.9);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	/* enables momentum scrolling in iOS overflow elements */
}
/* ログイン対策 */
body.customize-support .pushy {
	margin-top: 46px;
}

.pushy a {
	position: relative;
	display: block;
	font-size: 15px;
	font-weight: 400;
	padding: 10px 32px 10px 16px;
	text-decoration: none;
}
.pushy a:hover {
}

.pushy ul:first-child {
	margin-top: 4px;
}
.pushy.pushy-left {
	left: 0;
}
.pushy.pushy-right {
	right: 0;
}

.pushy-content {
	visibility: hidden;
}

/* Menu Movement */
.pushy-left {
	-webkit-transform: translate3d(-220px, 0, 0);
	-ms-transform: translate3d(-220px, 0, 0);
	transform: translate3d(-220px, 0, 0);
}

.pushy-open-left #container,
.pushy-open-left .push {
	-webkit-transform: translate3d(220px, 0, 0);
	-ms-transform: translate3d(220px, 0, 0);
	transform: translate3d(220px, 0, 0);
}

.pushy-right {
	-webkit-transform: translate3d(220px, 0, 0);
	-ms-transform: translate3d(220px, 0, 0);
	transform: translate3d(220px, 0, 0);
}

.pushy-open-right #container,
.pushy-open-right .push {
	-webkit-transform: translate3d(-220px, 0, 0);
	-ms-transform: translate3d(-220px, 0, 0);
	transform: translate3d(-220px, 0, 0);
}

.pushy-open-left .pushy,
.pushy-open-right .pushy {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.pushy-open-left .pushy-content,
.pushy-open-right .pushy-content {
	visibility: visible;
}

/* Menu Transitions */
#container,
.pushy,
.push {
	transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-content {
	transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

/* Site Overlay */
.site-overlay {
	display: none;
}

.pushy-open-left .site-overlay,
.pushy-open-right .site-overlay {
	display: block;
	position: fixed;
	margin-top: 0;
	right: 0;
	left: 0;
	z-index: 9998;
	background: rgba(0,0,0,0.6);
	-webkit-animation: fade 500ms;
	animation: fade 500ms;
	width: 100%;
	height: 100%;
}
.pushy-open-left .site-overlay p,
.pushy-open-right .site-overlay p{
	cursor: pointer;
	font-size: 32px;
	line-height: 1;
	padding: 8px;
}

@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* Submenu Appearance */
.pushy-submenu {
	/* Submenu Buttons */
	/* Submenu Icon */
}
.pushy-submenu ul {
	padding-left: 15px;
	transition: max-height 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.pushy-submenu ul li {
	transition: opacity 0.2s ease-in-out;
}
.pushy-submenu button {
	width: 100%;
	padding: 15px 30px;
	text-align: left;
	background: transparent;
	border: 0;
}
.pushy-submenu button:hover {
	color: #FFF;
}
.pushy-submenu > a,
.pushy-submenu > button {
	position: relative;
}
.pushy-submenu > a::after,
.pushy-submenu > button::after {
	content: '';
	display: block;
	height: 11px;
	width: 8px;
	position: absolute;
	top: 50%;
	right: 15px;
	background: url("../img/arrow.svg") no-repeat;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: transform 0.2s;
}

/* Submenu Movement */
.pushy-submenu-closed ul {
	max-height: 0;
	overflow: hidden;
	visibility: hidden;
}
.pushy-submenu-closed li {
	opacity: 0;
}

.pushy-submenu-open {
	/* Submenu Icon */
}
.pushy-submenu-open ul {
	max-height: 1000px;
	visibility: visible;
}
.pushy-submenu-open li {
	opacity: 1;
}
.pushy-submenu-open a::after,
.pushy-submenu-open button::after {
	-webkit-transform: translateY(-50%) rotate(90deg);
	-ms-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
}

/*# sourceMappingURL=pushy.css.map */





/* サブメニュー背景色
----------------------------------------------- */
.pushy-submenu ul{
	background-color: #eeeeee;
}


/* ボタン
----------------------------------------------- */
.pushy-content ul li a:after {
	content: "\f345";
	font-family: "dashicons";
	position: absolute;
	right: 12px;
	top: 12px;
}



/* TELボタン
----------------------------------------------- */
.pushy li.pushy-tel a {
	margin-top:4px;
	text-shadow: none;
	margin-bottom: 1px;
}

/* MAPボタン
----------------------------------------------- */
.pushy li.pushy-map a {
	text-shadow: none;
}
