@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

@-webkit-keyframes bounce {
	0%,20%,53%,80%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	40%,43% {
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	40%,43%,70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	}
	70% {
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}
@keyframes bounce {
	0%,20%,53%,80%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	40%,43% {
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	40%,43%,70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
	}
	70% {
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}
.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

@-webkit-keyframes flash {
	0%,50%,to {
		opacity: 1;
	}
	25%,75% {
		opacity: 0;
	}
}
@keyframes flash {
	0%,50%,to {
		opacity: 1;
	}
	25%,75% {
		opacity: 0;
	}
}
.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}
@keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}
.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform: scale3d(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}
@keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform: scale3d(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}
.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}

@-webkit-keyframes shake {
	0%,to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	10%,30%,50%,70%,90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,40%,60%,80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}
@keyframes shake {
	0%,to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	10%,30%,50%,70%,90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,40%,60%,80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}
.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}

@-webkit-keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.headShake {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake;
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}
@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}
.swing {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	10%,20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,50%,70%,90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,60%,80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}
@keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	10%,20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,50%,70%,90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,60%,80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}
.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none;
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg);
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg);
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg);
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg);
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none;
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg);
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg);
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg);
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg);
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}

@-webkit-keyframes jello {
	0%,11.1%,to {
		-webkit-transform: none;
		transform: none;
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
		transform: skewX(0.39063deg) skewY(0.39063deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
		transform: skewX(-0.19531deg) skewY(-0.19531deg);
	}
}
@keyframes jello {
	0%,11.1%,to {
		-webkit-transform: none;
		transform: none;
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
		transform: skewX(0.39063deg) skewY(0.39063deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
		transform: skewX(-0.19531deg) skewY(-0.19531deg);
	}
}
.jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center;
}

@-webkit-keyframes bounceIn {
	0%,20%,40%,60%,80%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}
@keyframes bounceIn {
	0%,20%,40%,60%,80%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}
.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes bounceInDown {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes bounceInLeft {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes bounceInRight {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}
.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes bounceInUp {
	0%,60%,75%,90%,to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	40%,45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}
@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	40%,45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}
.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}
@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}
.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	40%,45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}
@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	40%,45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}
.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
@keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}
@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}
.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
@keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}
@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}
.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
@keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}
.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
@keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}
@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}
.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotateY(-1turn);
		transform: perspective(400px) rotateY(-1turn);
	}
	0%,40% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) translateZ(150px) rotateY(-190deg);
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) translateZ(150px) rotateY(-170deg);
	}
	50%,80% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}
@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotateY(-1turn);
		transform: perspective(400px) rotateY(-1turn);
	}
	0%,40% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) translateZ(150px) rotateY(-190deg);
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) translateZ(150px) rotateY(-170deg);
	}
	50%,80% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}
.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip;
}

@-webkit-keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
	0%,40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
	}
	60% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
	0%,40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
	}
	60% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
	0%,40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
	}
	60% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
	0%,40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
	}
	60% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}
.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}
@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}
.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotateY(-15deg);
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}
@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotateY(-15deg);
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}
.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
	}
	60%,80% {
		opacity: 1;
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
	}
	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
	}
	60%,80% {
		opacity: 1;
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
	}
	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
@keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
	0% {
		transform-origin: center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}
	0%,to {
		-webkit-transform-origin: center;
	}
	to {
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateIn {
	0% {
		transform-origin: center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}
	0%,to {
		-webkit-transform-origin: center;
	}
	to {
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
	0%,to {
		-webkit-transform-origin: left bottom;
	}
	to {
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
	0%,to {
		-webkit-transform-origin: left bottom;
	}
	to {
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
	0%,to {
		-webkit-transform-origin: right bottom;
	}
	to {
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
	0%,to {
		-webkit-transform-origin: right bottom;
	}
	to {
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
	0%,to {
		-webkit-transform-origin: left bottom;
	}
	to {
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
	0%,to {
		-webkit-transform-origin: left bottom;
	}
	to {
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
	0%,to {
		-webkit-transform-origin: right bottom;
	}
	to {
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
@keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
	0%,to {
		-webkit-transform-origin: right bottom;
	}
	to {
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
	0% {
		transform-origin: center;
		opacity: 1;
	}
	0%,to {
		-webkit-transform-origin: center;
	}
	to {
		transform-origin: center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}
@keyframes rotateOut {
	0% {
		transform-origin: center;
		opacity: 1;
	}
	0%,to {
		-webkit-transform-origin: center;
	}
	to {
		transform-origin: center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}
.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	0%,to {
		-webkit-transform-origin: left bottom;
	}
	to {
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
}
@keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	0%,to {
		-webkit-transform-origin: left bottom;
	}
	to {
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
}
.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	0%,to {
		-webkit-transform-origin: right bottom;
	}
	to {
		transform-origin: right bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
}
@keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	0%,to {
		-webkit-transform-origin: right bottom;
	}
	to {
		transform-origin: right bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
}
.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	0%,to {
		-webkit-transform-origin: left bottom;
	}
	to {
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
}
@keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	0%,to {
		-webkit-transform-origin: left bottom;
	}
	to {
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
}
.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	0%,to {
		-webkit-transform-origin: right bottom;
	}
	to {
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}
@keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	0%,to {
		-webkit-transform-origin: right bottom;
	}
	to {
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}
.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
	0% {
		transform-origin: top left;
	}
	0%,20%,60% {
		-webkit-transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		transform-origin: top left;
	}
	40%,80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}
@keyframes hinge {
	0% {
		transform-origin: top left;
	}
	0%,20%,60% {
		-webkit-transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		transform-origin: top left;
	}
	40%,80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}
.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge;
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
		transform: translate3d(-100%, 0, 0) rotate(-120deg);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
		transform: translate3d(-100%, 0, 0) rotate(-120deg);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
		transform: translate3d(100%, 0, 0) rotate(120deg);
	}
}
@keyframes rollOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
		transform: translate3d(100%, 0, 0) rotate(120deg);
	}
}
.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50%,to {
		opacity: 0;
	}
}
@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50%,to {
		opacity: 0;
	}
}
.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}
@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}
.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}
@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}
.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
@keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}
.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}
.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
@keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}
.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
@keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}
.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

/**
 * Magnific Popup CSS
 **/
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	cursor: default;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}

.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}

.mfp-preloader {
	color: #cccccc;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}

.mfp-preloader a {
	color: #cccccc;
}

.mfp-preloader a:hover {
	color: white;
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

button.mfp-close, button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	-webkit-box-shadow: none;
	box-shadow: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	filter: alpha(opacity=65);
	padding: 0 0 18px 10px;
	color: white;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
	opacity: 1;
	filter: alpha(opacity=100);
}

.mfp-close:active {
	top: 1px;
}

.mfp-close-btn-in .mfp-close {
	color: #333333;
}

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
	color: white;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #cccccc;
	font-size: 12px;
	line-height: 18px;
}

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	filter: alpha(opacity=65);
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
	opacity: 1;
	filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
	border-right: 17px solid white;
	margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
	margin-left: 25px;
	border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
	border-left: 17px solid white;
	margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
	border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
	top: -40px;
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: black;
}

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
	line-height: 0;
}

.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444444;
}

.mfp-figure small {
	color: #bdbdbd;
	display: block;
	font-size: 12px;
	line-height: 14px;
}

.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #f3f3f3;
	word-wrap: break-word;
	padding-right: 36px;
}

/**
 * customize
 **/
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.75 !important;
}

.mfp-zoom-out-cur.results .mfp-image-holder .mfp-close {
	cursor: pointer;
}

.mfp-zoom-out-cur.results {
	cursor: default !important;
}

.mfp-image-holder .mfp-close {
	cursor: pointer !important;
	top: 28px;
	right: -50px;
	opacity: 1;
	width: 50px;
	height: 50px;
	background: url(../img/parts/modal_close_btn.png) center center no-repeat;
	font-size: 0px;
}
.mfp-image-holder .mfp-close:hover {
	opacity: 0.8;
}

.mfp-ajax-holder .mfp-close {
	cursor: pointer !important;
	top: -17px;
	right: -50px;
	opacity: 1;
	width: 50px;
	height: 50px;
	background: url(../img/parts/modal_close_btn.png) center center no-repeat;
	font-size: 0px;
}
.mfp-ajax-holder .mfp-close:hover {
	opacity: 0.8;
}

.mfp-arrow-left {
	opacity: 1 !important;
	background: url(../img/parts/modal_prev_btn.png) center center no-repeat !important;
}
.mfp-arrow-left:hover {
	opacity: 0.8 !important;
}

.mfp-arrow-right {
	opacity: 1 !important;
	background: url(../img/parts/modal_next_btn.png) center center no-repeat !important;
}
.mfp-arrow-right:hover {
	opacity: 0.8 !important;
}

.mfp-arrow-left:before,
.mfp-arrow-left:after,
.mfp-arrow-right:before,
.mfp-arrow-right:after {
	border: none !important;
}

.mfp-counter {
	display: none;
}

.mfp-bottom-bar {
	margin-top: -26px;
}

.mfp-title {
	line-height: 1.5;
	color: #fff;
	font-size: 1.3rem;
	font-size: 13px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

@media only screen and (max-width: 1024px) {
	.mfp-figure {
		padding-left: 10px;
		padding-right: 10px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	.mfp-image-holder .mfp-close {
		top: -10px;
		right: -2px;
		background: url(../img/parts/sp/modal_close_btn.png) center center no-repeat;
		background-size: 25px 25px;
	}

	.mfp-ajax-holder .mfp-close {
		top: -48px;
		right: -2px;
		background: url(../img/parts/sp/modal_close_btn.png) center center no-repeat;
		background-size: 25px 25px;
	}

	.mfp-arrow-left, .mfp-arrow-right {
		display: none !important;
	}
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	/**
			 * Remove all paddings around the image on small screen
			 */
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}

	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}

	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}

	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}

	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}

	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}

	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}
@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}

	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0;
	}

	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%;
	}

	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}
.mfp-ie7 .mfp-img {
	padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
	width: 600px;
	left: 50%;
	margin-left: -300px;
	margin-top: 5px;
	padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
	padding: 0;
}

.mfp-ie7 .mfp-content {
	padding-top: 44px;
}

.mfp-ie7 .mfp-close {
	top: 0;
	right: 0;
	padding-top: 0;
}

/**
 * Animation
 **/
/* overlay at start */
.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

/*! normalize.css v2.1.2 | MIT License | git.io/normalize */
/* ==========================================================================
	 HTML5 display definitions
	 ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
	display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
	display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
	display: none;
	height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
[hidden] {
	display: none;
}

/* ==========================================================================
	 Base
	 ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *		user zoom.
 */
html {
	font-family: sans-serif;
	/* 1 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/**
 * Remove default margin.
 */
body {
	margin: 0;
}

/* ==========================================================================
	 Links
	 ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
	outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
	outline: 0;
}

/* ==========================================================================
	 Typography
	 ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
	border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
	font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
	font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
	background: #ff0;
	color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
	white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
q {
	quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

/* ==========================================================================
	 Embedded content
	 ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
	border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
	overflow: hidden;
}

/* ==========================================================================
	 Figures
	 ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
	margin: 0;
}

/* ==========================================================================
	 Forms
	 ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
	border: 0;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
	font-family: inherit;
	/* 1 */
	font-size: 100%;
	/* 2 */
	margin: 0;
	/* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
	line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
	text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *		and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *		`input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	/* 2 */
	cursor: pointer;
	/* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
	cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *		(include `-moz` to future-proof).
 */
input[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	/* 2 */
	box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
	overflow: auto;
	/* 1 */
	vertical-align: top;
	/* 2 */
}

/* ==========================================================================
	 Tables
	 ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*! original.css v1.0.0 | MIT License */
/* ==========================================================================
	 set original style with normalize.css

	 ※補足
		'img'が縦に並ぶ際、画像の高さが低いものに関して、隙間が生じる場合がある。
		その際は'line-height'、'font-size'が影響している。
		各エレメントに対して必要に応じてリセット。
	 ========================================================================== */
/**
 * set font-size
 */
html {
	font-size: 62.5%;
	/* equal '10px' */
	font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

/**
 * set original style
 */
body {
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
}

h1 {
	margin: 0;
	font-size: 100%;
}

h2 {
	margin: 0;
	font-size: 100%;
}

h3 {
	margin: 0;
	font-size: 100%;
}

h4 {
	margin: 0;
	font-size: 100%;
}

h5 {
	margin: 0;
	font-size: 100%;
}

h6 {
	margin: 0;
	font-size: 100%;
}

p {
	margin: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

dl {
	margin: 0;
}

dd {
	margin: 0;
}

input[type="text"], input[type="tel"], input[type="email"], textarea {
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

input[type="submit"] {
	outline: none;
}

table {
	word-break: break-all;
}

small {
	font-size: 100%;
}

/**
 * clean up extra space on 'img'
 */
img {
	vertical-align: top;
}

/**
 * delete focus outline
 */
area, area:focus {
	outline: none;
}

/**
 * delete focus outline for 'firefox'
 */
a, a:focus {
	outline: none;
}

object, embed, video {
	outline: none;
}

/**
 * clearfix
 */
.cf:before,
.cf:after {
	content: "";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	zoom: 1;
}

/* for ie6, 7 */
/**
 * structure
 */
html, body {
	height: 100%;
}

body {
	position: relative;
	line-height: 1.5;
	background-color: #fff;
	color: #000;
}

a {
	text-decoration: none;
}

#header-all {
	position: relative;
	z-index: 5;
	width: 100%;
	height: 156px;
	background-image: url(../img/common/header_bg.png);
	background-position: center top;
	background-repeat: no-repeat;
}

#header {
	position: relative;
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}

#gnav-train {
	position: absolute;
	top: 100px;
	left: 187px;
	-webkit-transition: 0.5s ease 0s;
	-moz-transition: 0.5s ease 0s;
	-o-transition: 0.5s ease 0s;
	-ms-transition: 0.5s ease 0s;
	transition: 0.5s ease 0s;
}

#header .language {
	position: absolute;
  top: 25px;
  right: 0px;
}
#header .language ul li {
    float: left;
}
#header .language ul li:first-child{
	margin-right: 7px;
}

.gnav0 {
	/*-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);*/
}

.gnav1 {
	-webkit-transform: translate3d(94px, 0, 0);
	-moz-transform: translate3d(94px, 0, 0);
	-o-transform: translate3d(94px, 0, 0);
	-ms-transform: translate3d(94px, 0, 0);
	transform: translate3d(94px, 0, 0);
}

.gnav2 {
	-webkit-transform: translate3d(251px, 0, 0);
	-moz-transform: translate3d(251px, 0, 0);
	-o-transform: translate3d(251px, 0, 0);
	-ms-transform: translate3d(251px, 0, 0);
	transform: translate3d(251px, 0, 0);
}

.gnav3 {
	-webkit-transform: translate3d(406px, 0, 0);
	-moz-transform: translate3d(406px, 0, 0);
	-o-transform: translate3d(406px, 0, 0);
	-ms-transform: translate3d(406px, 0, 0);
	transform: translate3d(406px, 0, 0);
}

.gnav4 {
	-webkit-transform: translate3d(563px, 0, 0);
	-moz-transform: translate3d(563px, 0, 0);
	-o-transform: translate3d(563px, 0, 0);
	-ms-transform: translate3d(563px, 0, 0);
	transform: translate3d(563px, 0, 0);
}

.gnav5 {
	-webkit-transform: translate3d(700px, 0, 0);
	-moz-transform: translate3d(700px, 0, 0);
	-o-transform: translate3d(700px, 0, 0);
	-ms-transform: translate3d(700px, 0, 0);
	transform: translate3d(700px, 0, 0);
}

#cover-bg {
	position: absolute;
	top: 46px;
	left: -1px;
	width: 271px;
	height: 156px;
	background-image: url(../img/common/header_ci_bg.png);
	background-position: left top;
	background-repeat: no-repeat;
}

#header-ci {
	position: relative;
	width: 271px;
	height: 156px;
}
#header-ci a {
	position: absolute;
	top: 46px;
	left: 45px;
	display: block;
	width: 158px;
	height: 81px;
}
#header-ci h1 {
	position: absolute;
	top: 65px;
	left: 0;
	width: 158px;
	height: 16px;
	background-image: url(../img/common/header_ci_text.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

.header-ci .mark {
	position: absolute;
	top: 0;
	left: 49px;
	width: 60px;
	height: 58px;
	background-image: url(../img/common/header_ci_mark.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
	opacity: 1;
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-o-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
	-webkit-transition: 0.5s ease 0s;
	-moz-transition: 0.5s ease 0s;
	-o-transition: 0.5s ease 0s;
	-ms-transition: 0.5s ease 0s;
	transition: 0.5s ease 0s;
}
.header-ci .mark.on {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	transform: rotateY(180deg);
}
.header-ci .mark.on.end {
	opacity: 0;
}
.header-ci .mark-roll .roll-01 {
	position: absolute;
	top: 0;
	left: 47px;
}
.header-ci .mark-roll .roll-02 {
	position: absolute;
	top: 0;
	left: 49px;
}
.header-ci .mark-roll div {
	display: none;
}
.header-ci .mark-roll .active {
	display: block;
	opacity: 0;
	-webkit-transition: opacity 0.7s ease-out 0s;
	-moz-transition: opacity 0.7s ease-out 0s;
	-o-transition: opacity 0.7s ease-out 0s;
	-ms-transition: opacity 0.7s ease-out 0s;
	transition: opacity 0.7s ease-out 0s;
}
.header-ci .mark-roll.on .active {
	opacity: 1;
}

#gnav {
	position: absolute;
	top: 63px;
	left: 280px;
}
#gnav ul li {
	float: left;
}
#gnav ul li ~ li {
	margin-left: 43px;
}
#gnav ul a {
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
}
#gnav ul a:hover span {
	background-position: 0 -15px;
}
#gnav ul span {
	display: block;
	height: 15px;
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#gnav ul .active span {
	background-position: 0 -15px;
}
#gnav ul li:nth-of-type(1) span {
	width: 84px;
	background-image: url(../img/common/gnav_timetable_txt.png);
}
#gnav ul li:nth-of-type(2) span {
	position: relative;
	top: -1px;
	width: 141px;
	background-image: url(../img/common/gnav_about_txt.png);
}
#gnav ul li:nth-of-type(3) span {
	width: 83px;
	background-image: url(../img/common/gnav_service_txt.png);
}
#gnav ul li:nth-of-type(4) span {
	width: 148px;
	background-image: url(../img/common/gnav_view-spot_txt.png);
}
#gnav ul li:nth-of-type(5) span {
	width: 42px;
	background-image: url(../img/common/gnav_reserve_txt.png);
}

#sp-close {
	display: none;
}

#sp-menu {
	display: none;
}

#header-scroll-all {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 83px;
	background-image: url(../img/common/header_scroll_bg.png);
	background-position: center top;
	background-repeat: no-repeat;
	-webkit-transform: translate3d(0, -83px, 0);
	-moz-transform: translate3d(0, -83px, 0);
	-o-transform: translate3d(0, -83px, 0);
	-ms-transform: translate3d(0, -83px, 0);
	transform: translate3d(0, -83px, 0);
	-webkit-transition: 0.3s ease 0s;
	-moz-transition: 0.3s ease 0s;
	-o-transition: 0.3s ease 0s;
	-ms-transition: 0.3s ease 0s;
	transition: 0.3s ease 0s;
}

#header-scroll-all.fix {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

#header-scroll {
	position: relative;
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}

#hs-ci {
	position: relative;
}
#hs-ci a {
	position: absolute;
	top: 0;
	left: 45px;
	display: block;
	width: 158px;
	height: 79px;
}
#hs-ci .mark {
	top: 12px;
}
#hs-ci .mark-roll .roll-01, #hs-ci .mark-roll .roll-02 {
	top: 12px;
}

#hs-gnav {
	position: absolute;
	top: 3px;
	left: 280px;
}
#hs-gnav ul li {
	float: left;
}
#hs-gnav ul li ~ li {
	margin-left: 43px;
}
#hs-gnav ul a {
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
}
#hs-gnav ul a:hover span {
	background-position: 0 -15px;
}
#hs-gnav ul span {
	display: block;
	height: 15px;
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#hs-gnav ul .active span {
	background-position: 0 -15px;
}
#hs-gnav ul li:nth-of-type(1) span {
	width: 84px;
	background-image: url(../img/common/gnav_timetable_txt.png);
}
#hs-gnav ul li:nth-of-type(2) span {
	position: relative;
	top: -1px;
	width: 141px;
	background-image: url(../img/common/gnav_about_txt.png);
}
#hs-gnav ul li:nth-of-type(3) span {
	width: 83px;
	background-image: url(../img/common/gnav_service_txt.png);
}
#hs-gnav ul li:nth-of-type(4) span {
	width: 148px;
	background-image: url(../img/common/gnav_view-spot_txt.png);
}
#hs-gnav ul li:nth-of-type(5) span {
	width: 42px;
	background-image: url(../img/common/gnav_reserve_txt.png);
}

#contents {
	margin-top: -110px;
}

#title {
	position: relative;
}
#title h1 {
	position: absolute;
	top: 50%;
	left: 50%;
}
#title h1 span {
	display: block;
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

#ttl-bg {
	min-height: 362px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

#ttl-bg:before {
	content: "";
	display: block;
	padding-bottom: 35.3516%;
}

#ttl-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

#footer-all {
	position: relative;
	width: 100%;
	height: 280px;
	background-color: #fff;
}

#footer {
	position: relative;
	z-index: 4;
	width: 1000px;
	margin: 0 auto;
	background-color: #fff;
}

#pagetop {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 3;
	margin-left: 298px;
	-webkit-transition: 0.3s ease 0s;
	-moz-transition: 0.3s ease 0s;
	-o-transition: 0.3s ease 0s;
	-ms-transition: 0.3s ease 0s;
	transition: 0.3s ease 0s;
}
#pagetop a {
	display: block;
	width: 104px;
	height: 51px;
	background-image: url(../img/common/pagetop.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#pagetop a:hover {
	background-position: 0 -51px;
}

#pagetop.on {
	-webkit-transform: translate3d(0, -51px, 0);
	-moz-transform: translate3d(0, -51px, 0);
	-o-transform: translate3d(0, -51px, 0);
	-ms-transform: translate3d(0, -51px, 0);
	transform: translate3d(0, -51px, 0);
}

#footer-nav-all {
	padding-top: 32px;
	padding-bottom: 27px;
}
#footer-nav-all p {
	width: 170px;
	float: left;
	margin-left: 24px;
}
#footer-nav-all p span {
	display: block;
	width: 170px;
	height: 30px;
	background-image: url(../img/common/footer_ci_fuji-kyuko.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#footer-nav-all ul {
	width: 744px;
	float: right;
	margin-top: -5px;
}
#footer-nav-all ul li {
	float: left;
}
#footer-nav-all ul li ~ li {
	margin-left: 43px;
}
#footer-nav-all ul a {
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
}
#footer-nav-all ul span {
	display: block;
	height: 15px;
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#footer-nav-all ul li:nth-of-type(1) span {
	width: 107px;
	background-image: url(../img/common/fnav_timetable_txt.png);
}
#footer-nav-all ul li:nth-of-type(2) span {
	width: 140px;
	background-image: url(../img/common/fnav_about_txt.png);
}
#footer-nav-all ul li:nth-of-type(3) span {
	width: 83px;
	background-image: url(../img/common/fnav_service_txt.png);
}
#footer-nav-all ul li:nth-of-type(4) span {
	width: 148px;
	background-image: url(../img/common/fnav_view-spot_txt.png);
}
#footer-nav-all ul li:nth-of-type(5) span {
	width: 42px;
	background-image: url(../img/common/fnav_reserve_txt.png);
}

#footer-ci-fuji-view {
	width: 351px;
	height: 138px;
	margin: 0 auto 30px;
	background-image: url(../img/common/footer_ci_fuji-view.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

#copyright {
	text-align: center;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
}

.lower #footer-all {
	height: 350px;
}
.lower #pagetop a {
	position: relative;
	height: 52px;
	background-image: url(../img/common/pagetop_lower.png);
}
.lower #pagetop a:hover {
	background-position: 0 0;
}
.lower #pagetop a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 104px;
	height: 52px;
	background-image: url(../img/common/pagetop_lower_on.png);
	background-position: left top;
	background-repeat: no-repeat;
	-webkit-transition: opacity 0.3s ease 0s;
	-moz-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
	-ms-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
	opacity: 0;
}
.lower #pagetop a:hover:before {
	opacity: 1;
}
.lower #pagetop.on {
	-webkit-transform: translate3d(0, -52px, 0);
	-moz-transform: translate3d(0, -52px, 0);
	-o-transform: translate3d(0, -52px, 0);
	-ms-transform: translate3d(0, -52px, 0);
	transform: translate3d(0, -52px, 0);
}
.lower #footer-reserve-btn {
	position: relative;
	z-index: 4;
}
.lower #footer-reserve-btn a {
	display: block;
	width: 100%;
	height: 70px;
	background-color: #be904a;
	background-image: url(../img/common/footer_lower_reserve_txt.png);
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

@media only screen and (max-width: 736px) {
	#header-all {
		height: 75px;
		background-image: url(../img/common/sp/header_bg.png);
		background-size: 750px 75px;
	}
	#header .language {
		position: absolute;
    top: 12px;
    right: 65px;
    z-index: 100;
	}
	#header .language ul li:first-child {
    margin-right: 10px;
  }

	#header {
		width: 100%;
		margin: 0;
	}

	#gnav-train {
		display: none;
	}

	#cover-bg {
		display: none;
	}

	#header-ci {
		width: 100%;
		height: 75px;
	}
	#header-ci a {
		position: absolute;
		top: 12px;
		left: 17px;
		width: 95px;
		height: 49px;
	}
	#header-ci h1 {
		position: static;
		width: 95px;
		height: 49px;
		background-image: url(../img/common/sp/header_ci.png);
		background-size: 95px 49px;
	}
	#header-ci .mark {
		display: none;
	}

	#sp-gnav-bg {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
		width: 100%;
		height: 100%;
		background-color: #c12b1f;
	}

	#gnav {
		display: none;
		overflow-y: scroll;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
	}
	#gnav ul {
		display: table;
		margin: 0 auto;
		padding-top: 82px;
		padding-bottom: 82px;
		text-align: center;
	}
	#gnav ul li {
		position: relative;
		float: none;
	}
	#gnav ul li ~ li {
		margin-top: 20px;
		margin-left: 0;
	}
	#gnav ul li ~ li:before {
		content: "";
		position: absolute;
		top: -11px;
		left: 50%;
		margin-left: -9px;
		display: block;
		width: 19px;
		height: 1px;
		background-color: #fff;
	}
	#gnav ul a {
		padding-top: 7px;
		padding-bottom: 9px;
	}
	#gnav ul a:hover span {
		background-position: 0 0;
	}
	#gnav ul span {
		height: 13px;
		margin: 0 auto;
	}
	#gnav ul .active span {
		background-position: 0 0;
	}
	#gnav ul li:nth-of-type(1) span {
		width: 100px;
		background-image: url(../img/common/sp/gnav_timetable_txt.png);
		background-size: 100px 13px;
	}
	#gnav ul li:nth-of-type(2) span {
		top: 0;
		width: 129px;
		background-image: url(../img/common/sp/gnav_about_txt.png);
		background-size: 129px 13px;
	}
	#gnav ul li:nth-of-type(3) span {
		width: 78px;
		background-image: url(../img/common/sp/gnav_service_txt.png);
		background-size: 78px 13px;
	}
	#gnav ul li:nth-of-type(4) span {
		width: 137px;
		background-image: url(../img/common/sp/gnav_view-spot_txt.png);
		background-size: 137px 13px;
	}
	#gnav ul li:nth-of-type(5) span {
		width: 38px;
		background-image: url(../img/common/sp/gnav_reserve_txt.png);
		background-size: 38px 13px;
	}

	#sp-gnav-bg.fadeIn {
		-webkit-animation: fadeIn 0.3s ease 0s;
		-moz-animation: fadeIn 0.3s ease 0s;
		-o-animation: fadeIn 0.3s ease 0s;
		-ms-animation: fadeIn 0.3s ease 0s;
		animation: fadeIn 0.3s ease 0s;
	}

	#gnav.fadeIn {
		-webkit-animation: fadeIn 0.3s ease 0s;
		-moz-animation: fadeIn 0.3s ease 0s;
		-o-animation: fadeIn 0.3s ease 0s;
		-ms-animation: fadeIn 0.3s ease 0s;
		animation: fadeIn 0.3s ease 0s;
	}

	#sp-gnav-bg.fadeOut {
		-webkit-animation: fadeOut 0.3s ease 0s;
		-moz-animation: fadeOut 0.3s ease 0s;
		-o-animation: fadeOut 0.3s ease 0s;
		-ms-animation: fadeOut 0.3s ease 0s;
		animation: fadeOut 0.3s ease 0s;
	}

	#gnav.fadeOut {
		-webkit-animation: fadeOut 0.3s ease 0s;
		-moz-animation: fadeOut 0.3s ease 0s;
		-o-animation: fadeOut 0.3s ease 0s;
		-ms-animation: fadeOut 0.3s ease 0s;
		animation: fadeOut 0.3s ease 0s;
	}

	#sp-close {
		display: block;
	}
	#sp-close a {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		width: 55px;
		height: 55px;
		background-image: url(../img/common/sp/gnav_close_btn.png);
		background-position: 14px 14px;
		background-repeat: no-repeat;
		background-size: 27px 27px;
		overflow: hidden;
		text-indent: 300%;
		white-space: nowrap;
	}

	#sp-menu {
		display: block;
	}
	#sp-menu a {
		position: absolute;
		top: 0;
		right: 0;
		display: block;
		width: 55px;
		height: 55px;
		background-image: url(../img/common/sp/gnav_open_btn.png);
		background-position: 10px 16px;
		background-repeat: no-repeat;
		background-size: 35px 18px;
		overflow: hidden;
		text-indent: 300%;
		white-space: nowrap;
	}

	#header-scroll-all {
		display: none;
	}

	#contents {
		margin-top: -20px;
	}

	#ttl-bg {
		min-height: 0;
		padding-bottom: 56.5625%;
	}

	#ttl-bg:before {
		display: none;
	}

	#ttl-content {
		position: static;
	}

	#footer-all {
		z-index: 1;
		height: auto;
	}

	#footer {
		width: 100%;
		margin: 0;
		padding-bottom: 9px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	#pagetop {
		position: static;
		margin-left: 0;
	}
	#pagetop a {
		width: 100%;
		height: 56px;
		background-color: #be904a;
		background-image: url(../img/common/sp/pagetop.png);
		background-position: center top;
		background-size: 320px 56px;
	}
	#pagetop a:hover {
		background-position: center top;
	}

	#footer-nav-all {
		padding-top: 37px;
		padding-bottom: 43px;
	}
	#footer-nav-all p {
		width: 154px;
		float: none;
		margin: 0 auto;
	}
	#footer-nav-all p span {
		width: 154px;
		height: 27px;
		background-image: url(../img/common/sp/footer_ci_fuji-kyuko.png);
		background-size: 154px 27px;
	}
	#footer-nav-all ul {
		width: 269px;
		float: none;
		margin: 0 auto;
		padding-top: 20px;
	}
	#footer-nav-all ul li {
		float: left;
		border-bottom: 1px solid #000;
	}
	#footer-nav-all ul li ~ li {
		margin-left: 0;
	}
	#footer-nav-all ul li:nth-child(2n+1) {
		width: 106px;
	}
	#footer-nav-all ul li:nth-child(2n) {
		width: 138px;
		margin-left: 25px;
	}
	#footer-nav-all ul li:nth-child(n+3) {
		margin-top: 11px;
	}
	#footer-nav-all ul a {
		padding-top: 10px;
		padding-bottom: 2px;
	}
	#footer-nav-all ul span {
		height: 13px;
	}
	#footer-nav-all ul li:nth-of-type(1) span {
		width: 99px;
		background-image: url(../img/common/sp/fnav_timetable_txt.png);
		background-size: 99px 13px;
	}
	#footer-nav-all ul li:nth-of-type(2) span {
		width: 129px;
		background-image: url(../img/common/sp/fnav_about_txt.png);
		background-size: 129px 13px;
	}
	#footer-nav-all ul li:nth-of-type(3) span {
		width: 77px;
		background-image: url(../img/common/sp/fnav_service_txt.png);
		background-size: 77px 13px;
	}
	#footer-nav-all ul li:nth-of-type(4) span {
		width: 137px;
		background-image: url(../img/common/sp/fnav_view-spot_txt.png);
		background-size: 137px 13px;
	}
	#footer-nav-all ul li:nth-of-type(5) span {
		width: 39px;
		background-image: url(../img/common/sp/fnav_reserve_txt.png);
		background-size: 39px 13px;
	}

	#footer-ci-fuji-view {
		width: 237px;
		height: 94px;
		margin: 0 auto 22px;
		background-image: url(../img/common/sp/footer_ci_fuji-view.png);
		background-size: 237px 94px;
	}

	.lower #footer-all {
		height: auto;
	}
	.lower #pagetop a {
		height: 56px;
		background-color: #fff;
		background-image: url(../img/common/sp/pagetop_lower.png);
	}
	.lower #pagetop a:hover {
		background-position: center top;
	}
	.lower #pagetop a:before {
		display: none;
	}
	.lower #footer-reserve-btn a {
		height: 56px;
		background-image: url(../img/common/sp/footer_lower_reserve_txt.png);
		background-size: 112px 17px;
	}
}
/**
 * CSS3 hightlight
 */
::selection {
	background: #fffcc6;
	color: #333;
}

::-moz-selection {
	background: #fffcc6;
	color: #333;
}

/**
 * Firefox Opacity
 */
.ff .roll img {
	background: url(../img/common/space.png) left top repeat;
}

/**
 * <a> rollover
 **/
.roll {
	-webkit-transition: opacity 0.3s ease 0s;
	-moz-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
	-ms-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
}
.roll:hover {
	opacity: 0.5;
}

.tablet .roll {
	-webkit-transition: none;
	-moz-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
}
.tablet .roll:hover {
	opacity: 1;
}

/**
 * parts
 **/
.sprite {
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

.font-kaku {
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
}

.bt-more-01 a {
	display: block;
	width: 154px;
	height: 29px;
	background-image: url(../img/parts/btn_more_01.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
.bt-more-01 a:hover {
	background-position: 0 -29px;
}

.no-pc {
	display: none;
}

.no-sp {
	display: block;
}

@media only screen and (max-width: 736px) {
	/**
	 * <a> rollover
	 **/
	.roll {
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		-ms-transition: none;
		transition: none;
	}
	.roll:hover {
		opacity: 1;
	}

	/**
	 * parts
	 **/
	.bt-more-01 a {
		width: 166px;
		height: 34px;
		background-image: url(../img/parts/sp/btn_more_01.png);
		background-size: 166px 34px;
	}
	.bt-more-01 a:hover {
		background-position: 0 0;
	}

	.no-pc {
		display: block;
	}

	.no-sp {
		display: none;
	}
}
#intro {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 11;
	display: block;
	background-color: #c12b1f;
}

#intro.fadeOut {
	-webkit-animation: fadeOut 1s ease 0s;
	-moz-animation: fadeOut 1s ease 0s;
	-o-animation: fadeOut 1s ease 0s;
	-ms-animation: fadeOut 1s ease 0s;
	animation: fadeOut 1s ease 0s;
}

#intro-fuji {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -310px;
	margin-left: -600px;
}
#intro-fuji figure {
	position: relative;
	width: 1200px;
	height: 819px;
}
#intro-fuji figure:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 0;
	height: 100%;
	background-image: url(../img/sub-directory/top/intro_fuji_img.png);
	background-position: left top;
	background-repeat: no-repeat;
	-webkit-transition: 3s ease 0s;
	-moz-transition: 3s ease 0s;
	-o-transition: 3s ease 0s;
	-ms-transition: 3s ease 0s;
	transition: 3s ease 0s;
}

#intro-fuji.on figure:after {
	width: 100%;
}

#intro-title {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 549px;
	height: 82px;
	margin-top: -198px;
	margin-left: -429px;
	background-image: url(../img/sub-directory/top/intro_title.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
	opacity: 0;
	-webkit-transform: translate3d(-10px, 0, 0);
	-moz-transform: translate3d(-10px, 0, 0);
	-o-transform: translate3d(-10px, 0, 0);
	-ms-transform: translate3d(-10px, 0, 0);
	transform: translate3d(-10px, 0, 0);
	-webkit-transition: 3s ease 0s;
	-moz-transition: 3s ease 0s;
	-o-transition: 3s ease 0s;
	-ms-transition: 3s ease 0s;
	transition: 1s ease-out 0s;
}

#intro-title.on {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

#top-view {
	position: relative;
}

#vi {
	overflow: hidden;
	position: relative;
	height: 819px;
}

.vi-list {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	-webkit-transition: opacity 3s ease-out 0s;
	-moz-transition: opacity 3s ease-out 0s;
	-ms-transition: opacity 3s ease-out 0s;
	-o-transition: opacity 3s ease-out 0s;
	transition: opacity 3s ease-out 0s;
}
.vi-list .bg {
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
	-webkit-transition: transform 0s linear 0s;
	-moz-transition: transform 0s linear 0s;
	-ms-transition: transform 0s linear 0s;
	-o-transition: transform 0s linear 0s;
	transition: transform 0s linear 0s;
}

.vi-list.pre {
	z-index: 3;
	opacity: 0;
}
.vi-list.pre .bg {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.vi-list.current {
	z-index: 2;
	opacity: 1;
}
.vi-list.current .bg {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: transform 11s linear 0s;
	-moz-transition: transform 11s linear 0s;
	-ms-transition: transform 11s linear 0s;
	-o-transition: transform 11s linear 0s;
	transition: transform 11s linear 0s;
}

.vi-list:nth-of-type(1) .bg {
	background-image: url(../img/sub-directory/top/vi_s1_img.jpg);
}

.vi-list:nth-of-type(2) .bg {
	background-image: url(../img/sub-directory/top/vi_s2_img.jpg);
}

.vi-list:nth-of-type(3) .bg {
	background-image: url(../img/sub-directory/top/vi_s3_img.jpg);
}

.vi-list:nth-of-type(4) .bg {
/*		background-image: url(../img/sub-directory/top/vi_s4_img201707.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/vi_s4_img201710.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/vi_s4_img201801.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/vi_s4_img201804.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/vi_s4_img201807.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/vi_s4_img201810.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/vi_s4_img201812.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/vi_s4_img201904.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/vi_s4_img201906.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/vi_s4_img201909.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/vi_s4_img202112.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/vi_s4_img202205.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/vi_s4_img202503.jpg);	/*	sweets	*/
	background-image: url(../img/sub-directory/top/vi_s4_img202506.jpg);	/*	sweets	*/
}

.vi-list:nth-of-type(5) .bg {
	background-image: url(../img/sub-directory/top/vi_s5_img.jpg);
	background-position: left center;
}

.vi-list:nth-of-type(6) .bg {
/*	background-image: url(../img/sub-directory/top/vi_s4_img_akikaze.jpg);		/*	ekiben	*/
	background-image: url(../img/sub-directory/top/vi_s4_img_irodori.jpg);
	background-position: left center;
}

#vi-pager {
	position: absolute;
	bottom: 173px;
	left: 50%;
	z-index: 3;
	margin-left: -71px;
}
#vi-pager ul li {
	width: 12px;
	float: left;
}
#vi-pager ul li ~ li {
	margin-left: 22px;
}
#vi-pager ul a {
	display: block;
	width: 12px;
	height: 12px;
	border-radius: 50px;
	background-color: #fff;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#vi-pager ul .active {
	background-color: #c1272d;
}

#top-info-all {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	width: 100%;
/*	height: 150px;		/*	index news 高さ*/
	height: 170px;
	background-image: url(../img/sub-directory/top/top_news_bg.png);
	background-position: left top;
	background-repeat: repeat;
}

#top-info {
	width: 975px;
	margin: 0 auto;
	padding-top: 23px;
}

#top-train-info {
	width: 434px;
	float: left;
}
#top-train-info h2 {
	margin-bottom: 7px;
	padding-left: 38px;
	padding-bottom: 7px;
	border-bottom: 1px solid #fff;
}
#top-train-info h2 span {
	display: block;
	width: 72px;
	height: 18px;
	background-image: url(../img/sub-directory/top/top_train-info_shd.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#top-train-info p {
	padding-left: 38px;
	padding-right: 38px;
	color: #fff;
	font-size: 14px;
}

#top-news {
	width: 541px;
	float: left;
}
#top-news h2 {
	margin-bottom: 7px;
	padding-top: 3px;
	padding-bottom: 9px;
	border-bottom: 1px solid #fff;
}
#top-news h2 span {
	display: block;
	width: 57px;
	height: 13px;
	background-image: url(../img/sub-directory/top/top_news_shd.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#top-news dl {
	color: #fff;
	font-size: 14px;
}
#top-news dl dt, #top-news dl dd {
	float: left;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#top-news dl dt ~ dt, #top-news dl dd ~ dd {
	margin-top: 1px;
}
#top-news dl dt {
	clear: both;
	width: 100px;
}
#top-news dl dd {
	width: 441px;
	padding-right: 10px;
}



#top-qanda {
	width: 300px;
	float: right;
	margin-left:30px;
	margin-top:30px;
	font-size: 14px;
}

#top-qanda .btn_qanda {
	width: 300px;
	margin: 0 auto;
}
#top-qanda .btn_qanda a {
	display: block;
	width: 100%;
	background:#000;
	color:#fff;
	padding:10px;
	text-align:center;
	border:1px solid #000;
}
#top-qanda .btn_qanda a:hover {
	background:#fafafa;
	color:#000;
}




.sv-list {
	position: relative;
	width: -webkit-calc(100% / 3);
	width: calc(100% / 3);
	float: left;
}
.sv-list a {
	display: block;
	width: 100%;
	min-height: 342px;
}
.sv-list h2 {
	position: absolute;
	top: 50%;
	left: 50%;
}
.sv-list h2 span {
	display: block;
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

.svl-bg {
	min-height: 342px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

.svl-bg:before {
	content: "";
	display: block;
	padding-bottom: 100%;
}

.svl-content-all {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

#sv-time-price .svl-bg {
	background-image: url(../img/sub-directory/top/top_time-price_img.jpg);
}
#sv-time-price h2 {
	margin-top: -37px;
	margin-left: -98px;
}
#sv-time-price h2 span {
	width: 197px;
	height: 75px;
	background-image: url(../img/sub-directory/top/top_time-price_shd.png);
}

#sv-about .svl-bg {
	background-image: url(../img/sub-directory/top/top_about_img.jpg);
}
#sv-about h2 {
	margin-top: -61px;
	margin-left: -97px;
}
#sv-about h2 span {
	width: 195px;
	height: 122px;
	background-image: url(../img/sub-directory/top/top_about_shd.png);
}

#sv-service .svl-bg {
	background-image: url(../img/sub-directory/top/top_service_img.jpg);
}
#sv-service h2 {
	margin-top: -36px;
	margin-left: -95px;
}
#sv-service h2 span {
	width: 191px;
	height: 73px;
	background-image: url(../img/sub-directory/top/top_service_shd.png);
}

#top-view-spot {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 462px;
	padding-top: 52px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-image: url(../img/sub-directory/top/top_view-spot_bg.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}
#top-view-spot h2 {
	margin-bottom: 36px;
}
#top-view-spot h2 span {
	display: block;
	width: 312px;
	height: 51px;
	margin: 0 auto;
	background-image: url(../img/sub-directory/top/top_view-spot_shd.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

#tvs-train-all {
	overflow: hidden;
	width: 6342px;
}

#tvs-train-all.on {
	-webkit-animation: tvs-train 60s linear infinite;
	-moz-animation: tvs-train 60s linear infinite;
	-o-animation: tvs-train 60s linear infinite;
	-ms-animation: tvs-train 60s linear infinite;
	animation: tvs-train 60s linear infinite;
}

@-webkit-keyframes tvs-train {
	0% {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-o-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-3162px);
		-moz-transform: translateX(-3162px);
		-o-transform: translateX(-3162px);
		-ms-transform: translateX(-3162px);
		transform: translateX(-3162px);
	}
}
@-moz-keyframes tvs-train {
	0% {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-o-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-3162px);
		-moz-transform: translateX(-3162px);
		-o-transform: translateX(-3162px);
		-ms-transform: translateX(-3162px);
		transform: translateX(-3162px);
	}
}
@-o-keyframes tvs-train {
	0% {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-o-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-3162px);
		-moz-transform: translateX(-3162px);
		-o-transform: translateX(-3162px);
		-ms-transform: translateX(-3162px);
		transform: translateX(-3162px);
	}
}
@-ms-keyframes tvs-train {
	0% {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-o-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-3162px);
		-moz-transform: translateX(-3162px);
		-o-transform: translateX(-3162px);
		-ms-transform: translateX(-3162px);
		transform: translateX(-3162px);
	}
}
@keyframes tvs-train {
	0% {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		-o-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(-3162px);
		-moz-transform: translateX(-3162px);
		-o-transform: translateX(-3162px);
		-ms-transform: translateX(-3162px);
		transform: translateX(-3162px);
	}
}
.tvs-train {
	overflow: hidden;
	position: relative;
	width: 3071px;
	float: left;
	margin-left: 100px;
}
.tvs-train > a {
	position: relative;
	display: block;
	width: 100%;
	height: 292px;
}
.tvs-train > a:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../img/sub-directory/top/top_view-spot_train-roll_bg.png);
	background-position: left top;
	background-repeat: no-repeat;
	-webkit-transition: opacity 0.3s ease 0s;
	-moz-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
	-ms-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
	opacity: 0;
}
.tvs-train > a:hover:before {
	opacity: 1;
}
.tvs-train figure {
	width: 489px;
	height: 292px;
	float: left;
	background-image: url(../img/sub-directory/top/top_view-spot_train-head_img.png);
	background-position: left top;
	background-repeat: no-repeat;
}
.tvs-train ul {
	position: relative;
	padding-top: 8px;
	padding-left: 8px;
	height: 292px;
	float: left;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-image: url(../img/sub-directory/top/top_view-spot_train-body_bg.png);
	background-position: left top;
	background-repeat: repeat-x;
}
.tvs-train ul li {
	width: 312px;
	height: 262px;
	float: left;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
.tvs-train ul li ~ li {
	margin-left: 8px;
}
.tvs-train ul li:nth-of-type(1) {
	background-image: url(../img/sub-directory/top/top_view-spot_img_01.jpg);
}
.tvs-train ul li:nth-of-type(2) {
	background-image: url(../img/sub-directory/top/top_view-spot_img_02.jpg);
}
.tvs-train ul li:nth-of-type(3) {
	background-image: url(../img/sub-directory/top/top_view-spot_img_03.jpg);
}
.tvs-train ul li:nth-of-type(4) {
	background-image: url(../img/sub-directory/top/top_view-spot_img_04.jpg);
}
.tvs-train ul li:nth-of-type(5) {
	background-image: url(../img/sub-directory/top/top_view-spot_img_05.jpg);
}
.tvs-train ul li:nth-of-type(6) {
	background-image: url(../img/sub-directory/top/top_view-spot_img_06.jpg);
}
.tvs-train ul li:nth-of-type(7) {
	background-image: url(../img/sub-directory/top/top_view-spot_img_07.jpg);
}
.tvs-train ul li:nth-of-type(8) {
	background-image: url(../img/sub-directory/top/top_view-spot_img_08.jpg);
}
.tvs-train ul:after {
	content: "";
	position: absolute;
	top: 0;
	right: -23px;
	display: block;
	width: 23px;
	height: 292px;
	background-image: url(../img/sub-directory/top/top_view-spot_train-end_bg.png);
	background-position: left top;
	background-repeat: no-repeat;
}

#top-reserve {
	position: relative;
	height: 0;
	padding-bottom: 34.5703%;
}

#tr-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	padding-bottom: 34.5703%;
}

.trs-list {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	padding-bottom: 34.5703%;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 1;
	opacity: 0;
	-webkit-transition: opacity 3s ease-out 0s;
	-moz-transition: opacity 3s ease-out 0s;
	-ms-transition: opacity 3s ease-out 0s;
	-o-transition: opacity 3s ease-out 0s;
	transition: opacity 3s ease-out 0s;
}

.trs-list.pre {
	z-index: 2;
	opacity: 0;
}

.trs-list.current {
	z-index: 3;
	opacity: 1;
}

.trs-list:nth-of-type(1) {
/*		background-image: url(../img/sub-directory/top/top_reservation_s1_img201707.jpg);	/**/
/*		background-image: url(../img/sub-directory/top/top_reservation_s1_img201710.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/top_reservation_s1_img201801.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/top_reservation_s1_img201804.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/top_reservation_s1_img201807.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/top_reservation_s1_img201810.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/top_reservation_s1_img201812.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/top_reservation_s1_img201904.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/top_reservation_s1_img201906.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/top_reservation_s1_img201909.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/top_reservation_s1_img202112.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/top_reservation_s1_img202205.jpg);	/*	sweets	*/
/*	background-image: url(../img/sub-directory/top/top_reservation_s1_img202503.jpg);	/*	sweets	*/
	background-image: url(../img/sub-directory/top/top_reservation_s1_img202506.jpg);	/*	sweets	*/
}

.trs-list:nth-of-type(2) {
	background-image: url(../img/sub-directory/top/top_reservation_s2_img.jpg);
}

#tr-body {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 4;
	width: 298px;
	height: 179px;
	margin-top: -89px;
	margin-left: -149px;
}
#tr-body dl dt {
	width: 229px;
	height: 37px;
	margin: 0 auto 20px;
	background-image: url(../img/sub-directory/top/top_reservation_shd.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#tr-body dl dd {
	width: 298px;
	height: 56px;
	margin: 0 auto;
	background-image: url(../img/sub-directory/top/top_reservation_txt.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#tr-body p {
	width: 154px;
	margin: 37px auto 0;
}

@media only screen and (max-width: 736px) {
	#intro {
		display: none;
	}

	#contents.top {
		margin-top: -61px;
	}

	#vi {
		height: 0;
		padding-bottom: 91.0938%;
	}

	.vi-list .bg {
		height: 0;
		padding-bottom: 91.0938%;
	}

	.vi-list:nth-of-type(1) .bg {
		background-image: url(../img/sub-directory/top/sp/vi_s1_img.jpg);
	}

	.vi-list:nth-of-type(2) .bg {
		background-image: url(../img/sub-directory/top/sp/vi_s2_img.jpg);
	}

	.vi-list:nth-of-type(3) .bg {
		background-image: url(../img/sub-directory/top/sp/vi_s3_img.jpg);
	}

	.vi-list:nth-of-type(4) .bg {
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_201707.jpg);	/**/
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_201710.jpg);		/*	sweets	*/
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_201801.jpg);		/*	sweets	*/
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_201804.jpg);		/*	sweets	*/
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_201807.jpg);		/*	sweets	*/
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_201810.jpg);		/*	sweets	*/
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_201812.jpg);		/*	sweets	*/
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_201904.jpg);		/*	sweets	*/
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_201906.jpg);		/*	sweets	*/
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_201909.jpg);		/*	sweets	*/
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_202112.jpg);		/*	sweets	*/
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_202205.jpg);		/*	sweets	*/
/*			background-image: url(../img/sub-directory/top/sp/vi_s4_img_202503.jpg);		/*	sweets	*/
			background-image: url(../img/sub-directory/top/sp/vi_s4_img_202506.jpg);		/*	sweets	*/
	}

	.vi-list:nth-of-type(5) .bg {
		background-image: url(../img/sub-directory/top/sp/vi_s5_img.jpg);
	}

	#vi-pager {
		position: absolute;
		bottom: 10px;
		left: 50%;
		margin-left: -82px;
	}
	#vi-pager ul li {
		width: 13px;
	}
	#vi-pager ul li ~ li {
		margin-left: 25px;
	}
	#vi-pager ul a {
		width: 13px;
		height: 13px;
	}

	#top-info-all {
		position: static;
		height: auto;
		background-image: url(../img/sub-directory/top/sp/top_news_bg.png);
		background-size: 5px 9px;
	}

	#top-info {
		width: 100%;
		margin: 0;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		padding: 13px 10px 33px 10px;
	}

	#top-train-info {
		width: 100%;
		float: none;
	}
	#top-train-info h2 {
		margin-bottom: 2px;
		padding-left: 0;
		padding-bottom: 4px;
	}
	#top-train-info h2 span {
		width: 51px;
		height: 13px;
		background-image: url(../img/sub-directory/top/sp/top_train-info_shd.png);
		background-size: 51px 13px;
	}
	#top-train-info p {
		padding-left: 0;
		padding-right: 0;
		font-size: 13px;
	}

	#top-news {
		width: 100%;
		float: none;
		margin-top: 38px;
	}
	#top-news h2 {
		margin-bottom: 3px;
		padding-top: 0;
		padding-bottom: 5px;
	}
	#top-news h2 span {
		width: 41px;
		height: 11px;
		background-image: url(../img/sub-directory/top/sp/top_news_shd.png);
		background-size: 42px 11px;
	}
	#top-news dl dt ~ dt, #top-news dl dd ~ dd {
		margin-top: 2px;
	}
	#top-news dl dt {
		width: 22%;
		font-size: 11px;
	}
	#top-news dl dd {
		width: 78%;
		padding-right: 0;
		line-height: 1.3;
		font-size: 13px;
	}



#top-qanda {
		width: 100%;
		float: none;
		margin-top: 20px;
		margin-left:0px;
}



	.sv-list {
		width: 100%;
		float: none;
	}
	.sv-list a {
		min-height: 170px;
	}

	.svl-bg {
		min-height: 170px;
	}

	.svl-bg:before {
		padding-bottom: 53.2813%;
	}

	#sv-time-price .svl-bg {
		background-image: url(../img/sub-directory/top/sp/top_time-price_img.jpg);
	}
	#sv-time-price h2 {
		margin-top: -29px;
		margin-left: -76px;
	}
	#sv-time-price h2 span {
		width: 153px;
		height: 58px;
		background-image: url(../img/sub-directory/top/sp/top_time-price_shd.png);
		background-size: 153px 58px;
	}

	#sv-about .svl-bg {
		background-image: url(../img/sub-directory/top/sp/top_about_img.jpg);
	}
	#sv-about h2 {
		margin-top: -30px;
		margin-left: -118px;
	}
	#sv-about h2 span {
		width: 236px;
		height: 60px;
		background-image: url(../img/sub-directory/top/sp/top_about_shd.png);
		background-size: 236px 60px;
	}

	#sv-service .svl-bg {
		background-image: url(../img/sub-directory/top/sp/top_service_img.jpg);
	}
	#sv-service h2 {
		margin-top: -27px;
		margin-left: -71px;
	}
	#sv-service h2 span {
		width: 143px;
		height: 54px;
		background-image: url(../img/sub-directory/top/sp/top_service_shd.png);
		background-size: 143px 54px;
	}

	#top-view-spot {
		height: 349px;
		padding-top: 45px;
		background-image: url(../img/sub-directory/top/sp/top_view-spot_bg.jpg);
	}
	#top-view-spot h2 {
		margin-bottom: 20px;
	}
	#top-view-spot h2 span {
		width: 239px;
		height: 40px;
		background-image: url(../img/sub-directory/top/sp/top_view-spot_shd.png);
		background-size: 239px 40px;
	}

	#tvs-train-all {
		width: 4916px;
	}

	.tvs-train {
		width: 2358px;
	}
	.tvs-train > a {
		height: 220px;
	}
	.tvs-train > a:before {
		display: none;
	}
	.tvs-train figure {
		width: 376px;
		height: 220px;
		background-image: url(../img/sub-directory/top/sp/top_view-spot_train-head_img.png);
		background-size: 376px 220px;
	}
	.tvs-train ul {
		padding-top: 6px;
		padding-left: 6px;
		height: 220px;
		background-image: url(../img/sub-directory/top/sp/top_view-spot_train-body_bg.png);
		background-size: 6px 220px;
	}
	.tvs-train ul li {
		width: 240px;
		height: 201px;
	}
	.tvs-train ul li ~ li {
		margin-left: 6px;
	}
	.tvs-train ul:after {
		right: -14px;
		width: 14px;
		height: 220px;
		background-image: url(../img/sub-directory/top/sp/top_view-spot_train-end_bg.png);
		background-size: 14px 220px;
	}

	#tvs-train-all.on {
		-webkit-animation: tvs-train 35s linear infinite;
		-moz-animation: tvs-train 35s linear infinite;
		-o-animation: tvs-train 35s linear infinite;
		-ms-animation: tvs-train 35s linear infinite;
		animation: tvs-train 35s linear infinite;
	}

	@-webkit-keyframes tvs-train {
		0% {
			-webkit-transform: translateX(0);
			-moz-transform: translateX(0);
			-o-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			-webkit-transform: translateX(-2458px);
			-moz-transform: translateX(-2458px);
			-o-transform: translateX(-2458px);
			-ms-transform: translateX(-2458px);
			transform: translateX(-2458px);
		}
	}
	@-moz-keyframes tvs-train {
		0% {
			-webkit-transform: translateX(0);
			-moz-transform: translateX(0);
			-o-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			-webkit-transform: translateX(-2458px);
			-moz-transform: translateX(-2458px);
			-o-transform: translateX(-2458px);
			-ms-transform: translateX(-2458px);
			transform: translateX(-2458px);
		}
	}
	@-o-keyframes tvs-train {
		0% {
			-webkit-transform: translateX(0);
			-moz-transform: translateX(0);
			-o-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			-webkit-transform: translateX(-2458px);
			-moz-transform: translateX(-2458px);
			-o-transform: translateX(-2458px);
			-ms-transform: translateX(-2458px);
			transform: translateX(-2458px);
		}
	}
	@-ms-keyframes tvs-train {
		0% {
			-webkit-transform: translateX(0);
			-moz-transform: translateX(0);
			-o-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			-webkit-transform: translateX(-2458px);
			-moz-transform: translateX(-2458px);
			-o-transform: translateX(-2458px);
			-ms-transform: translateX(-2458px);
			transform: translateX(-2458px);
		}
	}
	@keyframes tvs-train {
		0% {
			-webkit-transform: translateX(0);
			-moz-transform: translateX(0);
			-o-transform: translateX(0);
			-ms-transform: translateX(0);
			transform: translateX(0);
		}
		100% {
			-webkit-transform: translateX(-2458px);
			-moz-transform: translateX(-2458px);
			-o-transform: translateX(-2458px);
			-ms-transform: translateX(-2458px);
			transform: translateX(-2458px);
		}
	}
	#top-reserve {
		padding-bottom: 76.0938%;
	}

	#tr-slide {
		padding-bottom: 76.0938%;
	}

	.trs-list {
		padding-bottom: 76.0938%;
	}

	.trs-list:nth-of-type(1) {
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_201707.jpg);		/**/
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_201710.jpg);		/*	sweets	*/
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_201801.jpg);		/*	sweets	*/
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_201804.jpg);		/*	sweets	*/
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_201807.jpg);		/*	sweets	*/
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_201810.jpg);		/*	sweets	*/
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_201812.jpg);		/*	sweets	*/
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_201904.jpg);		/*	sweets	*/
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_201906.jpg);		/*	sweets	*/
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_201909.jpg);		/*	sweets	*/
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_202112.jpg);		/*	sweets	*/
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_202205.jpg);		/*	sweets	*/
/*		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_202503.jpg);		/*	sweets	*/
		background-image: url(../img/sub-directory/top/sp/top_reservation_s1_img_202506.jpg);		/*	sweets	*/
	}

	.trs-list:nth-of-type(2) {
		background-image: url(../img/sub-directory/top/sp/top_reservation_s2_img.jpg);
	}

	#tr-body {
		width: 268px;
		height: 164px;
		margin-top: -82px;
		margin-left: -134px;
	}
	#tr-body dl dt {
		width: 205px;
		height: 33px;
		margin-bottom: 17px;
		background-image: url(../img/sub-directory/top/sp/top_reservation_shd.png);
		background-size: 205px 33px;
	}
	#tr-body dl dd {
		width: 268px;
		height: 51px;
		background-image: url(../img/sub-directory/top/sp/top_reservation_txt.png);
		background-size: 268px 51px;
	}
	#tr-body p {
		width: 166px;
		margin-top: 28px;
	}
}
.timetable #title h1 {
	margin-top: 14px;
	margin-left: -96px;
}
.timetable #title h1 span {
	width: 192px;
	height: 86px;
	background-image: url(../img/sub-directory/timetable/timetable_hd.png);
}
.timetable #ttl-bg {
	background-image: url(../img/sub-directory/timetable/timetable_title_img.jpg);
}

#tp-contents-all {
	position: relative;
	padding-top: 132px;
	padding-bottom: 190px;
}

#tp-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1056px;
	background-image: url(../img/sub-directory/timetable/timetable_img_01.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

#tp-layer.fix {
	position: fixed;
}

#tp-layer.bottom {
	position: absolute;
	top: auto;
	bottom: 0;
}

#tp-contents {
	position: relative;
	z-index: 2;
	width: 784px;
	margin: 0 auto;
}

#timetable {
	width: 784px;
	height: 1200px;
	padding-top: 58px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-image: url(../img/sub-directory/timetable/timetable_bg_01_2021.png);
	background-position: left top;
	background-repeat: no-repeat;
	position: relative;
}
#timetable h2 {
	width: 81px;
	height: 27px;
	margin: 0 auto 17px;
	background-image: url(../img/sub-directory/timetable/timetable_shd_01.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#timetable .lead {
	text-align: center;
	color: #fff;
	font-size: 20px;
}
#timetable .note {
	margin-top: 32px;
	color: #fff;
	font-size: 14px;
}
#timetable .link {
	display: none;
}

#timetable .unkyu {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width:70%;
	margin: 0 auto;
	z-index:100;
	background:rgba(255,255,255,.9);
	padding:1em;
	border:2px #fff solid;
	text-align:center;
	font-weight:bold;
	font-size:2em;
}


.tt-list {
	width: 740px;
	margin: 0 auto;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
}

.tt-content .left {
	width: 197px;
	float: left;
	margin-top: 7px;
}
.tt-content .left dl {
	width: 197px;
	height: 397px;
	background-position: left top;
	background-repeat: no-repeat;
}
.tt-content .left dl dt, .tt-content .left dl dd {
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
.tt-content .right {
	width: 524px;
	float: right;
}

#tt-01 {
	margin-top: 52px;
}
#tt-01 .tt-content .left dl {
	background-image: url(../img/sub-directory/timetable/timetable_down_img_01_2020.png);
}

#tt-02 {
	margin-top: 68px;
}
#tt-02 .tt-content .left dl {
	background-image: url(../img/sub-directory/timetable/timetable_up_img_01_2020.png);
}

.table-layout-01 {
	width: 100%;
	border-spacing: 0;
	color: #fff;
}
.table-layout-01 th, .table-layout-01 td {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: bold;
}
.table-layout-01 thead th {
	padding-top: 9px;
	padding-bottom: 11px;
	border-bottom: 1px solid #fff;
}
.table-layout-01 tbody th {
	width: 105px;
	padding-top: 1px;
	border-bottom: 1px solid #fff;
}
.table-layout-01 tbody td {
	text-align: center;
}
.table-layout-01 tbody tr:nth-of-type(2) td {
	padding-top: 27px;
	padding-bottom: 31px;
}
.table-layout-01 tbody tr:nth-of-type(3) td,
.table-layout-01 tbody tr:nth-of-type(4) td,
.table-layout-01 tbody tr:nth-of-type(5) td {
	padding-bottom: 31px;
}
.table-layout-01 tbody tr:nth-of-type(6) td {
	padding-bottom: 24px;
}

#price {
	width: 784px;
	min-height: 687px;	/* 20230318 */
	margin-top: 90px;
	padding-top: 54px;
	padding-bottom: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
/*	background-color: #BF914B;	/* 20230318 */
/*	//	20230318
	background-image: url(../img/sub-directory/timetable/timetable_bg_02.png);
*/
	background-image: url(../img/sub-directory/timetable/timetable_bg_02_202303.png);
	background-position: left top;
	background-repeat: no-repeat;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
}
#price h2 {
	width: 84px;
	height: 28px;
	margin: 0 auto;
	background-image: url(../img/sub-directory/timetable/timetable_shd_02.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#price .note {
	margin-top: 27px;
	margin-left: 30px;
	margin-right: 18px;
	color: #fff;
	font-size: 14px;
}


#price_rilakkuma {
	width: 784px;
	min-height: 687px;	/* 20230318 */
	margin-top: 90px;
	padding-top: 54px;
	padding-bottom: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
/*	background-color: #BF914B;	/* 20230318 */
/*	//	20230318
	background-image: url(../img/sub-directory/timetable/timetable_bg_02.png);
*/
	background-image: url(../img/sub-directory/timetable/timetable_bg_02_rilakkuma.png);
	background-position: left top;
	background-repeat: no-repeat;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
}
#price_rilakkuma h2 {
	width: 84px;
	height: 28px;
	margin: 0 auto;
	background-image: url(../img/sub-directory/timetable/timetable_shd_02.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#price_rilakkuma .note {
	margin-top: 20px;
	margin-left: 30px;
	margin-right: 18px;
	color: #fff;
	font-size: 14px;
}

.lh180 {
	line-height: 1.5 !important;
	margin-bottom: 0;
}

#price-content {
	margin-top: 43px;
}

#pc-inner {
	margin-left: 30px;
	margin-right: 27px;
}

#pc-inner_rilakkuma {
	margin-left: 30px;
	margin-right: 27px;
}

.table-layout-02 {
	width: 100%;
	border-spacing: 0;
	color: #fff;
}
.table-layout-02 th, .table-layout-02 td {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 14px;
	font-weight: bold;
}
.table-layout-02 thead th {
	padding-top: 14px;
	line-height: 1.3;
}
.table-layout-02 thead th span {
	display: block;
	margin-top: 10px;
	padding-bottom: 17px;
	font-size: 14px;
}
.table-layout-02 thead th:nth-of-type(1) {
	width: 152px;
}
.table-layout-02 thead th:nth-of-type(2) {
/*	width: 277px;	/**/
	width: 192px;
}
.table-layout-02 thead th:nth-of-type(3) {
/*	width: 277px;	/**/
	width: 192px;
}
.table-layout-02 thead th:nth-of-type(4) {
/*	width: 277px;	/**/
	width: 192px;
}
.table-layout-02 tbody th, .table-layout-02 tbody td {
	padding-top: 25px;
	padding-bottom: 23px;
}
.table-layout-02 tbody th span, .table-layout-02 tbody td span {
	font-size: 14px;
	font-weight: normal;
}
.table-layout-02 tbody th {
	line-height: 1.6;
}
.table-layout-02 tbody td {
	text-align: center;
	line-height: 1.6;
}
.table-layout-02 tbody tr:nth-of-type(2) th, .table-layout-02 tbody tr:nth-of-type(2) td {
	padding-top: 25px;
	padding-bottom: 22px;
}
.table-layout-02 tbody tr:nth-of-type(2) th {
	line-height: 1.4;
}

#access {
	width: 784px;
	height: 671px;
	margin: 123px auto 0;
	background-image: url(../img/sub-directory/timetable/timetable_access_bg_01.jpg);
	background-position: left top;
	background-repeat: no-repeat;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
}
#access h2 {
	width: 100%;
	height: 70px;
	background-color: #b72e22;
	background-image: url(../img/sub-directory/timetable/timetable_shd_03.png);
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

#ac-view {
	position: relative;
	height: 383px;
}
#ac-view figure {
	position: absolute;
	top: 0;
	left: 46px;
	width: 695px;
	height: 340px;
	background-image: url(../img/sub-directory/timetable/timetable_access_img_01.png);
	background-position: left top;
	background-repeat: no-repeat;
}
#ac-view .btn {
	position: absolute;
	top: 113px;
	left: 264px;
}
#ac-view .btn a {
	display: block;
	width: 104px;
	height: 105px;
	background-image: url(../img/sub-directory/timetable/timetable_access_show-map_btn.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ac-view .btn a:hover {
	background-position: 0 -105px;
}

#ac-road {
	margin-left: 15px;
	margin-right: 15px;
	padding: 29px 38px 35px 38px;
	background-image: url(../img/sub-directory/timetable/timetable_access_bg_02.png);
	background-position: left top;
	background-repeat: repeat;
}
#ac-road h3 {
	display: inline-block;
	margin-bottom: 17px;
	padding: 5px 13px 3px 13px;
	border: 1px solid #b72e22;
	color: #b72e22;
	font-size: 16px;
}
#ac-road dl {
	width: 678px;
}
#ac-road dl dt, #ac-road dl dd {
	line-height: 1.6;
	color: #333;
	font-size: 14px;
}
#ac-road dl dt {
	clear: both;
	width: 86px;
	float: left;
}
#ac-road dl dd {
	width: 592px;
	float: left;
}

@media only screen and (max-width: 736px) {
	#contents.timetable #title h1 {
		margin-top: -21px;
		margin-left: -83px;
	}
	#contents.timetable #title h1 span {
		width: 167px;
		height: 75px;
		background-image: url(../img/sub-directory/timetable/sp/timetable_hd.png);
		background-size: 167px 75px;
	}
	#contents.timetable #ttl-bg {
		background-image: url(../img/sub-directory/timetable/sp/timetable_title_img.jpg);
	}

	#tp-contents-all {
		padding-top: 0;
		padding-bottom: 0;
	}

	#tp-layer {
		display: none;
	}

	#tp-contents {
		width: 100%;
		margin: 0;
	}

	#timetable {
		width: 100%;
		height: auto;
		padding-top: 33px;
		padding-left: 10px;
		padding-right: 10px;
		padding-bottom: 25px;
		background: #c12b1f;
	}
	#timetable h2 {
		width: 53px;
		height: 18px;
		margin-bottom: 7px;
		background-image: url(../img/sub-directory/timetable/sp/timetable_shd_01.png);
		background-size: 53px 18px;
	}
	#timetable .lead {
		line-height: 1.7;
		font-size: 14px;
	}
	#timetable .note {
		margin-top: 16px;
		font-size: 10px;
	}
	#timetable .link {
		display: block;
		margin-top: 4px;
	}
	#timetable .link a {
		position: relative;
		padding-left: 6px;
		color: #e7bd85;
	}
	#timetable .link a:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		display: block;
		width: 18px;
		height: 18px;
		background-image: url(../img/parts/sp/bg_arrow-right_01.png);
		background-position: left top;
		background-repeat: no-repeat;
		background-size: 9px 9px;
	}

	.tt-list {
		width: 100%;
		margin: 0;
	}

	.tt-content .left {
		width: 100%;
		float: none;
		margin-top: 0;
	}
	.tt-content .left dl, .tt-content .right {
		display: none;
	}

	#tt-01 {
		margin-top: 32px;
	}
	#tt-01 .tt-content {
		padding-bottom: 28px;
		border-bottom: 1px solid #fff;
	}
	#tt-01 .tt-content .left {
		height: 0;
		padding-bottom: 85.4153%;
		background-image: url(../img/sub-directory/timetable/sp/timetable_down_2025.png);
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
	}

	#tt-02 {
		margin-top: 0;
	}
	#tt-02 .tt-content {
		padding-top: 28px;
	}
	#tt-02 .tt-content .left {
		height: 0;
		padding-bottom: 85.4153%;
		background-image: url(../img/sub-directory/timetable/sp/timetable_up_2025.png);
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
	}

	#price {
		width: 100%;
		height: auto;
		margin-top: 0;
		padding-top: 36px;
		padding-bottom: 28px;
		background: #be904a;
	}
	#price h2 {
		width: 54px;
		height: 18px;
		background-image: url(../img/sub-directory/timetable/sp/timetable_shd_02.png);
		background-size: 54px 18px;
	}
	#price .note {
		margin-top: 21px;
		margin-left: 0;
		margin-right: 0;
		font-size: 10px;
	}



	#price_rilakkuma {
		width: 100%;
		height: auto;
		margin-top: 0;
		padding-top: 36px;
		padding-bottom: 28px;
		background: #be904a;
	}
	#price_rilakkuma h2 {
		width: 54px;
		height: 18px;
		background-image: url(../img/sub-directory/timetable/sp/timetable_shd_02.png);
		background-size: 54px 18px;
	}
	#price_rilakkuma .note {
		margin-top: 21px;
		margin-left: 0;
		margin-right: 0;
		font-size: 10px;
	}




	#price-content {
		width: 100%;
		margin-top: 26px;
		padding-left: 10px;
		padding-right: 10px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}

	#pc-inner {
		width: 100%;
		height: 0;
		margin-left: 0;
		margin-right: 0;
/*		padding-bottom: 37.91%;	/* 20230318 */
		padding-bottom: 41.66%;	/* 20250315 */
/*		background-image: url(../img/sub-directory/timetable/sp/timetable_price_img_01_202303.png);	/*20230318 */
		background-image: url(../img/sub-directory/timetable/sp/timetable_price_img_01_202503.png);	/*20230318 */
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
	}

	#pc-inner_rilakkuma {
		width: 100%;
		height: 0;
		margin-left: 0;
		margin-right: 0;
		padding-bottom: 57.1428%;	/* 20230318 */
		background-image: url(../img/sub-directory/timetable/sp/timetable_price_img_01_2023_rilakkuma.png);	/*20230318 */
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.table-layout-02 {
		display: none;
	}

	#access {
		width: 100%;
		height: auto;
		margin: 0 auto;
		background-image: url(../img/sub-directory/timetable/sp/timetable_access_bg_01.jpg);
		background-position: center top;
		background-repeat: repeat;
		background-size: 320px 564px;
	}
	#access h2 {
		height: 48px;
		background-image: url(../img/sub-directory/timetable/sp/timetable_shd_03.png);
		background-size: 181px 18px;
	}

	#ac-view {
		width: 100%;
		height: auto;
		padding-left: 10px;
		padding-right: 10px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#ac-view figure {
		display: none;
	}
	#ac-view .btn {
		position: static;
	}
	#ac-view .btn a {
		width: 100%;
		height: 0;
		padding-bottom: 69.0789%;
		background-image: url(../img/sub-directory/timetable/sp/timetable_access_img_01.png);
		background-size: cover;
	}
	#ac-view .btn a:hover {
		background-position: 0 0;
	}

	#ac-road {
		margin-top: 35px;
		margin-left: 10px;
		margin-right: 10px;
		padding: 0 0 43px 0;
		background: none;
	}
	#ac-road h3 {
		margin-bottom: 13px;
		padding: 5px 13px 3px 13px;
		font-size: 14px;
	}
	#ac-road dl {
		width: 100%;
	}
	#ac-road dl dt, #ac-road dl dd {
		line-height: 1.6;
		font-size: 12px;
	}
	#ac-road dl dt {
		width: 100%;
		float: none;
	}
	#ac-road dl dt ~ dt {
		margin-top: 3px;
		padding-top: 3px;
		border-top: 1px dashed #333;
	}
	#ac-road dl dd {
		width: 100%;
		float: none;
	}
}
.service #title h1 {
	margin-top: 8px;
	margin-left: -99px;
}
.service #title h1 span {
	width: 198px;
	height: 95px;
	background-image: url(../img/sub-directory/service/service_hd.png);
}
.service #ttl-bg {
	background-image: url(../img/sub-directory/service/service_title_img.jpg);
}

#service-intro {
	position: relative;
}

#si-bg {
	min-height: 472px;
	background-image: url(../img/sub-directory/service/service_intro_img.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

#si-bg:before {
	content: "";
	display: block;
	padding-bottom: 33.7143%;
}

#si-content-all {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

#si-content {
	position: relative;
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}
#si-content p {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -83px;
	margin-left: -435px;
	line-height: 2.3;
	font-size: 20px;
}




.mt0 {
  margin-top: 0px  !important; }
.mb0 {
  margin-bottom: 0px  !important; }
.pt0 {
  padding-top: 0px  !important; }
.pb0 {
  padding-bottom: 0px  !important; }
.mt2 {
  margin-top: 2px  !important; }
.mt3 {
  margin-top: 3px  !important; }
.mt4 {
  margin-top: 4px  !important; }
.mt5 {
  margin-top: 5px  !important; }
.mb5 {
  margin-bottom: 5px  !important; }
.pt5 {
  padding-top: 5px  !important; }
.pb5 {
  padding-bottom: 5px  !important; }
.mt10 {
  margin-top: 10px  !important; }
.mb10 {
  margin-bottom: 10px  !important; }
.ml10 {
  margin-left: 10px  !important; }
.mr10 {
  margin-right: 10px  !important; }
.pl10 {
  padding-left: 10px  !important; }
.pl5 {
  padding-left: 5px  !important; }
.pr10 {
  padding-right: 10px  !important; }
.pt10 {
  padding-top: 10px  !important; }
.pb10 {
  padding-bottom: 10px  !important; }
.mt15 {
  margin-top: 15px  !important; }
.mb15 {
  margin-bottom: 15px  !important; }
.pt15 {
  padding-top: 15px  !important; }
.pb15 {
  padding-bottom: 15px  !important; }
.pl15 {
  padding-left: 15px  !important; }
.pr15 {
  padding-right: 15px  !important; }
.mt20 {
  margin-top: 20px  !important; }
.mb20 {
  margin-bottom: 20px  !important; }
.pt20 {
  padding-top: 20px  !important; }
.pb20 {
  padding-bottom: 20px  !important; }
.ml20 {
  margin-left: 20px  !important; }
.mr20 {
  margin-right: 20px  !important; }
.pl20 {
  padding-left: 20px  !important; }
.pr20 {
  padding-right: 20px  !important; }
.mt25 {
  margin-top: 25px  !important; }
.mb25 {
  margin-bottom: 25px  !important; }
.pt25 {
  padding-top: 25px  !important; }
.pb25 {
  padding-bottom: 25px  !important; }
.mt30 {
  margin-top: 30px  !important; }
.mb30 {
  margin-bottom: 30px  !important; }
.ml30 {
  margin-left: 30px  !important; }
.pt30 {
  padding-top: 30px  !important; }
.pb30 {
  padding-bottom: 30px  !important; }
.mt35 {
  margin-top: 35px  !important; }
.mb35 {
  margin-bottom: 35px  !important; }
.pt35 {
  padding-top: 35px  !important; }
.pb35 {
  padding-bottom: 35px  !important; }
.mt40 {
  margin-top: 40px  !important; }
.mb40 {
  margin-bottom: 40px  !important; }
.pt40 {
  padding-top: 40px  !important; }
.pb40 {
  padding-bottom: 40px  !important; }
.mt45 {
  margin-top: 45px  !important; }
.mb45 {
  margin-bottom: 45px  !important; }
.pt45 {
  padding-top: 45px  !important; }
.pb45 {
  padding-bottom: 45px  !important; }
.mt50 {
  margin-top: 50px  !important; }
.mb50 {
  margin-bottom: 50px  !important; }
.pt50 {
  padding-top: 50px  !important; }
.pb50 {
  padding-bottom: 50px  !important; }


.cf:before,
.cf:after {
	content:"";
	display:table;
}
.cf:after {
	clear:both;
}
.cf {
	zoom:1;
}






/*	herb festival	*/
#herb_festival {
/*	position: relative;	/**/
	padding:10px 0 30px;
	background: repeating-linear-gradient(-45deg, #f8eff9, #f8eff9 10px, #faf5fb 0, #faf5fb 20px);
	margin-bottom:0px;

}
#herb-bg {
/*
	min-height: 472px;
	background-image: url(../img/sub-directory/service/service_intro_img.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
*/
}
/*
#herb-bg:before {
	content: "";
	display: block;
	padding-bottom: 33.7143%;
}
*/
#herb-content-all {
/*
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
*/
}
#herb-content {
/*
	position: relative;
	height: 100%;
	margin: 0 auto;
*/
	width: 1000px;
	margin:20px auto;
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

#herb-content {
}

.herb_event h3 {
	color:#673AB7;
	font-size:2.5em;
	text-align:center;
	line-height:1.2em;
	margin-top:0px;
	margin-bottom:0px;
	letter-spacing:-0.02em;
	font-weight:bold;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif !important;
}
.herb_event h3 span {
	display: block;
}
.herb_event h3 span > small {
	display: inline-block;
	font-size:0.7em !important;
	text-align:center;
	margin-top:0px;
	line-height:0.4em;
	padding:0.6em 0;
	color:#673AB7;
	font-weight:bold;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif !important;
}

.herb_event h3 span.sub2 {
	display: inline-block;
	font-size:1em !important;
	text-align:center;
	margin-top:10px;
	line-height:0.4em;
	padding:0.6em 2em;
	border-top:1px #673AB7 solid;
	border-bottom:none !important;
}

.herb_event_wrapper_l {
	width:480px;
	float:left;
}
.herb_event_wrapper_r {
	width:480px;
	float:right;
}




.herb_event_wrapper_l2 {
	width:580px;
	float:left;
}
.herb_event_wrapper_r2 {
	width:380px;
	float:right;
}

@media (min-width: 768px) {


	.herb_dl-horizontal3 dt {
		float: left;
		width: 60px;
		clear: left;
		text-align: left;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		color:#673AB7;
		border-top:1px #E1BEE7 solid;
		padding:8px 3px;
		font-size:18px;
	}
	.herb_dl-horizontal3 dd {
		margin-left: 60px;
		padding:8px 3px;
		color:#000;
		border-top:1px #E1BEE7 solid;
		font-size:18px;
	}
}
@media (max-width: 767px) {
	.herb_event_wrapper_l2 ,
	.herb_event_wrapper_r2 ,
	.herb_event_wrapper_l ,
	.herb_event_wrapper_r {
		width:96%;
		float:none;
		margin:10px auto 20px;
	}

	.herb_dl-horizontal3 dt {
		color:#673AB7;
		padding:5px 10px 0px;
		font-size:16px;
	}
	.herb_dl-horizontal3 dd {
		padding:5px 10px 5px;
		border-bottom:1px #9575CD solid;
		margin-bottom:10px;
		font-size:16px;
	}


}

.bld {
	font-weight:bold;
}
.herb_access h3 {
	color:#673AB7;
	font-size:1.5em;
	text-align:center;
	line-height:1.2em;
	margin-top:50px;
	letter-spacing:-0.02em;
	font-weight:bold;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif !important;
}
.herb_access h3 span {
	display: block;
}
h3.ev_title {
	margin-top:30px;
}
.herb_access h3 span > small {
	display: inline-block;
	font-size:0.8em !important;
	text-align:center;
	margin-top:10px;
	line-height:0.4em;
	padding:0.6em 0;
	color:#673AB7;
	font-weight:bold;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif !important;
}

.herb_access h3 span.sub2 {
	display: inline-block;
	font-size:1em !important;
	text-align:center;
	margin-top:10px;
	line-height:0.4em;
	padding:0.6em 2em;
	border-top:1px #673AB7 solid;
	border-bottom:none !important;
}

@media (max-width: 767px) {
	.herb_event h3 ,
	.herb_access h3 {
		color:#673AB7;
		font-size:2em;
		text-align:center;
		line-height:1.2em;

		letter-spacing:-0.02em;
		font-weight:bold;
		font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif !important;
	}
	.herb_event h3 span {
		display: inherit;
		line-height:1.5em;
	}
	.herb_access h3 span {
		display: block;
		line-height:1.5;
	}
	.herb_event h3 span > small {
		line-height:1.1em;
	}
	.herb_access h3 span > small {
		font-size:1.2em;
	}
	.herb_event h3 span.sub2 ,
	.herb_access h3 span.sub2 {
		display: inline-block;
		font-size:0.9em !important;
		text-align:center;
		margin-top:10px;
		line-height:1;
		padding:0.6em 2em;
		border-top:1px #673AB7 solid;
		border-bottom:none !important;
	}
}


.btn-herb {
	color: #fff;
	background-color: #5E35B1;/**/
	border: 1px #5E35B1 solid;
	padding:0.6em 0 0.7em;
	margin-top:20px;
	margin-left:auto;
	margin-right:auto;
	border-radius: 5px;
	font-size:18px;
	text-align:center;
	display:block;
	width:70%;

}
.btn-herb span:after {
	content: " > ";
	font-size:1em;
	text-align:right !important;
	padding-left:0.8em;
}

.btn-herb:hover,
.btn-herb:focus,
.btn-herb.focus,
.btn-herb:active,
.btn-herb.active,
.open > .dropdown-toggle.btn-herb {
	color: #fff;
	background-color: #4527A0;
	border-color: #4527A0;
}


#herb-content .lead {
	text-align:center;
	font-size: 20px;
	margin-top:30px;
}

#herb-content .p1 {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -83px;
	margin-left: -435px;
	line-height: 2.3;
	font-size: 20px;
}


.visible-xs{
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
}





/*	ekiben	*/
#ekiben {
/*	position: relative;	/**/
	padding:10px 0 30px;
	background: url(../img/sub-directory/service/bg_ekiben2.jpg) top center repeat;
	margin-bottom:0px;

}
#ekiben-bg {
}
#ekiben-content-all {
}
#ekiben-content {
	width: 1000px;
	margin:20px auto;
}


#ekiben-content {
}

.ekiben_info h3 {
	color:#673AB7;
	text-align:center;
	line-height:1.2em;
	margin-top:0px;
	margin-bottom:0px;
	letter-spacing:-0.02em;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif !important;
	font-weight:700;
	font-size:2.6em;
	color:#3E2723;
}
.ekiben_info h3 span {
}
.ekiben_info h3 span > small {
	display: inline-block;
	font-size:0.7em !important;
	text-align:center;
	margin-top:0px;
	line-height:0.4em;
	padding:0.6em 0;
	color:#3E2723;
	font-weight:bold;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif !important;
}

.ekiben_info h4 {
	color:#673AB7;
	text-align:center;
	line-height:1.2em;
	margin-top:10px;
	margin-bottom:5px;
	letter-spacing:-0.02em;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif !important;
	font-weight:700;
	font-size:2em;
	color:#3E2723;
}
.ekiben_info .ekiben_lead {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif !important;
	color:#4E342E;
	font-weight:bold;
	margin-bottom:10px;
	font-size:1.3em;
	min-height:4.5em;
}
.ekiben_info .ekiben_price {
	color:#3E2723;
	text-align:right;
	font-weight: 500;
	font-family: 'Archivo Narrow', Open Sans, sans-serif;
	font-size:1.5em;
	margin-bottom:0px;
}
.ekiben_info .ekiben_memo {
	margin-bottom:10px;
	margin-top:10px;
	border-top:1px #c0968f solid;
	padding-top:10px;
	font-size:1.5em;
	color:#000;
}

.ekiben_info .label {
	background:#4E342E;
	color:#fff;
	font-size:0.8em;
	padding:2px 5px;
}

.ekiben_info_wrapper_l0 {
	width:120px;
	float:left;
	margin-right:13px;
	display:block;
}
.ekiben_info_wrapper_l {
	width:240px;
	float:left;
	margin-right:13px;
	display:block;
}
.ekiben_info_wrapper_r {
	width:240px;
	float:right;
}

.ekiben_info_wrapper_l-2 {
	width:480px;
	float:left;
	margin-right:13px;
}
.ekiben_info_wrapper_r-2 {
	width:480px;
	float:right;
}




@media (max-width: 767px) {
	#ekiben-content {
		width: auto;
		margin:20px auto;
	}

	.ekiben_info .ekiben_lead {
		min-height:2.5em;
	}

	.ekiben_info_wrapper_l-2 ,
	.ekiben_info_wrapper_r-2 ,
	.ekiben_info_wrapper_l2 ,
	.ekiben_info_wrapper_r2 ,
	.ekiben_info_wrapper_l ,
	.ekiben_info_wrapper_r {
		width:96%;
		float:none;
		margin:10px auto 20px;
	}

	.ekiben_info_wrapper_r-2 img ,
	.ekiben_info_wrapper_l-2 img ,
	.ekiben_info_wrapper_l img ,
	.ekiben_info_wrapper_r img {
  max-width: 100% !important;
  height: auto;
	}

}

.bld {
	font-weight:bold;
}

.btn-ekiben {
	color: #fff;
	background-color: #54352f;/**/
	border: 1px #54352f solid;
	padding:0.6em 0 0.7em;
	margin-top:20px;
	margin-left:auto;
	margin-right:auto;
	border-radius: 5px;
	font-size:18px;
	text-align:center;
	display:block;
	width:70%;

}
.btn-ekiben span:after {
	content: " > ";
	font-size:1em;
	text-align:right !important;
	padding-left:0.5em;
}

.btn-ekiben:hover,
.btn-ekiben:focus,
.btn-ekiben.focus,
.btn-ekiben:active,
.btn-ekiben.active,
.open > .dropdown-toggle.btn-ekiben {
	color: #fff;
	background-color: #744942;
	border-color: #744942;
}




.visible-xs{
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
}









#special-service {
	width: 100%;
/*	height: 1627px;	/**/
	height: 1727px;			/*	1個スイーツがある場合　（アレルギーがある場合）	*/
	height: 2100px;			/*	2個スイーツがある場合	*/
	background-color: #c12b1f;
	background-image: url(../img/sub-directory/service/service_bg_01.jpg);
	background-position: center top;
/*		background-repeat: no-repeat;	/**/
	background-repeat: repeat-y;
}

#special-service2menu {
	width: 100%;
/*	height: 1627px;	/**/
/*	height: 1727px;			/*	1個スイーツがある場合　（アレルギーがある場合）	*/
	height: 2400px;			/*	2個スイーツがある場合	*/
	background-color: #c12b1f;
	background-image: url(../img/sub-directory/service/service_bg_01.jpg);
	background-position: center top;
/*		background-repeat: no-repeat;	/**/
	background-repeat: repeat-y;
}

#special-service2menu_2 {
	width: 100%;
/*	height: 1627px;	/**/
/*	height: 1727px;			/*	1個スイーツがある場合　（アレルギーがある場合）	*/
/*	height: 2400px;			/*	2個スイーツがある場合	*/
/**		min-height: 2940px;			/*	2個スイーツがある場合	*/
	background-color: #c12b1f;
	background-image: url(../img/sub-directory/service/service_bg_01.jpg);
	background-position: center top;
/*		background-repeat: no-repeat;	/**/
	background-repeat: repeat-y;
}

#ss-content {
	width: 1000px;
	height: 100%;
	margin: 0 auto 0px;
	padding-top: 84px;
	padding-bottom: 40px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#ss-content h2 {
	width: 329px;
	height: 29px;
	margin: 0 auto 15px;
	background-image: url(../img/sub-directory/service/service_shd_01.png);
	background-position: center top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

.ss-lead {
	margin-bottom: 53px;
	text-align: center;
	line-height: 1.8;
	color: #fff;
	font-size: 17px;
}

.ss-lead_wa {
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.8;
	color: #fff;
	font-size: 16px;
	border-bottom: 1px #1B5E20 solid;
	margin-left: 20px;
	margin-right: 20px;
	padding-bottom: 20px;
}
.ss-lead_wa2 {
	margin-bottom: 30px;
	margin-left: 20px;
	margin-right: 20px;
	text-align: left;
	line-height: 1.8;
	color: #fff;
	font-size: 16px;
}

/*	20190701	tea 追加	*/
.tea {
	width: 640px;
	height: 340px;
	margin: -50px auto 0;
	display:flex;
	justify-content: space-between;

	align-items:center;
}
.tea .tea_memo {
	width:55%;


	text-align: left;
	line-height: 1.8;
	color: #fff;
	font-size: 17px;
}
.tea .tea_img {
	width:40%;
}
.tea .tea_img img {
  max-width: 100%;
  height: auto;
}




#ss-suite-plan {
	width: 949px;
/*	height: 1270px;	/**/
	height: 1470px;				/*	1個スイーツがある場合　（アレルギーがある場合）	*/
/*	height: 2570px;				/*	2個スイーツがある場合	*/
	margin: 0 auto;
	padding: 43px 45px 0 41px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
/*	background-image: url(../img/sub-directory/service/service_frame_bg.png);			/**/
	background-image: url(../img/sub-directory/service/service_frame_bg2.png);			/*	1個スイーツがある場合　（アレルギーがある場合）	*/
/*	background-image: url(../img/sub-directory/service/service_frame_bg3.png);			/* 2個スイーツある場合	*/
	background-position: center top;
	background-repeat: no-repeat;
}
#ss-suite-plan h3 {
	width: 250px;
	height: 22px;
	margin: 0 auto 14px;
	background-image: url(../img/sub-directory/service/service_shd_02.png);
	background-position: center top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ss-suite-plan .btn {
	width: 402px;
	margin: 0 auto;
}
#ss-suite-plan .btn a {
	display: block;
	width: 100%;
	height: 37px;
	background-image: url(../img/sub-directory/service/service_btn_01.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ss-suite-plan .btn a:hover {
	background-position: 0 -37px;
}







#ss-suite-plan2menu {
	width: 949px;
/*	height: 1270px;	/**/
/*	height: 1470px;				/*	1個スイーツがある場合　（アレルギーがある場合）	*/
	height: 2570px;				/*	2個スイーツがある場合	*/
	margin: 0 auto;
	padding: 43px 45px 0 41px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
/*	background-image: url(../img/sub-directory/service/service_frame_bg.png);			/**/
/*	background-image: url(../img/sub-directory/service/service_frame_bg2.png);			/*	1個スイーツがある場合　（アレルギーがある場合）	*/
	background-image: url(../img/sub-directory/service/service_frame_bg3.png);			/* 2個スイーツある場合	*/
	background-position: center top;
	background-repeat: no-repeat;
}
#ss-suite-plan2menu h3 {
	width: 250px;
	height: 22px;
	margin: 0 auto 14px;
	background-image: url(../img/sub-directory/service/service_shd_02.png);
	background-position: center top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ss-suite-plan2menu .btn {
	width: 402px;
	margin: 0 auto;
}
#ss-suite-plan2menu .btn a {
	display: block;
	width: 100%;
	height: 37px;
	background-image: url(../img/sub-directory/service/service_btn_01.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ss-suite-plan2menu .btn a:hover {
	background-position: 0 -37px;
}






#ss-suite-plan2menu_2 {
	width: 949px;
/*	height: 1270px;	/**/
/*	height: 1470px;				/*	1個スイーツがある場合　（アレルギーがある場合）	*/
/*	height: 2570px;				/*	2個スイーツがある場合	*/
/**	min-height: 2870px;				/*	2個スイーツがある場合	*/
	margin: 0 auto;
	padding: 43px 45px 40px 41px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
/*	background-image: url(../img/sub-directory/service/service_frame_bg.png);			/**/
/*	background-image: url(../img/sub-directory/service/service_frame_bg2.png);			/*	1個スイーツがある場合　（アレルギーがある場合）	*/

/*	background-image: url(../img/sub-directory/service/service_frame_bg4.png);			/* 2個スイーツある場合	*/

/*	background-color: rgba(250, 0, 0, 0.4);	/**/
	background-position: center top;
	background-repeat: no-repeat;

	border: 1px #fff solid;
}



#ss-suite-plan2menu_2 h3 {
	width: 250px;
	height: 22px;
	margin: 0 auto 14px;
	background-image: url(../img/sub-directory/service/service_shd_02.png);
	background-position: center top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ss-suite-plan2menu_2 .btn {
	width: 402px;
	margin: 0 auto;
}
#ss-suite-plan2menu_2 .btn a {
	display: block;
	width: 100%;
	height: 37px;
	background-image: url(../img/sub-directory/service/service_btn_01.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ss-suite-plan2menu_2 .btn a:hover {
	background-position: 0 -37px;
}




.ss-sp-lead {
	margin-bottom: 22px;
	text-align: center;
	line-height: 1.9;
	color: #fff;
	font-size: 16px;
}

#ss-sp-menu {
	margin-top: 38px;
	padding-top: 16px;
/*	background-color: #ae2b1f;		/**/
	color: #fff;
}
#ss-sp-menu .sweets_inner {
/*	background-color: #ae2b1f;	/**/
	padding: 20px 10px;
	background-color: rgba(174, 43, 31, 0.9);
}
#ss-sp-menu .wa_sweets_inner {
/*	background-color: #030;	/**/
	padding: 20px 10px;
	background-color: rgba(1, 48, 4, 0.8);

}

#ss-sp-menu h4 {
	margin-bottom: 8px;
	margin-left: 19px;
	font-size: 18px;
}



#ss-sp-menu .btn2 {
	width: 402px;
	margin: 10px auto 30px;
}
#ss-sp-menu .btn2 a {
	display: block;
	width: 100%;
	height: 52px;
	background-image: url(../img/sub-directory/service/service_btn_rilakkuma.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ss-sp-menu .btn2 a:hover {
	background-position: 0 -52px;
}









#ss-sp-menu .produce {
	margin: 30px auto 0;
	width: calc(100% - 40px);
	padding-left: 20px;
	padding-right: 20px;
}
#ss-sp-menu .produce h4 {
	font-size: 16px;
	padding-top: 20px;
	margin-bottom: 15px;
}
#ss-sp-menu .produce h4 span {
	display: block;
	font-size: 18px;
}
#ss-sp-menu .produce .shop_info {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#ss-sp-menu .produce .shop_info .photo {
	width: 41.5%;
}
#ss-sp-menu .produce .shop_info .photo img {
	max-width: 100%;
	height: auto;
}

#ss-sp-menu .produce .shop_info .info {
	width: 55%;
}
#ss-sp-menu .produce .shop_info .info p {
	font-size: 14px;
	line-height: 1.8;
	margin-bottom: 10px;
}
#ss-sp-menu .produce .shop_info .info .button {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    border: 1px solid #fff;
    border-radius: 0px;
    color: #fff;
    font-size: 1em;
}
#ss-sp-menu .produce .shop_info .info .button::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
}



@media only screen and (max-width: 736px) {
	#ss-sp-menu .produce {
		margin: 20px auto 0;
		width: calc(100% - 20px);
		padding-left: 10px;
		padding-right: 10px;
	}
	#ss-sp-menu .produce h4 {
		font-size: 16px;
		padding-top: 20px;
		margin-bottom: 15px;
	}
	#ss-sp-menu .produce h4 span {
		display: block;
		font-size: 18px;
	}
	#ss-sp-menu .produce .shop_info {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	#ss-sp-menu .produce .shop_info .photo {
		width: 100%;
		margin-bottom: 20px;
	}
	#ss-sp-menu .produce .shop_info .photo img {
		max-width: 100%;
		height: auto;
	}

	#ss-sp-menu .produce .shop_info .info {
		width: 100%;
	}
	#ss-sp-menu .produce .shop_info .info p {
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 10px;
	}
	#ss-sp-menu .produce .shop_info .info .button {
		display: flex;
		justify-content: center;
		align-items: center;
		min-width: 250px;
		margin:0 auto;
		padding: .9em 2em;
		border: 1px solid #fff;
		border-radius: 0px;
		color: #fff;
		font-size: 1em;
	}
	#ss-sp-menu .produce .shop_info .info .button::after {
		transform: rotate(45deg);
		width: 5px;
		height: 5px;
		margin-left: 10px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		content: '';
	}

}






#ss-sp-content {
	margin-bottom: 17px;			/*	1個スイーツがある場合　（アレルギーがある場合）	*/
/*	margin-bottom: 37px;			/*	2個スイーツがある場合	*/
}
#ss-sp-content .left {
	width: 337px;
	float: left;
	margin-left: 19px;
}
#ss-sp-content .left figure {
	width: 337px;
	height: 316px;
	background-image: url(../img/sub-directory/service/service_img_01_201701.jpg);
	background-position: left top;
	background-repeat: no-repeat;
}

#ss-sp-content .left figure.p202503 {	/*	sweets	*/
	width: 337px;
	height: 316px;
	background-image: url(../img/sub-directory/service/service_img_01_202503.jpg);
	background-position: left top;
	background-repeat: no-repeat;
}
#ss-sp-content .left figure.p202506 {	/*	sweets	*/
	width: 337px;
	height: 316px;
	background-image: url(../img/sub-directory/service/service_img_01_202506.jpg);
	background-position: left top;
	background-repeat: no-repeat;
}
#ss-sp-content .right {
	width: 480px;
	float: right;
	padding-right: 19px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#ss-sp-content .right dl {
	position: relative;
	padding-left: 21px;
}
#ss-sp-content .right dl dt {
	position: relative;
	margin-bottom: 3px;
	font-size: 16px;
	font-weight: bold;
}
#ss-sp-content .right dl dt:before {
	content: "";
	position: absolute;
	top: 4px;
	left: -21px;
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 50px;
	background-color: #fff;
}
#ss-sp-content .right dl dt ~ dt {
	margin-top: 9px;
}
#ss-sp-content .right dl dd {
	font-size: 14px;
}
#ss-sp-content .right dl:before {
	content: "";
	position: absolute;
	top: 4px;
	left: 7px;
	display: block;
	width: 1px;
/*	height: 228px;	/**/
	height: 246px;	/*	白い線の長さ*/
	background-color: #fff;/**/
}
#ss-sp-content .right p {
	margin-top: 12px;
	text-align: right;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
	font-size: 14px;
}



/*	2個スイーツがある場合	*/
#ss-sp-content_2nd_area {
	margin-bottom: 17px;
}
#ss-sp-content_2nd_area .left {
	width: 337px;
	float: left;
	margin-left: 19px;
}
#ss-sp-content_2nd_area .left figure {
	width: 337px;
	height: 316px;
	background-image: url(../img/sub-directory/service/service_img_01_2016.jpg);
	background-position: left top;
	background-repeat: no-repeat;
}

#ss-sp-content_2nd_area .left figure.p202503 {	/*	sweets	*/
	width: 337px;
	height: 316px;
	background-image: url(../img/sub-directory/service/service_img_01_202503.jpg);
	background-position: left top;
	background-repeat: no-repeat;
}
#ss-sp-content_2nd_area .left figure.p202506 {	/*	sweets	*/
	width: 337px;
	height: 316px;
	background-image: url(../img/sub-directory/service/service_img_01_202506.jpg);
	background-position: left top;
	background-repeat: no-repeat;
}
#ss-sp-content_2nd_area .right {
	width: 460px;
	float: right;
	padding-right: 19px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#ss-sp-content_2nd_area .right dl {
	position: relative;
	padding-left: 21px;
}
#ss-sp-content_2nd_area .right dl dt {
	position: relative;
	margin-bottom: 3px;
	font-size: 16px;
	font-weight: bold;
}
#ss-sp-content_2nd_area .right dl dt:before {
	content: "";
	position: absolute;
	top: 4px;
	left: -21px;
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 50px;
	background-color: #fff;
}
#ss-sp-content_2nd_area .right dl dt ~ dt {
	margin-top: 9px;
}
#ss-sp-content_2nd_area .right dl dd {
	font-size: 14px;
}
#ss-sp-content_2nd_area .right dl:before {
	content: "";
	position: absolute;
	top: 4px;
	left: 7px;
	display: block;
	width: 1px;
/*201610	height: 228px;	/*	アレルギーがある場合	*/
	height: 240px;			/*	2個スイーツがある場合	*/
	background-color: #fff;
}
#ss-sp-content_2nd_area .right p {
	margin-top: 12px;
	text-align: left;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
	font-size: 14px;
}





/*	2個スイーツがある場合	*/
#ss-sp-content2menu {
	margin-bottom: 17px;
}
#ss-sp-content2menu .left {
	width: 337px;
	float: left;
	margin-left: 19px;
}
#ss-sp-content2menu .left figure {
	width: 337px;
	height: 316px;
	background-image: url(../img/sub-directory/service/service_img_01_201701.jpg);
	background-position: left top;
	background-repeat: no-repeat;
}
#ss-sp-content2menu .left figure.p202503 {	/*	sweets	*/
	width: 337px;
	height: 316px;
	background-image: url(../img/sub-directory/service/service_img_01_202503.jpg);
	background-position: left top;
	background-repeat: no-repeat;
}
#ss-sp-content2menu .left figure.p202506 {	/*	sweets	*/
	width: 337px;
	height: 316px;
	background-image: url(../img/sub-directory/service/service_img_01_202506.jpg);
	background-position: left top;
	background-repeat: no-repeat;
}
#ss-sp-content2menu .left figure.p202507_wa {	/*	sweets	*/
	width: 337px;
	height: 211px;
	background-image: url(../img/sub-directory/service/wa_sweets202507.jpg);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: cover;
}
#ss-sp-content2menu .right {
	width: 460px;
	float: right;
	padding-right: 19px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#ss-sp-content2menu .right dl {
	position: relative;
	padding-left: 21px;
}
#ss-sp-content2menu .right dl dt {
	position: relative;
	margin-bottom: 3px;
	font-size: 16px;
	font-weight: bold;
}
#ss-sp-content2menu .right dl dt:before {
	content: "";
	position: absolute;
	top: 4px;
	left: -21px;
	display: block;
	width: 15px;
	height: 15px;
	border-radius: 50px;
	background-color: #fff;
}
#ss-sp-content2menu .right dl dt ~ dt {
	margin-top: 9px;
}
#ss-sp-content2menu .right dl dd {
	font-size: 14px;
}
#ss-sp-content2menu .right dl:before {
	content: "";
	position: absolute;
	top: 4px;
	left: 7px;
	display: block;
	width: 1px;
/*201701	height: 228px;	/*	アレルギーがある場合	*/
	min-height: 300px;			/*	2個スイーツがある場合	*/
	background-color: #fff;
}
#ss-sp-content2menu .right p {
	margin-top: 20px;
	text-align: left;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
	font-size: 14px;
}








.free_drink {
	margin: 0 auto;
	width: 96%;
}
.free_drink img {
	max-width: 100%;
	height: auto;
}

.free_drink .ttl {
	font-weight: bold;
	color: #fff;
	margin-bottom: 8px;
	font-size: 18px;
	text-align: left;
}
.free_drink .drink_image {
	display: flex;
	justify-content: space-between;
	width: 90%;
	margin: auto;
}
.free_drink .drink_image .item {
	width: 49%;
}
.free_drink p {
	font-size: 14px;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 30px;
	margin-top: 10px;
	text-align: center;
}

@media only screen and (max-width: 736px) {
	.free_drink p {
		font-size: 12px;
		margin-bottom: 20px;
		margin-top: 10px;
		text-align: left;
	}
	.free_drink .ttl {
		font-size: 16px;
	}
}




#ss-sp-aside figure {
	width: 863px;
	height: 215px;
	background-image: url(../img/sub-directory/service/service_img_02.jpg);
	background-position: left top;
	background-repeat: no-repeat;
}

#ss-sp-chef {
	margin-top: 32px;
	background-color: #fff;
}
#ss-sp-chef .left {
	width: 590px;
	padding: 33px 28px 0 37px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
}
#ss-sp-chef .left h4 {
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: normal;
}
#ss-sp-chef .left h4 span {
	margin-left: 1em;
}
#ss-sp-chef .left h5 {
	margin-bottom: 12px;
	border-bottom: 1px solid #000;
	line-height: 1.2;
	font-family: Helvetica Neue, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
}
#ss-sp-chef .left p {
	font-size: 14px;
	line-height: 1.5;
	margin-top: 10px;
}

#ss-sp-chef .left dl dt, #ss-sp-chef .left dl dd {
	float: left;
	font-size: 14px;
}
#ss-sp-chef .left dl dt {
	clear: both;
	width: 86px;
}
#ss-sp-chef .left dl dd {
	width: 447px;
}
#ss-sp-chef .left dl dt ~ dt, #ss-sp-chef .left dl dd ~ dd {
	margin-top: 9px;
}
#ss-sp-chef .left ul .it {
	margin-left: -6px;
}
#ss-sp-chef .left ul .ib {
	margin-left: 1em;
}
#ss-sp-chef .left ul li ~ li {
	margin-top: 10px;
}
#ss-sp-chef .right {
	width: 265px;
	float: right;
}
#ss-sp-chef .right figure {
	width: 265px;
	height: 298px;
/*	background-image: url(../img/sub-directory/service/service_hashimoto_img.jpg);	/**/
	background-image: url(../img/sub-directory/service/service_highlandresort.jpg);
	background-position: left top;
	background-repeat: no-repeat;
}

#ss-car-interior-shop {
/*
	position: relative;
*/
/*	height: 1000px;	/**/
/*
	height: 2200px;
*/
	background-image: url(../img/sub-directory/service/service_car-interior-shop_img.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 80px;
}

/*#ss-cis-bg {
	min-height: 1000px;
	background-image: url(../img/sub-directory/service/service_car-interior-shop_img.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

#ss-cis-bg:before {
	content: "";
	display: block;
	padding-bottom: 71.4286%;
}*/
#ss-cis-content-all {
/*	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
*/
}

#ss-cis-content {
	position: relative;
	width: 1000px;
	height: 100%;
	margin: 0 auto;
	padding-top: 78px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #fff;
}
#ss-cis-content h2 {
	width: 230px;
	height: 29px;
	margin: 0 auto 19px;
	background-image: url(../img/sub-directory/service/service_shd_03.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ss-cis-content .lead {
	margin-bottom: 8px;
	text-align: center;
	line-height: 1.9;
	font-size: 16px;
}
#ss-cis-content .note {
	text-align: center;
	font-size: 12px;
}
#ss-cis-content .coming {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -14px;
	margin-left: -153px;
}
#ss-cis-content .coming span {
	display: block;
	width: 306px;
	height: 28px;
	background-image: url(../img/sub-directory/service/service_comingsoon_txt.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ss-cis-content ul {
	width: 900px;
	margin: 0 auto;
	padding-top: 48px;
	padding-left: 0;

	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;

}
#ss-cis-content ul li {
	width: 31%;
	margin-bottom: 20px;

}
#ss-cis-content ul::after {
	display: block;
	content:"";
	width: 31%;
}

/*
#ss-cis-content ul li ~ li {
	margin-left: 30px;
}
#ss-cis-content ul li:nth-child(3n+1) {
	margin-left: 0;
}
#ss-cis-content ul li:nth-child(n+4) {
	margin-top: 23px;
}
*/

#ss-cis-content ul dl dt {
	margin-bottom: 16px;
}
#ss-cis-content ul dl dt img {
	width: 100%;
	height: auto;
}
/*
#ss-cis-content ul dl dt span {
	display: block;
	width: 100%;
	height: 213px;
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
*/

#ss-cis-content ul dl dd {
	text-align: center;
	line-height: 1.6;
	font-size: 16px;
}
#ss-cis-content ul dl dd span {
	font-size: 18px;
}
/*
	#ss-cis-content ul li:nth-of-type(1) dl dt span {
		background-image: url(../img/goods/pc_goods_1.jpg);
	}
	#ss-cis-content ul li:nth-of-type(2) dl dt span {
		background-image: url(../img/goods/pc_goods_2.jpg);
	}
	#ss-cis-content ul li:nth-of-type(3) dl dt span {
		background-image: url(../img/goods/pc_goods_3.jpg);
	}
*/
		/*
		#ss-cis-content ul li:nth-of-type(4) dl dt span {
			background-image: url(../img/goods/pc_goods_4.jpg);
		}
		*/

/*
	#ss-cis-content ul li:nth-of-type(4) dl dt span {
		background-image: url(../img/goods/pc_goods_5.jpg);
	}
	#ss-cis-content ul li:nth-of-type(5) dl dt span {
		background-image: url(../img/goods/pc_goods_6.jpg);
	}

	#ss-cis-content ul li:nth-of-type(6) dl dt span {
		background-image: url(../img/goods/pc_goods_10.jpg);
	}
	#ss-cis-content ul li:nth-of-type(7) dl dt span {
		background-image: url(../img/goods/pc_goods_11.jpg);
	}
	#ss-cis-content ul li:nth-of-type(8) dl dt span {
		background-image: url(../img/sub-directory/service/curry_pc.jpg);
	}

	#ss-cis-content ul li:nth-of-type(9) dl dt span {
		background-image: url(../img/sub-directory/service/milk_jum_pc.jpg);
	}

	#ss-cis-content ul li:nth-of-type(10) dl dt span {
		background-image: url(../img/sub-directory/service/pudding_pc.jpg);
	}
	#ss-cis-content ul li:nth-of-type(11) dl dt span {
		background-image: url(../img/sub-directory/service/cookie_pc.jpg);
	}
	#ss-cis-content ul li:nth-of-type(12) dl dt span {
		background-image: url(../img/goods/pc_goods_8.jpg);
	}
	#ss-cis-content ul li:nth-of-type(13) dl dt span {
		background-image: url(../img/goods/pc_goods_9.jpg);
	}
	#ss-cis-content ul li:nth-of-type(14) dl dt span {
		background-image: url(../img/goods/pc_goods_13.jpg);
	}

*/


@media only screen and (max-width: 736px) {
	#contents.service #title h1 {
		margin-top: -21px;
		margin-left: -82px;
	}
	#contents.service #title h1 span {
		width: 164px;
		height: 65px;
		background-image: url(../img/sub-directory/service/sp/service_hd.png);
		background-size: 164px 65px;
	}
	#contents.service #ttl-bg {
		background-image: url(../img/sub-directory/service/sp/service_title_img.jpg);
	}

	#si-bg {
		min-height: 269px;
		background-image: url(../img/sub-directory/service/sp/service_intro_img.jpg);
	}

	#si-bg:before {
		padding-bottom: 84.0625%;
	}

	#si-content {
		width: 100%;
		margin: 0;
	}
	#si-content p {
		position: static;
		margin: 0;
		padding-top: 56.25%;
		text-align: center;
		line-height: 1.9;
		font-size: 14px;
	}




	#herb-bg {
/*
		min-height: 269px;
*/
		background-image: url(../img/sub-directory/service/sp/service_intro_img.jpg);
	}

	#herb-bg:before {
/*
		padding-bottom: 84.0625%;
*/
	}

	#herb-content {
		width: 100%;
		margin: 0;
	}
	#herb-content .p99 {
		position: static;
		margin: 0;
		padding-top: 56.25%;
		text-align: center;
		line-height: 1.9;
		font-size: 14px;
	}







	#special-service {
		position: relative;
		height: auto;
		padding-bottom: 33px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		background-image: none;
	}

	#special-service2menu {
		position: relative;
		height: auto;
		padding-bottom: 33px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		background-image: none;
	}

	#special-service2menu_2 {
		position: relative;
		height: auto;
		padding-bottom: 33px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		background-image: none;
	}

	#ss-bg {
		position: absolute;
		width: 100%;
		height: 0;
		padding-bottom: 154.0625%;
		background-image: url(../img/sub-directory/service/sp/service_bg_01.jpg);
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
	}

	#ss-content {
		position: relative;
		width: 100%;
		margin: 0;
		padding: 43px 10px 0 10px;
	}
	#ss-content h2 {
		width: 204px;
		height: 18px;
		margin-bottom: 13px;
		background-image: url(../img/sub-directory/service/sp/service_shd_01.png);
		background-size: 204px 18px;
	}

	.ss-lead {
		margin-bottom: 33px;
		padding-bottom: 35px;
		border-bottom: 1px solid #fff;
		font-size: 14px;
	}

	.ss-lead_wa {
		margin-bottom: 10px;
		text-align: left;
		line-height: 1.8;
		color: #fff;
		font-size: 14px;
		margin-left: 10px;
		margin-right: 10px;
	}
	.ss-lead_wa2 {
		margin-bottom: 10px;
		text-align: left;
		line-height: 1.8;
		color: #fff;
		font-size: 14px;
		margin-left: 10px;
		margin-right: 10px;
	}
	


	/*	20190701	tea 追加	*/
	.tea {
		width: 96%;
		height:auto;
		margin: 0 auto 30px;
		display:flex;
		justify-content: space-between;

		align-items:center;
	}
	.tea .tea_memo {
		width:60%;


		text-align: left;
		line-height: 1.5;
		color: #fff;
		font-size: 14px;
	}
	.tea .tea_img {
		width:35%;
	}
	.tea .tea_img img {
	  max-width: 100%;
	  height: auto;
	}


	#ss-suite-plan {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 0 0;
		background-image: none;
	}
	#ss-suite-plan h3 {
		width: 153px;
		height: 14px;
		background-image: url(../img/sub-directory/service/sp/service_shd_02.png);
		background-size: 153px 14px;
	}
	#ss-suite-plan .btn {
		width: 100%;
		margin: 0;
		padding-left: 4px;
		padding-right: 4px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#ss-suite-plan .btn a {
		width: 100%;
		height: 27px;
		padding-top: 4px;
		border: 1px solid #fff;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		text-align: center;
		background-image: none;
		color: #fff;
		font-size: 12px;
		overflow: visible;
		text-indent: 0;
		white-space: normal;
	}


	#ss-suite-plan .btn2 {
		width: 100%;
		margin: 0 0 20px;
		padding-left: 4px;
		padding-right: 4px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#ss-suite-plan .btn2 a {
		width: 100%;
		min-height: 65px;
		padding-top: 7px;
		padding-bottom: 5px;
		line-height: 1.5;
		border: 1px solid #fff;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		text-align: center;
		background-image: none;
		color: #fff;
		font-size: 12px;
/*
		overflow: visible;
*/
		text-indent: 0;
		white-space: normal;
	}





	#ss-suite-plan2menu {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 0 0;
		background-image: none;
	}
	#ss-suite-plan2menu h3 {
		width: 153px;
		height: 14px;
		background-image: url(../img/sub-directory/service/sp/service_shd_02.png);
		background-size: 153px 14px;
	}
	#ss-suite-plan2menu .btn {
		width: 100%;
		margin: 0;
		padding-left: 4px;
		padding-right: 4px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#ss-suite-plan2menu .btn a {
		width: 100%;
		height: 27px;
		padding-top: 4px;
		border: 1px solid #fff;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		text-align: center;
		background-image: none;
		color: #fff;
		font-size: 12px;
		overflow: visible;
		text-indent: 0;
		white-space: normal;
	}




	#ss-suite-plan2menu_2 {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0 0 0 0;
		background-image: none;
		border: none;
	}
	#ss-suite-plan2menu_2 h3 {
		width: 153px;
		height: 14px;
		background-image: url(../img/sub-directory/service/sp/service_shd_02.png);
		background-size: 153px 14px;
	}
	#ss-suite-plan2menu_2 .btn {
		width: 100%;
		margin: 0;
		padding-left: 4px;
		padding-right: 4px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#ss-suite-plan2menu_2 .btn a {
		width: 100%;
		height: 27px;
		padding-top: 4px;
		border: 1px solid #fff;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		text-align: center;
		background-image: none;
		color: #fff;
		font-size: 12px;
		overflow: visible;
		text-indent: 0;
		white-space: normal;
	}






	.ss-sp-lead {
		margin-bottom: 21px;
		line-height: 1.8;
		font-size: 14px;
	}

	#ss-sp-menu {
/*		margin-top: 29px;	/**/
		margin-top: 20px;
		padding: 0px 0 0 0;
		background-color: #830704;
	}
/*	#ss-sp-menu h4 {		/**/
/*		position: absolute;		/**/
/*		text-indent: -300%;		/**/
/*	}		/**/

	
	#ss-sp-menu .btn2 {
		width: 96%;
		margin: 20px auto 30px;
	}
	#ss-sp-menu .btn2 a {
		width: 100%;
		height: 27px;
		padding-top: 4px;
		border: 1px solid #fff;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		text-align: center;
		background-image: none;
		color: #fff;
		font-size: 12px;
		overflow: visible;
		text-indent: 0;
		white-space: normal;
	}
	
	
	
	






	#ss-sp-content {
/*201607		margin-bottom: 15px;	/*	アレルギーがある場合	*/
		margin-bottom: 35px;			/*	2個スイーツがある場合	*/
		padding-left: 12px;
		padding-right: 12px;
	}
	#ss-sp-content .left {
		width: 100%;
		float: none;
		margin-left: 0;
		margin-bottom: 13px;
	}
	#ss-sp-content .left figure {
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201701sp.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p201701 {
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201701sp.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p201704 {
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201704.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p201707 {
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201707.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p201710 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201710.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p201801 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201801.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p201804 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201804.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p201807 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201807.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p201810 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201810.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p201812 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201812.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p201904 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201904.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p201906 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201906.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p201909 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201909.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p202112 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_202112.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p202205 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_202205.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p202503 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_202503.jpg);
		background-size: cover;
	}
	#ss-sp-content .left figure.p202506 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_202506.jpg);
		background-size: cover;
	}
	#ss-sp-content .right {
		position: relative;
		width: 100%;
		float: none;
		padding-right: 0;
	}
	#ss-sp-content .right dl {
		padding-left: 13px;
	}
	#ss-sp-content .right dl dt {
		font-size: 15px;
	}
	#ss-sp-content .right dl dt:before {
		top: 6px;
		left: -16px;
		width: 10px;
		height: 10px;
	}
	#ss-sp-content .right dl dt ~ dt {
		margin-top: 14px;
	}
	#ss-sp-content .right dl dd {
		font-size: 13px;
	}
	#ss-sp-content .right dl:before {
		top: 6px;
		left: 2px;
		height: 278px;	/*	白い線の長さ	*/
		height: 328px;	/*	白い線の長さ	*/
	}
	#ss-sp-content .right p {
		margin-left: 13px;
		text-align: left;
		font-size: 10px;
	}
	#ss-sp-content .right:before {
		content: "メニュー紹介";
		display: block;
		margin-left: 13px;
		margin-bottom: 12px;
		font-size: 16px;
		font-weight: bold;
	}



	#ss-sp-content_2nd_area {
		margin-bottom: 15px;
		padding-left: 12px;
		padding-right: 12px;
	}
	#ss-sp-content_2nd_area .left {
		width: 100%;
		float: none;
		margin-left: 0;
		margin-bottom: 13px;
	}
	#ss-sp-content_2nd_area .left figure {
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_2016.jpg);
		background-size: cover;
	}

	#ss-sp-content_2nd_area .left figure.p202503 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_202503.jpg);
		background-size: cover;
	}
	#ss-sp-content_2nd_area .left figure.p202506 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_202506.jpg);
		background-size: cover;
	}
	#ss-sp-content_2nd_area .right {
		position: relative;
		width: 100%;
		float: none;
		padding-right: 0;
	}
	#ss-sp-content_2nd_area .right dl {
		padding-left: 13px;
	}
	#ss-sp-content_2nd_area .right dl dt {
		font-size: 15px;
	}
	#ss-sp-content_2nd_area .right dl dt:before {
		top: 6px;
		left: -16px;
		width: 10px;
		height: 10px;
	}
	#ss-sp-content_2nd_area .right dl dt ~ dt {
		margin-top: 14px;
	}
	#ss-sp-content_2nd_area .right dl dd {
		font-size: 13px;
	}
	#ss-sp-content_2nd_area .right dl:before {
		top: 6px;
		left: 2px;
/*201610		height: 278px;	/*	アレルギーがある場合	*/
		height: 298px;			/*	2個スイーツがある場合	*/
	}
	#ss-sp-content_2nd_area .right p {
		margin-left: 13px;
		text-align: left;
		font-size: 10px;
	}
/*	#ss-sp-content_2nd_area .right:before {		/**/
	/*		content: "秋メニュー紹介";		/**/
	/*		content: "春メニュー紹介";		/**/
/*		content: "夏メニュー紹介";		/**/
/*		display: block;		/**/
/*		margin-left: 13px;		/**/
/*		margin-bottom: 12px;		/**/
/*		font-size: 18px;		/**/
/*		font-weight: bold;		/**/
/*	}		/**/






	#ss-sp-content2menu {
		margin-bottom: 15px;
		padding-left: 12px;
		padding-right: 12px;
	}
	#ss-sp-content2menu .left {
		width: 100%;
		float: none;
		margin-left: 0;
		margin-bottom: 13px;
	}
	#ss-sp-content2menu .left figure {
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_201701sp.jpg);
		background-size: cover;
	}

	#ss-sp-content2menu .left figure.p202503 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_202503.jpg);
		background-size: cover;
	}
	#ss-sp-content2menu .left figure.p202506 {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 93.8182%;
		background-image: url(../img/sub-directory/service/sp/service_img_01_202506.jpg);
		background-size: cover;
	}

	#ss-sp-content2menu .left figure.p202507_wa {	/*	sweets	*/
		width: 100%;
		height: 0;
		padding-bottom: 62.6113%;
		background-image: url(../img/sub-directory/service/wa_sweets202507.jpg);
		background-size: cover;
	}


	#ss-sp-content2menu .right {
		position: relative;
		width: 100%;
		float: none;
		padding-right: 0;
	}
	#ss-sp-content2menu .right dl {
		padding-left: 13px;
	}
	#ss-sp-content2menu .right dl dt {
		font-size: 15px;
	}
	#ss-sp-content2menu .right dl dt:before {
		top: 6px;
		left: -16px;
		width: 10px;
		height: 10px;
	}
	#ss-sp-content2menu .right dl dt ~ dt {
		margin-top: 14px;
	}
	#ss-sp-content2menu .right dl dd {
		font-size: 13px;
	}
	#ss-sp-content2menu .right dl:before {
		top: 6px;
		left: 2px;
/*201701		height: 278px;	/*	アレルギーがある場合	*/
		min-height: 320px;			/*	2個スイーツがある場合	*/
	}
	#ss-sp-content2menu .right p {
		margin-left: 13px;
		text-align: left;
		font-size: 10px;
	}
/*	#ss-sp-content2menu .right:before {		/**/
	/*			content: "冬メニュー紹介";	/**/
	/*		content: "夏メニュー紹介";		/**/
/*		content: "和スイーツ紹介";			/**/
/*		display: block;			/**/
/*		margin-left: 13px;			/**/
/*		margin-bottom: 12px;			/**/
/*		font-size: 18px;			/**/
/*		font-weight: bold;			/**/
/*	}			/**/






	#ss-sp-aside figure {
		width: 100%;
		height: 0;
		padding-bottom: 40.0668%;
		background-image: url(../img/sub-directory/service/sp/service_img_02.jpg);
		background-size: cover;
	}

	#ss-sp-chef {
		margin-top: 0;
	}
	#ss-sp-chef .left {
		width: 100%;
		margin-bottom: 18px;
		padding: 27px 12px 0 12px;
		float: none;
	}
	#ss-sp-chef .left h4 {
		font-size: 16px;
	}
	#ss-sp-chef .left h5 {
		margin-bottom: 6px;
		padding-bottom: 2px;
		line-height: 1.2;
		font-size: 11px;
	}
	#ss-sp-chef .left p {
		font-size: 12px;
		line-height: 1.3;
		margin-top: 10px;
	}
	#ss-sp-chef .left dl dt, #ss-sp-chef .left dl dd {
		float: none;
		font-size: 13px;
	}
	#ss-sp-chef .left dl dt {
		width: 100%;
	}
	#ss-sp-chef .left dl dd {
		width: 100%;
	}
	#ss-sp-chef .left dl dt ~ dt, #ss-sp-chef .left dl dd ~ dd {
		margin-top: 0;
	}
	#ss-sp-chef .left dl dt ~ dt {
		margin-top: 8px;
	}
	#ss-sp-chef .left ul .it {
		margin-left: -7px;
	}
	#ss-sp-chef .left ul .ib {
		margin-left: 0.5em;
	}
	#ss-sp-chef .left ul li ~ li {
		margin-top: 2px;
	}
	#ss-sp-chef .right {
		width: 100%;
		float: none;
		padding-left: 53px;
		padding-right: 53px;
		padding-bottom: 32px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#ss-sp-chef .right figure {
		width: 100%;
		height: 0;
		padding-bottom: 112.6615%;
/*			background-image: url(../img/sub-directory/service/sp/service_hashimoto_img.jpg);	/**/
		background-image: url(../img/sub-directory/service/sp/service_highlandresort.jpg);
		background-size: cover;
	}

	#ss-car-interior-shop {
/*
		position: relative;
		height: 0;
*/
/*		padding-bottom: 545.1563%;	/**/
/*			padding-bottom: 1045.1563%;	/**/
/*
		padding-bottom: 1110.1563%;
*/
		background-image: url(../img/sub-directory/service/sp/service_car-interior-shop_img.jpg);
		background-position: center top;
		background-size: cover;
	}

	#ss-cis-content {
		width: 100%;
		margin: 0;
		padding-top: 34px;
	}
	#ss-cis-content h2 {
		width: 115px;
		height: 15px;
		margin-bottom: 12px;
		background-image: url(../img/sub-directory/service/sp/service_shd_03.png);
		background-size: 115px 15px;
	}
	#ss-cis-content .lead {
		margin-bottom: 5px;
		line-height: 1.8;
		font-size: 14px;
	}
	#ss-cis-content .note {
		font-size: 11px;
	}
	#ss-cis-content .coming {
		position: absolute;
		top: 66.5%;
		left: 50%;
		margin-top: 0;
		margin-left: -91px;
	}
	#ss-cis-content .coming span {
		width: 183px;
		height: 17px;
		background-image: url(../img/sub-directory/service/sp/service_comingsoon_txt.png);
		background-size: 183px 17px;
	}
	#ss-cis-content ul {
		width: 100%;
		margin: 0;
		padding-top: 32px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#ss-cis-content ul li {
		width: 100%;
		margin-bottom: 20px;
	}
/*
	#ss-cis-content ul li ~ li {
		margin-top: 21px;
		margin-left: 0;
	}
	#ss-cis-content ul li:nth-child(3n+1) {
		margin-left: 0;
	}
	#ss-cis-content ul li:nth-child(n+4) {
		margin-top: 21px;
	}
*/
	#ss-cis-content ul dl dt {
		margin-bottom: 12px;
		padding-left: 45px;
		padding-right: 45px;
	}
	#ss-cis-content ul dl dt span {
		height: 0;
		background-size: cover;
		padding-bottom: 82.6464%;
	}
	#ss-cis-content ul dl dd {
		font-size: 15px;
	}
	#ss-cis-content ul dl dd span {
		margin-left: 1em;
		font-size: 15px;
	}

	/*
		#ss-cis-content ul li:nth-of-type(1) dl dt span {
			background-image: url(../img/goods/sp_goods_1.jpg);
		}
		#ss-cis-content ul li:nth-of-type(2) dl dt span {
			background-image: url(../img/goods/sp_goods_2.jpg);
		}
		#ss-cis-content ul li:nth-of-type(3) dl dt span {
			background-image: url(../img/goods/sp_goods_3.jpg);
		}
		#ss-cis-content ul li:nth-of-type(4) dl dt span {
			background-image: url(../img/goods/sp_goods_4.jpg);
		}
		#ss-cis-content ul li:nth-of-type(5) dl dt span {
			background-image: url(../img/goods/sp_goods_5.jpg);
		}
		#ss-cis-content ul li:nth-of-type(6) dl dt span {
			background-image: url(../img/goods/sp_goods_6.jpg);
		}


		#ss-cis-content ul li:nth-of-type(7) dl dt span {
			background-image: url(../img/goods/sp_goods_10.jpg);
		}
		#ss-cis-content ul li:nth-of-type(8) dl dt span {
			background-image: url(../img/goods/sp_goods_11.jpg);
		}
		#ss-cis-content ul li:nth-of-type(9) dl dt span {
			background-image: url(../img/sub-directory/service/ekiben_fujisan3-2sp.jpg);
		}

		#ss-cis-content ul li:nth-of-type(10) dl dt span {
			background-image: url(../img/goods/sp_goods_7.jpg);
		}
		#ss-cis-content ul li:nth-of-type(11) dl dt span {
			background-image: url(../img/goods/sp_goods_8.jpg);
		}
		#ss-cis-content ul li:nth-of-type(12) dl dt span {
			background-image: url(../img/goods/sp_goods_9.jpg);
		}
		#ss-cis-content ul li:nth-of-type(13) dl dt span {
			background-image: url(../img/goods/sp_goods_13.jpg);
		}
	*/

}
.about #title h1 {
	margin-top: 25px;
	margin-left: -137px;
}
.about #title h1 span {
	width: 274px;
	height: 61px;
	background-image: url(../img/sub-directory/about/about_hd.png);
}
.about #ttl-bg {
	background-image: url(../img/sub-directory/about/about_title_img.jpg);
}

#about-intro {
	position: relative;
}

#ai-bg {
	min-height: 827px;
	background-image: url(../img/sub-directory/about/about_intro_img.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

#ai-bg:before {
	content: "";
	display: block;
	padding-bottom: 80.7617%;
}

#ai-content-all {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

#ai-content {
	position: relative;
	width: 1000px;
	height: 100%;
	margin: 0 auto;
	padding-top: 94px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#ai-content h2 {
	width: 336px;
	height: 54px;
	margin: 0 auto 23px;
	background-image: url(../img/sub-directory/about/about_shd_01.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ai-content p {
	width: 682px;
	height: 245px;
	margin: 0 auto;
	background-image: url(../img/sub-directory/about/about_intro_txt.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

#about-car-all {
	position: relative;
	background-color: #c12b1f;
}

#ac-layer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 827px;
	background-image: url(../img/sub-directory/about/about_car_bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

#ac-layer.fix {
	position: fixed;
}

#ac-layer.bottom {
	position: absolute;
	top: auto;
	bottom: 0;
}

#ac-contents {
	position: relative;
	z-index: 2;
	width: 944px;
	margin: 0 auto;
	padding-top: 108px;
	padding-bottom: 139px;
}
#ac-contents h2 {
	width: 128px;
	height: 31px;
	margin: 0 auto 93px;
	background-image: url(../img/sub-directory/about/about_shd_02.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

#car-outline {
	position: absolute;
	top: 173px;
	left: 0;
	width: 178px;
	height: 3703px;
	background-image: url(../img/sub-directory/about/about_car-outline_img.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

.ac-list {
	width: 725px;
	margin-left: 219px;
}
.ac-list h3 {
	margin-bottom: 47px;
	border-bottom: 1px solid #fff;
}
.ac-list h3 span {
	display: block;
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
.ac-list ul li {
	float: left;
}
.ac-list ul li:nth-of-type(1) {
	width: 100%;
}
.ac-list ul li:nth-of-type(1) a {
	width: 725px;
	height: 478px;
}
.ac-list ul li:nth-child(n+2) {
	width: 50%;
}
.ac-list ul li:nth-child(n+2) a {
	width: 362px;
	height: 242px;
}
.ac-list ul a {
	display: block;
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
.ac-list ul a:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../img/parts/bg_opacity-white_02.png);
	background-position: left top;
	background-repeat: repeat;
	-webkit-transition: opacity 0.3s ease 0s;
	-moz-transition: opacity 0.3s ease 0s;
	-o-transition: opacity 0.3s ease 0s;
	-ms-transition: opacity 0.3s ease 0s;
	transition: opacity 0.3s ease 0s;
	opacity: 0;
}
.ac-list ul a:hover:before {
	opacity: 1;
}

.ac-list ~ .ac-list {
	margin-top: 98px;
}

#ac-1 h3 span {
	width: 725px;
	height: 63px;
	background-image: url(../img/sub-directory/about/about_car1_shd.png);
}
#ac-1 ul li:nth-of-type(1) a {
	background-image: url(../img/sub-directory/about/about_car1_thumb_img_01.jpg);
}
#ac-1 ul li:nth-of-type(2) a {
	background-image: url(../img/sub-directory/about/about_car1_thumb_img_02.jpg);
}
#ac-1 ul li:nth-of-type(3) a {
	background-image: url(../img/sub-directory/about/about_car1_thumb_img_03.jpg);
}
#ac-1 ul li:nth-of-type(4) a {
	background-image: url(../img/sub-directory/about/about_car1_thumb_img_04.jpg);
}
#ac-1 ul li:nth-of-type(5) a {
	background-image: url(../img/sub-directory/about/about_car1_thumb_img_05.jpg);
}
#ac-1 .bnr {
	margin-top: 25px;
}
#ac-1 .bnr a {
	display: block;
	width: 725px;
	height: 179px;
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201710.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201801.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201804.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201807.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201810.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201812.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201904.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201906.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201909.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr202112.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr202205.jpg);		/*	sweets	*/
	background-image: url(../img/sub-directory/about/about_car1_bnr202503.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr202506.jpg);		/*	sweets	*/
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ac-1 .bnr a:hover {
	background-position: 0 -179px;
}



#ac-1 .bnr_rilakkuma {
	margin-top: 25px;
}
#ac-1 .bnr_rilakkuma a {
	display: block;
	width: 725px;
	height: 270px;
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201710.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201801.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201804.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201807.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201810.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201812.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201904.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201906.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr201909.jpg);		/*	sweets	*/
/*	background-image: url(../img/sub-directory/about/about_car1_bnr202112.jpg);		/*	sweets	*/
	background-image: url(../img/sub-directory/about/about_car1_bnr_rilakkuma.jpg);		/*	sweets	*/
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#ac-1 .bnr_rilakkuma a:hover {
	background-position: 0 -270px;
}

#ac-2 h3 span {
	width: 725px;
	height: 62px;
	background-image: url(../img/sub-directory/about/about_car2_shd-2.png);
}
#ac-2 ul li:nth-of-type(1) a {
	background-image: url(../img/sub-directory/about/about_car2_thumb_img_01.jpg);
}
#ac-2 ul li:nth-of-type(2) a {
	background-image: url(../img/sub-directory/about/about_car2_thumb_img_02.jpg);
}
#ac-2 ul li:nth-of-type(3) a {
	background-image: url(../img/sub-directory/about/about_car2_thumb_img_03.jpg);
}
#ac-2 ul li:nth-of-type(4) a {
	background-image: url(../img/sub-directory/about/about_car2_thumb_img_04.jpg);
}
#ac-2 ul li:nth-of-type(5) a {
	background-image: url(../img/sub-directory/about/about_car2_thumb_img_05.jpg);
}

#ac-3 h3 span {
	width: 725px;
	height: 62px;
	background-image: url(../img/sub-directory/about/about_car3_shd.png);
}
#ac-3 ul li:nth-of-type(1) a {
	background-image: url(../img/sub-directory/about/about_car3_thumb_img_01.jpg);
}
#ac-3 ul li:nth-of-type(2) a {
	background-image: url(../img/sub-directory/about/about_car3_thumb_img_02.jpg);
}
#ac-3 ul li:nth-of-type(3) a {
	background-image: url(../img/sub-directory/about/about_car3_thumb_img_03.jpg);
}
#ac-3 ul li:nth-of-type(4) a {
	background-image: url(../img/sub-directory/about/about_car3_thumb_img_04.jpg);
}
#ac-3 ul li:nth-of-type(5) a {
	background-image: url(../img/sub-directory/about/about_car3_thumb_img_05.jpg);
}

#about-message {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 819px;
	background-image: url(../img/sub-directory/about/about_message_img.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

/*#am-bg {
	min-height: 870px;
	background-image: url(../img/sub-directory/about/about_message_img.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

#am-bg:before {
	content: "";
	display: block;
	padding-bottom: 80.7617%;
}*/
#am-content-all {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

#am-content {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	padding-top: 147px;
	color: #fff;
}
#am-content h2 {
	width: 183px;
	height: 24px;
	margin: 0 auto 61px;
	background-image: url(../img/sub-directory/about/about_shd_03.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#am-content dl {
	margin-bottom: 42px;
	text-align: center;
}
#am-content dl dt {
	margin-bottom: 12px;
	font-size: 22px;
}
#am-content dl dd {
	line-height: 2.5;
	font-size: 16px;
}
#am-content .date {
	text-align: center;
	line-height: 2.5;
	font-size: 16px;
}
#am-content .sign {
	margin-top: 5px;
	margin-left: 546px;
}

#am-content-all:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width: 3000px;
	height: 168px;
	margin-left: -1500px;
	background-image: url(../img/sub-directory/about/about_message_fuji_bg.png);
	background-position: center top;
	background-repeat: no-repeat;
}

@media only screen and (max-width: 736px) {
	#contents.about #title h1 {
		margin-top: -11px;
		margin-left: -122px;
	}
	#contents.about #title h1 span {
		width: 244px;
		height: 46px;
		background-image: url(../img/sub-directory/about/sp/about_hd.png);
		background-size: 244px 46px;
	}
	#contents.about #ttl-bg {
		background-image: url(../img/sub-directory/about/sp/about_title_img.jpg);
	}

	#ai-bg {
		min-height: 489px;
		background-image: url(../img/sub-directory/about/sp/about_intro_img.jpg);
	}

	#ai-bg:before {
		padding-bottom: 152.8125%;
	}

	#ai-content {
		width: 100%;
		margin: 0;
		padding-top: 22px;
	}
	#ai-content h2 {
		width: 188px;
		height: 30px;
		margin-bottom: 10px;
		background-image: url(../img/sub-directory/about/sp/about_shd_01.png);
		background-size: 188px 30px;
	}
	#ai-content p {
		width: 303px;
		height: 245px;
		background-image: url(../img/sub-directory/about/sp/about_intro_txt.png);
		background-size: 303px 245px;
	}

	#ac-layer {
		display: none;
	}

	#ac-contents {
		position: relative;
		z-index: 2;
		width: 100%;
		margin: 0;
		padding: 36px 10px 35px 10px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	#ac-contents h2 {
		width: 72px;
		height: 18px;
		margin-bottom: 24px;
		background-image: url(../img/sub-directory/about/sp/about_shd_02.png);
		background-size: 72px 18px;
	}

	#car-outline {
		display: none;
	}

	.ac-list {
		width: 100%;
		margin-left: 0;
	}
	.ac-list h3 {
		position: relative;
		margin-bottom: 19px;
	}
	.ac-list h3:after {
		content: "";
		position: absolute;
		right: 1px;
		bottom: 4px;
		display: block;
		background-position: left top;
		background-repeat: no-repeat;
	}
	.ac-list ul li:nth-of-type(1) a {
		width: 100%;
		height: 0;
		padding-bottom: 65.9966%;
	}
	.ac-list ul li:nth-child(n+2) a {
		width: 100%;
		height: 0;
		padding-bottom: 66.5552%;
	}
	.ac-list ul a {
		background-size: cover;
	}
	.ac-list ul a:before {
		display: none;
	}

	.ac-list ~ .ac-list {
		margin-top: 30px;
	}

	#ac-1 h3 span {
		width: 220px;
		height: 26px;
		background-image: url(../img/sub-directory/about/sp/about_car1_shd.png);
		background-size: 220px 26px;
	}
	#ac-1 h3:after {
		width: 28px;
		height: 14px;
		background-image: url(../img/sub-directory/about/sp/about_car1_shd_seat.png);
		background-size: 28px 14px;
	}
	#ac-1 ul li:nth-of-type(1) a {
		background-image: url(../img/sub-directory/about/sp/about_car1_thumb_img_01.jpg);
	}
	#ac-1 ul li:nth-of-type(2) a {
		background-image: url(../img/sub-directory/about/sp/about_car1_thumb_img_02.jpg);
	}
	#ac-1 ul li:nth-of-type(3) a {
		background-image: url(../img/sub-directory/about/sp/about_car1_thumb_img_03.jpg);
	}
	#ac-1 ul li:nth-of-type(4) a {
		background-image: url(../img/sub-directory/about/sp/about_car1_thumb_img_04.jpg);
	}
	#ac-1 ul li:nth-of-type(5) a {
		background-image: url(../img/sub-directory/about/sp/about_car1_thumb_img_05.jpg);
	}
	#ac-1 .bnr {
		margin-top: 10px;
	}
	#ac-1 .bnr a {
		width: 100%;
		height: 0;
		padding-bottom: 31.2081%;
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201710.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201801.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201804.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201807.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201810.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201812.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201904.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201906.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201909.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr202112.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr202205.jpg);	/*	sweets	*/
		background-image: url(../img/sub-directory/about/sp/about_car1_bnr202503.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr202506.jpg);	/*	sweets	*/
		background-size: cover;
	}
	#ac-1 .bnr a:hover {
		background-position: 0 0;
	}

	#ac-1 .bnr_rilakkuma {
		margin-top: 10px;
	}
	#ac-1 .bnr_rilakkuma a {
		width: 100%;
		height: 0;
		padding-bottom: 45.1505%;
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201710.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201801.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201804.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201807.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201810.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201812.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201904.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201906.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr201909.jpg);	/*	sweets	*/
/*		background-image: url(../img/sub-directory/about/sp/about_car1_bnr202112.jpg);	/*	sweets	*/
		background-image: url(../img/sub-directory/about/sp/about_car1_bnr_rilakkuma2.jpg);	/*	sweets	*/
		background-size: cover;
	}
	#ac-1 .bnr_rilakkuma a:hover {
		background-position: 0 0;
	}

	#ac-2 h3 span {
		width: 131px;
		height: 26px;
		background-image: url(../img/sub-directory/about/sp/about_car2_shd_2.png);
		background-size: 131px 26px;
	}
	#ac-2 h3:after {
		width: 27px;
		height: 14px;
		background-image: url(../img/sub-directory/about/sp/about_car2_shd_seat.png);
		background-size: 27px 14px;
	}
	#ac-2 ul li:nth-of-type(1) a {
		background-image: url(../img/sub-directory/about/sp/about_car2_thumb_img_01.jpg);
	}
	#ac-2 ul li:nth-of-type(2) a {
		background-image: url(../img/sub-directory/about/sp/about_car2_thumb_img_02.jpg);
	}
	#ac-2 ul li:nth-of-type(3) a {
		background-image: url(../img/sub-directory/about/sp/about_car2_thumb_img_03.jpg);
	}
	#ac-2 ul li:nth-of-type(4) a {
		background-image: url(../img/sub-directory/about/sp/about_car2_thumb_img_04.jpg);
	}
	#ac-2 ul li:nth-of-type(5) a {
		background-image: url(../img/sub-directory/about/sp/about_car2_thumb_img_05.jpg);
	}

	#ac-3 h3 span {
		width: 131px;
		height: 26px;
		background-image: url(../img/sub-directory/about/sp/about_car3_shd.png);
		background-size: 131px 26px;
	}
	#ac-3 h3:after {
		width: 28px;
		height: 14px;
		background-image: url(../img/sub-directory/about/sp/about_car3_shd_seat.png);
		background-size: 28px 14px;
	}
	#ac-3 ul li:nth-of-type(1) a {
		background-image: url(../img/sub-directory/about/sp/about_car3_thumb_img_01.jpg);
	}
	#ac-3 ul li:nth-of-type(2) a {
		background-image: url(../img/sub-directory/about/about_car3_thumb_img_02.jpg);
	}
	#ac-3 ul li:nth-of-type(3) a {
		background-image: url(../img/sub-directory/about/about_car3_thumb_img_03.jpg);
	}
	#ac-3 ul li:nth-of-type(4) a {
		background-image: url(../img/sub-directory/about/about_car3_thumb_img_04.jpg);
	}
	#ac-3 ul li:nth-of-type(5) a {
		background-image: url(../img/sub-directory/about/about_car3_thumb_img_05.jpg);
	}

	#about-message {
		height: 0;
		padding-bottom: 197.5%;
		background-image: url(../img/sub-directory/about/sp/about_message_img.jpg);
		background-position: center top;
		background-size: cover;
	}

	#am-content {
		display: none;
	}

	#am-content-all:before {
		display: none;
	}
}
.reserve #title h1 {
	margin-top: 14px;
	margin-left: -51px;
}
.reserve #title h1 span {
	width: 103px;
	height: 82px;
	background-image: url(../img/sub-directory/reserve/reserve_hd.png);
}
.reserve #ttl-bg {
	background-image: url(../img/sub-directory/reserve/reserve_title_img.jpg);
}

#reserve-contents-all {
	padding-top: 97px;
/*	padding-bottom: 403px;	/**/
/*	padding-bottom: 103px;	/*	20170818	*/
	background-color: #c12b1f;
	padding-bottom: 403px;
	background-color: #c12b1f;
}
#reserve-contents-all h2 {
	text-align: center;
	color: #e7bd85;
	font-size: 38px;
}
#reserve-contents-all .lead {
	text-align: center;
	line-height: 1.2;
	color: #e7bd85;
	font-size: 16px;
}

#rca-content {
	width: 722px;
	margin: 38px auto 0;
}
#rca-content dl {
	margin-bottom: 22px;
}
#rca-content dl dt {
	margin-bottom: 10px;
	text-align: center;
	color: #e7bd85;
	font-size: 28px;
}
#rca-content dl dd a {
	display: block;
	width: 318px;
	height: 67px;
	background-image: url(../img/sub-directory/reserve/reserve_btn.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#rca-content dl dd a:hover {
	background-position: 0 -67px;
}


#rca-content dl dd.dd2 {
	margin-top: 20px;
}
#rca-content dl dd.dd2 a {
	display: block;
	width: 318px;
	height: 125px;
	background-image: url(../img/sub-directory/reserve/reserve_btn_rilakkuma.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#rca-content dl dd.dd2 a:hover {
	background-position: 0 -125px;
}




#rca-content dl dd.dd3 {
	margin-top: 0px;
}
#rca-content dl dd.dd3 a {
	display: block;
	width: 318px;
	height: 67px;
	background-image: url(../img/sub-directory/reserve/reserve_btn_you_sweets.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#rca-content dl dd.dd3 a:hover {
	background-position: 0 -67px;
}



#rca-content dl dd.dd4 {
	margin-top: 20px;
}
#rca-content dl dd.dd4 a {
	display: block;
	width: 318px;
	height: 67px;
	background-image: url(../img/sub-directory/reserve/reserve_btn_wa_sweets.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#rca-content dl dd.dd4 a:hover {
	background-position: 0 -67px;
}




#rca-content .tel {
	margin-bottom: 2px;
	text-align: center;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
}
#rca-content .tel a {
	position: relative;
	padding-left: 24px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}
#rca-content .tel a:before {
	content: "";
	position: absolute;
	top: 1px;
	left: 0;
	display: block;
	width: 18px;
	height: 14px;
	background-image: url(../img/sub-directory/reserve/reserve_tel_icn.png);
	background-position: left top;
	background-repeat: no-repeat;
}
#rca-content .info {
	text-align: center;
	line-height: 1.3;
	color: #fff;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
	font-size: 20px;
	font-weight: bold;
}
#rca-content .info span {
	font-size: 14px;
}
#rca-content .note {
	margin-top: 18px;
	color: #fff;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
	font-size: 14px;
}
#rca-content .left {
	width: 318px;
	float: left;
}
#rca-content .right {
	width: 318px;
	float: right;
}

#rca-content2 {
	width: 722px;
	margin: 38px auto 0;
	border:5px #fff solid;
	padding: 1.5em 1em;
	color: #fff;
	text-align: center; 
}
#rca-content2 h4 {
	font-size: 2rem;
	margin-bottom: 15px;
}
#rca-content2 p {
	font-size: 1.8rem;
	line-height: 1.8;
}



@media only screen and (max-width: 736px) {
	.reserve #title h1 {
		margin-top: -20px;
		margin-left: -47px;
	}
	.reserve #title h1 span {
		width: 94px;
		height: 64px;
		background-image: url(../img/sub-directory/reserve/sp/reserve_hd.png);
		background-size: 94px 64px;
	}
	.reserve #ttl-bg {
		background-image: url(../img/sub-directory/reserve/sp/reserve_title_img.jpg);
	}

	#reserve-contents-all {
		padding-top: 29px;
		padding-bottom: 61px;
	}
	#reserve-contents-all h2 {
		margin-bottom: 3px;
		font-size: 18px;
	}
	#reserve-contents-all .lead {
		line-height: 1.5;
		font-size: 13px;
	}

	#rca-content {
		width: 100%;
		margin-top: 50px;
	}
	#rca-content dl {
		margin-bottom: 16px;
	}
	#rca-content dl dt {
		margin-bottom: 6px;
		font-size: 18px;
	}
	#rca-content dl dd a {
		width: 283px;
		height: 45px;
		margin: 0 auto;
		background-image: url(../img/sub-directory/reserve/sp/reserve_btn.png);
		background-size: 283px 45px;
	}
	#rca-content dl dd a:hover {
		background-position: 0 0;
	}

	#rca-content dl dd.dd2 a {
		width: 283px;
		height: 65px;
		margin: 10px auto 30px;
		background-image: url(../img/sub-directory/reserve/sp/reserve_btn_rilakkuma.png);
		background-size: 283px 65px;
	}
	#rca-content dl dd.dd2 a:hover {
		background-position: 0 0;
	}



	#rca-content dl dd.dd3 a {
		width: 283px;
		height: 45px;
		margin: 0 auto;
		background-image: url(../img/sub-directory/reserve/sp/sp_reserve_btn_you_sweets.png);
		background-size: 283px 45px;
	}
	#rca-content dl dd.dd3 a:hover {
		background-position: 0 0;
	}




	#rca-content dl dd.dd4 a {
		width: 283px;
		height: 45px;
		margin: 0 auto;
		background-image: url(../img/sub-directory/reserve/sp/sp_reserve_btn_wa_sweets.png);
		background-size: 283px 45px;
	}
	#rca-content dl dd.dd4 a:hover {
		background-position: 0 0;
	}





	#rca-content .tel {
		margin-bottom: 0;
	}
	#rca-content .tel a {
		padding-left: 24px;
		font-size: 16px;
	}
	#rca-content .tel a:before {
		top: 2px;
		left: 3px;
		width: 15px;
		height: 13px;
		background-image: url(../img/sub-directory/reserve/sp/reserve_tel_icn.png);
		background-size: 15px 13px;
	}
	#rca-content .info {
		line-height: 1.5;
		font-size: 16px;
	}
	#rca-content .note {
		margin-top: 13px;
		color: #fff;
		font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
		font-size: 14px;
	}
	#rca-content .left {
		width: 280px;
		float: none;
		margin: 0 auto;
	}
	#rca-content .right {
		width: 280px;
		float: none;
		margin: 41px auto 0;
	}

	#rca-content2 {
		width: 80%;
		margin: 30px auto 0;
		border:5px #fff solid;
		padding: 1.5em 1.5em;
		color: #fff;
		text-align: center; 
	}
	#rca-content2 h4 {
		font-size: 1.8rem;
		margin-bottom: 15px;
	}
	#rca-content2 p {
		font-size: 1.6rem;
		line-height: 1.8;
	}
	
}
.view-spot #title h1 {
	margin-top: 14px;
	margin-left: -157px;
}
.view-spot #title h1 span {
	width: 314px;
	height: 86px;
	background-image: url(../img/sub-directory/view-spot/view-spot_hd.png);
}
.view-spot #ttl-bg {
	background-image: url(../img/sub-directory/view-spot/view-spot_title_img.jpg);
}

#view-spot-contents-all {
	background-color: #c12b1f;
	background-image: url(../img/sub-directory/view-spot/view-spot_bg_01.png);
	background-position: center top;
	background-repeat: no-repeat;
}

#view-spot-contents {
	width: 956px;
	height: 1196px;
	margin: 0 auto;
}

#vs-intro p {
	padding-top: 76px;
	padding-bottom: 55px;
	text-align: center;
	line-height: 46px;
	font-size: 20px;
}

#vs-tab ul li {
	float: left;
}
#vs-tab ul li a {
	display: block;
	width: 100%;
	height: 46px;
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}
#vs-tab ul li a:hover {
	background-position: 0 -46px;
}
#vs-tab ul li .active {
	cursor: default;
	background-position: 0 -46px;
}
#vs-tab ul li:nth-of-type(1) {
	width: 315px;
}
#vs-tab ul li:nth-of-type(1) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_tab_window.png);
}
#vs-tab ul li:nth-of-type(2) {
	width: 326px;
	margin-left: -21px;
}
#vs-tab ul li:nth-of-type(2) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_tab_train.png);
}

#vs-body {
	position: relative;
	height: 779px;
}

#vs-body:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../img/sub-directory/view-spot/view-spot_map.png);
	background-position: left top;
	background-repeat: no-repeat;
}

.vs-list {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	-webkit-transition: opacity 0.5s ease-out 0s;
	-moz-transition: opacity 0.5s ease-out 0s;
	-ms-transition: opacity 0.5s ease-out 0s;
	-o-transition: opacity 0.5s ease-out 0s;
	transition: opacity 0.5s ease-out 0s;
}

.vs-list.pre {
	z-index: 2;
	opacity: 0;
}

.vs-list.current {
	z-index: 3;
	opacity: 1;
}

.vs-map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: left top;
	background-repeat: no-repeat;
}

.vs-da-list {
	position: absolute;
}
.vs-da-list a {
	display: block;
	width: 116px;
	height: 115px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-position: left top;
	background-repeat: no-repeat;
	-webkit-transition: transform 0.3s ease 0s;
	-moz-transition: transform 0.3s ease 0s;
	-ms-transition: transform 0.3s ease 0s;
	-o-transition: transform 0.3s ease 0s;
	transition: transform 0.3s ease 0s;
}
.vs-da-list a:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.vs-da-list p {
	display: none;
}

#vs-window .vs-map {
	background-image: url(../img/sub-directory/view-spot/view-spot_window_map.png);
}
#vs-window .vs-da-list a {
	border: 3px solid #f7931e;
}
#vs-window .vs-da-list:nth-of-type(1) {
	top: 649px;
	left: 32px;
}
#vs-window .vs-da-list:nth-of-type(1) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_window_thumb_01.jpg);
}
#vs-window .vs-da-list:nth-of-type(2) {
	top: 515px;
	left: 11px;
}
#vs-window .vs-da-list:nth-of-type(2) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_window_thumb_02.jpg);
}
#vs-window .vs-da-list:nth-of-type(3) {
	top: 343px;
	left: 26px;
}
#vs-window .vs-da-list:nth-of-type(3) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_window_thumb_03.jpg);
}
#vs-window .vs-da-list:nth-of-type(4) {
	top: 182px;
	left: 80px;
}
#vs-window .vs-da-list:nth-of-type(4) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_window_thumb_04.jpg);
}
#vs-window .vs-da-list:nth-of-type(5) {
	top: 148px;
	left: 276px;
}
#vs-window .vs-da-list:nth-of-type(5) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_window_thumb_05.jpg);
}
#vs-window .vs-da-list:nth-of-type(6) {
	top: 507px;
	left: 521px;
}
#vs-window .vs-da-list:nth-of-type(6) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_window_thumb_06.jpg);
}
#vs-window .vs-da-list:nth-of-type(7) {
	top: 336px;
	left: 549px;
}
#vs-window .vs-da-list:nth-of-type(7) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_window_thumb_07.jpg);
}
#vs-window .vs-da-list:nth-of-type(8) {
	top: 12px;
	left: 637px;
}
#vs-window .vs-da-list:nth-of-type(8) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_window_thumb_08.jpg);
}

#vs-train .vs-map {
	background-image: url(../img/sub-directory/view-spot/view-spot_train_map.png);
}
#vs-train .vs-da-list a {
	border: 3px solid #a0181e;
}
#vs-train .vs-da-list:nth-of-type(1) {
	top: 435px;
	left: 23px;
}
#vs-train .vs-da-list:nth-of-type(1) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_train_thumb_01.jpg);
}
#vs-train .vs-da-list:nth-of-type(2) {
	top: 544px;
	left: 285px;
}
#vs-train .vs-da-list:nth-of-type(2) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_train_thumb_02.jpg);
}
#vs-train .vs-da-list:nth-of-type(3) {
	top: 586px;
	left: 428px;
}
#vs-train .vs-da-list:nth-of-type(3) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_train_thumb_03.jpg);
}
#vs-train .vs-da-list:nth-of-type(4) {
	top: 259px;
	left: 185px;
}
#vs-train .vs-da-list:nth-of-type(4) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_train_thumb_04.jpg);
}
#vs-train .vs-da-list:nth-of-type(5) {
	top: 458px;
	left: 542px;
}
#vs-train .vs-da-list:nth-of-type(5) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_train_thumb_05.jpg);
}
#vs-train .vs-da-list:nth-of-type(6) {
	top: 128px;
	left: 87px;
}
#vs-train .vs-da-list:nth-of-type(6) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_train_thumb_06.jpg);
}
#vs-train .vs-da-list:nth-of-type(7) {
	top: 318px;
	left: 632px;
}
#vs-train .vs-da-list:nth-of-type(7) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_train_thumb_07.jpg);
}
#vs-train .vs-da-list:nth-of-type(8) {
	top: 69px;
	left: 240px;
}
#vs-train .vs-da-list:nth-of-type(8) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_train_thumb_08.jpg);
}
#vs-train .vs-da-list:nth-of-type(9) {
	top: 203px;
	left: 765px;
}
#vs-train .vs-da-list:nth-of-type(9) a {
	background-image: url(../img/sub-directory/view-spot/view-spot_train_thumb_09.jpg);
}

.vs-note {
	width: 286px;
	height: 25px;
	margin-top: 10px;
	margin-left: auto;
	margin-right: 23px;
	background-image: url(../img/sub-directory/view-spot/view-spot_txt_01.png);
	background-position: left top;
	background-repeat: no-repeat;
	overflow: hidden;
	text-indent: 300%;
	white-space: nowrap;
}

#modal-view-all {
	position: relative;
	width: 856px;
	margin: 0 auto;
	background-color: #fff;
}

#modal-view p {
	padding: 9px 36px 11px 36px;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
	font-size: 14px;
}

#modal-view-all.is_vertical {
	width: 572px;
}

@media only screen and (max-width: 736px) {
	.view-spot #title h1 {
		margin-top: -16px;
		margin-left: -133px;
	}
	.view-spot #title h1 span {
		width: 266px;
		height: 63px;
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_hd.png);
		background-size: 266px 63px;
	}
	.view-spot #ttl-bg {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_title_img.jpg);
	}

	#view-spot-contents-all {
		background-color: #fff;
		background-image: url(../img/sub-directory/view-spot/sp/view-port_bg_02.jpg);
		background-position: center top;
		background-repeat: repeat;
		background-size: 320px 37px;
	}

	#view-spot-contents {
		width: 100%;
		height: auto;
		margin: 0;
	}

	#vs-intro {
		background-image: url(../img/sub-directory/view-spot/sp/view-port_bg_01.png);
		background-position: right 16px;
		background-repeat: no-repeat;
		background-size: 116px 131px;
	}
	#vs-intro p {
		padding-top: 28px;
		padding-bottom: 36px;
		line-height: 1.6;
		font-size: 15px;
	}

	#vs-tab {
		background-color: #a3a3a4;
	}
	#vs-tab ul li {
		float: left;
	}
	#vs-tab ul li a {
		padding-top: 8px;
		text-align: center;
		line-height: 1.2;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		color: #fff;
		font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
		font-size: 14px;
		font-weight: bold;
		overflow: visible;
		text-indent: 0;
		white-space: normal;
	}
	#vs-tab ul li .active {
		position: relative;
	}
	#vs-tab ul li .active:after {
		content: "";
		position: absolute;
		top: 0;
		display: block;
		width: 17px;
		height: 46px;
		background-position: left top;
		background-repeat: no-repeat;
		background-size: 17px 46px;
	}
	#vs-tab ul li:nth-of-type(1) {
		width: 50%;
	}
	#vs-tab ul li:nth-of-type(1) a {
		background-image: none;
	}
	#vs-tab ul li:nth-of-type(1) .active {
		background-color: #f7931e;
	}
	#vs-tab ul li:nth-of-type(1) .active:after {
		right: -8px;
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_tab_window.png);
	}
	#vs-tab ul li:nth-of-type(2) {
		width: 50%;
		margin-left: 0;
	}
	#vs-tab ul li:nth-of-type(2) a {
		background-image: none;
	}
	#vs-tab ul li:nth-of-type(2) .active {
		background-color: #a0181e;
	}
	#vs-tab ul li:nth-of-type(2) .active:after {
		left: -8px;
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_tab_train.png);
	}

	.vs-list {
		height: auto;
	}

	.vs-map {
		position: static;
		height: 0;
		margin-bottom: 37px;
		padding-bottom: 115%;
		background-size: cover;
	}

	.vs-da-list {
		position: static;
	}
	.vs-da-list a {
		display: block;
		width: 100%;
		height: 0;
		padding-bottom: 66.5625%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		background-position: left top;
		background-repeat: no-repeat;
		background-size: cover;
		-webkit-transition: none;
		-moz-transition: none;
		-ms-transition: none;
		-o-transition: none;
		transition: none;
	}
	.vs-da-list a:hover {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
	}
	.vs-da-list p {
		display: block;
		padding-top: 4px;
		padding-left: 10px;
		padding-bottom: 17px;
		font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック体', 'Yu Gothic', YuGothic, 'メイリオ', Meiryo, sans-serif;
		font-size: 14px;
	}
	.vs-da-list p .icn {
		position: relative;
		top: 3px;
		display: inline-block;
		width: 15px;
		height: 15px;
		margin-right: 4px;
		text-align: center;
		border-radius: 50px;
		color: #fff;
	}
	.vs-da-list p .icn span {
		position: relative;
		top: -3px;
		display: inline-block;
	}

	#vs-body {
		padding-bottom: 61px;
	}

	#vs-body:before {
		height: 0;
		padding-bottom: 115%;
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_map.png);
		background-size: cover;
	}

	#vs-window .vs-map {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_window_map.png);
	}
	#vs-window .vs-da-list a {
		border: none;
	}
	#vs-window .vs-da-list p .icn {
		background-color: #f7931e;
	}
	#vs-window .vs-da-list:nth-of-type(1) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_window_thumb_01.jpg);
	}
	#vs-window .vs-da-list:nth-of-type(2) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_window_thumb_02.jpg);
	}
	#vs-window .vs-da-list:nth-of-type(3) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_window_thumb_03.jpg);
	}
	#vs-window .vs-da-list:nth-of-type(4) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_window_thumb_04.jpg);
	}
	#vs-window .vs-da-list:nth-of-type(5) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_window_thumb_05.jpg);
	}
	#vs-window .vs-da-list:nth-of-type(6) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_window_thumb_06.jpg);
	}
	#vs-window .vs-da-list:nth-of-type(7) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_window_thumb_07.jpg);
	}
	#vs-window .vs-da-list:nth-of-type(8) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_window_thumb_08.jpg);
	}

	#vs-train .vs-map {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_train_map.png);
	}
	#vs-train .vs-da-list a {
		border: none;
	}
	#vs-train .vs-da-list p .icn {
		background-color: #a0181e;
	}
	#vs-train .vs-da-list:nth-of-type(1) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_train_thumb_01.jpg);
	}
	#vs-train .vs-da-list:nth-of-type(2) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_train_thumb_02.jpg);
	}
	#vs-train .vs-da-list:nth-of-type(3) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_train_thumb_03.jpg);
	}
	#vs-train .vs-da-list:nth-of-type(4) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_train_thumb_04.jpg);
	}
	#vs-train .vs-da-list:nth-of-type(5) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_train_thumb_05.jpg);
	}
	#vs-train .vs-da-list:nth-of-type(6) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_train_thumb_06.jpg);
	}
	#vs-train .vs-da-list:nth-of-type(7) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_train_thumb_07.jpg);
	}
	#vs-train .vs-da-list:nth-of-type(8) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_train_thumb_08.jpg);
	}
	#vs-train .vs-da-list:nth-of-type(9) a {
		background-image: url(../img/sub-directory/view-spot/sp/view-spot_train_thumb_09.jpg);
	}

	.vs-note {
		display: none;
	}

	#modal-view-all {
		width: 100%;
	}

	#modal-view figure img {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
	#modal-view p {
		padding-left: 10px;
		padding-right: 10px;
	}
}


.alg_table table {
	clear:both;
	width: 100%;
	margin:5px 0 10px;
	line-height:1.2;
	font-size:1.1em;
	border:1px solid #ccc;
	border-spacing: 1px;
}

.alg_table table th {
	padding:5px;
	border:solid 1px #ffffff;
	text-align:center;
	font-weight:normal;
	border:solid 1px #ffffff;
	background:none;
	border-top :none;
	border-right:none;
	border-bottom:none;
}
.alg_table table td {
	padding:5px;
	border:solid 1px #ffffff;
	background:none;
	border-right:none;
	border-bottom:none;
}





.youtube_wrapper {
	padding: 5em 0;
/*
	background: #C12B1F;
*/
	background: #000214;
	margin: auto;
	text-align: center;
}
.youtube_content {
	width: 70%;
	padding: 30px;
	margin: auto;
	position: relative;
}
.youtube_content::before {
	position: absolute;
	content: '';
	top: 0;
	left:0;
	display: block;
	width: 100%;
	height: 56px;
	background-image: url(../../assets/img/youtube/tl.svg),url(../../assets/img/youtube/tr.svg);
	background-size: contain, contain;
	background-repeat: no-repeat,no-repeat;
	background-position: top left, top right;
}
.youtube_content::after {
	position: absolute;
	content: '';
	bottom: 0;
	left:0;
	display: block;
	width: 100%;
	height: 56px;
	background-image: url(../../assets/img/youtube/bl.svg),url(../../assets/img/youtube/br.svg);
	background-size: contain, contain;
	background-repeat: no-repeat,no-repeat;
	background-position: bottom left, bottom right;
}
@media (max-width: 767px) {
	.youtube_wrapper {
		padding: 3em 0;
	}

	.youtube_content {
		width: 84%;
		padding: 20px 20px;
		margin: auto;
		position: relative;
	}
	.youtube_content::before {
		height: 30px;
	}
	.youtube_content::after {
		height: 30px;
	}
}
.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}