@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 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 {

	20%,
	53%,
	80%,
	0%,
	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	40%,
	43% {
		-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);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	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);
		-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 {

	20%,
	53%,
	80%,
	0%,
	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	40%,
	43% {
		-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);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	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);
		-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;
	-ms-transform-origin: center bottom;
	transform-origin: center bottom
}

@-webkit-keyframes flash {

	50%,
	0%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

@keyframes flash {

	50%,
	0%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 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: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 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: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}

@-webkit-keyframes shake {

	0%,
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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 swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg)
	}

	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg)
	}

	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg)
	}

	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg)
	}

	to {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg)
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg)
	}

	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg)
	}

	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg)
	}

	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg)
	}

	to {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg)
	}
}

.swing {
	-webkit-transform-origin: top center;
	-ms-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 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) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}

@-webkit-keyframes jello {

	11.1%,
	0%,
	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.39062deg) skewY(0.39062deg);
		transform: skewX(0.39062deg) skewY(0.39062deg)
	}

	88.8% {
		-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
		transform: skewX(-0.19531deg) skewY(-0.19531deg)
	}
}

@keyframes jello {

	11.1%,
	0%,
	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.39062deg) skewY(0.39062deg);
		transform: skewX(0.39062deg) skewY(0.39062deg)
	}

	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;
	-ms-transform-origin: center;
	transform-origin: center
}

@-webkit-keyframes bounceIn {

	20%,
	40%,
	60%,
	80%,
	0%,
	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: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

@keyframes bounceIn {

	20%,
	40%,
	60%,
	80%,
	0%,
	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: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

	60%,
	75%,
	90%,
	0%,
	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 {

	60%,
	75%,
	90%,
	0%,
	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 {

	60%,
	75%,
	90%,
	0%,
	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 {

	60%,
	75%,
	90%,
	0%,
	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 {

	60%,
	75%,
	90%,
	0%,
	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 {

	60%,
	75%,
	90%,
	0%,
	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 {

	60%,
	75%,
	90%,
	0%,
	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes bounceInUp {

	60%,
	75%,
	90%,
	0%,
	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-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);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	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) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-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);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	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) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -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) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -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) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 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) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 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);
		opacity: 1
	}

	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1
	}

	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);
		opacity: 1
	}

	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1
	}

	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% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0
	}
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0
	}
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,
	80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 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% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	40%,
	80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 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) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -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) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
	}
}

@keyframes rollOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 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% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3)
	}

	to {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3)
	}

	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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

html {
	font-family: sans-serif;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%
}

body {
	margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline
}

audio:not([controls]) {
	display: none;
	height: 0
}

[hidden],
template {
	display: none
}

a {
	background-color: transparent
}

a:active,
a:hover {
	outline: 0
}

abbr[title] {
	border-bottom: 1px dotted
}

b,
strong {
	font-weight: bold
}

dfn {
	font-style: italic
}

h1 {
	font-size: 2em;
	margin: 0.67em 0
}

mark {
	background: #ff0;
	color: #000
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sup {
	top: -0.5em
}

sub {
	bottom: -0.25em
}

img {
	border: 0
}

svg:not(:root) {
	overflow: hidden
}

figure {
	margin: 1em 40px
}

hr {
	box-sizing: content-box;
	height: 0
}

pre {
	overflow: auto
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0
}

button {
	overflow: visible
}

button,
select {
	text-transform: none
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
	-webkit-appearance: button;
	cursor: pointer
}

button[disabled],
html input[disabled] {
	cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0
}

input {
	line-height: normal
}

input[type=checkbox],
input[type=radio] {
	box-sizing: border-box;
	padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	height: auto
}

input[type=search] {
	-webkit-appearance: textfield;
	box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em
}

legend {
	border: 0;
	padding: 0
}

textarea {
	overflow: auto
}

optgroup {
	font-weight: bold
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

td,
th {
	padding: 0
}

/*! reset.css custum reset */

abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent
}

body {
	line-height: 1
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block
}

ol,
ul {
	list-style: none
}

blockquote,
q {
	quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
	content: '';
	content: none
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold
}

del {
	text-decoration: line-through
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0
}

input,
select {
	vertical-align: middle
}

ol,
ul {
	list-style: none
}

img {
	vertical-align: top;
	font-size: 0;
	line-height: 0;
	max-width: 100%
}

html {
	font-size: 62.5%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased
}

body,
html {
	width: 100%;
	height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold
}

input,
table,
textarea {
	font-size: 100%
}

strong,
th {
	font-weight: bold
}

body {
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
	color: #333
}

a {
	color: #e5521f;
	text-decoration: underline
}

a:hover {
	color: #e5521f;
	text-decoration: none
}

a:hover img {
	opacity: .7
}

a:focus {
	color: #e5521f
}

/*! utility.css */

ul.list-def li {
	list-style-type: disc;
	margin-left: 1.5em;
	margin-bottom: 0.5em
}

ol.list-def li {
	list-style-type: decimal;
	margin-left: 1.5em;
	margin-bottom: 0.5em
}

ul.list-fl:after,
ul.list-fl:before {
	display: table;
	content: " "
}

ul.list-fl:after {
	clear: both
}

ul.list-fl li {
	float: left;
	margin-right: 16px
}

ul.list-fl li.last {
	margin-right: 0
}

ul.list-fl-0:after,
ul.list-fl-0:before {
	display: table;
	content: " "
}

ul.list-fl-0:after {
	clear: both
}

ul.list-fl-0 li {
	float: left;
	margin-right: 0
}

.w-auto {
	width: auto !important
}

.h-auto {
	width: auto !important
}

.none {
	display: none !important
}

.block {
	display: block !important
}

.inline {
	display: inline !important
}

.inline-block {
	display: inline-block !important
}

.table {
	display: table !important
}

.table-cell {
	display: table-cell !important
}

.hidden {
	visibility: hidden !important
}

.of-auto {
	overflow: auto !important
}

.of-hidden {
	overflow: hidden !important
}

.of-scroll {
	overflow: scroll !important
}

.clearfix {
	display: inline-block
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden
}

* html .clearfix {
	height: 1%
}

.clearfix {
	display: block
}

.haslayout {
	overflow: hidden
}

* html .hasLayout {
	display: inline-block
}

:first-child+html .hasLayout {
	display: inline-block
}

.fl {
	float: left !important
}

.fr {
	float: right !important
}

.img-l {
	float: left;
	margin-right: 16px;
	margin-bottom: 16px
}

.img-r {
	float: right;
	margin-left: 16px;
	margin-bottom: 16px
}

.img-c {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 16px
}

img.center {
	display: block;
	margin-left: auto;
	margin-right: auto
}

img.fit {
	width: 100%
}

.clear-l {
	clear: left !important
}

.clear-r {
	clear: right !important
}

.clear {
	float: none !important;
	clear: both !important
}

.clear0 {
	float: none !important;
	clear: both !important;
	font-size: 0 !important;
	line-height: 0 !important
}

.relative {
	position: relative
}

.no-bg {
	background: none !important
}

.block-center {
	display: block !important;
	margin-left: auto !important;
	margin-right: auto !important
}

.nowrap {
	white-space: nowrap !important
}

.pre {
	white-space: pre !important
}

.ac {
	text-align: center !important
}

.al {
	text-align: left !important
}

.ar {
	text-align: right !important
}

.vad {
	vertical-align: baseline !important
}

.vat {
	vertical-align: top !important
}

.vam {
	vertical-align: middle !important
}

.vab {
	vertical-align: bottom !important
}

.normal {
	font-weight: normal !important;
	font-style: normal !important;
	text-decoration: none !important
}

.b {
	font-weight: bold !important
}

.i {
	font-style: italic !important
}

.u {
	text-decoration: underline !important
}

.s {
	text-decoration: overline !important
}

.at {
	vertical-align: super !important
}

.ab {
	vertical-align: sub !important
}

.lh0 {
	line-height: 0 !important
}

.lh1 {
	line-height: 1.0 !important
}

.lh11 {
	line-height: 1.1 !important
}

.lh12 {
	line-height: 1.2 !important
}

.lh13 {
	line-height: 1.3 !important
}

.lh14 {
	line-height: 1.4 !important
}

.lh15 {
	line-height: 1.5 !important
}

.lh16 {
	line-height: 1.6 !important
}

.lh17 {
	line-height: 1.7 !important
}

.lh18 {
	line-height: 1.8 !important
}

.lh19 {
	line-height: 1.9 !important
}

.lh2 {
	line-height: 2.0 !important
}

.xxs {
	font-size: xx-small
}

.xs {
	font-size: x-small
}

.ss {
	font-size: small
}

.ll {
	font-size: large
}

.xl {
	font-size: x-large
}

.xxl {
	font-size: xx-large
}

.em01 {
	font-size: 0.1em !important
}

.em02 {
	font-size: 0.2em !important
}

.em03 {
	font-size: 0.3em !important
}

.em04 {
	font-size: 0.4em !important
}

.em05 {
	font-size: 0.5em !important
}

.em06 {
	font-size: 0.6em !important
}

.em07 {
	font-size: 0.7em !important
}

.em08 {
	font-size: 0.8em !important
}

.em09 {
	font-size: 0.9em !important
}

.em10 {
	font-size: 1.0em !important
}

.em11 {
	font-size: 1.1em !important
}

.em12 {
	font-size: 1.2em !important
}

.em13 {
	font-size: 1.3em !important
}

.em14 {
	font-size: 1.4em !important
}

.em15 {
	font-size: 1.5em !important
}

.em16 {
	font-size: 1.6em !important
}

.em17 {
	font-size: 1.7em !important
}

.em18 {
	font-size: 1.8em !important
}

.em19 {
	font-size: 1.9em !important
}

.em20 {
	font-size: 2.0em !important
}

.em21 {
	font-size: 2.1em !important
}

.em22 {
	font-size: 2.2em !important
}

.em23 {
	font-size: 2.3em !important
}

.em24 {
	font-size: 2.4em !important
}

.em25 {
	font-size: 2.5em !important
}

.em26 {
	font-size: 2.6em !important
}

.em27 {
	font-size: 2.7em !important
}

.em28 {
	font-size: 2.8em !important
}

.em29 {
	font-size: 2.9em !important
}

.em30 {
	font-size: 3.0em !important
}

.em31 {
	font-size: 3.1em !important
}

.em32 {
	font-size: 3.2em !important
}

.em33 {
	font-size: 3.3em !important
}

.em34 {
	font-size: 3.4em !important
}

.em35 {
	font-size: 3.5em !important
}

.em36 {
	font-size: 3.6em !important
}

.em37 {
	font-size: 3.7em !important
}

.em38 {
	font-size: 3.8em !important
}

.em39 {
	font-size: 3.9em !important
}

.em40 {
	font-size: 4.0em !important
}

.em41 {
	font-size: 4.1em !important
}

.em42 {
	font-size: 4.2em !important
}

.em43 {
	font-size: 4.3em !important
}

.em44 {
	font-size: 4.4em !important
}

.em45 {
	font-size: 4.5em !important
}

.em46 {
	font-size: 4.6em !important
}

.em47 {
	font-size: 4.7em !important
}

.em48 {
	font-size: 4.8em !important
}

.em49 {
	font-size: 4.9em !important
}

.em50 {
	font-size: 5.0em !important
}

.em60 {
	font-size: 6.0em !important
}

.em70 {
	font-size: 7.0em !important
}

.em80 {
	font-size: 8.0em !important
}

.em90 {
	font-size: 9.0em !important
}

.em100 {
	font-size: 10.0em !important
}

.ls-1 {
	letter-spacing: -1px
}

.ls-2 {
	letter-spacing: -2px
}

.ls-3 {
	letter-spacing: -3px
}

.ls-4 {
	letter-spacing: -4px
}

.ls-5 {
	letter-spacing: -5px
}

.ls0 {
	letter-spacing: 0
}

.ls1 {
	letter-spacing: 1px
}

.ls2 {
	letter-spacing: 2px
}

.ls3 {
	letter-spacing: 3px
}

.ls4 {
	letter-spacing: 4px
}

.ls5 {
	letter-spacing: 5px
}

.ls01em {
	letter-spacing: 0.1em
}

.ls02em {
	letter-spacing: 0.2em
}

.ls03em {
	letter-spacing: 0.3em
}

.ls04em {
	letter-spacing: 0.4em
}

.ls05em {
	letter-spacing: 0.5em
}

.ls06em {
	letter-spacing: 0.6em
}

.ls07em {
	letter-spacing: 0.7em
}

.ls08em {
	letter-spacing: 0.8em
}

.ls09em {
	letter-spacing: 0.9em
}

.ls10em {
	letter-spacing: 1.0em
}

.w1p {
	width: 1% !important
}

.w2p {
	width: 2% !important
}

.w3p {
	width: 3% !important
}

.w4p {
	width: 4% !important
}

.w5p {
	width: 5% !important
}

.w6p {
	width: 6% !important
}

.w7p {
	width: 7% !important
}

.w8p {
	width: 8% !important
}

.w9p {
	width: 9% !important
}

.w10p {
	width: 10% !important
}

.w11p {
	width: 11% !important
}

.w12p {
	width: 12% !important
}

.w13p {
	width: 13% !important
}

.w14p {
	width: 14% !important
}

.w15p {
	width: 15% !important
}

.w16p {
	width: 16% !important
}

.w17p {
	width: 17% !important
}

.w18p {
	width: 18% !important
}

.w19p {
	width: 19% !important
}

.w20p {
	width: 20% !important
}

.w21p {
	width: 21% !important
}

.w22p {
	width: 22% !important
}

.w23p {
	width: 23% !important
}

.w24p {
	width: 24% !important
}

.w25p {
	width: 25% !important
}

.w26p {
	width: 26% !important
}

.w27p {
	width: 27% !important
}

.w28p {
	width: 28% !important
}

.w29p {
	width: 29% !important
}

.w30p {
	width: 30% !important
}

.w31p {
	width: 31% !important
}

.w32p {
	width: 32% !important
}

.w33p {
	width: 33% !important
}

.w34p {
	width: 34% !important
}

.w35p {
	width: 35% !important
}

.w36p {
	width: 36% !important
}

.w37p {
	width: 37% !important
}

.w38p {
	width: 38% !important
}

.w39p {
	width: 39% !important
}

.w40p {
	width: 40% !important
}

.w41p {
	width: 41% !important
}

.w42p {
	width: 42% !important
}

.w43p {
	width: 43% !important
}

.w44p {
	width: 44% !important
}

.w45p {
	width: 45% !important
}

.w46p {
	width: 46% !important
}

.w47p {
	width: 47% !important
}

.w48p {
	width: 48% !important
}

.w49p {
	width: 49% !important
}

.w50p {
	width: 50% !important
}

.w51p {
	width: 51% !important
}

.w52p {
	width: 52% !important
}

.w53p {
	width: 53% !important
}

.w54p {
	width: 54% !important
}

.w55p {
	width: 55% !important
}

.w56p {
	width: 56% !important
}

.w57p {
	width: 57% !important
}

.w58p {
	width: 58% !important
}

.w59p {
	width: 59% !important
}

.w60p {
	width: 60% !important
}

.w61p {
	width: 61% !important
}

.w62p {
	width: 62% !important
}

.w63p {
	width: 63% !important
}

.w64p {
	width: 64% !important
}

.w65p {
	width: 65% !important
}

.w66p {
	width: 66% !important
}

.w67p {
	width: 67% !important
}

.w68p {
	width: 68% !important
}

.w69p {
	width: 69% !important
}

.w70p {
	width: 70% !important
}

.w71p {
	width: 71% !important
}

.w72p {
	width: 72% !important
}

.w73p {
	width: 73% !important
}

.w74p {
	width: 74% !important
}

.w75p {
	width: 75% !important
}

.w76p {
	width: 76% !important
}

.w77p {
	width: 77% !important
}

.w78p {
	width: 78% !important
}

.w79p {
	width: 79% !important
}

.w80p {
	width: 80% !important
}

.w81p {
	width: 81% !important
}

.w82p {
	width: 82% !important
}

.w83p {
	width: 83% !important
}

.w84p {
	width: 84% !important
}

.w85p {
	width: 85% !important
}

.w86p {
	width: 86% !important
}

.w87p {
	width: 87% !important
}

.w88p {
	width: 88% !important
}

.w89p {
	width: 89% !important
}

.w90p {
	width: 90% !important
}

.w91p {
	width: 91% !important
}

.w92p {
	width: 92% !important
}

.w93p {
	width: 93% !important
}

.w94p {
	width: 94% !important
}

.w95p {
	width: 95% !important
}

.w96p {
	width: 96% !important
}

.w97p {
	width: 97% !important
}

.w98p {
	width: 98% !important
}

.w99p {
	width: 99% !important
}

.w100p {
	width: 100% !important
}

.w1 {
	width: 1px !important
}

.w2 {
	width: 2px !important
}

.w3 {
	width: 3px !important
}

.w4 {
	width: 4px !important
}

.w5 {
	width: 5px !important
}

.w6 {
	width: 6px !important
}

.w7 {
	width: 7px !important
}

.w8 {
	width: 8px !important
}

.w9 {
	width: 9px !important
}

.w10 {
	width: 10px !important
}

.w15 {
	width: 15px !important
}

.w20 {
	width: 20px !important
}

.w25 {
	width: 25px !important
}

.w30 {
	width: 30px !important
}

.w35 {
	width: 35px !important
}

.w40 {
	width: 40px !important
}

.w45 {
	width: 45px !important
}

.w50 {
	width: 50px !important
}

.w55 {
	width: 55px !important
}

.w60 {
	width: 60px !important
}

.w65 {
	width: 65px !important
}

.w70 {
	width: 70px !important
}

.w75 {
	width: 75px !important
}

.w80 {
	width: 80px !important
}

.w85 {
	width: 85px !important
}

.w90 {
	width: 90px !important
}

.w95 {
	width: 95px !important
}

.w100 {
	width: 100px !important
}

.w110 {
	width: 110px !important
}

.w120 {
	width: 120px !important
}

.w130 {
	width: 130px !important
}

.w140 {
	width: 140px !important
}

.w150 {
	width: 150px !important
}

.w160 {
	width: 160px !important
}

.w170 {
	width: 170px !important
}

.w180 {
	width: 180px !important
}

.w190 {
	width: 190px !important
}

.w200 {
	width: 200px !important
}

.w210 {
	width: 210px !important
}

.w220 {
	width: 220px !important
}

.w230 {
	width: 230px !important
}

.w240 {
	width: 240px !important
}

.w250 {
	width: 250px !important
}

.w260 {
	width: 260px !important
}

.w270 {
	width: 270px !important
}

.w280 {
	width: 280px !important
}

.w290 {
	width: 290px !important
}

.w300 {
	width: 300px !important
}

.w310 {
	width: 310px !important
}

.w320 {
	width: 320px !important
}

.w330 {
	width: 330px !important
}

.w340 {
	width: 340px !important
}

.w350 {
	width: 350px !important
}

.w360 {
	width: 360px !important
}

.w370 {
	width: 370px !important
}

.w380 {
	width: 380px !important
}

.w390 {
	width: 390px !important
}

.w400 {
	width: 400px !important
}

.w410 {
	width: 410px !important
}

.w420 {
	width: 420px !important
}

.w430 {
	width: 430px !important
}

.w440 {
	width: 440px !important
}

.w450 {
	width: 450px !important
}

.w460 {
	width: 460px !important
}

.w470 {
	width: 470px !important
}

.w480 {
	width: 480px !important
}

.w490 {
	width: 490px !important
}

.w500 {
	width: 500px !important
}

.w510 {
	width: 510px !important
}

.w520 {
	width: 520px !important
}

.w530 {
	width: 530px !important
}

.w540 {
	width: 540px !important
}

.w550 {
	width: 550px !important
}

.w560 {
	width: 560px !important
}

.w570 {
	width: 570px !important
}

.w580 {
	width: 580px !important
}

.w590 {
	width: 590px !important
}

.w600 {
	width: 600px !important
}

.w610 {
	width: 610px !important
}

.w620 {
	width: 620px !important
}

.w630 {
	width: 630px !important
}

.w640 {
	width: 640px !important
}

.w650 {
	width: 650px !important
}

.w660 {
	width: 660px !important
}

.w670 {
	width: 670px !important
}

.w680 {
	width: 680px !important
}

.w690 {
	width: 690px !important
}

.w700 {
	width: 700px !important
}

.w710 {
	width: 710px !important
}

.w720 {
	width: 720px !important
}

.w730 {
	width: 730px !important
}

.w740 {
	width: 740px !important
}

.w750 {
	width: 750px !important
}

.w760 {
	width: 760px !important
}

.w770 {
	width: 770px !important
}

.w780 {
	width: 780px !important
}

.w790 {
	width: 790px !important
}

.w800 {
	width: 800px !important
}

.w810 {
	width: 810px !important
}

.w820 {
	width: 820px !important
}

.w830 {
	width: 830px !important
}

.w840 {
	width: 840px !important
}

.w850 {
	width: 850px !important
}

.w860 {
	width: 860px !important
}

.w870 {
	width: 870px !important
}

.w880 {
	width: 880px !important
}

.w890 {
	width: 890px !important
}

.w900 {
	width: 900px !important
}

.w910 {
	width: 910px !important
}

.w920 {
	width: 920px !important
}

.w930 {
	width: 930px !important
}

.w940 {
	width: 940px !important
}

.w950 {
	width: 950px !important
}

.w960 {
	width: 960px !important
}

.w970 {
	width: 970px !important
}

.w980 {
	width: 980px !important
}

.w990 {
	width: 990px !important
}

.w1000 {
	width: 1000px !important
}

.h1p {
	height: 1% !important
}

.h2p {
	height: 2% !important
}

.h3p {
	height: 3% !important
}

.h4p {
	height: 4% !important
}

.h5p {
	height: 5% !important
}

.h6p {
	height: 6% !important
}

.h7p {
	height: 7% !important
}

.h8p {
	height: 8% !important
}

.h9p {
	height: 9% !important
}

.h10p {
	height: 10% !important
}

.h15p {
	height: 15% !important
}

.h20p {
	height: 20% !important
}

.h25p {
	height: 25% !important
}

.h30p {
	height: 30% !important
}

.h35p {
	height: 35% !important
}

.h40p {
	height: 40% !important
}

.h45p {
	height: 45% !important
}

.h50p {
	height: 50% !important
}

.h55p {
	height: 55% !important
}

.h60p {
	height: 60% !important
}

.h65p {
	height: 65% !important
}

.h70p {
	height: 70% !important
}

.h75p {
	height: 75% !important
}

.h80p {
	height: 80% !important
}

.h85p {
	height: 85% !important
}

.h90p {
	height: 90% !important
}

.h95p {
	height: 95% !important
}

.h100p {
	height: 100% !important
}

.h1 {
	height: 1px !important
}

.h2 {
	height: 2px !important
}

.h3 {
	height: 3px !important
}

.h4 {
	height: 4px !important
}

.h5 {
	height: 5px !important
}

.h6 {
	height: 6px !important
}

.h7 {
	height: 7px !important
}

.h8 {
	height: 8px !important
}

.h9 {
	height: 9px !important
}

.h10 {
	height: 10px !important
}

.h15 {
	height: 15px !important
}

.h20 {
	height: 20px !important
}

.h25 {
	height: 25px !important
}

.h30 {
	height: 30px !important
}

.h35 {
	height: 35px !important
}

.h40 {
	height: 40px !important
}

.h45 {
	height: 45px !important
}

.h50 {
	height: 50px !important
}

.h55 {
	height: 55px !important
}

.h60 {
	height: 60px !important
}

.h65 {
	height: 65px !important
}

.h70 {
	height: 70px !important
}

.h75 {
	height: 75px !important
}

.h80 {
	height: 80px !important
}

.h85 {
	height: 85px !important
}

.h90 {
	height: 90px !important
}

.h95 {
	height: 95px !important
}

.h100 {
	height: 100px !important
}

.h110 {
	height: 110px !important
}

.h120 {
	height: 120px !important
}

.h130 {
	height: 130px !important
}

.h140 {
	height: 140px !important
}

.h150 {
	height: 150px !important
}

.h160 {
	height: 160px !important
}

.h170 {
	height: 170px !important
}

.h180 {
	height: 180px !important
}

.h190 {
	height: 190px !important
}

.h200 {
	height: 200px !important
}

.h210 {
	height: 210px !important
}

.h220 {
	height: 220px !important
}

.h230 {
	height: 230px !important
}

.h240 {
	height: 240px !important
}

.h250 {
	height: 250px !important
}

.h260 {
	height: 260px !important
}

.h270 {
	height: 270px !important
}

.h280 {
	height: 280px !important
}

.h290 {
	height: 290px !important
}

.h300 {
	height: 300px !important
}

.h310 {
	height: 310px !important
}

.h320 {
	height: 320px !important
}

.h330 {
	height: 330px !important
}

.h340 {
	height: 340px !important
}

.h350 {
	height: 350px !important
}

.h360 {
	height: 360px !important
}

.h370 {
	height: 370px !important
}

.h380 {
	height: 380px !important
}

.h390 {
	height: 390px !important
}

.h400 {
	height: 400px !important
}

.h410 {
	height: 410px !important
}

.h420 {
	height: 420px !important
}

.h430 {
	height: 430px !important
}

.h440 {
	height: 440px !important
}

.h450 {
	height: 450px !important
}

.h460 {
	height: 460px !important
}

.h470 {
	height: 470px !important
}

.h480 {
	height: 480px !important
}

.h490 {
	height: 490px !important
}

.h500 {
	height: 500px !important
}

.h510 {
	height: 510px !important
}

.h520 {
	height: 520px !important
}

.h530 {
	height: 530px !important
}

.h540 {
	height: 540px !important
}

.h550 {
	height: 550px !important
}

.h560 {
	height: 560px !important
}

.h570 {
	height: 570px !important
}

.h580 {
	height: 580px !important
}

.h590 {
	height: 590px !important
}

.h600 {
	height: 600px !important
}

.h610 {
	height: 610px !important
}

.h620 {
	height: 620px !important
}

.h630 {
	height: 630px !important
}

.h640 {
	height: 640px !important
}

.h650 {
	height: 650px !important
}

.h660 {
	height: 660px !important
}

.h670 {
	height: 670px !important
}

.h680 {
	height: 680px !important
}

.h690 {
	height: 690px !important
}

.h700 {
	height: 700px !important
}

.h710 {
	height: 710px !important
}

.h720 {
	height: 720px !important
}

.h730 {
	height: 730px !important
}

.h740 {
	height: 740px !important
}

.h750 {
	height: 750px !important
}

.h760 {
	height: 760px !important
}

.h770 {
	height: 770px !important
}

.h780 {
	height: 780px !important
}

.h790 {
	height: 790px !important
}

.h800 {
	height: 800px !important
}

.h810 {
	height: 810px !important
}

.h820 {
	height: 820px !important
}

.h830 {
	height: 830px !important
}

.h840 {
	height: 840px !important
}

.h850 {
	height: 850px !important
}

.h860 {
	height: 860px !important
}

.h870 {
	height: 870px !important
}

.h880 {
	height: 880px !important
}

.h890 {
	height: 890px !important
}

.h900 {
	height: 900px !important
}

.h910 {
	height: 910px !important
}

.h920 {
	height: 920px !important
}

.h930 {
	height: 930px !important
}

.h940 {
	height: 940px !important
}

.h950 {
	height: 950px !important
}

.h960 {
	height: 960px !important
}

.h970 {
	height: 970px !important
}

.h980 {
	height: 980px !important
}

.h990 {
	height: 990px !important
}

.h1000 {
	height: 1000px !important
}

.ma0 {
	margin: 0 !important
}

.ma1 {
	margin: 1px !important
}

.ma2 {
	margin: 2px !important
}

.ma3 {
	margin: 3px !important
}

.ma4 {
	margin: 4px !important
}

.ma5 {
	margin: 5px !important
}

.ma6 {
	margin: 6px !important
}

.ma7 {
	margin: 7px !important
}

.ma8 {
	margin: 8px !important
}

.ma9 {
	margin: 9px !important
}

.ma10 {
	margin: 10px !important
}

.ma11 {
	margin: 11px !important
}

.ma12 {
	margin: 12px !important
}

.ma13 {
	margin: 13px !important
}

.ma14 {
	margin: 14px !important
}

.ma15 {
	margin: 15px !important
}

.ma16 {
	margin: 16px !important
}

.ma17 {
	margin: 17px !important
}

.ma18 {
	margin: 18px !important
}

.ma19 {
	margin: 19px !important
}

.ma20 {
	margin: 20px !important
}

.ma21 {
	margin: 21px !important
}

.ma22 {
	margin: 22px !important
}

.ma23 {
	margin: 23px !important
}

.ma24 {
	margin: 24px !important
}

.ma25 {
	margin: 25px !important
}

.ma26 {
	margin: 26px !important
}

.ma27 {
	margin: 27px !important
}

.ma28 {
	margin: 28px !important
}

.ma29 {
	margin: 29px !important
}

.ma30 {
	margin: 30px !important
}

.ma31 {
	margin: 31px !important
}

.ma32 {
	margin: 32px !important
}

.ma33 {
	margin: 33px !important
}

.ma34 {
	margin: 34px !important
}

.ma35 {
	margin: 35px !important
}

.ma36 {
	margin: 36px !important
}

.ma37 {
	margin: 37px !important
}

.ma38 {
	margin: 38px !important
}

.ma39 {
	margin: 39px !important
}

.ma40 {
	margin: 40px !important
}

.ma41 {
	margin: 41px !important
}

.ma42 {
	margin: 42px !important
}

.ma43 {
	margin: 43px !important
}

.ma44 {
	margin: 44px !important
}

.ma45 {
	margin: 45px !important
}

.ma46 {
	margin: 46px !important
}

.ma47 {
	margin: 47px !important
}

.ma48 {
	margin: 48px !important
}

.ma49 {
	margin: 49px !important
}

.ma50 {
	margin: 50px !important
}

.ma51 {
	margin: 51px !important
}

.ma52 {
	margin: 52px !important
}

.ma53 {
	margin: 53px !important
}

.ma54 {
	margin: 54px !important
}

.ma55 {
	margin: 55px !important
}

.ma56 {
	margin: 56px !important
}

.ma57 {
	margin: 57px !important
}

.ma58 {
	margin: 58px !important
}

.ma59 {
	margin: 59px !important
}

.ma60 {
	margin: 60px !important
}

.ma61 {
	margin: 61px !important
}

.ma62 {
	margin: 62px !important
}

.ma63 {
	margin: 63px !important
}

.ma64 {
	margin: 64px !important
}

.ma65 {
	margin: 65px !important
}

.ma66 {
	margin: 66px !important
}

.ma67 {
	margin: 67px !important
}

.ma68 {
	margin: 68px !important
}

.ma69 {
	margin: 69px !important
}

.ma70 {
	margin: 70px !important
}

.ma71 {
	margin: 71px !important
}

.ma72 {
	margin: 72px !important
}

.ma73 {
	margin: 73px !important
}

.ma74 {
	margin: 74px !important
}

.ma75 {
	margin: 75px !important
}

.ma76 {
	margin: 76px !important
}

.ma77 {
	margin: 77px !important
}

.ma78 {
	margin: 78px !important
}

.ma79 {
	margin: 79px !important
}

.ma80 {
	margin: 80px !important
}

.ma81 {
	margin: 81px !important
}

.ma82 {
	margin: 82px !important
}

.ma83 {
	margin: 83px !important
}

.ma84 {
	margin: 84px !important
}

.ma85 {
	margin: 85px !important
}

.ma86 {
	margin: 86px !important
}

.ma87 {
	margin: 87px !important
}

.ma88 {
	margin: 88px !important
}

.ma89 {
	margin: 89px !important
}

.ma90 {
	margin: 90px !important
}

.ma91 {
	margin: 91px !important
}

.ma92 {
	margin: 92px !important
}

.ma93 {
	margin: 93px !important
}

.ma94 {
	margin: 94px !important
}

.ma95 {
	margin: 95px !important
}

.ma96 {
	margin: 96px !important
}

.ma97 {
	margin: 97px !important
}

.ma98 {
	margin: 98px !important
}

.ma99 {
	margin: 99px !important
}

.ma100 {
	margin: 100px !important
}

.mt-10 {
	margin-top: -10px !important
}

.mt-9 {
	margin-top: -9px !important
}

.mt-8 {
	margin-top: -8px !important
}

.mt-7 {
	margin-top: -7px !important
}

.mt-6 {
	margin-top: -6px !important
}

.mt-5 {
	margin-top: -5px !important
}

.mt-4 {
	margin-top: -4px !important
}

.mt-3 {
	margin-top: -3px !important
}

.mt-2 {
	margin-top: -2px !important
}

.mt-1 {
	margin-top: -1px !important
}

.mt0 {
	margin-top: 0 !important
}

.mt1 {
	margin-top: 1px !important
}

.mt2 {
	margin-top: 2px !important
}

.mt3 {
	margin-top: 3px !important
}

.mt4 {
	margin-top: 4px !important
}

.mt5 {
	margin-top: 5px !important
}

.mt6 {
	margin-top: 6px !important
}

.mt7 {
	margin-top: 7px !important
}

.mt8 {
	margin-top: 8px !important
}

.mt9 {
	margin-top: 9px !important
}

.mt10 {
	margin-top: 10px !important
}

.mt11 {
	margin-top: 11px !important
}

.mt12 {
	margin-top: 12px !important
}

.mt13 {
	margin-top: 13px !important
}

.mt14 {
	margin-top: 14px !important
}

.mt15 {
	margin-top: 15px !important
}

.mt16 {
	margin-top: 16px !important
}

.mt17 {
	margin-top: 17px !important
}

.mt18 {
	margin-top: 18px !important
}

.mt19 {
	margin-top: 19px !important
}

.mt20 {
	margin-top: 20px !important
}

.mt21 {
	margin-top: 21px !important
}

.mt22 {
	margin-top: 22px !important
}

.mt23 {
	margin-top: 23px !important
}

.mt24 {
	margin-top: 24px !important
}

.mt25 {
	margin-top: 25px !important
}

.mt26 {
	margin-top: 26px !important
}

.mt27 {
	margin-top: 27px !important
}

.mt28 {
	margin-top: 28px !important
}

.mt29 {
	margin-top: 29px !important
}

.mt30 {
	margin-top: 30px !important
}

.mt31 {
	margin-top: 31px !important
}

.mt32 {
	margin-top: 32px !important
}

.mt33 {
	margin-top: 33px !important
}

.mt34 {
	margin-top: 34px !important
}

.mt35 {
	margin-top: 35px !important
}

.mt36 {
	margin-top: 36px !important
}

.mt37 {
	margin-top: 37px !important
}

.mt38 {
	margin-top: 38px !important
}

.mt39 {
	margin-top: 39px !important
}

.mt40 {
	margin-top: 40px !important
}

.mt41 {
	margin-top: 41px !important
}

.mt42 {
	margin-top: 42px !important
}

.mt43 {
	margin-top: 43px !important
}

.mt44 {
	margin-top: 44px !important
}

.mt45 {
	margin-top: 45px !important
}

.mt46 {
	margin-top: 46px !important
}

.mt47 {
	margin-top: 47px !important
}

.mt48 {
	margin-top: 48px !important
}

.mt49 {
	margin-top: 49px !important
}

.mt50 {
	margin-top: 50px !important
}

.mt51 {
	margin-top: 51px !important
}

.mt52 {
	margin-top: 52px !important
}

.mt53 {
	margin-top: 53px !important
}

.mt54 {
	margin-top: 54px !important
}

.mt55 {
	margin-top: 55px !important
}

.mt56 {
	margin-top: 56px !important
}

.mt57 {
	margin-top: 57px !important
}

.mt58 {
	margin-top: 58px !important
}

.mt59 {
	margin-top: 59px !important
}

.mt60 {
	margin-top: 60px !important
}

.mt61 {
	margin-top: 61px !important
}

.mt62 {
	margin-top: 62px !important
}

.mt63 {
	margin-top: 63px !important
}

.mt64 {
	margin-top: 64px !important
}

.mt65 {
	margin-top: 65px !important
}

.mt66 {
	margin-top: 66px !important
}

.mt67 {
	margin-top: 67px !important
}

.mt68 {
	margin-top: 68px !important
}

.mt69 {
	margin-top: 69px !important
}

.mt70 {
	margin-top: 70px !important
}

.mt71 {
	margin-top: 71px !important
}

.mt72 {
	margin-top: 72px !important
}

.mt73 {
	margin-top: 73px !important
}

.mt74 {
	margin-top: 74px !important
}

.mt75 {
	margin-top: 75px !important
}

.mt76 {
	margin-top: 76px !important
}

.mt77 {
	margin-top: 77px !important
}

.mt78 {
	margin-top: 78px !important
}

.mt79 {
	margin-top: 79px !important
}

.mt80 {
	margin-top: 80px !important
}

.mt81 {
	margin-top: 81px !important
}

.mt82 {
	margin-top: 82px !important
}

.mt83 {
	margin-top: 83px !important
}

.mt84 {
	margin-top: 84px !important
}

.mt85 {
	margin-top: 85px !important
}

.mt86 {
	margin-top: 86px !important
}

.mt87 {
	margin-top: 87px !important
}

.mt88 {
	margin-top: 88px !important
}

.mt89 {
	margin-top: 89px !important
}

.mt90 {
	margin-top: 90px !important
}

.mt91 {
	margin-top: 91px !important
}

.mt92 {
	margin-top: 92px !important
}

.mt93 {
	margin-top: 93px !important
}

.mt94 {
	margin-top: 94px !important
}

.mt95 {
	margin-top: 95px !important
}

.mt96 {
	margin-top: 96px !important
}

.mt97 {
	margin-top: 97px !important
}

.mt98 {
	margin-top: 98px !important
}

.mt99 {
	margin-top: 99px !important
}

.mt100 {
	margin-top: 100px !important
}

.mr-10 {
	margin-right: -10px !important
}

.mr-9 {
	margin-right: -9px !important
}

.mr-8 {
	margin-right: -8px !important
}

.mr-7 {
	margin-right: -7px !important
}

.mr-6 {
	margin-right: -6px !important
}

.mr-5 {
	margin-right: -5px !important
}

.mr-4 {
	margin-right: -4px !important
}

.mr-3 {
	margin-right: -3px !important
}

.mr-2 {
	margin-right: -2px !important
}

.mr-1 {
	margin-right: -1px !important
}

.mr0 {
	margin-right: 0 !important
}

.mr1 {
	margin-right: 1px !important
}

.mr2 {
	margin-right: 2px !important
}

.mr3 {
	margin-right: 3px !important
}

.mr4 {
	margin-right: 4px !important
}

.mr5 {
	margin-right: 5px !important
}

.mr6 {
	margin-right: 6px !important
}

.mr7 {
	margin-right: 7px !important
}

.mr8 {
	margin-right: 8px !important
}

.mr9 {
	margin-right: 9px !important
}

.mr10 {
	margin-right: 10px !important
}

.mr11 {
	margin-right: 11px !important
}

.mr12 {
	margin-right: 12px !important
}

.mr13 {
	margin-right: 13px !important
}

.mr14 {
	margin-right: 14px !important
}

.mr15 {
	margin-right: 15px !important
}

.mr16 {
	margin-right: 16px !important
}

.mr17 {
	margin-right: 17px !important
}

.mr18 {
	margin-right: 18px !important
}

.mr19 {
	margin-right: 19px !important
}

.mr20 {
	margin-right: 20px !important
}

.mr21 {
	margin-right: 21px !important
}

.mr22 {
	margin-right: 22px !important
}

.mr23 {
	margin-right: 23px !important
}

.mr24 {
	margin-right: 24px !important
}

.mr25 {
	margin-right: 25px !important
}

.mr26 {
	margin-right: 26px !important
}

.mr27 {
	margin-right: 27px !important
}

.mr28 {
	margin-right: 28px !important
}

.mr29 {
	margin-right: 29px !important
}

.mr30 {
	margin-right: 30px !important
}

.mr31 {
	margin-right: 31px !important
}

.mr32 {
	margin-right: 32px !important
}

.mr33 {
	margin-right: 33px !important
}

.mr34 {
	margin-right: 34px !important
}

.mr35 {
	margin-right: 35px !important
}

.mr36 {
	margin-right: 36px !important
}

.mr37 {
	margin-right: 37px !important
}

.mr38 {
	margin-right: 38px !important
}

.mr39 {
	margin-right: 39px !important
}

.mr40 {
	margin-right: 40px !important
}

.mr41 {
	margin-right: 41px !important
}

.mr42 {
	margin-right: 42px !important
}

.mr43 {
	margin-right: 43px !important
}

.mr44 {
	margin-right: 44px !important
}

.mr45 {
	margin-right: 45px !important
}

.mr46 {
	margin-right: 46px !important
}

.mr47 {
	margin-right: 47px !important
}

.mr48 {
	margin-right: 48px !important
}

.mr49 {
	margin-right: 49px !important
}

.mr50 {
	margin-right: 50px !important
}

.mr51 {
	margin-right: 51px !important
}

.mr52 {
	margin-right: 52px !important
}

.mr53 {
	margin-right: 53px !important
}

.mr54 {
	margin-right: 54px !important
}

.mr55 {
	margin-right: 55px !important
}

.mr56 {
	margin-right: 56px !important
}

.mr57 {
	margin-right: 57px !important
}

.mr58 {
	margin-right: 58px !important
}

.mr59 {
	margin-right: 59px !important
}

.mr60 {
	margin-right: 60px !important
}

.mr61 {
	margin-right: 61px !important
}

.mr62 {
	margin-right: 62px !important
}

.mr63 {
	margin-right: 63px !important
}

.mr64 {
	margin-right: 64px !important
}

.mr65 {
	margin-right: 65px !important
}

.mr66 {
	margin-right: 66px !important
}

.mr67 {
	margin-right: 67px !important
}

.mr68 {
	margin-right: 68px !important
}

.mr69 {
	margin-right: 69px !important
}

.mr70 {
	margin-right: 70px !important
}

.mr71 {
	margin-right: 71px !important
}

.mr72 {
	margin-right: 72px !important
}

.mr73 {
	margin-right: 73px !important
}

.mr74 {
	margin-right: 74px !important
}

.mr75 {
	margin-right: 75px !important
}

.mr76 {
	margin-right: 76px !important
}

.mr77 {
	margin-right: 77px !important
}

.mr78 {
	margin-right: 78px !important
}

.mr79 {
	margin-right: 79px !important
}

.mr80 {
	margin-right: 80px !important
}

.mr81 {
	margin-right: 81px !important
}

.mr82 {
	margin-right: 82px !important
}

.mr83 {
	margin-right: 83px !important
}

.mr84 {
	margin-right: 84px !important
}

.mr85 {
	margin-right: 85px !important
}

.mr86 {
	margin-right: 86px !important
}

.mr87 {
	margin-right: 87px !important
}

.mr88 {
	margin-right: 88px !important
}

.mr89 {
	margin-right: 89px !important
}

.mr90 {
	margin-right: 90px !important
}

.mr91 {
	margin-right: 91px !important
}

.mr92 {
	margin-right: 92px !important
}

.mr93 {
	margin-right: 93px !important
}

.mr94 {
	margin-right: 94px !important
}

.mr95 {
	margin-right: 95px !important
}

.mr96 {
	margin-right: 96px !important
}

.mr97 {
	margin-right: 97px !important
}

.mr98 {
	margin-right: 98px !important
}

.mr99 {
	margin-right: 99px !important
}

.mr100 {
	margin-right: 100px !important
}

.mb-10 {
	margin-bottom: -10px !important
}

.mb-9 {
	margin-bottom: -9px !important
}

.mb-8 {
	margin-bottom: -8px !important
}

.mb-7 {
	margin-bottom: -7px !important
}

.mb-6 {
	margin-bottom: -6px !important
}

.mb-5 {
	margin-bottom: -5px !important
}

.mb-4 {
	margin-bottom: -4px !important
}

.mb-3 {
	margin-bottom: -3px !important
}

.mb-2 {
	margin-bottom: -2px !important
}

.mb-1 {
	margin-bottom: -1px !important
}

.mb0 {
	margin-bottom: 0 !important
}

.mb1 {
	margin-bottom: 1px !important
}

.mb2 {
	margin-bottom: 2px !important
}

.mb3 {
	margin-bottom: 3px !important
}

.mb4 {
	margin-bottom: 4px !important
}

.mb5 {
	margin-bottom: 5px !important
}

.mb6 {
	margin-bottom: 6px !important
}

.mb7 {
	margin-bottom: 7px !important
}

.mb8 {
	margin-bottom: 8px !important
}

.mb9 {
	margin-bottom: 9px !important
}

.mb10 {
	margin-bottom: 10px !important
}

.mb11 {
	margin-bottom: 11px !important
}

.mb12 {
	margin-bottom: 12px !important
}

.mb13 {
	margin-bottom: 13px !important
}

.mb14 {
	margin-bottom: 14px !important
}

.mb15 {
	margin-bottom: 15px !important
}

.mb16 {
	margin-bottom: 16px !important
}

.mb17 {
	margin-bottom: 17px !important
}

.mb18 {
	margin-bottom: 18px !important
}

.mb19 {
	margin-bottom: 19px !important
}

.mb20 {
	margin-bottom: 20px !important
}

.mb21 {
	margin-bottom: 21px !important
}

.mb22 {
	margin-bottom: 22px !important
}

.mb23 {
	margin-bottom: 23px !important
}

.mb24 {
	margin-bottom: 24px !important
}

.mb25 {
	margin-bottom: 25px !important
}

.mb26 {
	margin-bottom: 26px !important
}

.mb27 {
	margin-bottom: 27px !important
}

.mb28 {
	margin-bottom: 28px !important
}

.mb29 {
	margin-bottom: 29px !important
}

.mb30 {
	margin-bottom: 30px !important
}

.mb31 {
	margin-bottom: 31px !important
}

.mb32 {
	margin-bottom: 32px !important
}

.mb33 {
	margin-bottom: 33px !important
}

.mb34 {
	margin-bottom: 34px !important
}

.mb35 {
	margin-bottom: 35px !important
}

.mb36 {
	margin-bottom: 36px !important
}

.mb37 {
	margin-bottom: 37px !important
}

.mb38 {
	margin-bottom: 38px !important
}

.mb39 {
	margin-bottom: 39px !important
}

.mb40 {
	margin-bottom: 40px !important
}

.mb41 {
	margin-bottom: 41px !important
}

.mb42 {
	margin-bottom: 42px !important
}

.mb43 {
	margin-bottom: 43px !important
}

.mb44 {
	margin-bottom: 44px !important
}

.mb45 {
	margin-bottom: 45px !important
}

.mb46 {
	margin-bottom: 46px !important
}

.mb47 {
	margin-bottom: 47px !important
}

.mb48 {
	margin-bottom: 48px !important
}

.mb49 {
	margin-bottom: 49px !important
}

.mb50 {
	margin-bottom: 50px !important
}

.mb51 {
	margin-bottom: 51px !important
}

.mb52 {
	margin-bottom: 52px !important
}

.mb53 {
	margin-bottom: 53px !important
}

.mb54 {
	margin-bottom: 54px !important
}

.mb55 {
	margin-bottom: 55px !important
}

.mb56 {
	margin-bottom: 56px !important
}

.mb57 {
	margin-bottom: 57px !important
}

.mb58 {
	margin-bottom: 58px !important
}

.mb59 {
	margin-bottom: 59px !important
}

.mb60 {
	margin-bottom: 60px !important
}

.mb61 {
	margin-bottom: 61px !important
}

.mb62 {
	margin-bottom: 62px !important
}

.mb63 {
	margin-bottom: 63px !important
}

.mb64 {
	margin-bottom: 64px !important
}

.mb65 {
	margin-bottom: 65px !important
}

.mb66 {
	margin-bottom: 66px !important
}

.mb67 {
	margin-bottom: 67px !important
}

.mb68 {
	margin-bottom: 68px !important
}

.mb69 {
	margin-bottom: 69px !important
}

.mb70 {
	margin-bottom: 70px !important
}

.mb71 {
	margin-bottom: 71px !important
}

.mb72 {
	margin-bottom: 72px !important
}

.mb73 {
	margin-bottom: 73px !important
}

.mb74 {
	margin-bottom: 74px !important
}

.mb75 {
	margin-bottom: 75px !important
}

.mb76 {
	margin-bottom: 76px !important
}

.mb77 {
	margin-bottom: 77px !important
}

.mb78 {
	margin-bottom: 78px !important
}

.mb79 {
	margin-bottom: 79px !important
}

.mb80 {
	margin-bottom: 80px !important
}

.mb81 {
	margin-bottom: 81px !important
}

.mb82 {
	margin-bottom: 82px !important
}

.mb83 {
	margin-bottom: 83px !important
}

.mb84 {
	margin-bottom: 84px !important
}

.mb85 {
	margin-bottom: 85px !important
}

.mb86 {
	margin-bottom: 86px !important
}

.mb87 {
	margin-bottom: 87px !important
}

.mb88 {
	margin-bottom: 88px !important
}

.mb89 {
	margin-bottom: 89px !important
}

.mb90 {
	margin-bottom: 90px !important
}

.mb91 {
	margin-bottom: 91px !important
}

.mb92 {
	margin-bottom: 92px !important
}

.mb93 {
	margin-bottom: 93px !important
}

.mb94 {
	margin-bottom: 94px !important
}

.mb95 {
	margin-bottom: 95px !important
}

.mb96 {
	margin-bottom: 96px !important
}

.mb97 {
	margin-bottom: 97px !important
}

.mb98 {
	margin-bottom: 98px !important
}

.mb99 {
	margin-bottom: 99px !important
}

.mb100 {
	margin-bottom: 100px !important
}

.mb150 {
	margin-bottom: 150px !important
}

.mb200 {
	margin-bottom: 200px !important
}

.ml-10 {
	margin-left: -10px !important
}

.ml-9 {
	margin-left: -9px !important
}

.ml-8 {
	margin-left: -8px !important
}

.ml-7 {
	margin-left: -7px !important
}

.ml-6 {
	margin-left: -6px !important
}

.ml-5 {
	margin-left: -5px !important
}

.ml-4 {
	margin-left: -4px !important
}

.ml-3 {
	margin-left: -3px !important
}

.ml-2 {
	margin-left: -2px !important
}

.ml-1 {
	margin-left: -1px !important
}

.ml0 {
	margin-left: 0 !important
}

.ml1 {
	margin-left: 1px !important
}

.ml2 {
	margin-left: 2px !important
}

.ml3 {
	margin-left: 3px !important
}

.ml4 {
	margin-left: 4px !important
}

.ml5 {
	margin-left: 5px !important
}

.ml6 {
	margin-left: 6px !important
}

.ml7 {
	margin-left: 7px !important
}

.ml8 {
	margin-left: 8px !important
}

.ml9 {
	margin-left: 9px !important
}

.ml10 {
	margin-left: 10px !important
}

.ml11 {
	margin-left: 11px !important
}

.ml12 {
	margin-left: 12px !important
}

.ml13 {
	margin-left: 13px !important
}

.ml14 {
	margin-left: 14px !important
}

.ml15 {
	margin-left: 15px !important
}

.ml16 {
	margin-left: 16px !important
}

.ml17 {
	margin-left: 17px !important
}

.ml18 {
	margin-left: 18px !important
}

.ml19 {
	margin-left: 19px !important
}

.ml20 {
	margin-left: 20px !important
}

.ml21 {
	margin-left: 21px !important
}

.ml22 {
	margin-left: 22px !important
}

.ml23 {
	margin-left: 23px !important
}

.ml24 {
	margin-left: 24px !important
}

.ml25 {
	margin-left: 25px !important
}

.ml26 {
	margin-left: 26px !important
}

.ml27 {
	margin-left: 27px !important
}

.ml28 {
	margin-left: 28px !important
}

.ml29 {
	margin-left: 29px !important
}

.ml30 {
	margin-left: 30px !important
}

.ml31 {
	margin-left: 31px !important
}

.ml32 {
	margin-left: 32px !important
}

.ml33 {
	margin-left: 33px !important
}

.ml34 {
	margin-left: 34px !important
}

.ml35 {
	margin-left: 35px !important
}

.ml36 {
	margin-left: 36px !important
}

.ml37 {
	margin-left: 37px !important
}

.ml38 {
	margin-left: 38px !important
}

.ml39 {
	margin-left: 39px !important
}

.ml40 {
	margin-left: 40px !important
}

.ml41 {
	margin-left: 41px !important
}

.ml42 {
	margin-left: 42px !important
}

.ml43 {
	margin-left: 43px !important
}

.ml44 {
	margin-left: 44px !important
}

.ml45 {
	margin-left: 45px !important
}

.ml46 {
	margin-left: 46px !important
}

.ml47 {
	margin-left: 47px !important
}

.ml48 {
	margin-left: 48px !important
}

.ml49 {
	margin-left: 49px !important
}

.ml50 {
	margin-left: 50px !important
}

.ml51 {
	margin-left: 51px !important
}

.ml52 {
	margin-left: 52px !important
}

.ml53 {
	margin-left: 53px !important
}

.ml54 {
	margin-left: 54px !important
}

.ml55 {
	margin-left: 55px !important
}

.ml56 {
	margin-left: 56px !important
}

.ml57 {
	margin-left: 57px !important
}

.ml58 {
	margin-left: 58px !important
}

.ml59 {
	margin-left: 59px !important
}

.ml60 {
	margin-left: 60px !important
}

.ml61 {
	margin-left: 61px !important
}

.ml62 {
	margin-left: 62px !important
}

.ml63 {
	margin-left: 63px !important
}

.ml64 {
	margin-left: 64px !important
}

.ml65 {
	margin-left: 65px !important
}

.ml66 {
	margin-left: 66px !important
}

.ml67 {
	margin-left: 67px !important
}

.ml68 {
	margin-left: 68px !important
}

.ml69 {
	margin-left: 69px !important
}

.ml70 {
	margin-left: 70px !important
}

.ml71 {
	margin-left: 71px !important
}

.ml72 {
	margin-left: 72px !important
}

.ml73 {
	margin-left: 73px !important
}

.ml74 {
	margin-left: 74px !important
}

.ml75 {
	margin-left: 75px !important
}

.ml76 {
	margin-left: 76px !important
}

.ml77 {
	margin-left: 77px !important
}

.ml78 {
	margin-left: 78px !important
}

.ml79 {
	margin-left: 79px !important
}

.ml80 {
	margin-left: 80px !important
}

.ml81 {
	margin-left: 81px !important
}

.ml82 {
	margin-left: 82px !important
}

.ml83 {
	margin-left: 83px !important
}

.ml84 {
	margin-left: 84px !important
}

.ml85 {
	margin-left: 85px !important
}

.ml86 {
	margin-left: 86px !important
}

.ml87 {
	margin-left: 87px !important
}

.ml88 {
	margin-left: 88px !important
}

.ml89 {
	margin-left: 89px !important
}

.ml90 {
	margin-left: 90px !important
}

.ml91 {
	margin-left: 91px !important
}

.ml92 {
	margin-left: 92px !important
}

.ml93 {
	margin-left: 93px !important
}

.ml94 {
	margin-left: 94px !important
}

.ml95 {
	margin-left: 95px !important
}

.ml96 {
	margin-left: 96px !important
}

.ml97 {
	margin-left: 97px !important
}

.ml98 {
	margin-left: 98px !important
}

.ml99 {
	margin-left: 99px !important
}

.ml100 {
	margin-left: 100px !important
}

.ml110 {
	margin-left: 110px !important
}

.ml115 {
	margin-left: 115px !important
}

.ml120 {
	margin-left: 120px !important
}

.ml170 {
	margin-left: 170px !important
}

.ml180 {
	margin-left: 180px !important
}

.ml200 {
	margin-left: 200px !important
}

.ml210 {
	margin-left: 210px !important
}

.ml220 {
	margin-left: 220px !important
}

.ml230 {
	margin-left: 230px !important
}

.ml240 {
	margin-left: 240px !important
}

.ml250 {
	margin-left: 250px !important
}

.ml260 {
	margin-left: 260px !important
}

.ml270 {
	margin-left: 270px !important
}

.ml280 {
	margin-left: 280px !important
}

.ml290 {
	margin-left: 290px !important
}

.ml300 {
	margin-left: 300px !important
}

.ml450 {
	margin-left: 450px !important
}

.pa0 {
	padding: 0 !important
}

.pa1 {
	padding: 1px !important
}

.pa2 {
	padding: 2px !important
}

.pa3 {
	padding: 3px !important
}

.pa4 {
	padding: 4px !important
}

.pa5 {
	padding: 5px !important
}

.pa6 {
	padding: 6px !important
}

.pa7 {
	padding: 7px !important
}

.pa8 {
	padding: 8px !important
}

.pa9 {
	padding: 9px !important
}

.pa10 {
	padding: 10px !important
}

.pa11 {
	padding: 11px !important
}

.pa12 {
	padding: 12px !important
}

.pa13 {
	padding: 13px !important
}

.pa14 {
	padding: 14px !important
}

.pa15 {
	padding: 15px !important
}

.pa16 {
	padding: 16px !important
}

.pa17 {
	padding: 17px !important
}

.pa18 {
	padding: 18px !important
}

.pa19 {
	padding: 19px !important
}

.pa20 {
	padding: 20px !important
}

.pa21 {
	padding: 21px !important
}

.pa22 {
	padding: 22px !important
}

.pa23 {
	padding: 23px !important
}

.pa24 {
	padding: 24px !important
}

.pa25 {
	padding: 25px !important
}

.pa26 {
	padding: 26px !important
}

.pa27 {
	padding: 27px !important
}

.pa28 {
	padding: 28px !important
}

.pa29 {
	padding: 29px !important
}

.pa30 {
	padding: 30px !important
}

.pa31 {
	padding: 31px !important
}

.pa32 {
	padding: 32px !important
}

.pa33 {
	padding: 33px !important
}

.pa34 {
	padding: 34px !important
}

.pa35 {
	padding: 35px !important
}

.pa36 {
	padding: 36px !important
}

.pa37 {
	padding: 37px !important
}

.pa38 {
	padding: 38px !important
}

.pa39 {
	padding: 39px !important
}

.pa40 {
	padding: 40px !important
}

.pa41 {
	padding: 41px !important
}

.pa42 {
	padding: 42px !important
}

.pa43 {
	padding: 43px !important
}

.pa44 {
	padding: 44px !important
}

.pa45 {
	padding: 45px !important
}

.pa46 {
	padding: 46px !important
}

.pa47 {
	padding: 47px !important
}

.pa48 {
	padding: 48px !important
}

.pa49 {
	padding: 49px !important
}

.pa50 {
	padding: 50px !important
}

.pa51 {
	padding: 51px !important
}

.pa52 {
	padding: 52px !important
}

.pa53 {
	padding: 53px !important
}

.pa54 {
	padding: 54px !important
}

.pa55 {
	padding: 55px !important
}

.pa56 {
	padding: 56px !important
}

.pa57 {
	padding: 57px !important
}

.pa58 {
	padding: 58px !important
}

.pa59 {
	padding: 59px !important
}

.pa60 {
	padding: 60px !important
}

.pa61 {
	padding: 61px !important
}

.pa62 {
	padding: 62px !important
}

.pa63 {
	padding: 63px !important
}

.pa64 {
	padding: 64px !important
}

.pa65 {
	padding: 65px !important
}

.pa66 {
	padding: 66px !important
}

.pa67 {
	padding: 67px !important
}

.pa68 {
	padding: 68px !important
}

.pa69 {
	padding: 69px !important
}

.pa70 {
	padding: 70px !important
}

.pa71 {
	padding: 71px !important
}

.pa72 {
	padding: 72px !important
}

.pa73 {
	padding: 73px !important
}

.pa74 {
	padding: 74px !important
}

.pa75 {
	padding: 75px !important
}

.pa76 {
	padding: 76px !important
}

.pa77 {
	padding: 77px !important
}

.pa78 {
	padding: 78px !important
}

.pa79 {
	padding: 79px !important
}

.pa80 {
	padding: 80px !important
}

.pa81 {
	padding: 81px !important
}

.pa82 {
	padding: 82px !important
}

.pa83 {
	padding: 83px !important
}

.pa84 {
	padding: 84px !important
}

.pa85 {
	padding: 85px !important
}

.pa86 {
	padding: 86px !important
}

.pa87 {
	padding: 87px !important
}

.pa88 {
	padding: 88px !important
}

.pa89 {
	padding: 89px !important
}

.pa90 {
	padding: 90px !important
}

.pa91 {
	padding: 91px !important
}

.pa92 {
	padding: 92px !important
}

.pa93 {
	padding: 93px !important
}

.pa94 {
	padding: 94px !important
}

.pa95 {
	padding: 95px !important
}

.pa96 {
	padding: 96px !important
}

.pa97 {
	padding: 97px !important
}

.pa98 {
	padding: 98px !important
}

.pa99 {
	padding: 99px !important
}

.pa100 {
	padding: 100px !important
}

.pt0 {
	padding-top: 0 !important
}

.pt1 {
	padding-top: 1px !important
}

.pt2 {
	padding-top: 2px !important
}

.pt3 {
	padding-top: 3px !important
}

.pt4 {
	padding-top: 4px !important
}

.pt5 {
	padding-top: 5px !important
}

.pt6 {
	padding-top: 6px !important
}

.pt7 {
	padding-top: 7px !important
}

.pt8 {
	padding-top: 8px !important
}

.pt9 {
	padding-top: 9px !important
}

.pt10 {
	padding-top: 10px !important
}

.pt11 {
	padding-top: 11px !important
}

.pt12 {
	padding-top: 12px !important
}

.pt13 {
	padding-top: 13px !important
}

.pt14 {
	padding-top: 14px !important
}

.pt15 {
	padding-top: 15px !important
}

.pt16 {
	padding-top: 16px !important
}

.pt17 {
	padding-top: 17px !important
}

.pt18 {
	padding-top: 18px !important
}

.pt19 {
	padding-top: 19px !important
}

.pt20 {
	padding-top: 20px !important
}

.pt21 {
	padding-top: 21px !important
}

.pt22 {
	padding-top: 22px !important
}

.pt23 {
	padding-top: 23px !important
}

.pt24 {
	padding-top: 24px !important
}

.pt25 {
	padding-top: 25px !important
}

.pt26 {
	padding-top: 26px !important
}

.pt27 {
	padding-top: 27px !important
}

.pt28 {
	padding-top: 28px !important
}

.pt29 {
	padding-top: 29px !important
}

.pt30 {
	padding-top: 30px !important
}

.pt31 {
	padding-top: 31px !important
}

.pt32 {
	padding-top: 32px !important
}

.pt33 {
	padding-top: 33px !important
}

.pt34 {
	padding-top: 34px !important
}

.pt35 {
	padding-top: 35px !important
}

.pt36 {
	padding-top: 36px !important
}

.pt37 {
	padding-top: 37px !important
}

.pt38 {
	padding-top: 38px !important
}

.pt39 {
	padding-top: 39px !important
}

.pt40 {
	padding-top: 40px !important
}

.pt41 {
	padding-top: 41px !important
}

.pt42 {
	padding-top: 42px !important
}

.pt43 {
	padding-top: 43px !important
}

.pt44 {
	padding-top: 44px !important
}

.pt45 {
	padding-top: 45px !important
}

.pt46 {
	padding-top: 46px !important
}

.pt47 {
	padding-top: 47px !important
}

.pt48 {
	padding-top: 48px !important
}

.pt49 {
	padding-top: 49px !important
}

.pt50 {
	padding-top: 50px !important
}

.pt51 {
	padding-top: 51px !important
}

.pt52 {
	padding-top: 52px !important
}

.pt53 {
	padding-top: 53px !important
}

.pt54 {
	padding-top: 54px !important
}

.pt55 {
	padding-top: 55px !important
}

.pt56 {
	padding-top: 56px !important
}

.pt57 {
	padding-top: 57px !important
}

.pt58 {
	padding-top: 58px !important
}

.pt59 {
	padding-top: 59px !important
}

.pt60 {
	padding-top: 60px !important
}

.pt61 {
	padding-top: 61px !important
}

.pt62 {
	padding-top: 62px !important
}

.pt63 {
	padding-top: 63px !important
}

.pt64 {
	padding-top: 64px !important
}

.pt65 {
	padding-top: 65px !important
}

.pt66 {
	padding-top: 66px !important
}

.pt67 {
	padding-top: 67px !important
}

.pt68 {
	padding-top: 68px !important
}

.pt69 {
	padding-top: 69px !important
}

.pt70 {
	padding-top: 70px !important
}

.pt71 {
	padding-top: 71px !important
}

.pt72 {
	padding-top: 72px !important
}

.pt73 {
	padding-top: 73px !important
}

.pt74 {
	padding-top: 74px !important
}

.pt75 {
	padding-top: 75px !important
}

.pt76 {
	padding-top: 76px !important
}

.pt77 {
	padding-top: 77px !important
}

.pt78 {
	padding-top: 78px !important
}

.pt79 {
	padding-top: 79px !important
}

.pt80 {
	padding-top: 80px !important
}

.pt81 {
	padding-top: 81px !important
}

.pt82 {
	padding-top: 82px !important
}

.pt83 {
	padding-top: 83px !important
}

.pt84 {
	padding-top: 84px !important
}

.pt85 {
	padding-top: 85px !important
}

.pt86 {
	padding-top: 86px !important
}

.pt87 {
	padding-top: 87px !important
}

.pt88 {
	padding-top: 88px !important
}

.pt89 {
	padding-top: 89px !important
}

.pt90 {
	padding-top: 90px !important
}

.pt91 {
	padding-top: 91px !important
}

.pt92 {
	padding-top: 92px !important
}

.pt93 {
	padding-top: 93px !important
}

.pt94 {
	padding-top: 94px !important
}

.pt95 {
	padding-top: 95px !important
}

.pt96 {
	padding-top: 96px !important
}

.pt97 {
	padding-top: 97px !important
}

.pt98 {
	padding-top: 98px !important
}

.pt99 {
	padding-top: 99px !important
}

.pt100 {
	padding-top: 100px !important
}

.pt150 {
	padding-top: 150px !important
}

.pt200 {
	padding-top: 200px !important
}

.pr0 {
	padding-right: 0 !important
}

.pr1 {
	padding-right: 1px !important
}

.pr2 {
	padding-right: 2px !important
}

.pr3 {
	padding-right: 3px !important
}

.pr4 {
	padding-right: 4px !important
}

.pr5 {
	padding-right: 5px !important
}

.pr6 {
	padding-right: 6px !important
}

.pr7 {
	padding-right: 7px !important
}

.pr8 {
	padding-right: 8px !important
}

.pr9 {
	padding-right: 9px !important
}

.pr10 {
	padding-right: 10px !important
}

.pr11 {
	padding-right: 11px !important
}

.pr12 {
	padding-right: 12px !important
}

.pr13 {
	padding-right: 13px !important
}

.pr14 {
	padding-right: 14px !important
}

.pr15 {
	padding-right: 15px !important
}

.pr16 {
	padding-right: 16px !important
}

.pr17 {
	padding-right: 17px !important
}

.pr18 {
	padding-right: 18px !important
}

.pr19 {
	padding-right: 19px !important
}

.pr20 {
	padding-right: 20px !important
}

.pr21 {
	padding-right: 21px !important
}

.pr22 {
	padding-right: 22px !important
}

.pr23 {
	padding-right: 23px !important
}

.pr24 {
	padding-right: 24px !important
}

.pr25 {
	padding-right: 25px !important
}

.pr26 {
	padding-right: 26px !important
}

.pr27 {
	padding-right: 27px !important
}

.pr28 {
	padding-right: 28px !important
}

.pr29 {
	padding-right: 29px !important
}

.pr30 {
	padding-right: 30px !important
}

.pr31 {
	padding-right: 31px !important
}

.pr32 {
	padding-right: 32px !important
}

.pr33 {
	padding-right: 33px !important
}

.pr34 {
	padding-right: 34px !important
}

.pr35 {
	padding-right: 35px !important
}

.pr36 {
	padding-right: 36px !important
}

.pr37 {
	padding-right: 37px !important
}

.pr38 {
	padding-right: 38px !important
}

.pr39 {
	padding-right: 39px !important
}

.pr40 {
	padding-right: 40px !important
}

.pr41 {
	padding-right: 41px !important
}

.pr42 {
	padding-right: 42px !important
}

.pr43 {
	padding-right: 43px !important
}

.pr44 {
	padding-right: 44px !important
}

.pr45 {
	padding-right: 45px !important
}

.pr46 {
	padding-right: 46px !important
}

.pr47 {
	padding-right: 47px !important
}

.pr48 {
	padding-right: 48px !important
}

.pr49 {
	padding-right: 49px !important
}

.pr50 {
	padding-right: 50px !important
}

.pr51 {
	padding-right: 51px !important
}

.pr52 {
	padding-right: 52px !important
}

.pr53 {
	padding-right: 53px !important
}

.pr54 {
	padding-right: 54px !important
}

.pr55 {
	padding-right: 55px !important
}

.pr56 {
	padding-right: 56px !important
}

.pr57 {
	padding-right: 57px !important
}

.pr58 {
	padding-right: 58px !important
}

.pr59 {
	padding-right: 59px !important
}

.pr60 {
	padding-right: 60px !important
}

.pr61 {
	padding-right: 61px !important
}

.pr62 {
	padding-right: 62px !important
}

.pr63 {
	padding-right: 63px !important
}

.pr64 {
	padding-right: 64px !important
}

.pr65 {
	padding-right: 65px !important
}

.pr66 {
	padding-right: 66px !important
}

.pr67 {
	padding-right: 67px !important
}

.pr68 {
	padding-right: 68px !important
}

.pr69 {
	padding-right: 69px !important
}

.pr70 {
	padding-right: 70px !important
}

.pr71 {
	padding-right: 71px !important
}

.pr72 {
	padding-right: 72px !important
}

.pr73 {
	padding-right: 73px !important
}

.pr74 {
	padding-right: 74px !important
}

.pr75 {
	padding-right: 75px !important
}

.pr76 {
	padding-right: 76px !important
}

.pr77 {
	padding-right: 77px !important
}

.pr78 {
	padding-right: 78px !important
}

.pr79 {
	padding-right: 79px !important
}

.pr80 {
	padding-right: 80px !important
}

.pr81 {
	padding-right: 81px !important
}

.pr82 {
	padding-right: 82px !important
}

.pr83 {
	padding-right: 83px !important
}

.pr84 {
	padding-right: 84px !important
}

.pr85 {
	padding-right: 85px !important
}

.pr86 {
	padding-right: 86px !important
}

.pr87 {
	padding-right: 87px !important
}

.pr88 {
	padding-right: 88px !important
}

.pr89 {
	padding-right: 89px !important
}

.pr90 {
	padding-right: 90px !important
}

.pr91 {
	padding-right: 91px !important
}

.pr92 {
	padding-right: 92px !important
}

.pr93 {
	padding-right: 93px !important
}

.pr94 {
	padding-right: 94px !important
}

.pr95 {
	padding-right: 95px !important
}

.pr96 {
	padding-right: 96px !important
}

.pr97 {
	padding-right: 97px !important
}

.pr98 {
	padding-right: 98px !important
}

.pr99 {
	padding-right: 99px !important
}

.pr100 {
	padding-right: 100px !important
}

.pb0 {
	padding-bottom: 0 !important
}

.pb1 {
	padding-bottom: 1px !important
}

.pb2 {
	padding-bottom: 2px !important
}

.pb3 {
	padding-bottom: 3px !important
}

.pb4 {
	padding-bottom: 4px !important
}

.pb5 {
	padding-bottom: 5px !important
}

.pb6 {
	padding-bottom: 6px !important
}

.pb7 {
	padding-bottom: 7px !important
}

.pb8 {
	padding-bottom: 8px !important
}

.pb9 {
	padding-bottom: 9px !important
}

.pb10 {
	padding-bottom: 10px !important
}

.pb11 {
	padding-bottom: 11px !important
}

.pb12 {
	padding-bottom: 12px !important
}

.pb13 {
	padding-bottom: 13px !important
}

.pb14 {
	padding-bottom: 14px !important
}

.pb15 {
	padding-bottom: 15px !important
}

.pb16 {
	padding-bottom: 16px !important
}

.pb17 {
	padding-bottom: 17px !important
}

.pb18 {
	padding-bottom: 18px !important
}

.pb19 {
	padding-bottom: 19px !important
}

.pb20 {
	padding-bottom: 20px !important
}

.pb21 {
	padding-bottom: 21px !important
}

.pb22 {
	padding-bottom: 22px !important
}

.pb23 {
	padding-bottom: 23px !important
}

.pb24 {
	padding-bottom: 24px !important
}

.pb25 {
	padding-bottom: 25px !important
}

.pb26 {
	padding-bottom: 26px !important
}

.pb27 {
	padding-bottom: 27px !important
}

.pb28 {
	padding-bottom: 28px !important
}

.pb29 {
	padding-bottom: 29px !important
}

.pb30 {
	padding-bottom: 30px !important
}

.pb31 {
	padding-bottom: 31px !important
}

.pb32 {
	padding-bottom: 32px !important
}

.pb33 {
	padding-bottom: 33px !important
}

.pb34 {
	padding-bottom: 34px !important
}

.pb35 {
	padding-bottom: 35px !important
}

.pb36 {
	padding-bottom: 36px !important
}

.pb37 {
	padding-bottom: 37px !important
}

.pb38 {
	padding-bottom: 38px !important
}

.pb39 {
	padding-bottom: 39px !important
}

.pb40 {
	padding-bottom: 40px !important
}

.pb41 {
	padding-bottom: 41px !important
}

.pb42 {
	padding-bottom: 42px !important
}

.pb43 {
	padding-bottom: 43px !important
}

.pb44 {
	padding-bottom: 44px !important
}

.pb45 {
	padding-bottom: 45px !important
}

.pb46 {
	padding-bottom: 46px !important
}

.pb47 {
	padding-bottom: 47px !important
}

.pb48 {
	padding-bottom: 48px !important
}

.pb49 {
	padding-bottom: 49px !important
}

.pb50 {
	padding-bottom: 50px !important
}

.pb51 {
	padding-bottom: 51px !important
}

.pb52 {
	padding-bottom: 52px !important
}

.pb53 {
	padding-bottom: 53px !important
}

.pb54 {
	padding-bottom: 54px !important
}

.pb55 {
	padding-bottom: 55px !important
}

.pb56 {
	padding-bottom: 56px !important
}

.pb57 {
	padding-bottom: 57px !important
}

.pb58 {
	padding-bottom: 58px !important
}

.pb59 {
	padding-bottom: 59px !important
}

.pb60 {
	padding-bottom: 60px !important
}

.pb61 {
	padding-bottom: 61px !important
}

.pb62 {
	padding-bottom: 62px !important
}

.pb63 {
	padding-bottom: 63px !important
}

.pb64 {
	padding-bottom: 64px !important
}

.pb65 {
	padding-bottom: 65px !important
}

.pb66 {
	padding-bottom: 66px !important
}

.pb67 {
	padding-bottom: 67px !important
}

.pb68 {
	padding-bottom: 68px !important
}

.pb69 {
	padding-bottom: 69px !important
}

.pb70 {
	padding-bottom: 70px !important
}

.pb71 {
	padding-bottom: 71px !important
}

.pb72 {
	padding-bottom: 72px !important
}

.pb73 {
	padding-bottom: 73px !important
}

.pb74 {
	padding-bottom: 74px !important
}

.pb75 {
	padding-bottom: 75px !important
}

.pb76 {
	padding-bottom: 76px !important
}

.pb77 {
	padding-bottom: 77px !important
}

.pb78 {
	padding-bottom: 78px !important
}

.pb79 {
	padding-bottom: 79px !important
}

.pb80 {
	padding-bottom: 80px !important
}

.pb81 {
	padding-bottom: 81px !important
}

.pb82 {
	padding-bottom: 82px !important
}

.pb83 {
	padding-bottom: 83px !important
}

.pb84 {
	padding-bottom: 84px !important
}

.pb85 {
	padding-bottom: 85px !important
}

.pb86 {
	padding-bottom: 86px !important
}

.pb87 {
	padding-bottom: 87px !important
}

.pb88 {
	padding-bottom: 88px !important
}

.pb89 {
	padding-bottom: 89px !important
}

.pb90 {
	padding-bottom: 90px !important
}

.pb91 {
	padding-bottom: 91px !important
}

.pb92 {
	padding-bottom: 92px !important
}

.pb93 {
	padding-bottom: 93px !important
}

.pb94 {
	padding-bottom: 94px !important
}

.pb95 {
	padding-bottom: 95px !important
}

.pb96 {
	padding-bottom: 96px !important
}

.pb97 {
	padding-bottom: 97px !important
}

.pb98 {
	padding-bottom: 98px !important
}

.pb99 {
	padding-bottom: 99px !important
}

.pb100 {
	padding-bottom: 100px !important
}

.pb150 {
	padding-bottom: 150px !important
}

.pb200 {
	padding-bottom: 200px !important
}

.pl0 {
	padding-left: 0 !important
}

.pl1 {
	padding-left: 1px !important
}

.pl2 {
	padding-left: 2px !important
}

.pl3 {
	padding-left: 3px !important
}

.pl4 {
	padding-left: 4px !important
}

.pl5 {
	padding-left: 5px !important
}

.pl6 {
	padding-left: 6px !important
}

.pl7 {
	padding-left: 7px !important
}

.pl8 {
	padding-left: 8px !important
}

.pl9 {
	padding-left: 9px !important
}

.pl10 {
	padding-left: 10px !important
}

.pl11 {
	padding-left: 11px !important
}

.pl12 {
	padding-left: 12px !important
}

.pl13 {
	padding-left: 13px !important
}

.pl14 {
	padding-left: 14px !important
}

.pl15 {
	padding-left: 15px !important
}

.pl16 {
	padding-left: 16px !important
}

.pl17 {
	padding-left: 17px !important
}

.pl18 {
	padding-left: 18px !important
}

.pl19 {
	padding-left: 19px !important
}

.pl20 {
	padding-left: 20px !important
}

.pl21 {
	padding-left: 21px !important
}

.pl22 {
	padding-left: 22px !important
}

.pl23 {
	padding-left: 23px !important
}

.pl24 {
	padding-left: 24px !important
}

.pl25 {
	padding-left: 25px !important
}

.pl26 {
	padding-left: 26px !important
}

.pl27 {
	padding-left: 27px !important
}

.pl28 {
	padding-left: 28px !important
}

.pl29 {
	padding-left: 29px !important
}

.pl30 {
	padding-left: 30px !important
}

.pl31 {
	padding-left: 31px !important
}

.pl32 {
	padding-left: 32px !important
}

.pl33 {
	padding-left: 33px !important
}

.pl34 {
	padding-left: 34px !important
}

.pl35 {
	padding-left: 35px !important
}

.pl36 {
	padding-left: 36px !important
}

.pl37 {
	padding-left: 37px !important
}

.pl38 {
	padding-left: 38px !important
}

.pl39 {
	padding-left: 39px !important
}

.pl40 {
	padding-left: 40px !important
}

.pl41 {
	padding-left: 41px !important
}

.pl42 {
	padding-left: 42px !important
}

.pl43 {
	padding-left: 43px !important
}

.pl44 {
	padding-left: 44px !important
}

.pl45 {
	padding-left: 45px !important
}

.pl46 {
	padding-left: 46px !important
}

.pl47 {
	padding-left: 47px !important
}

.pl48 {
	padding-left: 48px !important
}

.pl49 {
	padding-left: 49px !important
}

.pl50 {
	padding-left: 50px !important
}

.pl51 {
	padding-left: 51px !important
}

.pl52 {
	padding-left: 52px !important
}

.pl53 {
	padding-left: 53px !important
}

.pl54 {
	padding-left: 54px !important
}

.pl55 {
	padding-left: 55px !important
}

.pl56 {
	padding-left: 56px !important
}

.pl57 {
	padding-left: 57px !important
}

.pl58 {
	padding-left: 58px !important
}

.pl59 {
	padding-left: 59px !important
}

.pl60 {
	padding-left: 60px !important
}

.pl61 {
	padding-left: 61px !important
}

.pl62 {
	padding-left: 62px !important
}

.pl63 {
	padding-left: 63px !important
}

.pl64 {
	padding-left: 64px !important
}

.pl65 {
	padding-left: 65px !important
}

.pl66 {
	padding-left: 66px !important
}

.pl67 {
	padding-left: 67px !important
}

.pl68 {
	padding-left: 68px !important
}

.pl69 {
	padding-left: 69px !important
}

.pl70 {
	padding-left: 70px !important
}

.pl71 {
	padding-left: 71px !important
}

.pl72 {
	padding-left: 72px !important
}

.pl73 {
	padding-left: 73px !important
}

.pl74 {
	padding-left: 74px !important
}

.pl75 {
	padding-left: 75px !important
}

.pl76 {
	padding-left: 76px !important
}

.pl77 {
	padding-left: 77px !important
}

.pl78 {
	padding-left: 78px !important
}

.pl79 {
	padding-left: 79px !important
}

.pl80 {
	padding-left: 80px !important
}

.pl81 {
	padding-left: 81px !important
}

.pl82 {
	padding-left: 82px !important
}

.pl83 {
	padding-left: 83px !important
}

.pl84 {
	padding-left: 84px !important
}

.pl85 {
	padding-left: 85px !important
}

.pl86 {
	padding-left: 86px !important
}

.pl87 {
	padding-left: 87px !important
}

.pl88 {
	padding-left: 88px !important
}

.pl89 {
	padding-left: 89px !important
}

.pl90 {
	padding-left: 90px !important
}

.pl91 {
	padding-left: 91px !important
}

.pl92 {
	padding-left: 92px !important
}

.pl93 {
	padding-left: 93px !important
}

.pl94 {
	padding-left: 94px !important
}

.pl95 {
	padding-left: 95px !important
}

.pl96 {
	padding-left: 96px !important
}

.pl97 {
	padding-left: 97px !important
}

.pl98 {
	padding-left: 98px !important
}

.pl99 {
	padding-left: 99px !important
}

.pl100 {
	padding-left: 100px !important
}

.pl110 {
	padding-left: 110px !important
}

.pl120 {
	padding-left: 120px !important
}

.pl130 {
	padding-left: 130px !important
}

.pl140 {
	padding-left: 140px !important
}

.pl150 {
	padding-left: 150px !important
}

.pl160 {
	padding-left: 160px !important
}

.pl170 {
	padding-left: 170px !important
}

.pl180 {
	padding-left: 180px !important
}

.pl190 {
	padding-left: 190px !important
}

.pl200 {
	padding-left: 200px !important
}

.pt1em {
	padding-top: 1em !important
}

.pt2em {
	padding-top: 2em !important
}

.pt3em {
	padding-top: 3em !important
}

.pt4em {
	padding-top: 4em !important
}

.pt5em {
	padding-top: 5em !important
}

.pt6em {
	padding-top: 6em !important
}

.pt7em {
	padding-top: 7em !important
}

.pt8em {
	padding-top: 8em !important
}

.pt9em {
	padding-top: 9em !important
}

.pt10em {
	padding-top: 10em !important
}

.pb1em {
	padding-bottom: 1em !important
}

.pb2em {
	padding-bottom: 2em !important
}

.pb3em {
	padding-bottom: 3em !important
}

.pb4em {
	padding-bottom: 4em !important
}

.pb5em {
	padding-bottom: 5em !important
}

.pb6em {
	padding-bottom: 6em !important
}

.pb7em {
	padding-bottom: 7em !important
}

.pb8em {
	padding-bottom: 8em !important
}

.pb9em {
	padding-bottom: 9em !important
}

.pb10em {
	padding-bottom: 10em !important
}

.pl1em {
	padding-left: 1em !important
}

.pl2em {
	padding-left: 2em !important
}

.pl3em {
	padding-left: 3em !important
}

.pl4em {
	padding-left: 4em !important
}

.pl5em {
	padding-left: 5em !important
}

.pl6em {
	padding-left: 6em !important
}

.pl7em {
	padding-left: 7em !important
}

.pl8em {
	padding-left: 8em !important
}

.pl9em {
	padding-left: 9em !important
}

.pl10em {
	padding-left: 10em !important
}

.pr1em {
	padding-right: 1em !important
}

.pr2em {
	padding-right: 2em !important
}

.pr3em {
	padding-right: 3em !important
}

.pr4em {
	padding-right: 4em !important
}

.pr5em {
	padding-right: 5em !important
}

.pr6em {
	padding-right: 6em !important
}

.pr7em {
	padding-right: 7em !important
}

.pr8em {
	padding-right: 8em !important
}

.pr9em {
	padding-right: 9em !important
}

.pr10em {
	padding-right: 10em !important
}

#cboxOverlay,
#cboxWrapper,
#colorbox {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	overflow: hidden
}

#cboxWrapper {
	max-width: none
}

#cboxOverlay {
	position: fixed;
	width: 100%;
	height: 100%
}

#cboxBottomLeft,
#cboxMiddleLeft {
	clear: left
}

#cboxContent {
	position: relative
}

#cboxLoadedContent {
	overflow: auto;
	-webkit-overflow-scrolling: touch
}

#cboxTitle {
	margin: 0
}

#cboxLoadingGraphic,
#cboxLoadingOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

#cboxClose,
#cboxNext,
#cboxPrevious,
#cboxSlideshow {
	cursor: pointer
}

.cboxPhoto {
	float: left;
	margin: auto;
	border: 0;
	display: block;
	max-width: none;
	-ms-interpolation-mode: bicubic
}

.cboxIframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
	padding: 0;
	margin: 0
}

#cboxContent,
#cboxLoadedContent,
#colorbox {
	box-sizing: content-box;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box
}

#cboxOverlay {
	background: #000
}

#colorbox {
	outline: 0
}

#cboxContent {
	margin: 25px;
	background: transparent;
	background: #fff
}

.cboxIframe {
	background: transparent
}

#cboxError {
	padding: 50px;
	border: 1px solid #ccc
}

#cboxLoadedContent {
	border: 0 solid transparent;
	background: transparent;
	outline: 4px solid #fff
}

#cboxTitle {
	position: absolute;
	top: -20px;
	left: 0;
	color: #ccc;
	display: none !important
}

#cboxCurrent {
	position: absolute;
	top: -20px;
	right: 0px;
	color: #ccc;
	display: none !important
}

#cboxLoadingGraphic {
	background: transparent url(../img/parts/colorbox/loading.gif) no-repeat center center
}

#cboxClose,
#cboxNext,
#cboxPrevious,
#cboxSlideshow {
	border: 0;
	padding: 0;
	margin: 0;
	overflow: visible;
	width: auto;
	background: none
}

#cboxClose:active,
#cboxNext:active,
#cboxPrevious:active,
#cboxSlideshow:active {
	outline: 0
}

#cboxSlideshow {
	position: absolute;
	top: -20px;
	right: 90px;
	color: #fff
}

#cboxPrevious {
	position: absolute;
	top: 50%;
	left: -100px;
	margin-top: -50px;
	background: url(../img/parts/colorbox/controls.png) no-repeat 0 0;
	width: 100px;
	height: 100px;
	text-indent: -9999px;
	outline: none
}

#cboxPrevious:hover {
	background-position: 0 -100px
}

#cboxNext {
	position: absolute;
	top: 50%;
	right: -100px;
	margin-top: -50px;
	background: url(../img/parts/colorbox/controls.png) no-repeat -100px 0;
	width: 100px;
	height: 100px;
	text-indent: -9999px;
	outline: none
}

#cboxNext:hover {
	background-position: -100px -100px
}

#cboxClose {
	position: absolute;
	top: -24px;
	right: -24px;
	border-radius: 25px;
	display: block;
	background: #e5521f url(../img/parts/colorbox/close.png) no-repeat center center;
	box-shadow: 0 0 0 3px #fff inset;
	width: 50px;
	height: 50px;
	text-indent: -9999px;
	outline: none
}

#cboxClose:hover {
	background-position: bottom center
}

.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
	z-index: 0
}

.owl-carousel .owl-animated-out {
	z-index: 1
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.owl-height {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out
}

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0px, 0px, 0px)
}

.owl-carousel .owl-controls .owl-dot,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-nav .owl-prev {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.owl-carousel.owl-loaded {
	display: block
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block
}

.owl-carousel.owl-hidden {
	opacity: 0
}

.owl-carousel .owl-refresh .owl-item {
	display: none
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d
}

.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select: auto;
	-moz-user-select: auto;
	-ms-user-select: auto;
	user-select: auto
}

.owl-carousel .owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: grab
}

.owl-carousel.owl-rtl {
	direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
	float: right
}

.no-js .owl-carousel {
	display: block
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease
}

.owl-carousel .owl-item img {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transition: scale 100ms ease;
	-moz-transition: scale 100ms ease;
	-ms-transition: scale 100ms ease;
	-o-transition: scale 100ms ease;
	transition: scale 100ms ease
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transition: scale(1.3, 1.3);
	-moz-transition: scale(1.3, 1.3);
	-ms-transition: scale(1.3, 1.3);
	-o-transition: scale(1.3, 1.3);
	transition: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
	display: none
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	-webkit-transition: opacity 400ms ease;
	-moz-transition: opacity 400ms ease;
	-ms-transition: opacity 400ms ease;
	-o-transition: opacity 400ms ease;
	transition: opacity 400ms ease
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1
}

.jspContainer {
	overflow: hidden;
	position: relative
}

.jspPane {
	position: absolute
}

.jspVerticalBar {
	position: absolute;
	top: 0;
	right: 0;
	width: 16px;
	height: 100%;
	background: red
}

.jspHorizontalBar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 16px;
	background: red
}

.jspCap {
	display: none
}

.jspHorizontalBar .jspCap {
	float: left
}

.jspTrack {
	background: #dde;
	position: relative
}

.jspDrag {
	background: #bbd;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer
}

.jspHorizontalBar .jspDrag,
.jspHorizontalBar .jspTrack {
	float: left;
	height: 100%
}

.jspArrow {
	background: #50506d;
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	padding: 0;
	margin: 0
}

.jspArrow.jspDisabled {
	cursor: default;
	background: #80808d
}

.jspVerticalBar .jspArrow {
	height: 16px
}

.jspHorizontalBar .jspArrow {
	width: 16px;
	float: left;
	height: 100%
}

.jspVerticalBar .jspArrow:focus {
	outline: none
}

.jspCorner {
	background: #eeeef4;
	float: left;
	height: 100%
}

* html .jspCorner {
	margin: 0 -3px 0 0
}

img.fit {
	width: 100%
}

.youtube-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden
}

.youtube-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.row {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

.row:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-pc-1,
.col-pc-2,
.col-pc-3,
.col-pc-4,
.col-pc-5,
.col-pc-6,
.col-pc-7,
.col-pc-8,
.col-pc-9,
.col-pc-10,
.col-pc-11,
.col-pc-12,
.col-sp-1,
.col-sp-2,
.col-sp-3,
.col-sp-4,
.col-sp-5,
.col-sp-6,
.col-sp-7,
.col-sp-8,
.col-sp-9,
.col-sp-10,
.col-sp-11,
.col-sp-12,
.col-tb-1,
.col-tb-2,
.col-tb-3,
.col-tb-4,
.col-tb-5,
.col-tb-6,
.col-tb-7,
.col-tb-8,
.col-tb-9,
.col-tb-10,
.col-tb-11,
.col-tb-12 {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

.col-1 {
	width: 8.33333333%
}

.col-2 {
	width: 16.66666667%
}

.col-3 {
	width: 25%
}

.col-4 {
	width: 33.33333333%
}

.col-5 {
	width: 41.66666667%
}

.col-6 {
	width: 50%
}

.col-7 {
	width: 58.33333333%
}

.col-8 {
	width: 66.66666667%
}

.col-9 {
	width: 75%
}

.col-10 {
	width: 83.33333333%
}

.col-11 {
	width: 91.66666667%
}

.col-12 {
	width: 100%
}

#main #main-inner dl.box-point dd.links>ul>li a,
.btn-def,
.btn-def-s,
.btn-link,
.btn-main,
.btn-main-s,
.btn-sub,
.btn-sub-s,
[class^=btn-] {
	display: inline-block;
	text-decoration: none;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	line-height: 1.1
}

#main #main-inner dl.box-point dd.links>ul>li body.vocal a:before,
body.vocal #main #main-inner dl.box-point dd.links>ul>li a:before,
body.vocal .btn-link:before {
	background: #e8c446
}

body.vocal .btn-def,
body.vocal .btn-def-s,
body.vocal .btn-main,
body.vocal .btn-main-s,
body.vocal .btn-sub,
body.vocal .btn-sub-s {
	background: #e8c446
}

body.vocal .btn-def-s:after,
body.vocal .btn-def:after,
body.vocal .btn-main-s:after,
body.vocal .btn-main:after,
body.vocal .btn-sub-s:after,
body.vocal .btn-sub:after {
	border-top-color: #e8c446;
	border-right-color: #e8c446
}

#main #main-inner dl.box-point dd.links>ul>li body.piano a:before,
body.piano #main #main-inner dl.box-point dd.links>ul>li a:before,
body.piano .btn-link:before {
	background: #ff9a78
}

body.piano .btn-def,
body.piano .btn-def-s,
body.piano .btn-main,
body.piano .btn-main-s,
body.piano .btn-sub,
body.piano .btn-sub-s {
	background: #ff9a78
}

body.piano .btn-def-s:after,
body.piano .btn-def:after,
body.piano .btn-main-s:after,
body.piano .btn-main:after,
body.piano .btn-sub-s:after,
body.piano .btn-sub:after {
	border-top-color: #ff9a78;
	border-right-color: #ff9a78
}

#main #main-inner dl.box-point dd.links>ul>li body.guitar a:before,
body.guitar #main #main-inner dl.box-point dd.links>ul>li a:before,
body.guitar .btn-link:before {
	background: #90dae7
}

body.guitar .btn-def,
body.guitar .btn-def-s,
body.guitar .btn-main,
body.guitar .btn-main-s,
body.guitar .btn-sub,
body.guitar .btn-sub-s {
	background: #90dae7
}

body.guitar .btn-def-s:after,
body.guitar .btn-def:after,
body.guitar .btn-main-s:after,
body.guitar .btn-main:after,
body.guitar .btn-sub-s:after,
body.guitar .btn-sub:after {
	border-top-color: #90dae7;
	border-right-color: #90dae7
}

#main #main-inner dl.box-point dd.links>ul>li body.voice a:before,
body.voice #main #main-inner dl.box-point dd.links>ul>li a:before,
body.voice .btn-link:before {
	background: #bddb51
}

body.voice .btn-def,
body.voice .btn-def-s,
body.voice .btn-main,
body.voice .btn-main-s,
body.voice .btn-sub,
body.voice .btn-sub-s {
	background: #bddb51
}

body.voice .btn-def-s:after,
body.voice .btn-def:after,
body.voice .btn-main-s:after,
body.voice .btn-main:after,
body.voice .btn-sub-s:after,
body.voice .btn-sub:after {
	border-top-color: #bddb51;
	border-right-color: #bddb51
}

#main #main-inner dl.box-point dd.links>ul>li body.bass a:before,
body.bass #main #main-inner dl.box-point dd.links>ul>li a:before,
body.bass .btn-link:before {
	background: #aeeccd
}

body.bass .btn-def,
body.bass .btn-def-s,
body.bass .btn-main,
body.bass .btn-main-s,
body.bass .btn-sub,
body.bass .btn-sub-s {
	background: #aeeccd
}

body.bass .btn-def-s:after,
body.bass .btn-def:after,
body.bass .btn-main-s:after,
body.bass .btn-main:after,
body.bass .btn-sub-s:after,
body.bass .btn-sub:after {
	border-top-color: #aeeccd;
	border-right-color: #aeeccd
}

#main #main-inner dl.box-point dd.links>ul>li body.dj a:before,
body.dj #main #main-inner dl.box-point dd.links>ul>li a:before,
body.dj .btn-link:before {
	background: #c8b5f1
}

body.dj .btn-def,
body.dj .btn-def-s,
body.dj .btn-main,
body.dj .btn-main-s,
body.dj .btn-sub,
body.dj .btn-sub-s {
	background: #c8b5f1
}

body.dj .btn-def-s:after,
body.dj .btn-def:after,
body.dj .btn-main-s:after,
body.dj .btn-main:after,
body.dj .btn-sub-s:after,
body.dj .btn-sub:after {
	border-top-color: #c8b5f1;
	border-right-color: #c8b5f1
}

#main #main-inner dl.box-point dd.links>ul>li body.uku a:before,
body.uku #main #main-inner dl.box-point dd.links>ul>li a:before,
body.uku .btn-link:before {
	background: #fecc89
}

body.uku .btn-def,
body.uku .btn-def-s,
body.uku .btn-main,
body.uku .btn-main-s,
body.uku .btn-sub,
body.uku .btn-sub-s {
	background: #fecc89
}

body.uku .btn-def-s:after,
body.uku .btn-def:after,
body.uku .btn-main-s:after,
body.uku .btn-main:after,
body.uku .btn-sub-s:after,
body.uku .btn-sub:after {
	border-top-color: #fecc89;
	border-right-color: #fecc89
}

#main #main-inner dl.box-point dd.links>ul>li a,
.btn-link {
	font-weight: bold;
	color: #333;
	text-decoration: none
}

#main #main-inner dl.box-point dd.links>ul>li a:after,
#main #main-inner dl.box-point dd.links>ul>li a:before,
.btn-link:after,
.btn-link:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0
}

#main #main-inner dl.box-point dd.links>ul>li a:after,
.btn-link:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.btn-def,
.btn-def-s,
.btn-main,
.btn-main-s,
.btn-sub,
.btn-sub-s {
	border-radius: 4px;
	font-weight: bold;
	color: #fff
}

.btn-def-s:after,
.btn-def-s:before,
.btn-def:after,
.btn-def:before,
.btn-main-s:after,
.btn-main-s:before,
.btn-main:after,
.btn-main:before,
.btn-sub-s:after,
.btn-sub-s:before,
.btn-sub:after,
.btn-sub:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0
}

.btn-def-s:before,
.btn-def:before,
.btn-main-s:before,
.btn-main:before,
.btn-sub-s:before,
.btn-sub:before {
	background: #fff
}

.btn-def-s:after,
.btn-def:after,
.btn-main-s:after,
.btn-main:after,
.btn-sub-s:after,
.btn-sub:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px solid #ce4f24;
	border-right: 1px solid #ce4f24;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.btn-main,
.btn-main-s {
	background: #e5521f !important
}

.btn-main-s:after,
.btn-main:after {
	border-top-color: #e5521f !important;
	border-right-color: #e5521f !important
}

.btn-sub,
.btn-sub-s {
	background: #88bf48 !important
}

.btn-sub-s:after,
.btn-sub:after {
	border-top-color: #88bf48 !important;
	border-right-color: #88bf48 !important
}

.ico-arrow {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	width: 14px;
	height: 14px;
	text-indent: -100%;
	margin-top: -4px
}

.ico-arrow:after,
.ico-arrow:before {
	content: '';
	position: absolute
}

.ico-arrow:before {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0
}

.ico-arrow:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	width: 5px;
	height: 5px;
	border-top: 1px solid;
	border-right: 1px solid;
	left: 50%;
	top: 50%;
	margin-left: -3px;
	margin-top: -2px;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.btn-def-orange {
	border-radius: 4px;
	background: #e5521f;
	color: #fff
}

.btn-def-orange:hover {
	color: #fff
}

.btn-def-orange .ico-arrow:before {
	background: #fff
}

.btn-def-orange .ico-arrow:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border-top-color: #e5521f;
	border-right-color: #e5521f
}

.btn-def-white {
	border-radius: 4px;
	background: #fff;
	color: #e5521f
}

.btn-def-white:hover {
	color: #e5521f
}

.btn-def-white .ico-arrow:before {
	background: #e5521f
}

.btn-def-white .ico-arrow:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border-top-color: #fff;
	border-right-color: #fff
}

.arrow-color:before {
	background: #ce4f24
}

body.vocal .arrow-color:before {
	background: #e8c446
}

body.piano .arrow-color:before {
	background: #ff9a78
}

body.guitar .arrow-color:before {
	background: #90dae7
}

body.voice .arrow-color:before {
	background: #bddb51
}

.arrow-white:before {
	background: #fff
}

ol.points-no>li {
	*zoom: 1
}

ol.points-no>li:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

.hasDatepicker+.ui-datepicker-trigger {
	width: 25px
}

#aside body.vocal #aside-inner,
#cboxLoadedContent #main #main-inner body.vocal dl.ins-dtl-cts>dt:before,
#cboxLoadedContent body.vocal .midashi2:before,
#cboxLoadedContent body.vocal .midashi3:before,
#header body.vocal .nav-menu,
#main #main-inner #cboxLoadedContent body.vocal dl.ins-dtl-cts>dt:before,
body.vocal #aside #aside-inner,
body.vocal #cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt:before,
body.vocal #cboxLoadedContent .midashi2:before,
body.vocal #cboxLoadedContent .midashi3:before,
body.vocal #header .nav-menu,
body.vocal #header:after,
body.vocal #main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt:before,
body.vocal .type-bg-color,
body.vocal ul.faq-list>li>dl>dd:before {
	background-color: #e8c446
}

#main #main-inner body.vocal dl.ins-dtl-msg,
#main #main-inner body.vocal dl.ins-dtl-msg:before,
body.vocal #main #main-inner dl.ins-dtl-msg,
body.vocal #main #main-inner dl.ins-dtl-msg:before,
body.vocal .type-boder-color,
body.vocal ul.faq-list>li>dl>dd:after,
body.vocal ul.st-voice-list>li>dl>dd.desc .balloon,
body.vocal ul.st-voice-list>li>dl>dd.desc .balloon:before,
ul.st-voice-list>li>dl>dd.desc body.vocal .balloon,
ul.st-voice-list>li>dl>dd.desc body.vocal .balloon:before {
	border-color: #e8c446
}

#aside body.piano #aside-inner,
#cboxLoadedContent #main #main-inner body.piano dl.ins-dtl-cts>dt:before,
#cboxLoadedContent body.piano .midashi2:before,
#cboxLoadedContent body.piano .midashi3:before,
#header body.piano .nav-menu,
#main #main-inner #cboxLoadedContent body.piano dl.ins-dtl-cts>dt:before,
body.piano #aside #aside-inner,
body.piano #cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt:before,
body.piano #cboxLoadedContent .midashi2:before,
body.piano #cboxLoadedContent .midashi3:before,
body.piano #header .nav-menu,
body.piano #header:after,
body.piano #main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt:before,
body.piano .type-bg-color,
body.piano ul.faq-list>li>dl>dd:before {
	background-color: #ff9a78
}

#main #main-inner body.piano dl.ins-dtl-msg,
#main #main-inner body.piano dl.ins-dtl-msg:before,
body.piano #main #main-inner dl.ins-dtl-msg,
body.piano #main #main-inner dl.ins-dtl-msg:before,
body.piano .type-boder-color,
body.piano ul.faq-list>li>dl>dd:after,
body.piano ul.st-voice-list>li>dl>dd.desc .balloon,
body.piano ul.st-voice-list>li>dl>dd.desc .balloon:before,
ul.st-voice-list>li>dl>dd.desc body.piano .balloon,
ul.st-voice-list>li>dl>dd.desc body.piano .balloon:before {
	border-color: #ff9a78
}

#aside body.guitar #aside-inner,
#cboxLoadedContent #main #main-inner body.guitar dl.ins-dtl-cts>dt:before,
#cboxLoadedContent body.guitar .midashi2:before,
#cboxLoadedContent body.guitar .midashi3:before,
#header body.guitar .nav-menu,
#main #main-inner #cboxLoadedContent body.guitar dl.ins-dtl-cts>dt:before,
body.guitar #aside #aside-inner,
body.guitar #cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt:before,
body.guitar #cboxLoadedContent .midashi2:before,
body.guitar #cboxLoadedContent .midashi3:before,
body.guitar #header .nav-menu,
body.guitar #header:after,
body.guitar #main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt:before,
body.guitar .type-bg-color,
body.guitar ul.faq-list>li>dl>dd:before {
	background-color: #90dae7
}

#main #main-inner body.guitar dl.ins-dtl-msg,
#main #main-inner body.guitar dl.ins-dtl-msg:before,
body.guitar #main #main-inner dl.ins-dtl-msg,
body.guitar #main #main-inner dl.ins-dtl-msg:before,
body.guitar .type-boder-color,
body.guitar ul.faq-list>li>dl>dd:after,
body.guitar ul.st-voice-list>li>dl>dd.desc .balloon,
body.guitar ul.st-voice-list>li>dl>dd.desc .balloon:before,
ul.st-voice-list>li>dl>dd.desc body.guitar .balloon,
ul.st-voice-list>li>dl>dd.desc body.guitar .balloon:before {
	border-color: #90dae7
}

#aside body.voice #aside-inner,
#cboxLoadedContent #main #main-inner body.voice dl.ins-dtl-cts>dt:before,
#cboxLoadedContent body.voice .midashi2:before,
#cboxLoadedContent body.voice .midashi3:before,
#header body.voice .nav-menu,
#main #main-inner #cboxLoadedContent body.voice dl.ins-dtl-cts>dt:before,
body.voice #aside #aside-inner,
body.voice #cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt:before,
body.voice #cboxLoadedContent .midashi2:before,
body.voice #cboxLoadedContent .midashi3:before,
body.voice #header .nav-menu,
body.voice #header:after,
body.voice #main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt:before,
body.voice .type-bg-color,
body.voice ul.faq-list>li>dl>dd:before {
	background-color: #bddb51
}

#main #main-inner body.voice dl.ins-dtl-msg,
#main #main-inner body.voice dl.ins-dtl-msg:before,
body.voice #main #main-inner dl.ins-dtl-msg,
body.voice #main #main-inner dl.ins-dtl-msg:before,
body.voice .type-boder-color,
body.voice ul.faq-list>li>dl>dd:after,
body.voice ul.st-voice-list>li>dl>dd.desc .balloon,
body.voice ul.st-voice-list>li>dl>dd.desc .balloon:before,
ul.st-voice-list>li>dl>dd.desc body.voice .balloon,
ul.st-voice-list>li>dl>dd.desc body.voice .balloon:before {
	border-color: #bddb51
}

#aside body.bass #aside-inner,
#cboxLoadedContent #main #main-inner body.bass dl.ins-dtl-cts>dt:before,
#cboxLoadedContent body.bass .midashi2:before,
#cboxLoadedContent body.bass .midashi3:before,
#header body.bass .nav-menu,
#main #main-inner #cboxLoadedContent body.bass dl.ins-dtl-cts>dt:before,
body.bass #aside #aside-inner,
body.bass #cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt:before,
body.bass #cboxLoadedContent .midashi2:before,
body.bass #cboxLoadedContent .midashi3:before,
body.bass #header .nav-menu,
body.bass #header:after,
body.bass #main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt:before,
body.bass .type-bg-color,
body.bass ul.faq-list>li>dl>dd:before {
	background-color: #aeeccd
}

#main #main-inner body.bass dl.ins-dtl-msg,
#main #main-inner body.bass dl.ins-dtl-msg:before,
body.bass #main #main-inner dl.ins-dtl-msg,
body.bass #main #main-inner dl.ins-dtl-msg:before,
body.bass .type-boder-color,
body.bass ul.faq-list>li>dl>dd:after,
body.bass ul.st-voice-list>li>dl>dd.desc .balloon,
body.bass ul.st-voice-list>li>dl>dd.desc .balloon:before,
ul.st-voice-list>li>dl>dd.desc body.bass .balloon,
ul.st-voice-list>li>dl>dd.desc body.bass .balloon:before {
	border-color: #aeeccd
}

#aside body.dj #aside-inner,
#cboxLoadedContent #main #main-inner body.dj dl.ins-dtl-cts>dt:before,
#cboxLoadedContent body.dj .midashi2:before,
#cboxLoadedContent body.dj .midashi3:before,
#header body.dj .nav-menu,
#main #main-inner #cboxLoadedContent body.dj dl.ins-dtl-cts>dt:before,
body.dj #aside #aside-inner,
body.dj #cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt:before,
body.dj #cboxLoadedContent .midashi2:before,
body.dj #cboxLoadedContent .midashi3:before,
body.dj #header .nav-menu,
body.dj #header:after,
body.dj #main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt:before,
body.dj .type-bg-color,
body.dj ul.faq-list>li>dl>dd:before {
	background-color: #c8b5f1
}

#main #main-inner body.dj dl.ins-dtl-msg,
#main #main-inner body.dj dl.ins-dtl-msg:before,
body.dj #main #main-inner dl.ins-dtl-msg,
body.dj #main #main-inner dl.ins-dtl-msg:before,
body.dj .type-boder-color,
body.dj ul.faq-list>li>dl>dd:after,
body.dj ul.st-voice-list>li>dl>dd.desc .balloon,
body.dj ul.st-voice-list>li>dl>dd.desc .balloon:before,
ul.st-voice-list>li>dl>dd.desc body.dj .balloon,
ul.st-voice-list>li>dl>dd.desc body.dj .balloon:before {
	border-color: #c8b5f1
}

#aside body.uku #aside-inner,
#cboxLoadedContent #main #main-inner body.uku dl.ins-dtl-cts>dt:before,
#cboxLoadedContent body.uku .midashi2:before,
#cboxLoadedContent body.uku .midashi3:before,
#header body.uku .nav-menu,
#main #main-inner #cboxLoadedContent body.uku dl.ins-dtl-cts>dt:before,
body.uku #aside #aside-inner,
body.uku #cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt:before,
body.uku #cboxLoadedContent .midashi2:before,
body.uku #cboxLoadedContent .midashi3:before,
body.uku #header .nav-menu,
body.uku #header:after,
body.uku #main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt:before,
body.uku .type-bg-color,
body.uku ul.faq-list>li>dl>dd:before {
	background-color: #fecc89
}

#main #main-inner body.uku dl.ins-dtl-msg,
#main #main-inner body.uku dl.ins-dtl-msg:before,
body.uku #main #main-inner dl.ins-dtl-msg,
body.uku #main #main-inner dl.ins-dtl-msg:before,
body.uku .type-boder-color,
body.uku ul.faq-list>li>dl>dd:after,
body.uku ul.st-voice-list>li>dl>dd.desc .balloon,
body.uku ul.st-voice-list>li>dl>dd.desc .balloon:before,
ul.st-voice-list>li>dl>dd.desc body.uku .balloon,
ul.st-voice-list>li>dl>dd.desc body.uku .balloon:before {
	border-color: #fecc89
}

body {
	background: #fff;
	background-size: 200px
}

.container {
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	position: relative
}

.container:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#header .lead {
	background: #333;
	color: #fff
}

#header .lead p {
	font-size: 10px;
	font-size: 1rem;
	padding: 9px 0;
	width: 87%;
	line-height: 1.2
}

#header .lead ul.sns {
	*zoom: 1;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%
}

#header .lead ul.sns:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#header .lead ul.sns li {
	float: right;
	margin-left: 1px;
	height: 100%
}

#header .lead ul.sns li img {
	height: 100%
}

#header .desc .container .ttls {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	position: relative
}

#header .desc .container .ttls .l-logo {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	float: left
}

#header .desc .container .ttls .l-logo img {
	margin: 14px 0 19px 1px
}

#header .desc .container .ttls .btns {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	float: right
}

#header .desc .container .inq {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#header .desc .container .inq dl {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#header .desc .container .inq dl:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#header .desc .container .inq dl dt {
	font-weight: bold;
	margin-bottom: 8px;
	text-align: center
}

#header .desc .container .inq dl dd {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	float: left
}

#header .desc .container .inq dl dd.op {
	width: 26%;
/*
	width: 36%;
	padding-top: 10px;
*/
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.33;
	font-weight: bold;
	text-align: left;
	letter-spacing: -0.05em
}

#header .desc .container .inq dl dd.tel {
/*	width: 64%*/
	width: 59%;
}

#header .nav-menu ul.container {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#header .nav-menu ul.container li {
	font-weight: bold;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#header .nav-menu ul.container li a {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

.l-header-cv-sp,
.l-header-tel-sp {
	display: none;
}

#footer .desc {
	background: #e5521f
}

#footer .nav-menu {
	background: #333
}

#footer .nav-bee {
	background: #333
}

#footer .infos {
	background: #202020
}

#contents {
	background: #eaeaea
}

#contents dd strong,
#contents dt strong,
#contents li strong,
#contents p strong,
#contents td strong,
#contents th strong {
	font-weight: bold
}

#contents #wrapper {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#contents #wrapper #aside-inner,
#contents #wrapper #main-inner {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

body.vocal #contents #main #main-inner dl.ins-dtl-cts>dt:before,
body.vocal #contents #main .midashi2:before,
body.vocal #contents #main .midashi3:before {
	background: #e8c446
}

body.vocal #contents #main ol.list-no li>.no {
	background: #e8c446
}

body.vocal #contents #main dl.box-point {
	background: #fff
}

body.vocal #contents #main dl.box-point dt.ttl>.ico {
	background: #e8c446
}

body.piano #contents #main #main-inner dl.ins-dtl-cts>dt:before,
body.piano #contents #main .midashi2:before,
body.piano #contents #main .midashi3:before {
	background: #ff9a78
}

body.piano #contents #main ol.list-no li>.no {
	background: #ff9a78
}

body.piano #contents #main dl.box-point {
	background: #fff
}

body.piano #contents #main dl.box-point dt.ttl>.ico {
	background: #ff9a78
}

body.guitar #contents #main #main-inner dl.ins-dtl-cts>dt:before,
body.guitar #contents #main .midashi2:before,
body.guitar #contents #main .midashi3:before {
	background: #90dae7
}

body.guitar #contents #main ol.list-no li>.no {
	background: #90dae7
}

body.guitar #contents #main dl.box-point {
	background: #fff
}

body.guitar #contents #main dl.box-point dt.ttl>.ico {
	background: #90dae7
}

body.voice #contents #main #main-inner dl.ins-dtl-cts>dt:before,
body.voice #contents #main .midashi2:before,
body.voice #contents #main .midashi3:before {
	background: #bddb51
}

body.voice #contents #main ol.list-no li>.no {
	background: #bddb51
}

body.voice #contents #main dl.box-point {
	background: #fff
}

body.voice #contents #main dl.box-point dt.ttl>.ico {
	background: #bddb51
}

body.bass #contents #main #main-inner dl.ins-dtl-cts>dt:before,
body.bass #contents #main .midashi2:before,
body.bass #contents #main .midashi3:before {
	background: #aeeccd
}

body.bass #contents #main ol.list-no li>.no {
	background: #aeeccd
}

body.bass #contents #main dl.box-point {
	background: #fff
}

body.bass #contents #main dl.box-point dt.ttl>.ico {
	background: #DBF8EA;
	color: #aeeccd;
}

body.dj #contents #main #main-inner dl.ins-dtl-cts>dt:before,
body.dj #contents #main .midashi2:before,
body.dj #contents #main .midashi3:before {
	background: #c8b5f1
}

body.dj #contents #main ol.list-no li>.no {
	background: #c8b5f1
}

body.dj #contents #main dl.box-point {
	background: #fff
}

body.dj #contents #main dl.box-point dt.ttl>.ico {
	background: #f1e2ff;
	color: #c8b5f1;
}

body.uku #contents #main #main-inner dl.ins-dtl-cts>dt:before,
body.uku #contents #main .midashi2:before,
body.uku #contents #main .midashi3:before {
	background: #fecc89
}

body.uku #contents #main ol.list-no li>.no {
	background: #fecc89
}

body.uku #contents #main dl.box-point {
	background: #fff
}

body.uku #contents #main dl.box-point dt.ttl>.ico {
	background: #fecc89;
}

#main #main-inner .page-ttl {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	font-weight: bold;
	background: #fff url(../img/parts/page-ttl-bg.jpg) no-repeat center center;
	text-shadow: 0 0 16px #fff, 0 0 16px #fff, 0 0 16px #fff, 0 0 16px #fff
}

#main #main-inner .page-ttl small,
#main #main-inner .page-ttl strong {
	display: block
}

#main #main-inner .midashi2,
#main #main-inner .midashi3,
#main #main-inner dl.ins-dtl-cts>dt {
	position: relative;
	line-height: 1.1
}

#main #main-inner .midashi2:before,
#main #main-inner .midashi3:before,
#main #main-inner dl.ins-dtl-cts>dt:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	left: 0;
	top: 0
}

#main #main-inner ol.list-no li {
	position: relative
}

#main #main-inner ol.list-no li>.no {
	position: absolute;
	left: 0;
	line-height: 1.1
}

#main #main-inner ul.list-card {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#main #main-inner ul.list-card:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#main #main-inner ul.list-card li {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#main #main-inner ul.list-card li>dl {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	border-radius: 4px
}

#main #main-inner ul.list-card li>dl:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#main #main-inner ul.list-card li>dl>dd.info,
#main #main-inner ul.list-card li>dl>dt.thumb {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#main #main-inner ul.list-card li>dl>dd.hitarea {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%
}

#main #main-inner ul.list-card li>dl>dd.hitarea>a.hitarea {
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.001)
}

#main #main-inner ul[class^=imgs-] {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#main #main-inner ul[class^=imgs-]:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#main #main-inner ul[class^=imgs-] li {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center
}

#main #main-inner ul[class^=imgs-] li a {
	text-decoration: none;
	color: #333
}

#main #main-inner ul[class^=imgs-] li img {
	width: 100%
}

#main #main-inner ul[class^=imgs-] li img+.caption {
	display: block;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.4;
	margin-top: .25em
}

#main #main-inner dl.box-point {
	background: #fff;
	border-radius: 4px
}

#main #main-inner dl.box-point dt.ttl {
	position: relative;
	font-weight: bold
}

#main #main-inner dl.box-point dt.ttl>.ico {
	display: block;
	text-align: center;
	color: #fff;
	font-weight: bold;
	position: absolute;
	left: 0
}

#main #main-inner dl.box-point dd.links>ul {
	margin-top: .3em
}

#main #main-inner dl.box-point dd.links>ul>li a {
	margin-top: .2em
}

#aside #aside-inner .nav-side {
	border-radius: 4px;
	overflow: hidden
}

#aside #aside-inner .nav-side>ul>li {
	line-height: 1.1
}

#aside #aside-inner .nav-side>ul>li>ul {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#aside #aside-inner .nav-side>ul>li>ul:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#aside #aside-inner .nav-side>ul>li>ul>li {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1.1
}

#contents .box-free_trial {
	background: #fff;
	border-radius: 4px
}

#contents .box-free_trial dl.inner {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#contents .box-free_trial dl.inner:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#contents .box-free_trial dl.inner dd.btns,
#contents .box-free_trial dl.inner dd.desc,
#contents .box-free_trial dl.inner dt.thumb {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#contents .box-free_trial dl.inner dd.desc>dl>dt {
	color: #e5521f;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: .5em
}

#contents .box-free_trial dl.inner dd.desc>dl>dd {
	color: #333;
	font-weight: bold;
	line-height: 1.6
}

#contents .box-free_trial dl.inner dd.btns {
	clear: both;
	padding-top: 16px
}

#contents .box-free_trial dl.inner dd.btns a {
	display: block
}

#cboxLoadedContent dd strong,
#cboxLoadedContent dt strong,
#cboxLoadedContent li strong,
#cboxLoadedContent p strong,
#cboxLoadedContent td strong,
#cboxLoadedContent th strong {
	font-weight: bold
}

#cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt,
#cboxLoadedContent .midashi2,
#cboxLoadedContent .midashi3,
#main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt {
	position: relative;
	line-height: 1.1
}

#cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt:before,
#cboxLoadedContent .midashi2:before,
#cboxLoadedContent .midashi3:before,
#main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	left: 0;
	top: 0
}

.c-txt-imp {
	color: #996633
}

#main #main-inner .page-ttl.im01 {
	background-image: url(../img/parts/page-ttl-bg-im01.jpg)
}

#main #main-inner .page-ttl.im02 {
	background-image: url(../img/parts/page-ttl-bg-im02.jpg)
}

#main #main-inner .page-ttl.im03 {
	background-image: url(../img/parts/page-ttl-bg-im03.jpg)
}

#main #main-inner .page-ttl.im04 {
	background-image: url(../img/parts/page-ttl-bg-im04.jpg)
}

#main #main-inner .page-ttl.im05 {
	background-image: url(../img/parts/page-ttl-bg-im05.jpg)
}

#main #main-inner .page-ttl.im06 {
	background-image: url(../img/parts/page-ttl-bg-im06.jpg)
}

#main #main-inner .page-ttl.im07 {
	background-image: url(../img/parts/page-ttl-bg-im07.jpg)
}

#main #main-inner .page-ttl.im08 {
	background-image: url(../img/parts/page-ttl-bg-im08.jpg)
}

#main #main-inner .page-ttl.gu01 {
	background-image: url(../img/parts/page-ttl-bg-gu01.jpg)
}

#main #main-inner .page-ttl.gu02 {
	background-image: url(../img/parts/page-ttl-bg-gu02.jpg)
}

#main #main-inner .page-ttl.gu03 {
	background-image: url(../img/parts/page-ttl-bg-gu03.jpg)
}

#main #main-inner .page-ttl.gu04 {
	background-image: url(../img/parts/page-ttl-bg-gu04.jpg)
}

#main #main-inner .page-ttl.gu05 {
	background-image: url(../img/parts/page-ttl-bg-gu05.jpg)
}

#main #main-inner .page-ttl.gu06 {
	background-image: url(../img/parts/page-ttl-bg-gu06.jpg)
}

#main #main-inner .page-ttl.gu07 {
	background-image: url(../img/parts/page-ttl-bg-gu07.jpg)
}

#main #main-inner .page-ttl.pi01 {
	background-image: url(../img/parts/page-ttl-bg-pi01.jpg)
}

#main #main-inner .page-ttl.pi02 {
	background-image: url(../img/parts/page-ttl-bg-pi02.jpg)
}

#main #main-inner .page-ttl.pi03 {
	background-image: url(../img/parts/page-ttl-bg-pi03.jpg)
}

#main #main-inner .page-ttl.pi04 {
	background-image: url(../img/parts/page-ttl-bg-pi04.jpg)
}

#main #main-inner .page-ttl.pi05 {
	background-image: url(../img/parts/page-ttl-bg-pi05.jpg)
}

#main #main-inner .page-ttl.pi06 {
	background-image: url(../img/parts/page-ttl-bg-pi06.jpg)
}

#main #main-inner .page-ttl.pi07 {
	background-image: url(../img/parts/page-ttl-bg-pi07.jpg)
}

#main #main-inner .page-ttl.pi08 {
	background-image: url(../img/parts/page-ttl-bg-pi08.jpg)
}

#main #main-inner .page-ttl.vv01 {
	background-image: url(../img/parts/page-ttl-bg-vv01.jpg)
}

#main #main-inner .page-ttl.vv02 {
	background-image: url(../img/parts/page-ttl-bg-vv02.jpg)
}

#main #main-inner .page-ttl.vv03 {
	background-image: url(../img/parts/page-ttl-bg-vv03.jpg)
}

#main #main-inner .page-ttl.vv04 {
	background-image: url(../img/parts/page-ttl-bg-vv04.jpg)
}

#main #main-inner .page-ttl.vv05 {
	background-image: url(../img/parts/page-ttl-bg-vv05.jpg)
}

#main #main-inner .page-ttl.vv06 {
	background-image: url(../img/parts/page-ttl-bg-vv06.jpg)
}

#main #main-inner .page-ttl.vv07 {
	background-image: url(../img/parts/page-ttl-bg-vv07.jpg)
}

#main #main-inner .page-ttl.vv08 {
	background-image: url(../img/parts/page-ttl-bg-vv08.jpg)
}

#main #main-inner .page-ttl.ba01 {
	background-image: url(../img/parts/page-ttl-bg-ba02.jpg)
}

#main #main-inner .page-ttl.ba04 {
	background-image: url(../img/parts/page-ttl-bg-ba04.jpg)
}

#main #main-inner .page-ttl.ba07 {
	background-image: url(../img/parts/page-ttl-bg-ba01.jpg)
}

#main #main-inner .page-ttl.dj01 {
	background-image: url(../img/parts/page-ttl-bg-dj02.jpg)
}

#main #main-inner .page-ttl.dj04 {
	background-image: url(../img/parts/page-ttl-bg-dj04.jpg)
}

#main #main-inner .page-ttl.dj07 {
	background-image: url(../img/parts/page-ttl-bg-dj01.jpg)
}

#main #main-inner .page-ttl.uku01 {
	background-image: url(../img/parts/page-ttl-bg-uku02.jpg)
}

#main #main-inner .page-ttl.uku04 {
	background-image: url(../img/parts/page-ttl-bg-uku04.jpg)
}

#main #main-inner .page-ttl.uku07 {
	background-image: url(../img/parts/page-ttl-bg-uku01.jpg)
}

body.index.vocal #contents .nav-menu {
	background-color: #e8c446
}

body.index.piano #contents .nav-menu {
	background-color: #ff9a78
}

body.index.guitar #contents .nav-menu {
	background-color: #90dae7
}

body.index.voice #contents .nav-menu {
	background-color: #bddb51
}

body.index.bass #contents .nav-menu {
	background-color: #aeeccd
}

body.index.dj #contents .nav-menu {
	background-color: #c8b5f1
}

body.index.uku #contents .nav-menu {
	background-color: #fecc89
}

body.index #contents .mv .owl-stage-outer {
	background: #fff
}

body.index #contents .mv .owl-controls {
	*zoom: 1;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	/* overflow: scroll !important;
	-webkit-overflow-scrolling: touch */
}

body.index #contents .mv .owl-controls:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

body.index #contents .mv .owl-controls .owl-dots {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	/* margin-left: -1px;
	margin-right: -1px */
}
@media screen and (min-width: 980px){
	body.index #contents .mv .owl-controls .owl-dots{
		width: 100%!important;
	}
}
@media screen and (min-width: 641px) and (max-width: 979px){
	body.index #contents .mv .owl-controls .owl-dots{
		width: 95%!important;
		margin-right: auto;
		margin-left: auto;
	}
}
@media screen and (max-width: 640px){
	body.index #contents .mv .owl-controls .owl-dots{
		width: 95%!important;
		margin-left: auto;
		margin-right: auto;
	}
}
body.index #contents .mv .owl-controls .owl-dots:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

body.index #contents .mv .owl-controls .owl-dots .owl-dot {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	position: relative;
	padding-left: 1px;
	padding-right: 1px;
	width: 20%;
}

body.index #contents .mv .owl-controls .owl-dots .owl-dot:before {
	content: " ";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1
}

body.index #contents .mv .owl-controls .owl-dots .owl-dot:after {
	content: " ";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: calc(100% + 1px);
	box-shadow: inset 0 0 0 1px #eaeaea;
	z-index: 2
}

body.index #contents .mv .owl-controls .owl-dots .owl-dot.active:before {
	content: none
}

body.index #contents .mv .owl-controls .owl-dots .owl-dot.active:after {
	box-shadow: inset 0 0 0 3px #e8c446
}

body.index #contents .nav-menu.round .container>ul>li>dl,
body.index #contents .schools.round .container>ul>li>dl {
	border-radius: 6px;
	overflow: hidden
}

body.index #contents .nav-menu {
	background: url(../img/parts/aside-bg.png) repeat center top
}

body.index #contents .nav-menu .container>ul>li>dl {
	position: relative;
	background: #fff;
	border-radius: 4px
}

body.index #contents .nav-menu .container>ul>li>dl>dt {
	text-align: center
}

body.index #contents .nav-menu .container>ul>li>dl>dd>dl>dt {
	font-weight: bold;
	color: #e5521f
}

body.index #contents .nav-menu .container>ul>li>dl>dd a.hitarea {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-indent: -100%;
	font-size: 0px;
	font-size: 0rem;
	line-height: 0;
	background: rgba(255, 255, 255, 0.001)
}

body.index #contents .schools {
	background: url(../img/index/schools-bg.jpg) no-repeat center top;
	background-size: cover;
	color: #fff
}

body.index #contents .schools h2,
body.index #contents .schools p {
	text-align: center
}

body.index #contents .schools h2 {
	font-weight: bold;
	line-height: 1.1
}

body.index #contents .schools ul.school-list>li {
	color: #333
}

body.index #contents .schools ul.school-list>li>dl {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	background: #fff;
	border-radius: 4px
}

body.index #contents .schools ul.school-list>li>dl:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

body.index #contents .schools ul.school-list>li>dl>dt {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	float: left
}

body.index #contents .schools ul.school-list>li>dl>dd {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	float: left
}

body.index #contents .schools ul.school-list>li>dl>dd>dl>dt {
	font-weight: bold;
	color: #e5521f
}

body.index #contents .bnrs .container>.items {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

body.index #contents .bnrs .container>.items:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

body.index #contents .bnrs .container>.items>.item {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

[class^=responsive-] {
	position: relative;
	width: 100%
}

[class^=responsive-] iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important
}

.responsive-16_9 {
	padding-top: 56.25%
}

.responsive-4_3 {
	padding-top: 75%
}

.flv-movie {
	position: relative;
	width: 100%;
	padding-top: 66.67%
}

.flv-movie object {
	position: absolute;
	top: 0;
	left: 0
}

.flv-movie img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important
}

#contents .cource-detail {
	border-bottom: 1px dotted #b8b8b8;
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#contents .cource-detail:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#contents .cource-detail>.info,
#contents .cource-detail>.price {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#contents .cource-detail>.price ul.price-list>li {
	border-bottom: 1px dotted #b8b8b8
}

#contents .cource-detail>.price ul.price-list>li>dl {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5px 0;
	margin-left: -8px;
	margin-right: -8px
}

#contents .cource-detail>.price ul.price-list>li>dl:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#contents .cource-detail>.price ul.price-list>li>dl>dd,
#contents .cource-detail>.price ul.price-list>li>dl>dt {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	padding-left: 8px;
	padding-right: 8px;
	line-height: 1.8rem;		
}

#contents .cource-detail>.price ul.price-list>li>dl>dt {
	width: 40%;
	color: #e5521f;
	font-weight: bold;
}

#contents .cource-detail>.price ul.price-list>li>dl>dd {
	width: 60%
}

#contents dl.cource-cam {
	background: #fff;
	border-radius: 4px
}

#contents dl.cource-cam dt.ttl {
	position: relative
}

#contents dl.cource-cam dt.ttl .badge {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 999px;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	background: #e5521f;
	-moz-transform: rotate(-15deg);
	-o-transform: rotate(-15deg);
	-ms-transform: rotate(-15deg);
	-webkit-transform: rotate(-15deg);
	transform: rotate(-15deg);
	position: absolute;
	top: 0;
	left: 0
}

#contents dl.cource-cam dd.desc ul.items {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#contents dl.cource-cam dd.desc ul.items:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#contents dl.cource-cam dd.desc ul.items>li {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#contents dl.cource-cam dd.desc ul.items>li:not(:last-child):after {
	display: inline-block;
	content: '+';
	font-size: 30px;
	font-size: 3rem;
	font-weight: bold;
	color: #88bf48;
	position: absolute
}

#contents dl.cource-cam dd.more {
	border-top: 2px solid #e5521f
}

.ggmap {
	position: relative;
	padding-bottom: 120%;
	height: 0;
	overflow: hidden
}

.ggmap embed,
.ggmap iframe,
.ggmap object {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

#contents dl.access-lead {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#contents dl.access-lead:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#contents dl.access-lead>dd,
#contents dl.access-lead>dt {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#contents dl.access-maps {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#contents dl.access-maps:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#contents dl.access-maps>dd,
#contents dl.access-maps>dt {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#contents dl.access-maps>dd>dl {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px dotted #b8b8b8
}

#contents dl.access-maps>dd>dl:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#contents dl.access-maps>dd>dl>dd,
#contents dl.access-maps>dd>dl>dt {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	padding: 8px;
	line-height: 1.6
}

#contents dl.access-maps>dd>dl>dt {
	float: left;
	width: 25%;
	text-align: center;
	font-weight: bold
}

#contents dl.access-maps>dd>dl>dd {
	padding-left: 25%;
	border-bottom: 1px dotted #b8b8b8
}

#contents ol.access-step li {
	text-indent: -1.25em;
	padding-left: 1.25em
}

ul.faq-list>li:not(:last-of-type) {
	border-bottom: 1px dotted #b8b8b8
}

ul.faq-list>li>dl>dd,
ul.faq-list>li>dl>dt {
	position: relative
}

ul.faq-list>li>dl>dd:before,
ul.faq-list>li>dl>dt:before {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	font-weight: bold;
	text-align: center;
	color: #fff
}

ul.faq-list>li>dl>dd:after,
ul.faq-list>li>dl>dt:after {
	content: '';
	position: absolute
}

ul.faq-list>li>dl>dt {
	font-weight: bold
}

ul.faq-list>li>dl>dt:before {
	content: 'Q';
	background: #e5521f
}

ul.faq-list>li>dl>dt:after {
	border-color: #e5521f !important
}

ul.faq-list>li>dl>dd:before {
	content: 'A'
}

ul.staff-list {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

ul.staff-list:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

ul.staff-list>li {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center
}

ul.staff-list>li img {
	border-radius: 12px
}

ul.staff-list>li a {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	overflow: hidden;
	text-decoration: none
}

ul.staff-list>li .ph {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	overflow: hidden
}

ul.staff-list>li .ph+.alt {
	display: block;
	text-align: center;
	font-weight: bold;
	text-decoration: none;
	color: #333
}

dl.staff-info:not(:last-of-type) {
	margin-bottom: 1.5em
}

dl.staff-info>dt {
	font-weight: bold
}

dl.staff-info>dd>ul.artist-list {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

dl.staff-info>dd>ul.artist-list:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

dl.staff-info>dd>ul.artist-list>li {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#cboxLoadedContent .staff-detail,
#contents .staff-detail {
	background: #fff;
	position: relative;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	padding: 10px;
	max-width: 630px
}

#cboxLoadedContent .staff-detail>.bg,
#contents .staff-detail>.bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: right
}

#cboxLoadedContent .staff-detail>.bg img,
#contents .staff-detail>.bg img {
	position: absolute;
	right: 0;
	top: 0
}

#cboxLoadedContent .staff-detail>.cts,
#contents .staff-detail>.cts {
	position: relative;
	z-index: 1
}

#cboxLoadedContent .staff-detail>.cts h2,
#contents .staff-detail>.cts h2 {
	color: #e5521f
}

#cboxLoadedContent .staff-detail>.cts dl:not(:last-of-type),
#contents .staff-detail>.cts dl:not(:last-of-type) {
	margin-bottom: 1em
}

#cboxLoadedContent .staff-detail>.cts dl dt,
#contents .staff-detail>.cts dl dt {
	font-weight: bold
}

#cboxLoadedContent .staff-detail>.cts dl dd,
#contents .staff-detail>.cts dl dd {
	line-height: 1.4
}

#main #main-inner .staff-mv {
	position: relative;
	height: auto !important;
	padding: 27% 0 0 !important;
	background-image: url(../img/staff/instructor/bg_staff.png);
}

#main #main-inner .staff-mv .bg {
	display: block;
	width: 21.23%;
	height: 0;
	padding-top: 21.23%;
	border-radius: 100px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: absolute;
	left: 13.7%;
	top: 0;
	bottom: 0;
	margin: auto;
}

#main #main-inner .staff-mv .txt {
	display: block;
	position: absolute;
	left: 47.95%;
	top: 50%;
	margin-top: -1em;
	z-index: 2
}

#main #main-inner dl.ins-dtl-msg {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
	border-radius: 24px;
	border: 2px solid;
	margin-bottom: 3em;
	padding: 20px
}

#main #main-inner dl.ins-dtl-msg:after,
#main #main-inner dl.ins-dtl-msg:before {
	content: '';
	position: absolute
}

#main #main-inner dl.ins-dtl-msg:before {
	border-bottom: 24px solid;
	border-left: 12px solid transparent !important;
	border-right: 12px solid transparent !important;
	top: -24px;
	right: 140px
}

#main #main-inner dl.ins-dtl-msg:after {
	border-bottom: 20px solid #fff;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	top: -20px;
	right: 142px
}

#main #main-inner dl.ins-dtl-msg>dt {
	position: absolute;
	right: -.5em;
	bottom: -1em;
	font-weight: bold;
	-moz-transform: rotate(-5deg);
	-o-transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-webkit-transform: rotate(-5deg);
	transform: rotate(-5deg);
	font-size: 20px;
	font-size: 2rem;
	color: #e5521f;
	font-family: 'Nothing You Could Do', cursive
}

#main #main-inner dl.ins-dtl-cts {
	margin-bottom: 3em
}

#main #main-inner dl.ins-dtl-cts>dd ul.genre-lst {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

#main #main-inner dl.ins-dtl-cts>dd ul.genre-lst:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#main #main-inner dl.ins-dtl-cts>dd ul.genre-lst>li {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	margin-right: 10px
}

#main #main-inner .ins-rel {
	border-top: 1px dotted #b8b8b8;
	padding-top: 30px
}

ul.st-voice-list>li>dl {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

ul.st-voice-list>li>dl:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

ul.st-voice-list>li>dl>dd.desc,
ul.st-voice-list>li>dl>dt.thumb {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

ul.st-voice-list>li>dl>dt.thumb {
	font-weight: bold;
	text-align: center
}

ul.st-voice-list>li>dl>dt.thumb .face {
	display: inline-block;
	border-radius: 999px;
	width: 100%;
	position: relative;
	padding-bottom: 100%;
	height: 0;
	overflow: hidden
}

ul.st-voice-list>li>dl>dt.thumb .face img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%
}

ul.st-voice-list>li>dl>dt.thumb .face+.caption {
	display: block;
	text-align: center;
	margin-top: 4px
}

ul.st-voice-list>li>dl>dd.desc .balloon {
	border: 2px solid;
	border-radius: 10px;
	background: #fff;
	line-height: 1.6;
	position: relative
}

ul.st-voice-list>li>dl>dd.desc .balloon:after,
ul.st-voice-list>li>dl>dd.desc .balloon:before {
	content: '';
	display: block;
	position: absolute
}

.success-item {
	border-bottom: 1px dotted #b8b8b8;
	padding-bottom: 3.5em;
	margin-bottom: 3.5em
}

dl.company-dl-tbl {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

dl.company-dl-tbl:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

dl.company-dl-tbl>dd,
dl.company-dl-tbl>dt {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

dl.company-dl-tbl>dt {
	font-weight: bold
}

dl.company-dl-tbl>dd {
	border-bottom: 1px dotted #b8b8b8
}

.privacy-lead {
	border-top: 1px dotted #b8b8b8;
	border-bottom: 1px dotted #b8b8b8
}

ol.privacy-list>li {
	border-bottom: 1px dotted #b8b8b8
}

ol.privacy-list>li>dl>dd,
ol.privacy-list>li>dl>dt {
	position: relative
}

ol.privacy-list>li>dl>dt {
	font-weight: bold
}

.nav-sitemap>ul {
	display: block;
	position: relative;
	*zoom: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

.nav-sitemap>ul:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

.nav-sitemap>ul>li {
	display: block;
	position: relative;
	min-height: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

.nav-sitemap>ul>li>a {
	position: relative;
	background: #fff;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	display: block
}

.nav-sitemap>ul>li>a:after,
.nav-sitemap>ul>li>a:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 10px
}

.nav-sitemap>ul>li>a:before {
	background: #ce4f24
}

.nav-sitemap>ul>li>a:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.nav-sitemap>ul>li>ul>li>a {
	position: relative;
	display: inline-block
}

.nav-sitemap>ul>li>ul>li>a:before {
	display: inline-block;
	content: '';
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border-top: 2px solid #ce4f24;
	border-right: 2px solid #ce4f24;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute
}

#contents dl.form {
	overflow: hidden
}

#contents dl.form>dt {
	font-weight: bold;
	font-size: 13px;
	font-size: 1.3rem
}

#contents dl.form>dd {
	font-size: 13px;
	font-size: 1.3rem;
	border-bottom: 1px dotted #ccc;
	padding-bottom: 4px;
	margin-bottom: 10px
}

#contents dl.form>dd font[color=red] {
	display: block
}

#contents dl.form>dd input[type=checkbox],
#contents dl.form>dd input[type=radio] {
	margin: 3px
}

#contents dl.form+div.button {
	text-align: center
}

#contents dl.form+div.button>a,
#contents dl.form+div.button>input {
	border-radius: 4px;
	color: #fff;
	border: 0;
	padding: 15px 30px;
	font-size: 1.3rem;
	margin: 20px auto;
	display: inline-block;
	font-weight: bold
}

#contents dl.form+div.button>a.back,
#contents dl.form+div.button>input.back {
	background-color: #fff !important
}

#contents dl.form+div.button>a {
	text-decoration: none;
	text-align: center;
	margin-right: 20px
}

#contents dl.form+div.button>a:last-child {
	margin-right: 0
}

#contents dl.form+div.button>a,
#contents dl.form+div.button>input {
	background: #e5521f;
	border: 2px solid #e5521f
}

#contents dl.form+div.button>a.back,
#contents dl.form+div.button>input.back {
	color: #e5521f
}

body.piano #contents dl.form+div.button>a,
body.piano #contents dl.form+div.button>input {
	background: #ff9a78;
	border: 2px solid #ff9a78;
	color: inherit
}

body.piano #contents dl.form+div.button>a.back,
body.piano #contents dl.form+div.button>input.back {
	color: inherit
}

@media only screen and (min-width:980px) {
	div.inst-msg {
		overflow: hidden
	}

	div.inst-msg>ul.img-left {
		overflow: hidden;
		text-align: center;
		margin-bottom: 1.5em
	}

	div.inst-msg>ul.img-left>li {
		display: inline-block;
		width: 30%;
		margin-right: 10px
	}

	div.inst-msg>ul.img-left>li:last-child {
		margin-right: 0
	}

	div.inst-msg>div.msg-txt {
		float: none;
		width: auto
	}

	#contents dl.form>dt {
		float: left;
		clear: both;
		width: 15em
	}

	#contents dl.form>dd {
		padding-left: 17em
	}
}

@media only screen and (min-width:641px) and (max-width:979px) {
	div.inst-msg {
		overflow: hidden
	}

	div.inst-msg>ul.img-left {
		overflow: hidden;
		text-align: center;
		margin-bottom: 1.5em
	}

	div.inst-msg>ul.img-left>li {
		display: inline-block;
		width: 30%;
		margin-right: 10px
	}

	div.inst-msg>ul.img-left>li:last-child {
		margin-right: 0
	}

	div.inst-msg>div.msg-txt {
		float: none;
		width: auto
	}

	#contents dl.form>dt {
		float: left;
		clear: both;
		width: 15em
	}

	#contents dl.form>dd {
		padding-left: 17em
	}
}

@media only screen and (min-width:980px) {
	.h-auto-pc {
		height: auto !important
	}

	.br-sp,
	.br-tb {
		display: none
	}

	.br-pc {
		display: block
	}

	.none-sp,
	.none-tb {
		display: block
	}

	em.none-sp,
	em.none-tb,
	span.none-sp,
	span.none-tb,
	strong.none-sp,
	strong.none-tb {
		display: inline
	}

	.none-pc {
		display: none
	}

	.visible-sp,
	.visible-tb {
		display: none
	}

	.visible-pc {
		display: block
	}

	.col-pc-1,
	.col-pc-2,
	.col-pc-3,
	.col-pc-4,
	.col-pc-5,
	.col-pc-6,
	.col-pc-7,
	.col-pc-8,
	.col-pc-9,
	.col-pc-10,
	.col-pc-11,
	.col-pc-12 {
		float: left
	}

	.col-pc-1 {
		width: 8.33333333%
	}

	.col-pc-2 {
		width: 16.66666667%
	}

	.col-pc-3 {
		width: 25%
	}

	.col-pc-4 {
		width: 33.33333333%
	}

	.col-pc-5 {
		width: 41.66666667%
	}

	.col-pc-6 {
		width: 50%
	}

	.col-pc-7 {
		width: 58.33333333%
	}

	.col-pc-8 {
		width: 66.66666667%
	}

	.col-pc-9 {
		width: 75%
	}

	.col-pc-10 {
		width: 83.33333333%
	}

	.col-pc-11 {
		width: 91.66666667%
	}

	.col-pc-12 {
		width: 100%
	}

	#main #main-inner dl.box-point dd.links>ul>li a:hover,
	.btn-def-s:hover,
	.btn-def:hover,
	.btn-link:hover,
	.btn-main-s:hover,
	.btn-main:hover,
	.btn-sub-s:hover,
	.btn-sub:hover,
	[class^=btn-]:hover {
		opacity: .9
	}

	#main #main-inner dl.box-point dd.links>ul>li a,
	.btn-link {
		padding-left: 19px
	}

	#main #main-inner dl.box-point dd.links>ul>li a:before,
	.btn-link:before {
		width: 14px;
		height: 14px;
		border-radius: 14px;
		margin-top: -7px
	}

	#main #main-inner dl.box-point dd.links>ul>li a:after,
	.btn-link:after {
		width: 6px;
		height: 6px;
		margin-top: -3px;
		margin-left: 3px
	}

	.btn-def,
	.btn-def-s,
	.btn-main,
	.btn-main-s,
	.btn-sub,
	.btn-sub-s {
		padding: 20px 20px 20px 38px;
		font-size: 16px;
		font-size: 1.6rem
	}

	.btn-def-s:before,
	.btn-def:before,
	.btn-main-s:before,
	.btn-main:before,
	.btn-sub-s:before,
	.btn-sub:before {
		width: 14px;
		height: 14px;
		border-radius: 14px;
		margin-top: -7px;
		margin-left: 10px
	}

	.btn-def-s:after,
	.btn-def:after,
	.btn-main-s:after,
	.btn-main:after,
	.btn-sub-s:after,
	.btn-sub:after {
		width: 6px;
		height: 6px;
		margin-top: -3px;
		margin-left: 13px
	}

	.btn-def-s,
	.btn-main-s,
	.btn-sub-s {
		font-size: 12px;
		font-size: 1.2rem;
		padding: 8px 8px 8px 27px
	}

	.btn-def-s:after,
	.btn-def-s:before,
	.btn-main-s:after,
	.btn-main-s:before,
	.btn-sub-s:after,
	.btn-sub-s:before {
		left: 0
	}

	.ico-arrow {
		margin-right: 14px;
		border-radius: 14px;
		width: 14px;
		height: 14px;
		margin-top: -4px
	}

	.ico-arrow:after {
		width: 5px;
		height: 5px;
		margin-left: -3px;
		margin-top: -2px
	}

	#main #main-inner dl.box-point dd.links>ul>li a,
	.btn-link {
		line-height: 1.1
	}

	#main #main-inner dl.box-point dd.links>ul>li a:hover,
	.btn-link:hover {
		color: #333;
		text-decoration: underline
	}

	.btn-def-s:hover,
	.btn-def:hover,
	.btn-main-s:hover,
	.btn-main:hover,
	.btn-sub-s:hover,
	.btn-sub:hover {
		color: #fff
	}

	[class^=arrow-]:after,
	[class^=arrow-]:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%
	}

	[class^=arrow-]:before {
		width: 8px;
		height: 8px;
		border-radius: 8px;
		background: #ce4f24;
		margin-top: -4px
	}

	[class^=arrow-]:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 4px;
		height: 4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-top: -2px
	}

	ol.points-no>li {
		*zoom: 1
	}

	ol.points-no>li:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	.hasDatepicker+.ui-datepicker-trigger {
		width: 25px
	}

	.container {
		max-width: 980px;
		margin-left: auto;
		margin-right: auto
	}

	#nav-main-btn {
		display: none
	}

	#header .desc .container .ttls {
		float: none;
		width: 100%;
	}

	#header .desc .container .ttls .l-logo img {
		margin: 14px 0 19px 1px
	}

	#header .desc .container .ttls .btns {
		padding: 16px 0
	}

	#header .desc .container .ttls .btns .btn-def-orange {
		line-height: 68px
	}

	#header .desc .container .inq {
		width: 44.79%;
		float: left;
		padding-left: 20px;
		padding-top: 16px
	}

	#header .nav-menu ul.container {
		border-left: 1px solid rgba(0, 0, 0, 0.1)
	}

	#header .nav-menu ul.container li {
		width: 16.66667%;
		height: 70px;
		float: left;
		border-right: 1px solid rgba(0, 0, 0, 0.1);
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 1.3;
		text-align: center
	}

	#header .nav-menu ul.container li a {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
		color: #2f2623;
		text-decoration: none
	}

	#header .nav-menu ul.container li a>span {
		display: inline-block;
		text-align: center;
		position: absolute;
		width: 100%;
		left: 0;
		top: 50%;
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%)
	}

	#header .nav-menu ul.container li a:hover {
		background: rgba(255, 255, 255, 0.3)
	}

	#header .nav-menu ul.container li.nav-bee,
	#header .nav-menu ul.container li.nav-home,
	#header .nav-menu ul.container li.nav-site {
		display: none
	}

	#header .desc .container .ttls .btns .btn-def-orange {
		font-size: 16px;
		padding: 0 18px
	}
	#footer .desc {
		background: #e5521f;
		padding: 40px 0
	}

	#footer .desc .container {
		background: #d5210c;
		padding: 40px 62px;
		border-radius: 4px;
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	#footer .desc .container:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#footer .desc .container ul.btns {
		width: 61.31%;
		position: relative;
		margin: 0 auto;
	}

	#footer .desc .container ul.btns li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
/*
		float: left;
		width: 50%;
		padding-right: 20px
*/
		float: none;
		width: 100%;
	}

	#footer .desc .container ul.btns li .btn-def-white {
		height: 68px;
		display: block;
		padding: 26px 15px 0 30px;
		font-size: 16px;
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.13;
		position: relative
	}

	#footer .desc .container ul.btns li .btn-def-white .ico-arrow {
		position: absolute;
		left: 10px;
		top: 50%;
		margin-top: -7px;
		margin-right: 0
	}

	#footer .desc .container ul.btns li .btn-def-white .ico-mail {
		position: absolute;
		left: 12px;
		top: 50%;
		margin-top: -8px
	}

	#footer .desc .container ul.btns li .btn-def-white.btn-def-mail {
		padding: 7px 15px 0 30px;
	}

	#footer .desc .container .inq {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 52.69%;
		color: #fff;
		padding-left: 20px
	}

	#footer .desc .container .inq dl dt {
		text-align: center;
		font-size: 12px;
		font-size: 1.2rem;
		margin-bottom: 12px
	}

	#footer .desc .container .inq dl dd {
		text-align: left;
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	#footer .desc .container .inq dl dd:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#footer .desc .container .inq dl dd.op {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 36.6%;
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.33
	}

	#footer .desc .container .inq dl dd.tel {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 63.4%
	}

	#footer .desc .container .inq a.btn-tel {
		display: none
	}

	#footer .nav-ctrl ul li a {
		display: none
	}

	#footer .nav-ctrl ul li a.pagetop {
		display: block;
		position: fixed;
		z-index: 99;
		right: 20px;
		bottom: 20px;
		width: 60px;
		height: 60px;
		background: #909090;
		overflow: hidden;
		text-indent: -120%;
		font-size: 1px;
		line-height: 0
	}

	#footer .nav-ctrl ul li a.pagetop:after {
		content: '';
		display: block;
		width: 14px;
		height: 14px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		border-left: 4px solid #fff;
		border-top: 4px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: -6px;
		margin-top: -2px
	}

	#footer .nav-menu {
		background: #333;
		padding-top: 39px
	}

	#footer .nav-menu .container {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	#footer .nav-menu .container:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#footer .nav-menu .container>ul {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 25%
	}

	#footer .nav-menu .container>ul>li {
		font-size: 15px;
		font-size: 1.5rem;
		font-weight: bold;
		margin-bottom: 38px
	}

	#footer .nav-menu .container>ul>li>a {
		position: relative;
		display: block;
		color: #fff;
		text-decoration: none;
		margin-bottom: 12px;
		padding-left: 20px
	}

	#footer .nav-menu .container>ul>li>a:before {
		content: '';
		display: block;
		background: #fff;
		width: 14px;
		height: 14px;
		border-radius: 14px;
		background: #fff;
		position: absolute;
		left: 0;
		top: 50%;
		margin-top: -7px
	}

	#footer .nav-menu .container>ul>li>a:after {
		content: '';
		display: block;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 5px;
		height: 5px;
		border-top: 1px solid #333;
		border-right: 1px solid #333;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
		left: 4px;
		top: 50%;
		margin-top: -3px
	}

	#footer .nav-menu .container>ul>li>a:hover {
		text-decoration: underline
	}

	#footer .nav-menu .container>ul>li>ul {
		margin-left: 29px
	}

	#footer .nav-menu .container>ul>li>ul>li {
		font-size: 12px;
		font-size: 1.2rem;
		margin-bottom: 12px
	}

	#footer .nav-menu .container>ul>li>ul>li>a {
		position: relative;
		display: block;
		color: #fff;
		text-decoration: none
	}

	#footer .nav-menu .container>ul>li>ul>li>a:before {
		content: '';
		display: inline-block;
		margin-right: 6px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 4px;
		height: 4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-bottom: 2px
	}

	#footer .nav-menu .container>ul>li>ul>li:hover {
		text-decoration: underline
	}

	#footer .nav-bee {
		background: #333;
		padding-top: 30px;
		padding-bottom: 50px
	}

	#footer .nav-bee ul {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		background: #fff;
		border-radius: 4px;
		overflow: hidden
	}

	#footer .nav-bee ul:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#footer .nav-bee ul li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 33.3333%;
		text-align: center;
	}

	#footer .nav-bee ul li a {
		display: block;
		padding: 20px 28px;
		color: #333;
		text-decoration: underline;
		border-left: 1px solid #e6e6e6;
		border-top: 1px solid #e6e6e6;
	}

	#footer .nav-bee ul li a:hover {
		text-decoration: none
	}

	#footer .nav-bee ul li a img+span {
		margin-top: 8px;
		display: block;
		text-align: center;
		color: #333;
		font-size: 12px;
		font-size: 1.2rem;
		position: relative;
		letter-spacing: -1px
	}

	#footer .nav-bee ul li a img+span .ico-arrow {
		border-radius: 11px;
		width: 11px;
		height: 11px;
		margin-right: 2px;
		margin-top: -1px
	}

	#footer .nav-bee ul li a img+span .ico-arrow:before {
		background: #333
	}

	#footer .nav-bee ul li a img+span .ico-arrow:after {
		width: 3px;
		height: 3px;
		margin-left: -2px;
		margin-top: -2px;
		border-top-color: #fff;
		border-right-color: #fff
	}

	#footer .infos {
		background: #202020;
		padding-top: 30px;
		padding-bottom: 30px
	}

	#footer .infos .nav-site {
		margin-bottom: 30px
	}

	#footer .infos .nav-site ul {
		text-align: center
	}

	#footer .infos .nav-site ul li {
		display: inline-block;
		font-size: 12px;
		font-size: 1.2rem
	}

	#footer .infos .nav-site ul li:not(:last-child) {
		margin-right: 24px
	}

	#footer .infos .nav-site ul li a {
		color: #fff
	}

	#footer .infos dl.info dt {
		text-align: center;
		font-size: 11px;
		font-size: 1.1rem;
		margin-bottom: 20px;
		color: #fff
	}

	#footer .infos dl.info dd {
		text-align: center;
		font-size: 11px;
		font-size: 1.1rem;
		color: #fff
	}

	#footer .infos dl.info dd.copyright {
		opacity: .3
	}

	#breadcrumb {
		background: #eaeaea;
		padding: 14px 0
	}

	#breadcrumb ol {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	#breadcrumb ol:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#breadcrumb ol li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.1;
		font-weight: bold
	}

	#breadcrumb ol li:not(:last-child):after {
		content: '';
		display: inline-block;
		vertical-align: middle;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 8px;
		height: 8px;
		border-top: 1px solid #333;
		border-right: 1px solid #333;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-left: 8px;
		margin-right: 10px;
		margin-top: -2px
	}

	#breadcrumb ol li a {
		font-weight: normal;
		color: #333;
		text-decoration: underline
	}

	#breadcrumb ol li a:hover {
		text-decoration: none
	}

	#contents {
		padding-bottom: 60px
	}

	#contents dd,
	#contents dt,
	#contents li,
	#contents p,
	#contents td,
	#contents th {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 2
	}

	#contents p:not(:last-of-type) {
		margin-bottom: 1em
	}

	#contents #wrapper {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: -10px;
		margin-right: -10px
	}

	#contents #wrapper:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#contents #wrapper #aside,
	#contents #wrapper #main {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		padding-left: 10px;
		padding-right: 10px
	}

	#contents #wrapper #main {
		width: 75%;
		float: left
	}

	#contents #wrapper #aside {
		width: 25%;
		float: right
	}

	#contents #wrapper #aside-inner,
	#contents #wrapper #main-inner {
		height: 100%
	}

	#main #main-inner .page-ttl {
		height: 120px;
		line-height: 1.3;
		padding: 34px 30px 0;
		margin-bottom: 30px;
		border-radius: 4px
	}

	#main #main-inner .page-ttl small {
		font-size: 14px;
		font-size: 1.4rem
	}

	#main #main-inner .page-ttl strong {
		font-size: 30px;
		font-size: 3rem
	}

	#main #main-inner .page-ttl em {
		display: block;
		font-style: normal;
		font-size: 16px;
		font-size: 1.6rem
	}

	#main #main-inner .page-ttl.line1 {
		padding-top: 42px
	}

	#main #main-inner .midashi2,
	#main #main-inner dl.ins-dtl-cts>dt {
		font-size: 20px;
		font-size: 2rem;
		font-weight: bold;
		margin-bottom: 1em;
		padding-left: 20px;
		line-height: 1.2
	}

	#main #main-inner .midashi2:before,
	#main #main-inner dl.ins-dtl-cts>dt:before {
		width: 6px;
		height: 24px
	}

	#main #main-inner .midashi3 {
		font-size: 16px;
		font-size: 1.6rem;
		font-weight: bold;
		margin-bottom: 1em;
		padding-left: 20px;
		line-height: 1.4
	}

	#main #main-inner .midashi3:before {
		width: 10px;
		height: 10px;
		margin-top: .25em
	}

	#main #main-inner .section {
		margin-bottom: 3.5em
	}

	#main #main-inner ol.list-no li {
		padding-left: 44px;
		margin-bottom: 1.5em
	}

	#main #main-inner ol.list-no li>.no {
		display: block;
		width: 34px;
		height: 34px;
		border-radius: 34px;
		text-align: center;
		line-height: 34px;
		color: #fff;
		font-weight: bold;
		font-size: 18px;
		font-size: 1.8rem
	}

	#main #main-inner ul.list-card {
		margin-left: -10px;
		margin-right: -10px
	}

	#main #main-inner ul.list-card li.card {
		float: left;
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 20px;
		width: 50%;
		margin-bottom: 20px
	}

	#main #main-inner ul.list-card li.card>dl {
		padding: 10px;
		display: table;
		width: 100%;
		height: 100%;
	}

	#main #main-inner ul.list-card li.card>dl>dd.info,
	#main #main-inner ul.list-card li.card>dl>dt.thumb {
		display: table-cell;
		vertical-align: middle
	}

	#main #main-inner ul.list-card li.card>dl>dt.thumb {
		width: 32.83582%
	}

	#main #main-inner ul.list-card li.card>dl>dd.info,
	#main #main-inner ul.list-card li.card>dl>dt.thumb img {
		width: 100%;
	}

	#main #main-inner ul.list-card li.card>dl>dd.info {
		width: 67.16418%;
		padding-left: 14px
	}

	#main #main-inner ul.list-card li.card>dl>dd.info>dl>dt {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 1.3;
		font-weight: bold;
		color: #e5521f;
		margin-bottom: .5em
	}

	#main #main-inner ul.list-card li.card>dl>dd.info>dl>dd {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.6
	}

	#main #main-inner ul[class^=imgs-] {
		margin-left: -10px;
		margin-right: -10px
	}

	#main #main-inner ul[class^=imgs-] li {
		float: left;
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 20px
	}

	#main #main-inner ul.imgs-col3 li {
		width: 33.33333%
	}

	#main #main-inner ul.imgs-col2 li {
		width: 50%
	}

	#main #main-inner dl.box-point {
		padding: 30px
	}

	#main #main-inner dl.box-point dt.ttl {
		padding-left: 36px;
		font-size: 16px;
		font-size: 1.6rem;
		margin-bottom: .5em
	}

	#main #main-inner dl.box-point dt.ttl>.ico {
		width: 27px;
		height: 27px;
		border-radius: 27px;
		line-height: 27px;
		font-size: 20px;
		font-size: 2rem
	}

	#main #main-inner ul.list-card li>dl>dd.hitarea>a.hitarea:hover {
		background: rgba(255, 255, 255, 0.3)
	}

	body.vocal .nav-side a {
		background: #e8c446
	}

	body.vocal .nav-side a:after {
		border-top-color: #e8c446 !important;
		border-right-color: #e8c446 !important
	}

	body.vocal .nav-side a+ul li.current a {
		background: rgba(232, 196, 70, 0.3)
	}

	body.vocal .nav-side a+ul li a {
		background: rgba(232, 196, 70, 0.5)
	}

	body.piano .nav-side a {
		background: #ff9a78
	}

	body.piano .nav-side a:after {
		border-top-color: #ff9a78 !important;
		border-right-color: #ff9a78 !important
	}

	body.piano .nav-side a+ul li.current a {
		background: rgba(255, 154, 120, 0.3)
	}

	body.piano .nav-side a+ul li a {
		background: rgba(255, 154, 120, 0.5)
	}

	body.guitar .nav-side a {
		background: #90dae7
	}

	body.guitar .nav-side a:after {
		border-top-color: #90dae7 !important;
		border-right-color: #90dae7 !important
	}

	body.guitar .nav-side a+ul li.current a {
		background-color: rgba(144, 218, 231, 0.3);
	}

	body.guitar .nav-side a+ul li a {
		background-color: rgba(144, 218, 231, 0.5);
	}

	body.voice .nav-side a {
		background: #bddb51
	}

	body.voice .nav-side a:after {
		border-top-color: #bddb51 !important;
		border-right-color: #bddb51 !important
	}

	body.voice .nav-side a+ul li.current a {
		background: rgba(189, 219, 81, 0.3)
	}

	body.voice .nav-side a+ul li a {
		background: rgba(189, 219, 81, 0.5)
	}

	body.bass .nav-side a {
		background: #aeeccd
	}

	body.bass .nav-side a:after {
		border-top-color: #aeeccd !important;
		border-right-color: #aeeccd !important
	}

	body.bass .nav-side a+ul li.current a {
		background: rgba(174, 236, 205, 0.3)
	}

	body.bass .nav-side a+ul li a {
		background: rgba(174, 236, 205, 0.5)
	}

	body.dj .nav-side a {
		background: #c8b5f1
	}

	body.dj .nav-side a:after {
		border-top-color: #c8b5f1 !important;
		border-right-color: #c8b5f1 !important
	}

	body.dj .nav-side a+ul li.current a {
		background: rgba(200, 181, 241, 0.3)
	}

	body.dj .nav-side a+ul li a {
		background: rgba(200, 181, 241, 0.5)
	}

	body.uku .nav-side a {
		background: #fecc89
	}

	body.uku .nav-side a:after {
		border-top-color: #fecc89 !important;
		border-right-color: #fecc89 !important
	}

	body.uku .nav-side a+ul li.current a {
		background: rgba(249, 160, 34, 0.3);
	}

	body.uku .nav-side a+ul li a {
		background: rgba(249, 160, 34, 0.5)
	}

	#aside #aside-inner {
		border-radius: 4px;
		background: #fff !important;
		padding: 10px
	}

	#aside #aside-inner .nav-side a {
		position: relative;
		display: block;
		padding: 12px 24px 12px 10px;
		font-size: 14px;
		font-size: 1.4rem;
		text-decoration: none;
		font-weight: bold;
		color: #333
	}

	#aside #aside-inner .nav-side a:after,
	#aside #aside-inner .nav-side a:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 10px
	}

	#aside #aside-inner .nav-side a:before {
		width: 14px;
		height: 14px;
		border-radius: 14px;
		margin-top: -7px;
		background: #fff
	}

	#aside #aside-inner .nav-side a:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 6px;
		height: 6px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-top: -3px;
		margin-right: 5px
	}

	#aside #aside-inner .nav-side>ul>li>a {
		padding: 12px 24px 12px 10px
	}

	#aside #aside-inner .nav-side>ul>li>ul {
		margin-top: 1px
	}

	#aside #aside-inner .nav-side>ul>li>ul>li {
		margin-bottom: 1px
	}

	#aside #aside-inner .nav-side>ul>li>ul>li>a,
	#aside #aside-inner .nav-side>ul>li>ul>li>span {
		display: block;
		padding: 12px 24px 12px 20px
	}

	#aside #aside-inner .nav-side>ul>li>ul>li>a:before,
	#aside #aside-inner .nav-side>ul>li>ul>li>span:before {
		background: none
	}

	#aside #aside-inner .nav-side>ul>li>ul>li.current>a:after,
	#aside #aside-inner .nav-side>ul>li>ul>li.current>a:before,
	#aside #aside-inner .nav-side>ul>li>ul>li.current>span:after,
	#aside #aside-inner .nav-side>ul>li>ul>li.current>span:before {
		display: none
	}

	#aside #aside-inner ul.bnrs-side {
		margin-top: 20px
	}

	#aside #aside-inner ul.bnrs-side li {
		margin-bottom: 10px
	}

	body.vocal .nav-side a:hover {
		background: rgba(232, 196, 70, 0.8)
	}

	body.vocal .nav-side a+ul li a:hover {
		background: rgba(232, 196, 70, 0.3)
	}

	body.piano .nav-side a:hover {
		background: rgba(255, 154, 120, 0.8)
	}

	body.piano .nav-side a+ul li a:hover {
		background: rgba(255, 154, 120, 0.3)
	}

	body.guitar .nav-side a:hover {
		background-color: rgba(144, 218, 231, 0.8);
	}

	body.guitar .nav-side a+ul li a:hover {
		background-color: rgba(144, 218, 231, 0.3);
	}

	body.voice .nav-side a:hover {
		background: rgba(189, 219, 81, 0.8)
	}

	body.voice .nav-side a+ul li a:hover {
		background: rgba(189, 219, 81, 0.3)
	}

	body.bass .nav-side a:hover {
		background: rgba(174, 236, 205, 0.8)
	}

	body.bass .nav-side a+ul li a:hover {
		background: rgba(174, 236, 205, 0.3)
	}

	body.dj .nav-side a:hover {
		background: rgba(200, 181, 241, 0.8)
	}

	body.dj .nav-side a+ul li a:hover {
		background: rgba(200, 181, 241, 0.3)
	}

	body.uku .nav-side a:hover {
		background: rgba(249, 160, 34, 0.8)
	}

	body.uku .nav-side a+ul li a:hover {
		background: rgba(249, 160, 34, 0.3)
	}

	body.fix {
		padding-top: 40px
	}

	#header .nav-menu.fix {
		position: fixed;
		z-index: 99;
		left: 0;
		top: 0;
		width: 100%
	}

	#header .nav-menu.fix ul.container>li {
		height: 40px
	}

	body.fix #fix-contact-pc {
		display: block
	}

	body.end #fix-contact-pc {
		display: none
	}

	#fix-contact-pc {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		display: none;
		position: fixed;
		z-index: 10;
		left: 0;
		bottom: 0;
		width: 100%;
		background: rgba(229, 82, 31, 0.8);
		padding: 10px 0 30px;
	}

	#fix-contact-pc .container {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	#fix-contact-pc .container:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#fix-contact-pc .container ul.btns {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: none;
		width: 51.31%;
		position: relative;
		margin: 0 auto;
	}

	#fix-contact-pc .container ul.btns li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
/*
		float: left;
		width: 50%;
		padding-right: 20px
*/
		float: none;
		width: 100%;
}

	#fix-contact-pc .container ul.btns li .btn-def-white {
		height: 68px;
		display: block;
		padding: 26px 15px 0 30px;
		font-size: 16px;
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.13;
		position: relative
	}

	#fix-contact-pc .container ul.btns li .btn-def-white .ico-arrow {
		position: absolute;
		left: 10px;
		top: 50%;
		margin-top: -7px;
		margin-right: 0
	}

	#fix-contact-pc .container ul.btns li .btn-def-white .ico-mail {
		position: absolute;
		left: 12px;
		top: 50%;
		margin-top: -8px
	}

	#fix-contact-pc .container ul.btns li .btn-def-white.btn-def-mail {
		padding: 18px 15px 0 30px
	}

	#fix-contact-pc .container .inq {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 52.69%;
		color: #fff;
		padding-left: 20px
	}

	#fix-contact-pc .container .inq dl {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	#fix-contact-pc .container .inq dl:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#fix-contact-pc .container .inq dl dt {
		font-weight: bold;
		margin-bottom: 8px;
		text-align: center;
		text-align: center;
		font-size: 12px;
		font-size: 1.2rem;
		margin-bottom: 12px
	}

	#fix-contact-pc .container .inq dl dd {
		text-align: left;
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left
	}

	#fix-contact-pc .container .inq dl dd:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#fix-contact-pc .container .inq dl dd.op {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 36%;
		padding-top: 10px;
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.33;
		font-weight: bold;
		text-align: left;
		letter-spacing: -0.05em
	}

	#fix-contact-pc .container .inq dl dd.tel {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 64%
	}

	#fix-contact-pc .container .inq dl dd.tel img {
		max-height: 40px
	}

	#fix-contact-sp {
		display: none
	}

	#contents .box-free_trial dl.inner {
		padding: 20px;
		margin-left: -10px;
		margin-right: -10px
	}

	#contents .box-free_trial dl.inner dd.desc,
	#contents .box-free_trial dl.inner dt.thumb {
		float: left;
		padding-left: 10px;
		padding-right: 10px
	}

	#contents .box-free_trial dl.inner dt.thumb {
		width: 33.33333%
	}

	#contents .box-free_trial dl.inner dd.desc {
		width: 66.66667%
	}

	#contents .box-free_trial dl.inner dd.desc>dl>dt {
		font-size: 18px;
		font-size: 1.8rem
	}

	#contents .box-free_trial dl.inner dd.desc>dl>dd {
		font-size: 14px;
		font-size: 1.4rem
	}

	#contents .box-free_trial dl.inner dd.btns {
		padding-left: 10px;
		padding-right: 10px;
		width: 100%
	}

	#cboxLoadedContent dd,
	#cboxLoadedContent dt,
	#cboxLoadedContent li,
	#cboxLoadedContent p,
	#cboxLoadedContent td,
	#cboxLoadedContent th {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 2
	}

	#cboxLoadedContent p:not(:last-of-type) {
		margin-bottom: 1em
	}

	#cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt,
	#cboxLoadedContent .midashi2,
	#main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt {
		font-size: 20px;
		font-size: 2rem;
		font-weight: bold;
		margin-bottom: 1em;
		padding-left: 20px;
		line-height: 1.2
	}

	#cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt:before,
	#cboxLoadedContent .midashi2:before,
	#main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt:before {
		width: 6px;
		height: 24px
	}

	#cboxLoadedContent .midashi3 {
		font-size: 16px;
		font-size: 1.6rem;
		font-weight: bold;
		margin-bottom: 1em;
		padding-left: 20px;
		line-height: 1.2
	}

	#cboxLoadedContent .midashi3:before {
		width: 10px;
		height: 10px;
		margin-top: .25em
	}

	.c-txt-imp {
		color: #996633
	}

	body.index #contents .mv .owl-stage-outer {
		background: #fff
	}

	body.index #contents .mv .owl-controls {
		margin-top: 20px;
		margin-bottom: 30px
	}
/* 
	body.index #contents .mv .owl-controls .owl-dots .owl-dot img {
		height: 80px
	} */

	body.index #contents .nav-menu {
		padding: 40px 0 40px
	}

	body.index #contents .nav-menu .container>ul {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: -10px;
		margin-right: -10px
	}

	body.index #contents .nav-menu .container>ul:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	body.index #contents .nav-menu .container>ul>li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 33.33333%;
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 20px
	}

	body.index #contents .nav-menu .container>ul>li>dl {
		padding: 20px
	}

	body.index #contents .nav-menu .container>ul>li>dl>dt {
		margin-bottom: 16px
	}

	body.index #contents .nav-menu .container>ul>li>dl>dd>dl>dt {
		margin-bottom: 16px;
		font-size: 16px;
		font-size: 1.6rem;
		line-height: 1.1
	}

	body.index #contents .nav-menu .container>ul>li>dl>dd>dl>dd {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 2
	}

	body.index #contents .schools {
		padding-bottom: 60px
	}

	body.index #contents .schools h2 {
		font-size: 28px;
		font-size: 2.8rem;
		padding-top: 80px;
		padding-bottom: 40px
	}

	body.index #contents .schools p {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 2;
		margin-bottom: 40px
	}

	body.index #contents .schools ul.school-list {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: -10px;
		margin-right: -10px
	}

	body.index #contents .schools ul.school-list:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	body.index #contents .schools ul.school-list>li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 33.33333%;
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 20px
	}

	body.index #contents .schools ul.school-list>li>dl {
		padding: 10px
	}

	body.index #contents .schools ul.school-list>li>dl>dt {
		width: 37.54%
	}

	body.index #contents .schools ul.school-list>li>dl>dd {
		width: 62.46%;
		padding-left: 14px
	}

	body.index #contents .schools ul.school-list>li>dl>dd>dl>dt {
		margin-top: 4px;
		margin-bottom: 12px;
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 1.3
	}

	body.index #contents .schools ul.school-list>li>dl>dd>dl>dd {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.6
	}

	body.index #contents .bnrs {
		padding-top: 60px;
		padding-bottom: 40px
	}

	body.index #contents .bnrs .container>.items {
		position: relative;
		padding: 0 40px
	}

	body.index #contents .bnrs .container>.items .owl-controls .owl-nav .owl-next,
	body.index #contents .bnrs .container>.items .owl-controls .owl-nav .owl-prev {
		background: #333;
		width: 20px;
		height: 100%;
		position: absolute;
		top: 0
	}

	body.index #contents .bnrs .container>.items .owl-controls .owl-nav .owl-prev {
		left: 0
	}

	body.index #contents .bnrs .container>.items .owl-controls .owl-nav .owl-prev:after {
		content: '';
		display: block;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 7px;
		height: 7px;
		border-left: 2px solid #fff;
		border-bottom: 2px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
		top: 50%;
		left: 50%;
		margin-top: -4px;
		margin-left: -3px
	}

	body.index #contents .bnrs .container>.items .owl-controls .owl-nav .owl-next {
		right: 0
	}

	body.index #contents .bnrs .container>.items .owl-controls .owl-nav .owl-next:after {
		content: '';
		display: block;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 7px;
		height: 7px;
		border-right: 2px solid #fff;
		border-top: 2px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
		top: 50%;
		right: 50%;
		margin-top: -4px;
		margin-right: -3px
	}

	body.index #contents .news {
		padding: 80px 0 60px;
	}

	body.index #contents .news>.row {
		margin-left: -10px;
		margin-right: -10px
	}

	body.index #contents .news>.row>.col {
		float: left;
		width: 49%;
		padding-left: 10px;
		padding-right: 10px
	}

	body.index #contents .news>.row>.col+.col {
		float: right;
	}

	body.index #contents .news .blog,
	body.index #contents .news .fb-box,
	body.index #contents .news .pickup {
		background: #fff;
	}

	body.index #contents .news .blog .feed-wrap,
	body.index #contents .news .pickup .feed-wrap {
		height: 450px;
		overflow: scroll
	}

	body.index #contents .news .blog .feed-wrap ul.feed,
	body.index #contents .news .pickup .feed-wrap ul.feed {
		background: #fff
	}

	body.index #contents .news .blog .feed-wrap ul.feed>li,
	body.index #contents .news .pickup .feed-wrap ul.feed>li {
		padding: 10px 16px
	}

	body.index #contents .news .blog .feed-wrap ul.feed>li:nth-child(even),
	body.index #contents .news .pickup .feed-wrap ul.feed>li:nth-child(even) {
		background: #f8f8f8
	}

	body.index #contents .news .blog .feed-wrap ul.feed>li dl dd,
	body.index #contents .news .blog .feed-wrap ul.feed>li dl dt,
	body.index #contents .news .pickup .feed-wrap ul.feed>li dl dd,
	body.index #contents .news .pickup .feed-wrap ul.feed>li dl dt {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.5
	}

	body.index #contents .news .blog .feed-wrap .jspContainer .jspVerticalBar .jspTrack,
	body.index #contents .news .pickup .feed-wrap .jspContainer .jspVerticalBar .jspTrack {
		background: #fee5da
	}

	body.index #contents .news .blog .feed-wrap .jspContainer .jspVerticalBar .jspDrag,
	body.index #contents .news .pickup .feed-wrap .jspContainer .jspVerticalBar .jspDrag {
		background: #f47e47
	}

	body.index #contents .news .pickup h2 {
		background: #e5521f;
		font-size: 18px;
		font-size: 1.8rem;
		color: #fff;
		padding: 18px 20px;
		height: 50px;
		overflow: hidden;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	body.index #contents .news .pickup .feed-wrap {
		height: 365px
	}

	body.index #contents .news .blog h2+p {
		background: #fff6f3;
		padding: 10px 16px;
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.5;
		height: 50px;
		overflow: hidden;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	body.index #contents .news .blog .feed-wrap {
		height: 165px
	}

	#contents .cource-detail {
		padding-bottom: 3.5em;
		margin-bottom: 3.5em;
		padding: 20px 0;
		margin-left: -10px;
		margin-right: -10px
	}

	#contents .cource-detail #main #main-inner dl.ins-dtl-cts>dt,
	#contents .cource-detail .midashi2,
	#contents .cource-detail .midashi3,
	#main #main-inner #contents .cource-detail dl.ins-dtl-cts>dt {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 50%;
		margin-left: 10px;
		padding-right: 10px
	}

	#contents .cource-detail>.info,
	#contents .cource-detail>.price {
		float: right;
		width: 50%;
		padding-left: 10px;
		padding-right: 10px
	}

	#contents .cource-detail>.price {
		margin-top: -100px
	}

	.dj #contents .cource-detail>.price {
		margin-top: -50px
	}

	#contents .cource-detail>.price img {
		width: 100%
	}

	#contents .cource-detail>.price .notice {
		font-size: 11px;
		font-size: 1.1rem;
		margin-top: 5px;
		padding-left: 1em;
		text-indent: -1em;
	}

	#contents dl.cource-cam {
		background: #fff;
		border-radius: 4px;
		padding: 20px 30px !important
	}

	#contents dl.cource-cam dt.ttl {
		position: relative;
		color: #e5521f;
		margin: -20px -30px 0;
		padding-top: 10px;
		padding-left: 80px !important;
		font-size: 24px;
		font-size: 2.4rem;
		font-weight: bold
	}

	#contents dl.cource-cam dt.ttl .badge {
		width: 70px;
		height: 70px;
		padding-top: 16px;
		margin-left: -10px;
		margin-top: -10px
	}

	#contents dl.cource-cam dd.desc ul.items {
		margin-left: -10px;
		margin-right: -10px
	}

	#contents dl.cource-cam dd.desc ul.items>li {
		padding-left: 10px;
		padding-right: 10px;
		float: left;
		width: 50%;
		text-align: center
	}

	#contents dl.cource-cam dd.desc ul.items>li:not(:last-child):after {
		display: inline-block;
		content: '+';
		font-size: 30px;
		font-size: 3rem;
		font-weight: bold;
		color: #88bf48;
		position: absolute;
		right: -.3em;
		top: 50%;
		margin-top: -.5em
	}

	#contents dl.cource-cam dd.more {
		border-top: 2px solid #e5521f;
		margin-top: 10px;
		padding-top: 10px
	}

	#contents dl.cource-cam dd.more p {
		margin-bottom: 0
	}

	#contents dl.cource-cam dd.more #main #main-inner dl.box-point dd.links>ul>li a,
	#contents dl.cource-cam dd.more .btn-def,
	#contents dl.cource-cam dd.more .btn-def-s,
	#contents dl.cource-cam dd.more .btn-link,
	#contents dl.cource-cam dd.more .btn-main,
	#contents dl.cource-cam dd.more .btn-main-s,
	#contents dl.cource-cam dd.more .btn-sub,
	#contents dl.cource-cam dd.more .btn-sub-s,
	#contents dl.cource-cam dd.more [class^=btn-],
	#main #main-inner dl.box-point dd.links>ul>li #contents dl.cource-cam dd.more a {
		width: 100%;
		display: block
	}

	#contents dl.cource-cam dd.more>ul.btns {
		margin-top: 6px
	}

	#contents dl.cource-cam dd.more>ul.btns li {
		display: inline-block;
		margin-right: 1.5em
	}

	#contents dl.access-lead {
		margin-left: -10px;
		margin-right: -10px
	}

	#contents dl.access-lead>dd,
	#contents dl.access-lead>dt {
		float: left;
		padding-left: 10px;
		padding-right: 10px
	}

	#contents dl.access-lead>dt {
		width: 41.66667%
	}

	#contents dl.access-lead>dt img {
		width: 100%
	}

	#contents dl.access-lead>dd {
		width: 58.33333%
	}

	#contents dl.access-maps {
		margin-left: -10px;
		margin-right: -10px
	}

	#contents dl.access-maps>dd,
	#contents dl.access-maps>dt {
		float: right;
		padding-left: 10px;
		padding-right: 10px
	}

	#contents dl.access-maps>dt {
		width: 41.66667%
	}

	#contents dl.access-maps>dt img {
		width: 100%
	}

	#contents dl.access-maps>dd {
		width: 58.33333%
	}

	ul.faq-list li:not(:last-of-type) {
		padding-bottom: 20px;
		margin-bottom: 20px
	}

	ul.faq-list li>dl {
		padding-right: 10px
	}

	ul.faq-list li>dl>dd,
	ul.faq-list li>dl>dt {
		padding-left: 55px
	}

	ul.faq-list li>dl>dd:before,
	ul.faq-list li>dl>dt:before {
		width: 40px;
		height: 40px;
		border-radius: 40px;
		line-height: 40px;
		font-size: 20px;
		font-size: 2rem;
		margin-top: -8px
	}

	ul.faq-list li>dl>dd:after,
	ul.faq-list li>dl>dt:after {
		border-left: 12px solid;
		border-top: 6px solid transparent !important;
		border-bottom: 6px solid transparent !important;
		left: 36px;
		top: 8px
	}

	ul.faq-list li>dl>dt {
		margin-bottom: 1.5em
	}

	body.faq ul.faq-list {
		padding-top: 20px
	}

	ul.staff-list {
		margin-left: -5px;
		margin-right: -5px
	}

	ul.staff-list>li {
		float: left;
		width: 16.66667%;
		padding-left: 5px;
		padding-right: 5px;
		margin-bottom: 10px
	}

	dl.staff-info>dd>ul.artist-list>li {
		float: left;
		width: 50%
	}

	#cboxLoadedContent .staff-detail>.cts,
	#contents .staff-detail>.cts {
		width: 50%
	}

	#cboxLoadedContent .staff-detail>.cts h2,
	#contents .staff-detail>.cts h2 {
		margin-bottom: 1em
	}

	#cboxLoadedContent .staff-detail>.cts dl:not(:last-of-type),
	#contents .staff-detail>.cts dl:not(:last-of-type) {
		margin-bottom: 1em
	}

	#cboxLoadedContent .staff-detail>.cts dl dt,
	#contents .staff-detail>.cts dl dt {
		font-size: 16px;
		font-size: 1.6rem
	}

	#cboxLoadedContent .staff-detail>.cts dl dd,
	#contents .staff-detail>.cts dl dd {
		font-size: 12px;
		font-size: 1.2rem
	}

	body.staff dl.staff-info:not(:last-of-type) {
		margin-bottom: 20px
	}

	ul.st-voice-list>li {
		margin-bottom: 20px
	}

	ul.st-voice-list>li>dl>dd.desc,
	ul.st-voice-list>li>dl>dt.thumb {
		float: left
	}

	ul.st-voice-list>li>dl>dt.thumb {
		width: 16.66667%
	}

	ul.st-voice-list>li>dl>dd.desc {
		width: 83.33333%;
		padding-left: 30px
	}

	ul.st-voice-list>li>dl>dd.desc .balloon {
		padding: 16px
	}

	ul.st-voice-list>li>dl>dd.desc .balloon:before {
		border-right: 24px solid;
		border-top: 12px solid transparent !important;
		border-bottom: 12px solid transparent !important;
		left: -24px;
		top: 38px
	}

	ul.st-voice-list>li>dl>dd.desc .balloon:after {
		border-right: 20px solid #fff;
		border-top: 10px solid transparent !important;
		border-bottom: 10px solid transparent !important;
		left: -20px;
		top: 40px
	}

	dl.company-dl-tbl>dd,
	dl.company-dl-tbl>dt {
		padding-bottom: 20px;
		margin-bottom: 20px
	}

	dl.company-dl-tbl>dt {
		float: left;
		width: 25%;
		padding-left: 10px;
		padding-right: 10px
	}

	dl.company-dl-tbl>dd {
		padding-left: 25%;
		padding-right: 10px
	}

	dl.company-dl-tbl>dd>dl>dd {
		margin-left: .5em;
		line-height: 1.4 !important
	}

	dl.company-dl-tbl>dd>dl>dd:not(:last-of-type) {
		margin-bottom: 8px
	}

	.privacy-lead {
		padding: 30px 10px
	}

	ol.privacy-list>li {
		padding: 20px 10px
	}

	ol.privacy-list>li>dl>dt {
		margin-bottom: .5em
	}

	.nav-sitemap>ul {
		margin-left: -10px;
		margin-right: -10px
	}

	.nav-sitemap>ul>li {
		float: left;
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 16px
	}

	.nav-sitemap>ul>li>a {
		background: #fff;
		border-radius: 4px;
		padding: 12px 10px
	}

	.nav-sitemap>ul>li>a:before {
		width: 14px;
		height: 14px;
		border-radius: 14px;
		margin-top: -7px
	}

	.nav-sitemap>ul>li>a:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		margin-right: 5px
	}

	.nav-sitemap>ul>li>ul {
		margin-top: 10px
	}

	.nav-sitemap>ul>li>ul>li>a {
		padding-left: 20px
	}

	.nav-sitemap>ul>li>ul>li>a:before {
		width: 6px;
		height: 6px;
		left: 5px;
		top: .8em
	}

	.nav-sitemap>ul>li {
		width: 33.33333%
	}

	.nav-sitemap>ul>li>a:hover {
		opacity: .8
	}

	#contents dl.form {
		overflow: hidden
	}

	#contents dl.form>dt {
		font-weight: bold;
		font-size: 13px;
		font-size: 1.3rem
	}

	#contents dl.form>dd {
		font-size: 13px;
		font-size: 1.3rem;
		border-bottom: 1px dotted #ccc;
		padding-bottom: 4px;
		margin-bottom: 10px
	}

	#contents dl.form>dd font[color=red] {
		display: block
	}

	#contents dl.form>dd input[type=checkbox],
	#contents dl.form>dd input[type=radio] {
		margin: 3px
	}

	#contents dl.form+div.button {
		text-align: center
	}

	#contents dl.form+div.button>a,
	#contents dl.form+div.button>input {
		border-radius: 4px;
		color: #fff;
		border: 0;
		padding: 15px 30px;
		font-size: 1.3rem;
		margin: 20px auto;
		display: inline-block;
		font-weight: bold
	}

	#contents dl.form+div.button>a.back,
	#contents dl.form+div.button>input.back {
		background-color: #fff !important
	}

	#contents dl.form+div.button>a {
		text-decoration: none;
		text-align: center;
		margin-right: 20px
	}

	#contents dl.form+div.button>a:last-child {
		margin-right: 0
	}

	body.voice #contents dl.form+div.button>a,
	body.voice #contents dl.form+div.button>input {
		background: #e5521f;
		border: 2px solid #e5521f
	}

	body.voice #contents dl.form+div.button>a.back,
	body.voice #contents dl.form+div.button>input.back {
		color: #e5521f
	}

	body.vocal #contents dl.form+div.button>a,
	body.vocal #contents dl.form+div.button>input {
		background: #e5521f;
		border: 2px solid #e5521f
	}

	body.vocal #contents dl.form+div.button>a.back,
	body.vocal #contents dl.form+div.button>input.back {
		color: #e5521f
	}

	body.guitar #contents dl.form+div.button>a,
	body.guitar #contents dl.form+div.button>input {
		background: #e5521f;
		border: 2px solid #e5521f
	}

	body.guitar #contents dl.form+div.button>a.back,
	body.guitar #contents dl.form+div.button>input.back {
		color: #e5521f
	}

	body.piano #contents dl.form+div.button>a,
	body.piano #contents dl.form+div.button>input {
		background: #ff9a78;
		border: 2px solid #ff9a78;
		color: inherit
	}

	body.piano #contents dl.form+div.button>a.back,
	body.piano #contents dl.form+div.button>input.back {
		color: inherit
	}
}

@media only screen and (min-width:980px) and (min-width:980px) {
	div.inst-msg {
		overflow: hidden
	}

	div.inst-msg>ul.img-left {
		overflow: hidden;
		text-align: center;
		margin-bottom: 1.5em
	}

	div.inst-msg>ul.img-left>li {
		display: inline-block;
		width: 30%;
		margin-right: 10px
	}

	div.inst-msg>ul.img-left>li:last-child {
		margin-right: 0
	}

	div.inst-msg>div.msg-txt {
		float: none;
		width: auto
	}

	#contents dl.form>dt {
		float: left;
		clear: both;
		width: 15em
	}

	#contents dl.form>dd {
		padding-left: 17em
	}
}

@media only screen and (min-width:980px) and (min-width:641px) and (max-width:979px) {
	div.inst-msg {
		overflow: hidden
	}

	div.inst-msg>ul.img-left {
		overflow: hidden;
		text-align: center;
		margin-bottom: 1.5em
	}

	div.inst-msg>ul.img-left>li {
		display: inline-block;
		width: 30%;
		margin-right: 10px
	}

	div.inst-msg>ul.img-left>li:last-child {
		margin-right: 0
	}

	div.inst-msg>div.msg-txt {
		float: none;
		width: auto
	}

	#contents dl.form>dt {
		float: left;
		clear: both;
		width: 15em
	}

	#contents dl.form>dd {
		padding-left: 17em
	}
}

@media only screen and (min-width:641px) and (max-width:979px) {
	.h-auto-tb {
		height: auto !important
	}

	.br-pc,
	.br-sp {
		display: none
	}

	.br-tb {
		display: block
	}

	.none-pc,
	.none-sp {
		display: block
	}

	em.none-pc,
	em.none-sp,
	span.none-pc,
	span.none-sp,
	strong.none-pc,
	strong.none-sp {
		display: inline
	}

	.none-tb {
		display: none
	}

	.visible-pc,
	.visible-sp {
		display: none
	}

	.visible-tb {
		display: block
	}

	.col-tb-1,
	.col-tb-2,
	.col-tb-3,
	.col-tb-4,
	.col-tb-5,
	.col-tb-6,
	.col-tb-7,
	.col-tb-8,
	.col-tb-9,
	.col-tb-10,
	.col-tb-11,
	.col-tb-12 {
		float: left
	}

	.col-tb-1 {
		width: 8.33333333%
	}

	.col-tb-2 {
		width: 16.66666667%
	}

	.col-tb-3 {
		width: 25%
	}

	.col-tb-4 {
		width: 33.33333333%
	}

	.col-tb-5 {
		width: 41.66666667%
	}

	.col-tb-6 {
		width: 50%
	}

	.col-tb-7 {
		width: 58.33333333%
	}

	.col-tb-8 {
		width: 66.66666667%
	}

	.col-tb-9 {
		width: 75%
	}

	.col-tb-10 {
		width: 83.33333333%
	}

	.col-tb-11 {
		width: 91.66666667%
	}

	.col-tb-12 {
		width: 100%
	}

	#main #main-inner dl.box-point dd.links>ul>li a:hover,
	.btn-def-s:hover,
	.btn-def:hover,
	.btn-link:hover,
	.btn-main-s:hover,
	.btn-main:hover,
	.btn-sub-s:hover,
	.btn-sub:hover,
	[class^=btn-]:hover {
		opacity: .9
	}

	#main #main-inner dl.box-point dd.links>ul>li a,
	.btn-link {
		padding-left: 19px
	}

	#main #main-inner dl.box-point dd.links>ul>li a:before,
	.btn-link:before {
		width: 14px;
		height: 14px;
		border-radius: 14px;
		margin-top: -7px
	}

	#main #main-inner dl.box-point dd.links>ul>li a:after,
	.btn-link:after {
		width: 6px;
		height: 6px;
		margin-top: -3px;
		margin-left: 3px
	}

	.btn-def,
	.btn-def-s,
	.btn-main,
	.btn-main-s,
	.btn-sub,
	.btn-sub-s {
		padding: 20px 20px 20px 38px;
		font-size: 16px;
		font-size: 1.6rem
	}

	.btn-def-s:before,
	.btn-def:before,
	.btn-main-s:before,
	.btn-main:before,
	.btn-sub-s:before,
	.btn-sub:before {
		width: 14px;
		height: 14px;
		border-radius: 14px;
		margin-top: -7px;
		margin-left: 10px
	}

	.btn-def-s:after,
	.btn-def:after,
	.btn-main-s:after,
	.btn-main:after,
	.btn-sub-s:after,
	.btn-sub:after {
		width: 6px;
		height: 6px;
		margin-top: -3px;
		margin-left: 13px
	}

	.btn-def-s,
	.btn-main-s,
	.btn-sub-s {
		font-size: 12px;
		font-size: 1.2rem;
		padding: 8px 8px 8px 27px
	}

	.btn-def-s:after,
	.btn-def-s:before,
	.btn-main-s:after,
	.btn-main-s:before,
	.btn-sub-s:after,
	.btn-sub-s:before {
		left: 0
	}

	.ico-arrow {
		margin-right: 14px;
		border-radius: 14px;
		width: 14px;
		height: 14px;
		margin-top: -4px
	}

	.ico-arrow:after {
		width: 5px;
		height: 5px;
		margin-left: -3px;
		margin-top: -2px
	}

	[class^=arrow-]:after,
	[class^=arrow-]:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%
	}

	[class^=arrow-]:before {
		width: 8px;
		height: 8px;
		border-radius: 8px;
		background: #ce4f24;
		margin-top: -4px
	}

	[class^=arrow-]:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 4px;
		height: 4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-top: -2px
	}

	ol.points-no>li {
		*zoom: 1
	}

	ol.points-no>li:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	.hasDatepicker+.ui-datepicker-trigger {
		width: 25px
	}

	.container {
		margin-left: 20px;
		margin-right: 20px
	}

	#nav-main-btn {
		display: none
	}

	#header .desc .container .ttls {
		float: none;
		width: 100%;
	}

	#header .desc .container .ttls .l-logo img {
		margin: 14px 0 19px 1px
	}

	#header .desc .container .ttls .btns {
		padding: 16px 0
	}

	#header .desc .container .ttls .btns .btn-def-orange {
		line-height: 68px
	}

	#header .desc .container .inq {
/*		width: 44.79%;*/
		width: 40%;
		float: left;
		padding-left: 20px;
		padding-top: 16px
	}

	#header .nav-menu ul.container {
		border-left: 1px solid rgba(0, 0, 0, 0.1)
	}

	#header .nav-menu ul.container li {
		width: 16.66667%;
		height: 70px;
		float: left;
		border-right: 1px solid rgba(0, 0, 0, 0.1);
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 1.3;
		text-align: center
	}

	#header .nav-menu ul.container li a {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
		color: #2f2623;
		text-decoration: none
	}

	#header .nav-menu ul.container li a>span {
		display: inline-block;
		text-align: center;
		position: absolute;
		width: 100%;
		left: 0;
		top: 50%;
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%)
	}

	#header .nav-menu ul.container li a:hover {
		background: rgba(255, 255, 255, 0.3)
	}

	#header .nav-menu ul.container li.nav-bee,
	#header .nav-menu ul.container li.nav-home,
	#header .nav-menu ul.container li.nav-site {
		display: none
	}

	#header .desc .container .ttls .btns .btn-def-orange {
		font-size: 14px;
		padding: 0 10px
	}

	#header .desc .container .inq {
		width: 44.79%;
		float: left;
		padding-left: 20px;
		padding-top: 16px
	}

	#header .desc .container .inq dl dt {
		margin-bottom: 8px;
		line-height: 1.3
	}

	#header .desc .container .inq dl dd.op {
/*		width: 50%;*/
		width: 30%;
		padding-top: 0;
		font-size: 9px;
		font-size: 0.9rem;
		letter-spacing: -0.05em
	}

	#header .desc .container .inq dl dd.tel {
/*		width: 50%*/
		width: 67%;
	}

	#header .nav-menu ul.container li {
		font-size: 10px;
		font-size: 1rem
	}

	#footer .desc {
		background: #e5521f;
		padding: 40px 0
	}

	#footer .desc .container {
		background: #d5210c;
		padding: 40px 62px;
		border-radius: 4px;
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	#footer .desc .container:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#footer .desc .container ul.btns {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: none;
		width: 80.31%;
		min-width: 480px;
		position: relative;
		margin: 0 auto;
	}

	#footer .desc .container ul.btns li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: none;
		width: 100%;
/*
		float: left;
		width: 50%;
		padding-right: 20px
*/
	}

	#footer .desc .container ul.btns li .btn-def-white {
		height: 68px;
		display: block;
		padding: 26px 15px 0 30px;
		font-size: 16px;
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.13;
		position: relative
	}

	#footer .desc .container ul.btns li .btn-def-white .ico-arrow {
		position: absolute;
		left: 10px;
		top: 50%;
		margin-top: -7px;
		margin-right: 0
	}

	#footer .desc .container ul.btns li .btn-def-white .ico-mail {
		position: absolute;
		left: 12px;
		top: 50%;
		margin-top: -8px
	}

	#footer .desc .container ul.btns li .btn-def-white.btn-def-mail {
		padding: 16px 0 0 15px;
	}

	#footer .desc .container .inq {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 52.69%;
		color: #fff;
		padding-left: 20px
	}

	#footer .desc .container .inq dl dt {
		text-align: center;
		font-size: 12px;
		font-size: 1.2rem;
		margin-bottom: 12px
	}

	#footer .desc .container .inq dl dd {
		text-align: left;
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	#footer .desc .container .inq dl dd:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#footer .desc .container .inq dl dd.op {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 36.6%;
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.33
	}

	#footer .desc .container .inq dl dd.tel {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 63.4%
	}

	#footer .desc .container .inq a.btn-tel {
		display: none
	}

	#footer .nav-ctrl ul li a {
		display: none
	}

	#footer .nav-ctrl ul li a.pagetop {
		display: block;
		position: fixed;
		z-index: 99;
		right: 20px;
		bottom: 20px;
		width: 60px;
		height: 60px;
		background: #909090;
		overflow: hidden;
		text-indent: -120%;
		font-size: 1px;
		line-height: 0
	}

	#footer .nav-ctrl ul li a.pagetop:after {
		content: '';
		display: block;
		width: 14px;
		height: 14px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		border-left: 4px solid #fff;
		border-top: 4px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: -6px;
		margin-top: -2px
	}

	#footer .nav-menu {
		background: #333;
		padding-top: 39px
	}

	#footer .nav-menu .container {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	#footer .nav-menu .container:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#footer .nav-menu .container>ul {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 25%
	}

	#footer .nav-menu .container>ul>li {
		font-size: 15px;
		font-size: 1.5rem;
		font-weight: bold;
		margin-bottom: 38px
	}

	#footer .nav-menu .container>ul>li>a {
		position: relative;
		display: block;
		color: #fff;
		text-decoration: none;
		margin-bottom: 12px;
		padding-left: 20px
	}

	#footer .nav-menu .container>ul>li>a:before {
		content: '';
		display: block;
		background: #fff;
		width: 14px;
		height: 14px;
		border-radius: 14px;
		background: #fff;
		position: absolute;
		left: 0;
		top: 50%;
		margin-top: -7px
	}

	#footer .nav-menu .container>ul>li>a:after {
		content: '';
		display: block;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 5px;
		height: 5px;
		border-top: 1px solid #333;
		border-right: 1px solid #333;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
		left: 4px;
		top: 50%;
		margin-top: -3px
	}

	#footer .nav-menu .container>ul>li>a:hover {
		text-decoration: underline
	}

	#footer .nav-menu .container>ul>li>ul {
		margin-left: 29px
	}

	#footer .nav-menu .container>ul>li>ul>li {
		font-size: 12px;
		font-size: 1.2rem;
		margin-bottom: 12px
	}

	#footer .nav-menu .container>ul>li>ul>li>a {
		position: relative;
		display: block;
		color: #fff;
		text-decoration: none
	}

	#footer .nav-menu .container>ul>li>ul>li>a:before {
		content: '';
		display: inline-block;
		margin-right: 6px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 4px;
		height: 4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-bottom: 2px
	}

	#footer .nav-menu .container>ul>li>ul>li:hover {
		text-decoration: underline
	}

	#footer .nav-bee {
		background: #333;
		padding-top: 30px;
		padding-bottom: 50px
	}

	#footer .nav-bee ul {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		background: #fff;
		border-radius: 4px;
		overflow: hidden
	}

	#footer .nav-bee ul:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#footer .nav-bee ul li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 33.3333333%
	}

	#footer .nav-bee ul li a {
		display: block;
		padding: 20px 28px;
		color: #333;
		text-decoration: underline;
		border-left: 1px solid #e6e6e6;
		border-top: 1px solid #e6e6e6;
	}

	#footer .nav-bee ul li a:hover {
		text-decoration: none
	}

	#footer .nav-bee ul li a img+span {
		margin-top: 8px;
		display: block;
		text-align: center;
		color: #333;
		font-size: 12px;
		font-size: 1.2rem;
		position: relative;
		letter-spacing: -1px
	}

	#footer .nav-bee ul li a img+span .ico-arrow {
		border-radius: 11px;
		width: 11px;
		height: 11px;
		margin-right: 2px;
		margin-top: -1px
	}

	#footer .nav-bee ul li a img+span .ico-arrow:before {
		background: #333
	}

	#footer .nav-bee ul li a img+span .ico-arrow:after {
		width: 3px;
		height: 3px;
		margin-left: -2px;
		margin-top: -2px;
		border-top-color: #fff;
		border-right-color: #fff
	}

	#footer .infos {
		background: #202020;
		padding-top: 30px;
		padding-bottom: 30px
	}

	#footer .infos .nav-site {
		margin-bottom: 30px
	}

	#footer .infos .nav-site ul {
		text-align: center
	}

	#footer .infos .nav-site ul li {
		display: inline-block;
		font-size: 12px;
		font-size: 1.2rem
	}

	#footer .infos .nav-site ul li:not(:last-child) {
		margin-right: 24px
	}

	#footer .infos .nav-site ul li a {
		color: #fff
	}

	#footer .infos dl.info dt {
		text-align: center;
		font-size: 11px;
		font-size: 1.1rem;
		margin-bottom: 20px;
		color: #fff
	}

	#footer .infos dl.info dd {
		text-align: center;
		font-size: 11px;
		font-size: 1.1rem;
		color: #fff
	}

	#footer .infos dl.info dd.copyright {
		opacity: .3
	}

	#footer .desc .container ul.btns li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: none;
		width: 100%;
/*
		float: left;
		width: 50%;
		padding-right: 20px
*/
	}

	#footer .desc .container ul.btns li .btn-def-white {
		padding: 20px 0 0 10px;
		font-size: 12px;
		font-size: 1.2rem
	}

	#footer .desc .container ul.btns li .btn-def-white .ico-arrow {
		position: absolute;
		left: 8px;
		top: 50%;
		margin-top: -7px;
		margin-right: 0
	}

	#footer .desc .container ul.btns li .btn-def-white .ico-mail {
		position: absolute;
		left: 8px;
		top: 50%;
		margin-top: -8px
	}

	#footer .desc .container ul.btns li .btn-def-white .ico-mail img {
		width: 24px
	}

	#footer .desc .container ul.btns li .btn-def-white.btn-def-mail {
		padding: 16px 0 0 15px;
	}

	#footer .desc .container .inq dl dt {
		margin-bottom: 12px
	}

	#footer .desc .container .inq dl dd.op {
		width: 50%;
		letter-spacing: -1px
	}

	#footer .desc .container .inq dl dd.tel {
		width: 50%
	}

	#footer .desc .container .inq a.btn-tel {
		display: none
	}

	#breadcrumb {
		background: #eaeaea;
		padding: 14px 0
	}

	#breadcrumb ol {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	#breadcrumb ol:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#breadcrumb ol li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.1;
		font-weight: bold
	}

	#breadcrumb ol li:not(:last-child):after {
		content: '';
		display: inline-block;
		vertical-align: middle;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 8px;
		height: 8px;
		border-top: 1px solid #333;
		border-right: 1px solid #333;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-left: 8px;
		margin-right: 10px;
		margin-top: -2px
	}

	#breadcrumb ol li a {
		font-weight: normal;
		color: #333;
		text-decoration: underline
	}

	#breadcrumb ol li a:hover {
		text-decoration: none
	}

	#contents {
		padding-bottom: 60px
	}

	#contents dd,
	#contents dt,
	#contents li,
	#contents p,
	#contents td,
	#contents th {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 2
	}

	#contents p:not(:last-of-type) {
		margin-bottom: 1em
	}

	#contents #wrapper {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: -10px;
		margin-right: -10px
	}

	#contents #wrapper:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#contents #wrapper #aside,
	#contents #wrapper #main {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		padding-left: 10px;
		padding-right: 10px
	}

	#contents #wrapper #main {
		width: 75%;
		float: left
	}

	#contents #wrapper #aside {
		width: 25%;
		float: right
	}

	#contents #wrapper #aside-inner,
	#contents #wrapper #main-inner {
		height: 100%
	}

	#main #main-inner .page-ttl {
		height: 120px;
		line-height: 1.3;
		padding: 34px 30px 0;
		margin-bottom: 30px;
		border-radius: 4px
	}

	#main #main-inner .page-ttl small {
		font-size: 14px;
		font-size: 1.4rem
	}

	#main #main-inner .page-ttl strong {
		font-size: 30px;
		font-size: 3rem
	}

	#main #main-inner .page-ttl em {
		display: block;
		font-style: normal;
		font-size: 16px;
		font-size: 1.6rem
	}

	#main #main-inner .page-ttl.line1 {
		padding-top: 42px
	}

	#main #main-inner .midashi2,
	#main #main-inner dl.ins-dtl-cts>dt {
		font-size: 20px;
		font-size: 2rem;
		font-weight: bold;
		margin-bottom: 1em;
		padding-left: 20px;
		line-height: 1.2
	}

	#main #main-inner .midashi2:before,
	#main #main-inner dl.ins-dtl-cts>dt:before {
		width: 6px;
		height: 24px
	}

	#main #main-inner .midashi3 {
		font-size: 16px;
		font-size: 1.6rem;
		font-weight: bold;
		margin-bottom: 1em;
		padding-left: 20px;
		line-height: 1.2
	}

	#main #main-inner .midashi3:before {
		width: 10px;
		height: 10px;
		margin-top: .25em
	}

	#main #main-inner .section {
		margin-bottom: 3.5em
	}

	#main #main-inner ol.list-no li {
		padding-left: 44px;
		margin-bottom: 1.5em
	}

	#main #main-inner ol.list-no li>.no {
		display: block;
		width: 34px;
		height: 34px;
		border-radius: 34px;
		text-align: center;
		line-height: 34px;
		color: #fff;
		font-weight: bold;
		font-size: 18px;
		font-size: 1.8rem
	}

	#main #main-inner ul.list-card {
		margin-left: -10px;
		margin-right: -10px
	}

	#main #main-inner ul.list-card li.card {
		float: left;
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 20px;
		width: 50%;
		margin-bottom: 20px
	}

	#main #main-inner ul.list-card li.card>dl {
		padding: 10px;
		display: table;
		width: 100%;
		height: 100%;
	}

	#main #main-inner ul.list-card li.card>dl>dd.info,
	#main #main-inner ul.list-card li.card>dl>dt.thumb {
		display: table-cell;
		vertical-align: middle
	}

	#main #main-inner ul.list-card li.card>dl>dt.thumb {
		width: 32.83582%
	}

	#main #main-inner ul.list-card li.card>dl>dd.info,
	#main #main-inner ul.list-card li.card>dl>dt.thumb img {
		width: 100%;
	}

	#main #main-inner ul.list-card li.card>dl>dd.info {
		width: 67.16418%;
		padding-left: 14px
	}

	#main #main-inner ul.list-card li.card>dl>dd.info>dl>dt {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 1.3;
		font-weight: bold;
		color: #e5521f;
		margin-bottom: .5em
	}

	#main #main-inner ul.list-card li.card>dl>dd.info>dl>dd {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.6
	}

	#main #main-inner ul[class^=imgs-] {
		margin-left: -10px;
		margin-right: -10px
	}

	#main #main-inner ul[class^=imgs-] li {
		float: left;
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 20px
	}

	#main #main-inner ul.imgs-col3 li {
		width: 33.33333%
	}

	#main #main-inner ul.imgs-col2 li {
		width: 50%
	}

	#main #main-inner dl.box-point {
		padding: 30px
	}

	#main #main-inner dl.box-point dt.ttl {
		padding-left: 36px;
		font-size: 16px;
		font-size: 1.6rem;
		margin-bottom: .5em
	}

	#main #main-inner dl.box-point dt.ttl>.ico {
		width: 27px;
		height: 27px;
		border-radius: 27px;
		line-height: 27px;
		font-size: 20px;
		font-size: 2rem
	}

	body.vocal .nav-side a {
		background: #e8c446
	}

	body.vocal .nav-side a:after {
		border-top-color: #e8c446 !important;
		border-right-color: #e8c446 !important
	}

	body.vocal .nav-side a+ul li.current a {
		background: rgba(232, 196, 70, 0.3)
	}

	body.vocal .nav-side a+ul li a {
		background: rgba(232, 196, 70, 0.5)
	}

	body.piano .nav-side a {
		background: #ff9a78
	}

	body.piano .nav-side a:after {
		border-top-color: #ff9a78 !important;
		border-right-color: #ff9a78 !important
	}

	body.piano .nav-side a+ul li.current a {
		background: rgba(255, 154, 120, 0.3)
	}

	body.piano .nav-side a+ul li a {
		background: rgba(255, 154, 120, 0.5)
	}

	body.guitar .nav-side a {
		background: #90dae7
	}

	body.guitar .nav-side a:after {
		border-top-color: #90dae7 !important;
		border-right-color: #90dae7 !important
	}

	body.guitar .nav-side a+ul li.current a {
		background: rgba(249, 184, 92, 0.3)
	}

	body.guitar .nav-side a+ul li a {
		background: rgba(249, 184, 92, 0.5)
	}

	body.voice .nav-side a {
		background: #bddb51
	}

	body.voice .nav-side a:after {
		border-top-color: #bddb51 !important;
		border-right-color: #bddb51 !important
	}

	body.voice .nav-side a+ul li.current a {
		background: rgba(189, 219, 81, 0.3)
	}

	body.voice .nav-side a+ul li a {
		background: rgba(189, 219, 81, 0.5)
	}

	body.bass .nav-side a {
		background: #aeeccd
	}

	body.bass .nav-side a:after {
		border-top-color: #aeeccd !important;
		border-right-color: #aeeccd !important
	}

	body.bass .nav-side a+ul li.current a {
		background: rgba(174, 236, 205, 0.3)
	}

	body.bass .nav-side a+ul li a {
		background: rgba(174, 236, 205, 0.5)
	}

	body.dj .nav-side a {
		background: #c8b5f1
	}

	body.dj .nav-side a:after {
		border-top-color: #c8b5f1 !important;
		border-right-color: #c8b5f1 !important
	}

	body.dj .nav-side a+ul li.current a {
		background: rgba(200, 181, 241, 0.3)
	}

	body.dj .nav-side a+ul li a {
		background: rgba(200, 181, 241, 0.5)
	}

	body.uku .nav-side a {
		background: #fecc89;
	}

	body.uku .nav-side a:after {
		border-top-color: #fecc89 !important;
		border-right-color: #fecc89 !important
	}

	body.uku .nav-side a+ul li.current a {
		background: rgba(249, 160, 34, 0.3)
	}

	body.uku .nav-side a+ul li a {
		background: rgba(249, 160, 34, 0.5)
	}

	#aside #aside-inner {
		border-radius: 4px;
		background: #fff !important;
		padding: 10px
	}

	#aside #aside-inner .nav-side a {
		position: relative;
		display: block;
		padding: 12px 24px 12px 10px;
		font-size: 14px;
		font-size: 1.4rem;
		text-decoration: none;
		font-weight: bold;
		color: #333
	}

	#aside #aside-inner .nav-side a:after,
	#aside #aside-inner .nav-side a:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 10px
	}

	#aside #aside-inner .nav-side a:before {
		width: 14px;
		height: 14px;
		border-radius: 14px;
		margin-top: -7px;
		background: #fff
	}

	#aside #aside-inner .nav-side a:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 6px;
		height: 6px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-top: -3px;
		margin-right: 5px
	}

	#aside #aside-inner .nav-side>ul>li>a {
		padding: 12px 24px 12px 10px
	}

	#aside #aside-inner .nav-side>ul>li>ul {
		margin-top: 1px
	}

	#aside #aside-inner .nav-side>ul>li>ul>li {
		margin-bottom: 1px
	}

	#aside #aside-inner .nav-side>ul>li>ul>li>a,
	#aside #aside-inner .nav-side>ul>li>ul>li>span {
		display: block;
		padding: 12px 24px 12px 20px
	}

	#aside #aside-inner .nav-side>ul>li>ul>li>a:before,
	#aside #aside-inner .nav-side>ul>li>ul>li>span:before {
		background: none
	}

	#aside #aside-inner .nav-side>ul>li>ul>li.current>a:after,
	#aside #aside-inner .nav-side>ul>li>ul>li.current>a:before,
	#aside #aside-inner .nav-side>ul>li>ul>li.current>span:after,
	#aside #aside-inner .nav-side>ul>li>ul>li.current>span:before {
		display: none
	}

	#aside #aside-inner ul.bnrs-side {
		margin-top: 20px
	}

	#aside #aside-inner ul.bnrs-side li {
		margin-bottom: 10px
	}

	body.fix {
		padding-top: 40px
	}

	#header .nav-menu.fix {
		position: fixed;
		z-index: 99;
		left: 0;
		top: 0;
		width: 100%
	}

	#header .nav-menu.fix ul.container>li {
		height: 40px
	}

	body.fix #fix-contact-pc {
		display: block
	}

	body.end #fix-contact-pc {
		display: none
	}

	#fix-contact-pc {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		display: none;
		position: fixed;
		z-index: 10;
		left: 0;
		bottom: 0;
		width: 100%;
		background: rgba(229, 82, 31, 0.8);
		padding: 10px 0 30px;
	}

	#fix-contact-pc .container {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	#fix-contact-pc .container:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#fix-contact-pc .container ul.btns {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: none;
		width: 80.31%;
		max-width: 500px;;
		position: relative;
		margin: 0 auto;
	}

	#fix-contact-pc .container ul.btns li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
/*
		float: left;
		width: 50%;
		padding-right: 20px
*/
		float: none;
		width: 100%;
	}

	#fix-contact-pc .container ul.btns li .btn-def-white {
		height: 68px;
		display: block;
		padding: 26px 15px 0 30px;
		font-size: 16px;
		font-size: 1.6rem;
		font-weight: bold;
		line-height: 1.13;
		position: relative
	}

	#fix-contact-pc .container ul.btns li .btn-def-white .ico-arrow {
		position: absolute;
		left: 10px;
		top: 50%;
		margin-top: -7px;
		margin-right: 0
	}

	#fix-contact-pc .container ul.btns li .btn-def-white .ico-mail {
		position: absolute;
		left: 12px;
		top: 50%;
		margin-top: -8px
	}

	#fix-contact-pc .container ul.btns li .btn-def-white.btn-def-mail {
		padding: 18px 15px 0 52px
	}

	#fix-contact-pc .container .inq {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 52.69%;
		color: #fff;
		padding-left: 20px
	}

	#fix-contact-pc .container .inq dl {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	#fix-contact-pc .container .inq dl:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#fix-contact-pc .container .inq dl dt {
		font-weight: bold;
		margin-bottom: 8px;
		text-align: center;
		text-align: center;
		font-size: 12px;
		font-size: 1.2rem;
		margin-bottom: 12px
	}

	#fix-contact-pc .container .inq dl dd {
		text-align: left;
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left
	}

	#fix-contact-pc .container .inq dl dd:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#fix-contact-pc .container .inq dl dd.op {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 36%;
		padding-top: 10px;
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.33;
		font-weight: bold;
		text-align: left;
		letter-spacing: -0.05em
	}

	#fix-contact-pc .container .inq dl dd.tel {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 64%
	}

	#fix-contact-pc .container .inq dl dd.tel img {
		max-height: 40px
	}

	#fix-contact-sp {
		display: none
	}

	#fix-contact-pc .container ul.btns li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
/*
		float: left;
		width: 50%;
		padding-right: 20px
*/
		float: none;
		width: 100%;
	}

	#fix-contact-pc .container ul.btns li .btn-def-white {
		padding: 20px 0 0 10px;
		font-size: 12px;
		font-size: 1.2rem
	}

	#fix-contact-pc .container ul.btns li .btn-def-white .ico-arrow {
		position: absolute;
		left: 8px;
		top: 50%;
		margin-top: -7px;
		margin-right: 0
	}

	#fix-contact-pc .container ul.btns li .btn-def-white .ico-mail {
		position: absolute;
		left: 8px;
		top: 50%;
		margin-top: -8px
	}

	#fix-contact-pc .container ul.btns li .btn-def-white .ico-mail img {
		width: 24px
	}

	#fix-contact-pc .container ul.btns li .btn-def-white.btn-def-mail {
		padding: 20px 0 0 30px
	}

	#fix-contact-pc .container .inq dl dt {
		margin-bottom: 12px
	}

	#fix-contact-pc .container .inq dl dd.op {
		width: 50%;
		letter-spacing: -1px
	}

	#fix-contact-pc .container .inq dl dd.tel {
		width: 50%
	}

	#contents .box-free_trial dl.inner {
		padding: 20px;
		margin-left: -10px;
		margin-right: -10px
	}

	#contents .box-free_trial dl.inner dd.desc,
	#contents .box-free_trial dl.inner dt.thumb {
		float: left;
		padding-left: 10px;
		padding-right: 10px
	}

	#contents .box-free_trial dl.inner dt.thumb {
		width: 33.33333%
	}

	#contents .box-free_trial dl.inner dd.desc {
		width: 66.66667%
	}

	#contents .box-free_trial dl.inner dd.desc>dl>dt {
		font-size: 18px;
		font-size: 1.8rem
	}

	#contents .box-free_trial dl.inner dd.desc>dl>dd {
		font-size: 14px;
		font-size: 1.4rem
	}

	#contents .box-free_trial dl.inner dd.btns {
		padding-left: 10px;
		padding-right: 10px;
		width: 100%
	}

	#cboxLoadedContent dd,
	#cboxLoadedContent dt,
	#cboxLoadedContent li,
	#cboxLoadedContent p,
	#cboxLoadedContent td,
	#cboxLoadedContent th {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 2
	}

	#cboxLoadedContent p:not(:last-of-type) {
		margin-bottom: 1em
	}

	#cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt,
	#cboxLoadedContent .midashi2,
	#main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt {
		font-size: 20px;
		font-size: 2rem;
		font-weight: bold;
		margin-bottom: 1em;
		padding-left: 20px;
		line-height: 1.2
	}

	#cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt:before,
	#cboxLoadedContent .midashi2:before,
	#main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt:before {
		width: 6px;
		height: 24px
	}

	#cboxLoadedContent .midashi3 {
		font-size: 16px;
		font-size: 1.6rem;
		font-weight: bold;
		margin-bottom: 1em;
		padding-left: 20px;
		line-height: 1.2
	}

	#cboxLoadedContent .midashi3:before {
		width: 10px;
		height: 10px;
		margin-top: .25em
	}

	.c-txt-imp {
		color: #996633
	}

	body.index #contents .mv .owl-stage-outer {
		background: #fff
	}

	body.index #contents .mv .owl-controls {
		margin-top: 20px;
		margin-bottom: 30px
	}

	/* body.index #contents .mv .owl-controls .owl-dots .owl-dot img {
		height: 80px
	} */

	body.index #contents .nav-menu {
		padding: 40px 0 40px
	}

	body.index #contents .nav-menu .container>ul {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: -10px;
		margin-right: -10px
	}

	body.index #contents .nav-menu .container>ul:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	body.index #contents .nav-menu .container>ul>li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 33.33333%;
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 20px
	}

	body.index #contents .nav-menu .container>ul>li>dl {
		padding: 20px
	}

	body.index #contents .nav-menu .container>ul>li>dl>dt {
		margin-bottom: 16px
	}

	body.index #contents .nav-menu .container>ul>li>dl>dd>dl>dt {
		margin-bottom: 16px;
		font-size: 16px;
		font-size: 1.6rem;
		line-height: 1.1
	}

	body.index #contents .nav-menu .container>ul>li>dl>dd>dl>dd {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 2
	}

	body.index #contents .schools {
		padding-bottom: 60px
	}

	body.index #contents .schools h2 {
		font-size: 28px;
		font-size: 2.8rem;
		padding-top: 80px;
		padding-bottom: 40px
	}

	body.index #contents .schools p {
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 2;
		margin-bottom: 40px
	}

	body.index #contents .schools ul.school-list {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: -10px;
		margin-right: -10px
	}

	body.index #contents .schools ul.school-list:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	body.index #contents .schools ul.school-list>li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 33.33333%;
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 20px
	}

	body.index #contents .schools ul.school-list>li>dl {
		padding: 10px
	}

	body.index #contents .schools ul.school-list>li>dl>dt {
		width: 37.54%
	}

	body.index #contents .schools ul.school-list>li>dl>dd {
		width: 62.46%;
		padding-left: 14px
	}

	body.index #contents .schools ul.school-list>li>dl>dd>dl>dt {
		margin-top: 4px;
		margin-bottom: 12px;
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 1.3
	}

	body.index #contents .schools ul.school-list>li>dl>dd>dl>dd {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.6
	}

	body.index #contents .bnrs {
		padding-top: 60px;
		padding-bottom: 40px
	}

	body.index #contents .bnrs .container>.items {
		position: relative;
		padding: 0 40px
	}

	body.index #contents .bnrs .container>.items .owl-controls .owl-nav .owl-next,
	body.index #contents .bnrs .container>.items .owl-controls .owl-nav .owl-prev {
		background: #333;
		width: 20px;
		height: 100%;
		position: absolute;
		top: 0
	}

	body.index #contents .bnrs .container>.items .owl-controls .owl-nav .owl-prev {
		left: 0
	}

	body.index #contents .bnrs .container>.items .owl-controls .owl-nav .owl-prev:after {
		content: '';
		display: block;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 7px;
		height: 7px;
		border-left: 2px solid #fff;
		border-bottom: 2px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
		top: 50%;
		left: 50%;
		margin-top: -4px;
		margin-left: -3px
	}

	body.index #contents .bnrs .container>.items .owl-controls .owl-nav .owl-next {
		right: 0
	}

	body.index #contents .bnrs .container>.items .owl-controls .owl-nav .owl-next:after {
		content: '';
		display: block;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 7px;
		height: 7px;
		border-right: 2px solid #fff;
		border-top: 2px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		position: absolute;
		top: 50%;
		right: 50%;
		margin-top: -4px;
		margin-right: -3px
	}

	body.index #contents .news {
		padding: 80px 0 60px
	}

	body.index #contents .news>.row {
		margin-left: -10px;
		margin-right: -10px
	}

	body.index #contents .news>.row>.col {
		float: left;
		width: 49%;
		padding-left: 10px;
		padding-right: 10px
	}

	body.index #contents .news>.row>.col+.col {
		float: right;
	}

	body.index #contents .news .blog,
	body.index #contents .news .fb-box,
	body.index #contents .news .pickup {
		background: #fff;
		height: 500px
	}

	body.index #contents .news .blog .feed-wrap,
	body.index #contents .news .pickup .feed-wrap {
		height: 450px;
		overflow: scroll
	}

	body.index #contents .news .blog .feed-wrap ul.feed,
	body.index #contents .news .pickup .feed-wrap ul.feed {
		background: #fff
	}

	body.index #contents .news .blog .feed-wrap ul.feed>li,
	body.index #contents .news .pickup .feed-wrap ul.feed>li {
		padding: 10px 16px
	}

	body.index #contents .news .blog .feed-wrap ul.feed>li:nth-child(even),
	body.index #contents .news .pickup .feed-wrap ul.feed>li:nth-child(even) {
		background: #f8f8f8
	}

	body.index #contents .news .blog .feed-wrap ul.feed>li dl dd,
	body.index #contents .news .blog .feed-wrap ul.feed>li dl dt,
	body.index #contents .news .pickup .feed-wrap ul.feed>li dl dd,
	body.index #contents .news .pickup .feed-wrap ul.feed>li dl dt {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.5
	}

	body.index #contents .news .blog .feed-wrap .jspContainer .jspVerticalBar .jspTrack,
	body.index #contents .news .pickup .feed-wrap .jspContainer .jspVerticalBar .jspTrack {
		background: #fee5da
	}

	body.index #contents .news .blog .feed-wrap .jspContainer .jspVerticalBar .jspDrag,
	body.index #contents .news .pickup .feed-wrap .jspContainer .jspVerticalBar .jspDrag {
		background: #f47e47
	}

	body.index #contents .news .pickup h2 {
		background: #e5521f;
		font-size: 18px;
		font-size: 1.8rem;
		color: #fff;
		padding: 18px 20px;
		height: 50px;
		overflow: hidden;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	body.index #contents .news .pickup .feed-wrap {
		height: 450px
	}

	body.index #contents .news .blog h2+p {
		background: #fff6f3;
		padding: 10px 16px;
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.5;
		height: 50px;
		overflow: hidden;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box
	}

	body.index #contents .news .blog .feed-wrap {
		height: 165px
	}

	#contents .cource-detail {
		padding-bottom: 3.5em;
		margin-bottom: 3.5em;
		padding: 20px 0;
		margin-left: -10px;
		margin-right: -10px
	}

	#contents .cource-detail #main #main-inner dl.ins-dtl-cts>dt,
	#contents .cource-detail .midashi2,
	#contents .cource-detail .midashi3,
	#main #main-inner #contents .cource-detail dl.ins-dtl-cts>dt {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 50%;
		margin-left: 10px;
		padding-right: 10px
	}

	#contents .cource-detail>.info,
	#contents .cource-detail>.price {
		float: right;
		width: 50%;
		padding-left: 10px;
		padding-right: 10px
	}

	#contents .cource-detail>.price {
		margin-top: -100px
	}

	.dj #contents .cource-detail>.price {
		margin-top: -50px
	}

	#contents .cource-detail>.price img {
		width: 100%
	}

	#contents .cource-detail>.price .notice {
		font-size: 11px;
		font-size: 1.1rem
	}

	#contents dl.cource-cam {
		background: #fff;
		border-radius: 4px;
		padding: 20px 30px !important
	}

	#contents dl.cource-cam dt.ttl {
		position: relative;
		color: #e5521f;
		margin: -20px -30px 0;
		padding-top: 10px;
		padding-left: 80px !important;
		font-size: 24px;
		font-size: 2.4rem;
		font-weight: bold
	}

	#contents dl.cource-cam dt.ttl .badge {
		width: 70px;
		height: 70px;
		padding-top: 16px;
		margin-left: -10px;
		margin-top: -10px
	}

	#contents dl.cource-cam dd.desc ul.items {
		margin-left: -10px;
		margin-right: -10px
	}

	#contents dl.cource-cam dd.desc ul.items>li {
		padding-left: 10px;
		padding-right: 10px;
		float: left;
		width: 50%;
		text-align: center
	}

	#contents dl.cource-cam dd.desc ul.items>li:not(:last-child):after {
		display: inline-block;
		content: '+';
		font-size: 30px;
		font-size: 3rem;
		font-weight: bold;
		color: #88bf48;
		position: absolute;
		right: -.3em;
		top: 50%;
		margin-top: -.5em
	}

	#contents dl.cource-cam dd.more {
		border-top: 2px solid #e5521f;
		margin-top: 10px;
		padding-top: 10px
	}

	#contents dl.cource-cam dd.more p {
		margin-bottom: 0
	}

	#contents dl.cource-cam dd.more #main #main-inner dl.box-point dd.links>ul>li a,
	#contents dl.cource-cam dd.more .btn-def,
	#contents dl.cource-cam dd.more .btn-def-s,
	#contents dl.cource-cam dd.more .btn-link,
	#contents dl.cource-cam dd.more .btn-main,
	#contents dl.cource-cam dd.more .btn-main-s,
	#contents dl.cource-cam dd.more .btn-sub,
	#contents dl.cource-cam dd.more .btn-sub-s,
	#contents dl.cource-cam dd.more [class^=btn-],
	#main #main-inner dl.box-point dd.links>ul>li #contents dl.cource-cam dd.more a {
		width: 100%;
		display: block
	}

	#contents dl.cource-cam dd.more>ul.btns {
		margin-top: 6px
	}

	#contents dl.cource-cam dd.more>ul.btns li {
		display: inline-block;
		margin-right: 1.5em
	}

	#contents dl.access-lead {
		margin-left: -10px;
		margin-right: -10px
	}

	#contents dl.access-lead>dd,
	#contents dl.access-lead>dt {
		float: left;
		padding-left: 10px;
		padding-right: 10px
	}

	#contents dl.access-lead>dt {
		width: 41.66667%
	}

	#contents dl.access-lead>dt img {
		width: 100%
	}

	#contents dl.access-lead>dd {
		width: 58.33333%
	}

	#contents dl.access-maps {
		margin-left: -10px;
		margin-right: -10px
	}

	#contents dl.access-maps>dd,
	#contents dl.access-maps>dt {
		float: right;
		padding-left: 10px;
		padding-right: 10px
	}

	#contents dl.access-maps>dt {
		width: 41.66667%
	}

	#contents dl.access-maps>dt img {
		width: 100%
	}

	#contents dl.access-maps>dd {
		width: 58.33333%
	}

	ul.faq-list li:not(:last-of-type) {
		padding-bottom: 20px;
		margin-bottom: 20px
	}

	ul.faq-list li>dl {
		padding-right: 10px
	}

	ul.faq-list li>dl>dd,
	ul.faq-list li>dl>dt {
		padding-left: 55px
	}

	ul.faq-list li>dl>dd:before,
	ul.faq-list li>dl>dt:before {
		width: 40px;
		height: 40px;
		border-radius: 40px;
		line-height: 40px;
		font-size: 20px;
		font-size: 2rem;
		margin-top: -8px
	}

	ul.faq-list li>dl>dd:after,
	ul.faq-list li>dl>dt:after {
		border-left: 12px solid;
		border-top: 6px solid transparent !important;
		border-bottom: 6px solid transparent !important;
		left: 36px;
		top: 8px
	}

	ul.faq-list li>dl>dt {
		margin-bottom: 1.5em
	}

	body.faq ul.faq-list {
		padding-top: 20px
	}

	ul.staff-list {
		margin-left: -5px;
		margin-right: -5px
	}

	ul.staff-list>li {
		float: left;
		width: 16.66667%;
		padding-left: 5px;
		padding-right: 5px;
		margin-bottom: 10px
	}

	dl.staff-info>dd>ul.artist-list>li {
		float: left;
		width: 50%
	}

	#cboxLoadedContent .staff-detail>.cts,
	#contents .staff-detail>.cts {
		width: 50%
	}

	#cboxLoadedContent .staff-detail>.cts h2,
	#contents .staff-detail>.cts h2 {
		margin-bottom: 1em
	}

	#cboxLoadedContent .staff-detail>.cts dl:not(:last-of-type),
	#contents .staff-detail>.cts dl:not(:last-of-type) {
		margin-bottom: 1em
	}

	#cboxLoadedContent .staff-detail>.cts dl dt,
	#contents .staff-detail>.cts dl dt {
		font-size: 16px;
		font-size: 1.6rem
	}

	#cboxLoadedContent .staff-detail>.cts dl dd,
	#contents .staff-detail>.cts dl dd {
		font-size: 12px;
		font-size: 1.2rem
	}

	body.staff dl.staff-info:not(:last-of-type) {
		margin-bottom: 20px
	}

	ul.st-voice-list>li {
		margin-bottom: 20px
	}

	ul.st-voice-list>li>dl>dd.desc,
	ul.st-voice-list>li>dl>dt.thumb {
		float: left
	}

	ul.st-voice-list>li>dl>dt.thumb {
		width: 16.66667%
	}

	ul.st-voice-list>li>dl>dd.desc {
		width: 83.33333%;
		padding-left: 30px
	}

	ul.st-voice-list>li>dl>dd.desc .balloon {
		padding: 16px
	}

	ul.st-voice-list>li>dl>dd.desc .balloon:before {
		border-right: 24px solid;
		border-top: 12px solid transparent !important;
		border-bottom: 12px solid transparent !important;
		left: -24px;
		top: 38px
	}

	ul.st-voice-list>li>dl>dd.desc .balloon:after {
		border-right: 20px solid #fff;
		border-top: 10px solid transparent !important;
		border-bottom: 10px solid transparent !important;
		left: -20px;
		top: 40px
	}

	dl.company-dl-tbl>dd,
	dl.company-dl-tbl>dt {
		padding-bottom: 20px;
		margin-bottom: 20px
	}

	dl.company-dl-tbl>dt {
		float: left;
		width: 25%;
		padding-left: 10px;
		padding-right: 10px
	}

	dl.company-dl-tbl>dd {
		padding-left: 25%;
		padding-right: 10px
	}

	dl.company-dl-tbl>dd>dl>dd {
		margin-left: .5em;
		line-height: 1.4 !important
	}

	dl.company-dl-tbl>dd>dl>dd:not(:last-of-type) {
		margin-bottom: 8px
	}

	.privacy-lead {
		padding: 30px 10px
	}

	ol.privacy-list>li {
		padding: 20px 10px
	}

	ol.privacy-list>li>dl>dt {
		margin-bottom: .5em
	}

	.nav-sitemap>ul {
		margin-left: -10px;
		margin-right: -10px
	}

	.nav-sitemap>ul>li {
		float: left;
		padding-left: 10px;
		padding-right: 10px;
		margin-bottom: 16px
	}

	.nav-sitemap>ul>li>a {
		background: #fff;
		border-radius: 4px;
		padding: 12px 10px
	}

	.nav-sitemap>ul>li>a:before {
		width: 14px;
		height: 14px;
		border-radius: 14px;
		margin-top: -7px
	}

	.nav-sitemap>ul>li>a:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 6px;
		height: 6px;
		margin-top: -3px;
		margin-right: 5px
	}

	.nav-sitemap>ul>li>ul {
		margin-top: 10px
	}

	.nav-sitemap>ul>li>ul>li>a {
		padding-left: 20px
	}

	.nav-sitemap>ul>li>ul>li>a:before {
		width: 6px;
		height: 6px;
		left: 5px;
		top: .8em
	}

	.nav-sitemap>ul>li {
		width: 50%
	}

	#contents dl.form {
		overflow: hidden
	}

	#contents dl.form>dt {
		font-weight: bold;
		font-size: 13px;
		font-size: 1.3rem
	}

	#contents dl.form>dd {
		font-size: 13px;
		font-size: 1.3rem;
		border-bottom: 1px dotted #ccc;
		padding-bottom: 4px;
		margin-bottom: 10px
	}

	#contents dl.form>dd font[color=red] {
		display: block
	}

	#contents dl.form>dd input[type=checkbox],
	#contents dl.form>dd input[type=radio] {
		margin: 3px
	}

	#contents dl.form+div.button {
		text-align: center
	}

	#contents dl.form+div.button>a,
	#contents dl.form+div.button>input {
		border-radius: 4px;
		color: #fff;
		border: 0;
		padding: 15px 30px;
		font-size: 1.3rem;
		margin: 20px auto;
		display: inline-block;
		font-weight: bold
	}

	#contents dl.form+div.button>a.back,
	#contents dl.form+div.button>input.back {
		background-color: #fff !important
	}

	#contents dl.form+div.button>a {
		text-decoration: none;
		text-align: center;
		margin-right: 20px
	}

	#contents dl.form+div.button>a:last-child {
		margin-right: 0
	}

	body.voice #contents dl.form+div.button>a,
	body.voice #contents dl.form+div.button>input {
		background: #e5521f;
		border: 2px solid #e5521f
	}

	body.voice #contents dl.form+div.button>a.back,
	body.voice #contents dl.form+div.button>input.back {
		color: #e5521f
	}

	body.vocal #contents dl.form+div.button>a,
	body.vocal #contents dl.form+div.button>input {
		background: #e5521f;
		border: 2px solid #e5521f
	}

	body.vocal #contents dl.form+div.button>a.back,
	body.vocal #contents dl.form+div.button>input.back {
		color: #e5521f
	}

	body.guitar #contents dl.form+div.button>a,
	body.guitar #contents dl.form+div.button>input {
		background: #e5521f;
		border: 2px solid #e5521f
	}

	body.guitar #contents dl.form+div.button>a.back,
	body.guitar #contents dl.form+div.button>input.back {
		color: #e5521f
	}

	body.piano #contents dl.form+div.button>a,
	body.piano #contents dl.form+div.button>input {
		background: #ff9a78;
		border: 2px solid #ff9a78;
		color: inherit
	}

	body.piano #contents dl.form+div.button>a.back,
	body.piano #contents dl.form+div.button>input.back {
		color: inherit
	}
}

@media only screen and (min-width:641px) and (max-width:979px) and (min-width:980px) {
	div.inst-msg {
		overflow: hidden
	}

	div.inst-msg>ul.img-left {
		overflow: hidden;
		text-align: center;
		margin-bottom: 1.5em
	}

	div.inst-msg>ul.img-left>li {
		display: inline-block;
		width: 30%;
		margin-right: 10px
	}

	div.inst-msg>ul.img-left>li:last-child {
		margin-right: 0
	}

	div.inst-msg>div.msg-txt {
		float: none;
		width: auto
	}

	#contents dl.form>dt {
		float: left;
		clear: both;
		width: 15em
	}

	#contents dl.form>dd {
		padding-left: 17em
	}
}

@media only screen and (min-width:641px) and (max-width:979px) and (min-width:641px) and (max-width:979px) {
	div.inst-msg {
		overflow: hidden
	}

	div.inst-msg>ul.img-left {
		overflow: hidden;
		text-align: center;
		margin-bottom: 1.5em
	}

	div.inst-msg>ul.img-left>li {
		display: inline-block;
		width: 30%;
		margin-right: 10px
	}

	div.inst-msg>ul.img-left>li:last-child {
		margin-right: 0
	}

	div.inst-msg>div.msg-txt {
		float: none;
		width: auto
	}

	#contents dl.form>dt {
		float: left;
		clear: both;
		width: 15em
	}

	#contents dl.form>dd {
		padding-left: 17em
	}
}

@media only screen and (max-width:640px) {
	.h-auto-sp {
		height: auto !important
	}

	.br-pc,
	.br-tb {
		display: none
	}

	.br-sp {
		display: block
	}

	.none-pc,
	.none-tb {
		display: block
	}

	em.none-pc,
	em.none-tb,
	span.none-pc,
	span.none-tb,
	strong.none-pc,
	strong.none-tb {
		display: inline
	}

	.none-sp {
		display: none
	}

	.visible-pc,
	.visible-tb {
		display: none
	}

	.visible-sp {
		display: block
	}

	.col-sp-1,
	.col-sp-2,
	.col-sp-3,
	.col-sp-4,
	.col-sp-5,
	.col-sp-6,
	.col-sp-7,
	.col-sp-8,
	.col-sp-9,
	.col-sp-10,
	.col-sp-11,
	.col-sp-12 {
		float: left
	}

	.col-sp-1 {
		width: 8.33333333%
	}

	.col-sp-2 {
		width: 16.66666667%
	}

	.col-sp-3 {
		width: 25%
	}

	.col-sp-4 {
		width: 33.33333333%
	}

	.col-sp-5 {
		width: 41.66666667%
	}

	.col-sp-6 {
		width: 50%
	}

	.col-sp-7 {
		width: 58.33333333%
	}

	.col-sp-8 {
		width: 66.66666667%
	}

	.col-sp-9 {
		width: 75%
	}

	.col-sp-10 {
		width: 83.33333333%
	}

	.col-sp-11 {
		width: 91.66666667%
	}

	.col-sp-12 {
		width: 100%
	}

	#main #main-inner dl.box-point dd.links>ul>li a,
	.btn-link {
		padding-left: 15px
	}

	#main #main-inner dl.box-point dd.links>ul>li a:before,
	.btn-link:before {
		width: 10px;
		height: 10px;
		border-radius: 10px;
		margin-top: -5px
	}

	#main #main-inner dl.box-point dd.links>ul>li a:after,
	.btn-link:after {
		width: 4px;
		height: 4px;
		margin-top: -2px;
		margin-left: 2px
	}

	.btn-def,
	.btn-def-s,
	.btn-main,
	.btn-main-s,
	.btn-sub,
	.btn-sub-s {
		padding: 15px 15px 15px 37px;
		font-size: 14px;
		font-size: 1.4rem
	}

	.btn-def-s:before,
	.btn-def:before,
	.btn-main-s:before,
	.btn-main:before,
	.btn-sub-s:before,
	.btn-sub:before {
		width: 10px;
		height: 10px;
		border-radius: 10px;
		margin-top: -5px;
		margin-left: 15px
	}

	.btn-def-s:after,
	.btn-def:after,
	.btn-main-s:after,
	.btn-main:after,
	.btn-sub-s:after,
	.btn-sub:after {
		width: 4px;
		height: 4px;
		margin-top: -2px;
		margin-left: 17px
	}

	.btn-def-s,
	.btn-main-s,
	.btn-sub-s {
		font-size: 12px;
		font-size: 1.2rem;
		padding: 8px 8px 8px 25px
	}

	.btn-def-s:after,
	.btn-def-s:before,
	.btn-main-s:after,
	.btn-main-s:before,
	.btn-sub-s:after,
	.btn-sub-s:before {
		left: 0
	}

	.btn-def-s:before,
	.btn-main-s:before,
	.btn-sub-s:before {
		margin-left: 8px
	}

	.btn-def-s:after,
	.btn-main-s:after,
	.btn-sub-s:after {
		margin-left: 10px
	}

	.ico-arrow {
		margin-right: 3px;
		border-radius: 8px;
		width: 8px;
		height: 8px;
		margin-top: -2px
	}

	.ico-arrow:after {
		width: 3px;
		height: 3px;
		margin-left: -2px;
		margin-top: -1.5px
	}

	[class^=arrow-]:after,
	[class^=arrow-]:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%
	}

	[class^=arrow-]:before {
		width: 8px;
		height: 8px;
		border-radius: 8px;
		margin-top: -4px
	}

	[class^=arrow-]:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 4px;
		height: 4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-top: -2px
	}

	ol.points-no>li {
		*zoom: 1
	}

	ol.points-no>li:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	.hasDatepicker+.ui-datepicker-trigger {
		width: 25px
	}

	#contents .container {
		margin-left: 10px;
		margin-right: 10px
	}

	body.vocal #nav-main-btn {
		background-color: #e8c446
	}

	body.piano #nav-main-btn {
		background-color: #ff9a78
	}

	body.guitar #nav-main-btn {
		background-color: #90dae7
	}

	body.voice #nav-main-btn {
		background-color: #bddb51
	}

	body.bass #nav-main-btn {
		background-color: #aeeccd
	}

	body.dj #nav-main-btn {
		background-color: #c8b5f1
	}

	body.uku #nav-main-btn {
		background-color: #fecc89;
	}

	#nav-main-btn {
		display: block;
		width: 55px;
		height: 55px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 3
	}

	#nav-main-btn span {
		display: block;
		background: #fff;
		width: 25px;
		height: 4px;
		position: absolute;
		left: 14px;
		transition: all 0.4s;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s
	}

	#nav-main-btn span:first-child {
		top: 17px
	}

	#nav-main-btn span:nth-child(2) {
		top: 50%;
		margin-top: -2px
	}

	#nav-main-btn span:last-child {
		bottom: 16px
	}

	#nav-main-btn.active span:first-child {
		-webkit-transform: translateY(9px) rotate(45deg);
		-moz-transform: translateY(9px) rotate(45deg);
		-ms-transform: translateY(9px) rotate(45deg);
		transform: translateY(9px) rotate(45deg)
	}

	#nav-main-btn.active span:nth-child(2) {
		opacity: 0
	}

	#nav-main-btn.active span:last-child {
		-webkit-transform: translateY(-9px) rotate(-45deg);
		-moz-transform: translateY(-9px) rotate(-45deg);
		-ms-transform: translateY(-9px) rotate(-45deg);
		transform: translateY(-9px) rotate(-45deg)
	}

	#header {
		position: fixed !important;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9;
		height: 55px
	}

	#contents {
		padding-top: 55px
	}

	#contents .anchor {
		margin-top: -55px;
		padding-top: 55px
	}

	body.menu-open {
		width: 100%;
		height: 100%;
		overflow: hidden
	}

	#header {
		background: #fff;
		position: relative
	}

	#header:before {
		content: '';
		position: absolute;
		z-index: 2;
		left: 0;
		top: 0;
		width: 100%;
		height: 55px;
		background: #fff
	}

	#header:after {
		content: '';
		position: absolute;
		z-index: 2;
		left: 0;
		top: 51px;
		width: 100%;
		height: 4px
	}

	#header .lead {
		display: none
	}

	#header .desc {
		position: relative;
		z-index: 2
	}

	#header .desc .container {
		/*padding-right: 115px;*/
		padding-right: 65px;
	}

	#header .desc .container .ttls .l-logo img {
		margin: 8px 10px 6px;
		width: 68px
	}

	.dj #header .desc .container .ttls .l-logo img {
		width: 56px
	}

	#header .desc .container .ttls .btns {
		padding: 8px 0
	}

	#header .desc .container .ttls .btns .btn-def-orange {
		font-size: 11px;
		line-height: 29px;
		padding: 0 10px;
		display: none;
	}

	#header .desc .container .inq {
		display: none
	}

	.l-header-cv-sp {
		display: block;
		float: right;
		margin-top: 7px;
		width: 100px;
		position: relative;
	}

	.l-header-cv-sp a:before {
		display: block;
		content: "";
		width: 95px;
		height: 100%;
		background-image: url(../img/parts/btn_cv_header_sp_balloon.gif);
		background-repeat: no-repeat;
		background-size: 70%;
		background-position: left 64%;
		position: absolute;
		top: 0;
		left: -44px;
	}

	.l-header-tel-sp {
		display: block;
		position: absolute;
		right: 55px;
		top: 0;
		width: 51px;
	}

	#header .nav-menu {
		display: none;
		background: rgba(0, 0, 0, 0.7) !important;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%
	}

	#header .nav-menu:before {
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.7)
	}

	#header .nav-menu.open {
		display: block
	}

	#header .nav-menu ul.container {
		margin-top: 55px;
		background: #333;
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: -1px
	}

	#header .nav-menu ul.container:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#header .nav-menu ul.container>li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 50%;
		float: left;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		border-left: 1px solid rgba(255, 255, 255, 0.2);
		font-size: 11px;
		font-size: 1.1rem
	}

	#header .nav-menu ul.container>li>a {
		display: block;
		color: #fff;
		text-decoration: none
	}

	#header .nav-menu ul.container>li>a>span {
		line-height: 40px;
		padding: 0 10px 0 25px;
		position: relative
	}

	#header .nav-menu ul.container>li>a>span:after,
	#header .nav-menu ul.container>li>a>span:before {
		content: '';
		position: absolute
	}

	#header .nav-menu ul.container>li>a>span:before {
		background: #fff;
		border-radius: 8px;
		width: 8px;
		height: 8px;
		left: 10px;
		top: 50%;
		margin-top: -4px
	}

	#header .nav-menu ul.container>li>a>span:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 3px;
		height: 3px;
		border-top: 1px solid #333;
		border-right: 1px solid #333;
		left: 13px;
		top: 50%;
		margin-left: -1px;
		margin-top: -1.5px;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg)
	}

	#header .nav-menu ul.container>li>a:hover {
		background: rgba(255, 255, 255, 0.3)
	}

	#header .nav-menu ul.container>li.nav-home {
		width: 100%;
		background: #d5d5d5
	}

	#header .nav-menu ul.container>li.nav-home a {
		color: #333
	}

	#header .nav-menu ul.container>li.nav-home a>span:before {
		background: #333
	}

	#header .nav-menu ul.container>li.nav-home a>span:after {
		border-top-color: #fff;
		border-right-color: #fff
	}

	#header .nav-menu ul.container>li.nav-site {
		width: 100%;
		padding: 19px 10px 10px;
		border-bottom: none
	}

	#header .nav-menu ul.container>li.nav-site ul {
		text-align: center
	}

	#header .nav-menu ul.container>li.nav-site ul li {
		display: inline-block;
		margin-bottom: 10px
	}

	#header .nav-menu ul.container>li.nav-site ul li:not(:last-child) {
		margin-right: 20px
	}

	#header .nav-menu ul.container>li.nav-site ul li a {
		color: #fff;
		text-decoration: underline
	}

	#header .nav-menu ul.container>li.nav-bee {
		width: 100%;
		padding: 0 10px 20px;
		border-bottom: none
	}

	#header .nav-menu ul.container>li.nav-bee ul {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		background: #fff;
		overflow: hidden;
		margin-left: -1px;
		margin-top: -1px
	}

	#header .nav-menu ul.container>li.nav-bee ul:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#header .nav-menu ul.container>li.nav-bee ul li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 50%;
		border-top: 1px solid rgba(0, 0, 0, 0.2);
		border-left: 1px solid rgba(0, 0, 0, 0.2)
	}

	#header .nav-menu ul.container>li.nav-bee ul li a {
		display: block;
		padding: 10px 20px;
		text-decoration: none
	}

	#header .nav-menu ul.container>li.nav-bee ul li a img+span {
		margin-top: 8px;
		display: block;
		text-align: center;
		color: #333;
		font-size: 10px;
		font-size: 1rem;
		position: relative;
		letter-spacing: -1px
	}

	#header .nav-menu ul.container>li.nav-bee ul li a img+span .ico-arrow:before {
		background: #333
	}

	#header .nav-menu ul.container>li.nav-bee ul li a img+span .ico-arrow:after {
		border-top-color: #fff;
		border-right-color: #fff
	}

	#footer .desc {
		background: #e5521f
	}

	#footer .desc .container {
		margin-left: 10px;
		margin-right: 10px;
		padding: 15px 0;
	}

	#footer .desc .container ul.btns {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#footer .desc .container ul.btns li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
/*		width: 50%;*/
		width: 100%;
		text-align: center;
		margin: 0 auto;
		padding-left: 6px;
		padding-right: 6px
	}

	#footer .desc .container ul.btns li .btn-item {
		height: 18vw;
/*
		max-width: 200px;
		width: 45vw;
*/
		max-width: 100%;
		width: 100%;
		max-height: 70px;
	}

	#footer .desc .container ul.btns li .btn-def-white {
		height: 41px;
		display: block;
		padding: 15px 0 0 14px;
		font-size: 2.5vw;
		line-height: 1.13;
		position: relative
	}

	#footer .desc .container ul.btns li .btn-def-white .ico-arrow {
		position: absolute;
		left: 5px;
		top: 50%;
		margin-top: -4px;
		margin-right: 0
	}

	#footer .desc .container ul.btns li .btn-def-white .ico-mail {
		position: absolute;
		left: 12px;
		top: 50%;
		margin-top: -5px
	}

	#footer .desc .container ul.btns li .btn-def-white .ico-mail img {
		width: 16px
	}

	#footer .desc .container ul.btns li .btn-def-white.btn-def-mail {
		padding: 10px 0 0 16px
	}

	#footer .desc .container .inq {
		color: #fff;
		clear: both;
		padding-top: 1px
	}

	#footer .desc .container .inq dl dt {
		text-align: center;
		font-size: 9px;
		font-size: 0.9rem;
		font-weight: bold;
		letter-spacing: -.05em;
		margin-bottom: 12px;
		clear: both;
		margin-top: 20px;
	}

	#footer .desc .container .inq dl dd {
		text-align: center
	}

	#footer .desc .container .inq dl dd.op {
		font-size: 9px;
		font-size: 0.9rem;
		line-height: 1.33;
		margin-bottom: 12px
	}

	#footer .desc .container .inq dl dd.tel {
		width: 68.33%;
		float: left
	}

	#footer .desc .container .inq a.btn-tel {
		display: block;
		float: right;
		width: 27%;
		height: 34px;
		position: relative;
		padding: 7px 0 0 14px;
		font-size: 9px;
		font-size: 0.9rem;
		letter-spacing: -.05em
	}

	#footer .desc .container .inq a.btn-tel .ico-tel {
		width: 13px;
		position: absolute;
		left: 4px;
		top: 50%;
		margin-top: -6px
	}

	#footer .nav-ctrl .container>ul,
	#footer .nav-menu .container>ul {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: -1px
	}

	#footer .nav-ctrl .container>ul:after,
	#footer .nav-menu .container>ul:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#footer .nav-ctrl .container>ul>li,
	#footer .nav-menu .container>ul>li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 50%;
		font-size: 11px;
		font-size: 1.1rem
	}

	#footer .nav-ctrl .container>ul>li>a,
	#footer .nav-menu .container>ul>li>a {
		display: block;
		text-decoration: none;
		line-height: 40px;
		padding: 0 10px 0 25px;
		position: relative
	}

	#footer .nav-ctrl .container>ul>li>a:after,
	#footer .nav-ctrl .container>ul>li>a:before,
	#footer .nav-menu .container>ul>li>a:after,
	#footer .nav-menu .container>ul>li>a:before {
		content: '';
		position: absolute
	}

	#footer .nav-ctrl .container>ul>li>a:before,
	#footer .nav-menu .container>ul>li>a:before {
		border-radius: 8px;
		width: 8px;
		height: 8px;
		left: 10px;
		top: 50%;
		margin-top: -4px
	}

	#footer .nav-ctrl .container>ul>li>a:after,
	#footer .nav-menu .container>ul>li>a:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 3px;
		height: 3px;
		border-top: 1px solid;
		border-right: 1px solid;
		left: 13px;
		top: 50%;
		margin-left: -1px;
		margin-top: -1.5px;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg)
	}

	#footer .nav-ctrl .container>ul>li>ul,
	#footer .nav-menu .container>ul>li>ul {
		display: none
	}

	#footer .nav-ctrl {
		background: #d5d5d5
	}

	#footer .nav-ctrl .container>ul>li {
		border-bottom: 1px solid rgba(0, 0, 0, 0.2);
		border-left: 1px solid rgba(0, 0, 0, 0.2)
	}

	#footer .nav-ctrl .container>ul>li>a {
		color: #333
	}

	#footer .nav-ctrl .container>ul>li>a:before {
		background: #333
	}

	#footer .nav-ctrl .container>ul>li>a:after {
		border-top-color: #fff;
		border-right-color: #fff
	}

	#footer .nav-menu {
		background: #333
	}

	#footer .nav-menu .container>ul>li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		border-left: 1px solid rgba(255, 255, 255, 0.2)
	}

	#footer .nav-menu .container>ul>li>a {
		color: #fff
	}

	#footer .nav-menu .container>ul>li>a:before {
		background: #fff
	}

	#footer .nav-menu .container>ul>li>a:after {
		border-top-color: #333;
		border-right-color: #333
	}

	#footer .nav-bee {
		padding: 15px 10px 15px;
		border-bottom: none
	}

	#footer .nav-bee ul {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		background: #fff;
		overflow: hidden;
		margin-left: -1px;
		margin-top: -1px
	}

	#footer .nav-bee ul:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#footer .nav-bee ul li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 50%;
		border-top: 1px solid rgba(0, 0, 0, 0.2);
		border-left: 1px solid rgba(0, 0, 0, 0.2)
	}

	#footer .nav-bee ul li a {
		display: block;
		padding: 10px 20px;
		text-decoration: none
	}

	#footer .nav-bee ul li a img+span {
		margin-top: 8px;
		display: block;
		text-align: center;
		color: #333;
		font-size: 10px;
		font-size: 1rem;
		position: relative;
		letter-spacing: -1px
	}

	#footer .nav-bee ul li a img+span .ico-arrow:before {
		background: #333
	}

	#footer .nav-bee ul li a img+span .ico-arrow:after {
		border-top-color: #fff;
		border-right-color: #fff
	}

	#footer .infos {
		background: #202020;
		padding: 20px 0 40px
	}

	#footer .infos .nav-site {
		margin-bottom: 10px
	}

	#footer .infos .nav-site ul {
		text-align: center
	}

	#footer .infos .nav-site ul li {
		display: inline-block;
		margin-bottom: 10px;
		font-size: 11px;
		font-size: 1.1rem
	}

	#footer .infos .nav-site ul li:not(:last-child) {
		margin-right: 20px
	}

	#footer .infos .nav-site ul li a {
		color: #fff;
		text-decoration: underline
	}

	#footer .infos dl.info dt {
		text-align: center;
		font-size: 9px;
		font-size: 0.9rem;
		line-height: 1.6;
		margin-bottom: 16px;
		color: #fff
	}

	#footer .infos dl.info dd {
		text-align: center;
		font-size: 9px;
		font-size: 0.9rem;
		line-height: 1.3;
		color: #fff
	}

	#footer .infos dl.info dd.copyright {
		opacity: .3
	}

	#contents>.container {
		margin-left: 0;
		margin-right: 0
	}

	#contents dd,
	#contents dt,
	#contents li,
	#contents p,
	#contents td,
	#contents th {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.67
	}

	#contents p:not(:last-of-type) {
		margin-bottom: 1em
	}

	#contents #wrapper #aside,
	#contents #wrapper #main {
		height: auto !important
	}

	#wrapper {
		padding-top: 89px
	}

	#main #main-inner {
		padding: 20px 10px
	}

	#main #main-inner .page-ttl {
		height: 89px;
		line-height: 1.3;
		padding: 26px 20px 0;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%
	}

	#main #main-inner .page-ttl small {
		font-size: 10px;
		font-size: 1rem
	}

	#main #main-inner .page-ttl strong {
		font-size: 18px;
		font-size: 1.8rem
	}

	#main #main-inner .page-ttl em {
		display: block;
		font-style: normal;
		font-size: 12px;
		font-size: 1.2rem
	}

	#main #main-inner .staff-mv {
		height: 89px !important;
		padding: inherit !important;
	}

	#main #main-inner .staff-mv .bg {
		width: 83px;
		padding-top: 83px;
	}

	#main #main-inner .page-ttl.line1 {
		padding-top: 32px
	}

	#main #main-inner .midashi2,
	#main #main-inner dl.ins-dtl-cts>dt {
		font-size: 16px;
		font-size: 1.6rem;
		font-weight: bold;
		margin-bottom: 1em;
		padding-left: 15px
	}

	#main #main-inner .midashi2:before,
	#main #main-inner dl.ins-dtl-cts>dt:before {
		width: 5px;
		height: 18px;
		margin-top: -2px
	}

	#main #main-inner .midashi3 {
		font-size: 14px;
		font-size: 1.4rem;
		font-weight: bold;
		margin-bottom: 1em;
		padding-left: 15px
	}

	#main #main-inner .midashi3:before {
		width: 8px;
		height: 8px;
		margin-top: .2em
	}

	#main #main-inner .section {
		margin-bottom: 3.5em
	}

	#main #main-inner ol.list-no li {
		padding-left: 35px;
		margin-bottom: 1em
	}

	#main #main-inner ol.list-no li>.no {
		display: block;
		width: 26px;
		height: 26px;
		border-radius: 26px;
		text-align: center;
		line-height: 26px;
		color: #fff;
		font-weight: bold;
		font-size: 14px;
		font-size: 1.4rem
	}

	#main #main-inner ul.list-card li.card {
		width: 100%;
		margin-bottom: 10px
	}

	#main #main-inner ul.list-card li.card>dl {
		padding: 7px;
		display: table;
		width: 100%
	}

	#main #main-inner ul.list-card li.card>dl>dd.info,
	#main #main-inner ul.list-card li.card>dl>dt.thumb {
		display: table-cell;
		vertical-align: middle
	}

	#main #main-inner ul.list-card li.card>dl>dt.thumb {
		width: 29.02098%
	}

	#main #main-inner ul.list-card li.card>dl>dd.info,
	#main #main-inner ul.list-card li.card>dl>dt.thumb img {
		width: 100%;
	}

	#main #main-inner ul.list-card li.card>dl>dd.info {
		width: 70.97902%;
		padding-left: 10px
	}

	#main #main-inner ul.list-card li.card>dl>dd.info>dl>dt {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.3;
		font-weight: bold;
		color: #e5521f;
		margin-bottom: .2em
	}

	#main #main-inner ul.list-card li.card>dl>dd.info>dl>dd {
		font-size: 11px;
		font-size: 1.1rem;
		line-height: 1.5
	}

	#main #main-inner ul[class^=imgs-] {
		margin-left: -5px;
		margin-right: -5px
	}

	#main #main-inner ul[class^=imgs-] li {
		float: left;
		padding-left: 5px;
		padding-right: 5px;
		margin-bottom: 10px
	}

	#main #main-inner ul.imgs-col3 li {
		width: 50%
	}

	#main #main-inner ul.imgs-col2 li {
		width: 100%
	}

	#main #main-inner dl.box-point {
		padding: 20px
	}

	#main #main-inner dl.box-point dt.ttl {
		padding-left: 26px;
		font-size: 14px;
		font-size: 1.4rem;
		margin-bottom: .5em
	}

	#main #main-inner dl.box-point dt.ttl>.ico {
		width: 20px;
		height: 20px;
		border-radius: 20px;
		line-height: 20px;
		font-size: 14px;
		font-size: 1.4rem
	}

	body.vocal .nav-side a:before {
		background: #e8c446
	}

	body.piano .nav-side a:before {
		background: #ff9a78
	}

	body.guitar .nav-side a:before {
		background: #90dae7
	}

	body.voice .nav-side a:before {
		background: #bddb51
	}

	#aside #aside-inner {
		background: url(../img/parts/aside-bg.png) repeat center top;
		padding: 15px 10px 10px
	}

	#aside #aside-inner .nav-side a,
	#aside #aside-inner .nav-side span {
		position: relative;
		display: block;
		font-size: 11px;
		font-size: 1.1rem;
		text-decoration: none;
		font-weight: bold;
		color: #333;
		background: #fff;
		padding: 14px 20px 14px 10px
	}

	#aside #aside-inner .nav-side a:after,
	#aside #aside-inner .nav-side a:before,
	#aside #aside-inner .nav-side span:after,
	#aside #aside-inner .nav-side span:before {
		content: '';
		display: block;
		position: absolute;
		top: 50%;
		right: 10px
	}

	#aside #aside-inner .nav-side a:before,
	#aside #aside-inner .nav-side span:before {
		width: 8px;
		height: 8px;
		border-radius: 8px;
		margin-top: -4px
	}

	#aside #aside-inner .nav-side a:after,
	#aside #aside-inner .nav-side span:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 4px;
		height: 4px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin-top: -2px;
		margin-right: 3px
	}

	#aside #aside-inner .nav-side>ul>li>ul {
		margin-top: 1px
	}

	#aside #aside-inner .nav-side>ul>li>ul>li {
		margin-bottom: 1px;
		padding-left: 1px;
		width: 50%;
		float: left
	}

	#aside #aside-inner .nav-side>ul li.current>a,
	#aside #aside-inner .nav-side>ul .current>span {
		background: rgba(255, 255, 255, 0.5)
	}

	#aside #aside-inner .nav-side>ul>li>ul>li.current>a:after,
	#aside #aside-inner .nav-side>ul>li>ul>li.current>a:before,
	#aside #aside-inner .nav-side>ul>li>ul>li.current>span:after,
	#aside #aside-inner .nav-side>ul>li>ul>li.current>span:before {
		display: none
	}

	#aside #aside-inner .bnrs-side {
		display: none
	}

	#fix-contact-pc {
		display: none
	}

	#fix-contact-sp {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		display: block;
		position: fixed;
		z-index: 8;
/*
		right: 5px;
		bottom: 5px;
*/
		right: 0px;
		bottom: 0px;
	}

	#fix-contact-sp p {
/*		width: 85px;*/
		width: 100%;
	}

	#fix-contact-sp ul {
		display: block;
		position: relative;
		*zoom: 1;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		margin-left: -5px;
		margin-right: -5px
	}

	#fix-contact-sp ul:after {
		content: ".";
		display: block;
		clear: both;
		height: 0;
		visibility: hidden
	}

	#fix-contact-sp ul li {
		display: block;
		position: relative;
		min-height: 1px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		float: left;
		width: 33.33333%;
		padding-left: 5px;
		padding-right: 5px
	}

	#fix-contact-sp ul li a.btn-def-white {
		display: block;
		height: 34px;
		position: relative;
		font-size: 9px;
		font-size: 0.9rem;
		line-height: 1.2;
		letter-spacing: -.05em
	}

	#fix-contact-sp ul li a.btn-def-white:after,
	#fix-contact-sp ul li a.btn-def-white:before {
		content: '';
		position: absolute
	}

	#fix-contact-sp ul li a.btn-def-white:before {
		width: 7px;
		height: 7px;
		border-radius: 7px;
		background: #e5521f;
		left: 5px;
		top: 50%;
		margin-top: -3px
	}

	#fix-contact-sp ul li a.btn-def-white:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 3px;
		height: 3px;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		left: 7px;
		top: 50%;
		margin-left: -1px;
		margin-top: -1.5px;
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg)
	}

	#fix-contact-sp ul li a.btn-def-white span {
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		padding-left: 10px
	}

	#contents .box-free_trial {
		padding: 16px
	}

	#contents .box-free_trial dl.inner dt.thumb {
		margin-top: -16px;
		margin-left: -16px;
		margin-right: -16px;
		margin-bottom: 10px;
		overflow: hidden;
		max-height: 180px
	}

	#contents .box-free_trial dl.inner dt.thumb img {
		width: 100%
	}

	#contents .box-free_trial dl.inner dd.desc>dl>dt {
		font-size: 16px;
		font-size: 1.6rem
	}

	#contents .box-free_trial dl.inner dd.desc>dl>dd {
		font-size: 12px;
		font-size: 1.2rem;
		font-weight: normal
	}

	#cboxLoadedContent dd,
	#cboxLoadedContent dt,
	#cboxLoadedContent li,
	#cboxLoadedContent p,
	#cboxLoadedContent td,
	#cboxLoadedContent th {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.67
	}

	#cboxLoadedContent p:not(:last-of-type) {
		margin-bottom: 1em
	}

	#cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt,
	#cboxLoadedContent .midashi2,
	#main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt {
		font-size: 16px;
		font-size: 1.6rem;
		font-weight: bold;
		margin-bottom: 1em;
		padding-left: 15px
	}

	#cboxLoadedContent #main #main-inner dl.ins-dtl-cts>dt:before,
	#cboxLoadedContent .midashi2:before,
	#main #main-inner #cboxLoadedContent dl.ins-dtl-cts>dt:before {
		width: 5px;
		height: 18px;
		margin-top: -2px
	}

	#cboxLoadedContent .midashi3 {
		font-size: 14px;
		font-size: 1.4rem;
		font-weight: bold;
		margin-bottom: 1em;
		padding-left: 15px
	}

	#cboxLoadedContent .midashi3:before {
		width: 8px;
		height: 8px;
		margin-top: .2em
	}

	.c-txt-imp {
		color: #996633
	}

	body.index #contents .mv {
		width: 100%;
		overflow: hidden
	}

	body.index #contents .mv .owl-stage-outer {
		background: #fff
	}

	body.index #contents .mv .owl-controls {
		margin-top: 10px;
		margin-bottom: 20px
	}

	/* body.index #contents .mv .owl-controls .owl-dots .owl-dot img {
		height: 40px
	} */

	body.index #contents .nav-menu {
		padding: 15px 0
	}

	body.index #contents .nav-menu .container>ul>li:not(:last-child) {
		margin-bottom: 15px
	}

	body.index #contents .nav-menu .container>ul>li>dl {
		padding: 15px
	}

	body.index #contents .nav-menu .container>ul>li>dl>dt {
		margin-bottom: 16px
	}

	body.index #contents .nav-menu .container>ul>li>dl>dd>dl>dt {
		margin-bottom: 16px;
		font-size: 14px;
		font-size: 1.4rem;
		line-height: 1.1
	}

	body.index #contents .nav-menu .container>ul>li>dl>dd>dl>dd {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.67
	}

	body.index #contents .schools {
		padding-bottom: 15px
	}

	body.index #contents .schools h2 {
		font-size: 17px;
		font-size: 1.7rem;
		padding-top: 30px;
		padding-bottom: 15px
	}

	body.index #contents .schools p {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.67;
		margin-bottom: 20px
	}

	body.index #contents .schools ul.school-list>li:not(:last-child) {
		margin-bottom: 10px
	}

	body.index #contents .schools ul.school-list>li>dl {
		padding: 7px
	}

	body.index #contents .schools ul.school-list>li>dl>dt {
		width: 29.02%
	}

	body.index #contents .schools ul.school-list>li>dl>dd {
		width: 70.98%;
		padding-left: 11px
	}

	body.index #contents .schools ul.school-list>li>dl>dd>dl>dt {
		margin-top: 8px;
		margin-bottom: 8px;
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.1
	}

	body.index #contents .schools ul.school-list>li>dl>dd>dl>dd {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.67
	}

	body.index #contents .bnrs {
		padding: 20px 0 5px
	}

	body.index #contents .bnrs .container>.items {
		margin-left: -7px;
		margin-right: -7px;
		width: auto !important
	}

	body.index #contents .bnrs .container>.items>.item {
		float: left;
		width: 50%;
		padding-left: 7px;
		padding-right: 7px;
		margin-bottom: 15px;
		text-align: center
	}

	body.index #contents .news {
		padding: 0 10px;
	}

	body.index #contents .news .blog,
	body.index #contents .news .fb-box,
	body.index #contents .news .pickup {
		background: #fff;
		height: 350px;
		margin: 30px 0;
	}

	body.index #contents .news .blog .feed-wrap,
	body.index #contents .news .pickup .feed-wrap {
		height: 300px;
		overflow: scroll
	}

	body.index #contents .news .blog .feed-wrap ul.feed,
	body.index #contents .news .pickup .feed-wrap ul.feed {
		background: #fff
	}

	body.index #contents .news .blog .feed-wrap ul.feed>li,
	body.index #contents .news .pickup .feed-wrap ul.feed>li {
		padding: 10px 16px
	}

	body.index #contents .news .blog .feed-wrap ul.feed>li:nth-child(even),
	body.index #contents .news .pickup .feed-wrap ul.feed>li:nth-child(even) {
		background: #f8f8f8
	}

	body.index #contents .news .blog .feed-wrap ul.feed>li dl dd,
	body.index #contents .news .blog .feed-wrap ul.feed>li dl dt,
	body.index #contents .news .pickup .feed-wrap ul.feed>li dl dd,
	body.index #contents .news .pickup .feed-wrap ul.feed>li dl dt {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.5
	}

	body.index #contents .news .blog .feed-wrap .jspContainer .jspVerticalBar .jspTrack,
	body.index #contents .news .pickup .feed-wrap .jspContainer .jspVerticalBar .jspTrack {
		background: #fee5da
	}

	body.index #contents .news .blog .feed-wrap .jspContainer .jspVerticalBar .jspDrag,
	body.index #contents .news .pickup .feed-wrap .jspContainer .jspVerticalBar .jspDrag {
		background: #f47e47
	}

	body.index #contents .news .pickup h2 {
		background: #e5521f;
		font-size: 18px;
		font-size: 1.8rem;
		color: #fff;
		padding: 18px 20px;
		height: 50px;
		overflow: hidden;
		box-sizing: border-box
	}

	body.index #contents .news .pickup .feed-wrap {
		width: 100% !important;
		height: 300px
	}

	#contents .cource-detail {
		padding-bottom: 3.5em;
		margin-bottom: 3.5em;
		border-bottom: 1px solid #b8b8b8
	}

	#contents .cource-detail>.price {
		margin-top: 16px
	}

	#contents .cource-detail>.price .notice {
		font-size: 10px;
		font-size: 1rem;
		margin: 5px 0;
		padding-left: 1em;
		text-indent: -1em;
	}

	#contents dl.cource-cam {
		background: #fff;
		border-radius: 4px;
		padding: 10px 10px !important
	}

	#contents dl.cource-cam dt.ttl {
		position: relative;
		color: #e5521f;
		margin: -10px -10px 0;
		padding-top: 10px;
		padding-left: 70px;
		padding-right: 10px;
		margin-bottom: 20px;
		font-size: 18px;
		font-size: 1.8rem;
		line-height: 1.2;
		font-weight: bold
	}

	#contents dl.cource-cam dt.ttl .badge {
		width: 70px;
		height: 70px;
		padding-top: 16px;
		margin-left: -10px;
		margin-top: -10px
	}

	#contents dl.cource-cam dd.desc ul.items>li {
		margin-bottom: 30px
	}

	#contents dl.cource-cam dd.desc ul.items>li:not(:last-child):after {
		left: 50%;
		bottom: -40px;
		margin-left: -.5em
	}

	#contents dl.cource-cam dd.desc ul.items>li img {
		width: 100%
	}

	#contents dl.cource-cam dd.more {
		margin-top: 10px;
		padding-top: 10px
	}

	#contents dl.cource-cam dd.more p {
		margin-bottom: 0
	}

	#contents dl.cource-cam dd.more #main #main-inner dl.box-point dd.links>ul>li a,
	#contents dl.cource-cam dd.more .btn-def,
	#contents dl.cource-cam dd.more .btn-def-s,
	#contents dl.cource-cam dd.more .btn-link,
	#contents dl.cource-cam dd.more .btn-main,
	#contents dl.cource-cam dd.more .btn-main-s,
	#contents dl.cource-cam dd.more .btn-sub,
	#contents dl.cource-cam dd.more .btn-sub-s,
	#contents dl.cource-cam dd.more [class^=btn-],
	#main #main-inner dl.box-point dd.links>ul>li #contents dl.cource-cam dd.more a {
		width: 100%;
		display: block
	}

	#contents dl.cource-cam dd.more>ul.btns {
		margin-top: .8em
	}

	#contents dl.cource-cam dd.more>ul.btns li {
		margin-bottom: .5em
	}

	#contents dl.cource-cam dd.more>ul.btns li a {
		display: block;
		text-align: left
	}

	#contents dl.access-lead>dt {
		text-align: center;
		margin-bottom: 16px
	}

	#contents dl.access-maps>dt {
		margin-bottom: 16px
	}

	#contents dl.access-maps>dt img {
		width: 100%
	}

	#contents dl.access-maps>dd>dl {
		border-top: 1px dotted #b8b8b8
	}

	#contents dl.access-maps>dd>dl>dd,
	#contents dl.access-maps>dd>dl>dt {
		padding: 8px;
		line-height: 1.6
	}

	#contents dl.access-maps>dd>dl>dt {
		float: left;
		width: 25%;
		text-align: center;
		font-weight: bold
	}

	#contents dl.access-maps>dd>dl>dd {
		padding-left: 25%;
		border-bottom: 1px dotted #b8b8b8
	}

	ul.faq-list li:not(:last-of-type) {
		padding-bottom: 16px;
		margin-bottom: 16px
	}

	ul.faq-list li>dl {
		padding-right: 10px
	}

	ul.faq-list li>dl>dd,
	ul.faq-list li>dl>dt {
		padding-left: 45px
	}

	ul.faq-list li>dl>dd:before,
	ul.faq-list li>dl>dt:before {
		width: 30px;
		height: 30px;
		border-radius: 30px;
		line-height: 30px;
		font-size: 14px;
		font-size: 1.4rem;
		margin-top: -6px
	}

	ul.faq-list li>dl>dd:after,
	ul.faq-list li>dl>dt:after {
		border-left: 10px solid;
		border-top: 5px solid transparent !important;
		border-bottom: 5px solid transparent !important;
		left: 28px;
		top: 5px
	}

	ul.faq-list li>dl>dt {
		margin-bottom: 1.5em
	}

	body.faq ul.faq-list {
		padding-top: 16px
	}

	ul.staff-list {
		margin-left: -5px;
		margin-right: -5px
	}

	ul.staff-list>li {
		float: left;
		width: 33.33333%;
		padding-left: 5px;
		padding-right: 5px;
		margin-bottom: 10px
	}

	#cboxLoadedContent .staff-detail>.cts,
	#contents .staff-detail>.cts {
		position: relative;
		z-index: 1;
		padding-top: 65%
	}

	#cboxLoadedContent .staff-detail>.cts h2,
	#contents .staff-detail>.cts h2 {
		position: absolute !important;
		left: 0;
		top: 0;
		margin-top: 30%
	}

	#cboxLoadedContent .staff-detail>.cts dl:not(:last-of-type),
	#contents .staff-detail>.cts dl:not(:last-of-type) {
		margin-bottom: 1em
	}

	#cboxLoadedContent .staff-detail>.cts dl dt,
	#contents .staff-detail>.cts dl dt {
		font-size: 14px;
		font-size: 1.4rem;
		font-weight: bold
	}

	#cboxLoadedContent .staff-detail>.cts dl dd,
	#contents .staff-detail>.cts dl dd {
		font-size: 12px;
		font-size: 1.2rem;
		line-height: 1.4
	}

	body.staff .img-r {
		display: block;
		float: none;
		margin: 0 0 10px 0;
		text-align: center
	}

	body.staff dl.staff-info:not(:last-of-type) {
		margin-bottom: 16px
	}

	body.staff dl.staff-info>dt {
		margin-bottom: .2em
	}

	#wrapper.ins-dtl-wrap {
		padding-top: 30.76923% !important
	}

	#main #main-inner .staff-mv .txt small {
		font-size: 12px;
		font-size: 1.2rem
	}

	#main #main-inner .staff-mv .txt strong {
		font-size: 22px;
		font-size: 2.2rem
	}

	#main #main-inner dl.ins-dtl-msg:after,
	#main #main-inner dl.ins-dtl-msg:before {
		display: none
	}

	#main #main-inner dl.ins-dtl-msg>dt {
		position: absolute;
		left: 0;
		top: -1.25em;
		font-size: 18px;
		font-size: 1.8rem
	}

	#main #main-inner dl.ins-dtl-cts {
		margin-bottom: 3em
	}

	#main #main-inner dl.ins-dtl-cts>dd ul.genre-lst>li img {
		width: 33px
	}

	ul.st-voice-list>li {
		margin-bottom: 20px
	}

	ul.st-voice-list>li>dl>dd.desc,
	ul.st-voice-list>li>dl>dt.thumb {
		float: left
	}

	ul.st-voice-list>li>dl>dt.thumb {
		width: 25%
	}

	ul.st-voice-list>li>dl>dd.desc {
		width: 75%;
		padding-left: 20px
	}

	ul.st-voice-list>li>dl>dd.desc .balloon {
		padding: 10px
	}

	ul.st-voice-list>li>dl>dd.desc .balloon:before {
		border-right: 20px solid;
		border-top: 10px solid transparent !important;
		border-bottom: 10px solid transparent !important;
		left: -20px;
		top: 28px
	}

	ul.st-voice-list>li>dl>dd.desc .balloon:after {
		border-right: 16px solid #fff;
		border-top: 8px solid transparent !important;
		border-bottom: 8px solid transparent !important;
		left: -16px;
		top: 30px
	}

	body.st-voice .img-r {
		display: block;
		float: none;
		margin: 0 0 10px 0;
		text-align: center
	}

	dl.company-dl-tbl>dt {
		margin-bottom: 4px
	}

	dl.company-dl-tbl>dd {
		padding-bottom: 8px
	}

	dl.company-dl-tbl>dd:not(:last-of-type) {
		margin-bottom: 8px
	}

	dl.company-dl-tbl>dd>dl>dd {
		margin-left: .5em
	}

	dl.company-dl-tbl>dd>dl>dd:not(:last-of-type) {
		margin-bottom: 6px
	}

	.privacy-lead {
		padding: 16px 4px
	}

	ol.privacy-list>li {
		padding: 16px 4px
	}

	ol.privacy-list>li>dl>dt {
		margin-bottom: .5em
	}

	.nav-sitemap>ul>li {
		width: 100%;
		margin-bottom: 16px
	}

	.nav-sitemap>ul>li>a {
		padding: 14px 10px
	}

	.nav-sitemap>ul>li>a:before {
		width: 8px;
		height: 8px;
		border-radius: 8px;
		margin-top: -4px
	}

	.nav-sitemap>ul>li>a:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		width: 4px;
		height: 4px;
		margin-top: -2px;
		margin-right: 3px
	}

	.nav-sitemap>ul>li>ul>li:not(:last-of-type) {
		border-bottom: 1px dotted #b8b8b8
	}

	.nav-sitemap>ul>li>ul>li>a {
		display: block;
		padding-left: 20px;
		padding-top: 10px;
		padding-bottom: 10px
	}

	.nav-sitemap>ul>li>ul>li>a:before {
		width: 6px;
		height: 6px;
		left: 5px;
		top: 1.4em
	}

	#contents dl.form {
		overflow: hidden
	}

	#contents dl.form>dt {
		font-weight: bold;
		font-size: 13px;
		font-size: 1.3rem
	}

	#contents dl.form>dd {
		font-size: 13px;
		font-size: 1.3rem;
		border-bottom: 1px dotted #ccc;
		padding-bottom: 4px;
		margin-bottom: 10px
	}

	#contents dl.form>dd font[color=red] {
		display: block
	}

	#contents dl.form>dd input[type=checkbox],
	#contents dl.form>dd input[type=radio] {
		margin: 3px
	}

	#contents dl.form+div.button {
		text-align: center
	}

	#contents dl.form+div.button>a,
	#contents dl.form+div.button>input {
		border-radius: 4px;
		color: #fff;
		border: 0;
		padding: 15px 30px;
		font-size: 1.3rem;
		margin: 20px auto;
		display: inline-block;
		font-weight: bold
	}

	#contents dl.form+div.button>a.back,
	#contents dl.form+div.button>input.back {
		background-color: #fff !important
	}

	#contents dl.form+div.button>a {
		text-decoration: none;
		text-align: center;
		margin-right: 20px
	}

	#contents dl.form+div.button>a:last-child {
		margin-right: 0
	}

	body.voice #contents dl.form+div.button>a,
	body.voice #contents dl.form+div.button>input {
		background: #e5521f;
		border: 2px solid #e5521f
	}

	body.voice #contents dl.form+div.button>a.back,
	body.voice #contents dl.form+div.button>input.back {
		color: #e5521f
	}

	body.vocal #contents dl.form+div.button>a,
	body.vocal #contents dl.form+div.button>input {
		background: #e5521f;
		border: 2px solid #e5521f
	}

	body.vocal #contents dl.form+div.button>a.back,
	body.vocal #contents dl.form+div.button>input.back {
		color: #e5521f
	}

	body.guitar #contents dl.form+div.button>a,
	body.guitar #contents dl.form+div.button>input {
		background: #e5521f;
		border: 2px solid #e5521f
	}

	body.guitar #contents dl.form+div.button>a.back,
	body.guitar #contents dl.form+div.button>input.back {
		color: #e5521f
	}

	body.piano #contents dl.form+div.button>a,
	body.piano #contents dl.form+div.button>input {
		background: #ff9a78;
		border: 2px solid #ff9a78;
		color: inherit
	}

	body.piano #contents dl.form+div.button>a.back,
	body.piano #contents dl.form+div.button>input.back {
		color: inherit
	}
}

@media only screen and (max-width:640px) and (min-width:980px) {
	div.inst-msg {
		overflow: hidden
	}

	div.inst-msg>ul.img-left {
		overflow: hidden;
		text-align: center;
		margin-bottom: 1.5em
	}

	div.inst-msg>ul.img-left>li {
		display: inline-block;
		width: 30%;
		margin-right: 10px
	}

	div.inst-msg>ul.img-left>li:last-child {
		margin-right: 0
	}

	div.inst-msg>div.msg-txt {
		float: none;
		width: auto
	}

	#contents dl.form>dt {
		float: left;
		clear: both;
		width: 15em
	}

	#contents dl.form>dd {
		padding-left: 17em
	}
}

@media only screen and (max-width:640px) and (min-width:641px) and (max-width:979px) {
	div.inst-msg {
		overflow: hidden
	}

	div.inst-msg>ul.img-left {
		overflow: hidden;
		text-align: center;
		margin-bottom: 1.5em
	}

	div.inst-msg>ul.img-left>li {
		display: inline-block;
		width: 30%;
		margin-right: 10px
	}

	div.inst-msg>ul.img-left>li:last-child {
		margin-right: 0
	}

	div.inst-msg>div.msg-txt {
		float: none;
		width: auto
	}

	#contents dl.form>dt {
		float: left;
		clear: both;
		width: 15em
	}

	#contents dl.form>dd {
		padding-left: 17em
	}
}

.header-news {
	text-align: center;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 20px 0 50px;
	background-color: #eaeaea;
	line-height: 1.4;
}
/*-----------------コロナバナーのSPの時の上下余白の調整パーツ----------------------------*/
@media screen and (min-width: 641px) and (max-width: 979px){
	.header-news-sp{
		padding: 10px 10px 40px;
	}
}
@media screen and (max-width: 640px){
	.header-news-sp{
		padding: 10px 10px 30px;
	}
}
/*!!!------------------コロナバナーの上下余白の調整パーツ-------------------------!!*/
.header-news span {
	color: #ed5329;
}

.header-news-sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.header-news {
		display: none;
	}

	/* オンラインレッスンCV news start */
	.header-news-sp {
		display: block;
		text-align: center;
		font-size: 1.1rem !important;
		font-weight: bold;
		/* padding: 10px 10px 30px; */
		background-color: #eaeaea;
		line-height: 1.2 !important;
		margin-bottom: 0 !important;
		/* border-bottom: 4px solid; */
	}

	/* .header-news-sp:last-child  { */
		/* background-color: #fdebeb; */
	/* } */

	.header-news-sp-wrap .header-news-sp .online-cv {
		margin: 10px 0;
		padding: 3px 20px;
		border-radius: 13px;
		text-decoration: none;
		background-color: rgb(255, 255, 255);
	}

	/* オンラインレッスンCV news end */
	body.vocal .header-news-sp {
		border-bottom-color: #e8c446;
	}

	body.guitar .header-news-sp {
		border-bottom-color: #e8c446;
	}

	body.piano .header-news-sp {
		border-bottom-color: #ff9a78;
	}

	body.voice .header-news-sp {
		border-bottom-color: #bddb51;
	}

	body.bass .header-news-sp {
		border-bottom-color: #aeeccd;
	}

	body.dj .header-news-sp {
		border-bottom-color: #c8b5f1;
	}

	body.uku .header-news-sp {
		border-bottom-color: #fecc89;
	}

	.header-news-sp span {
		display: block;
		color: #ed5329;
		font-size: 1.2rem;
		margin-bottom: 3px;
	}
}

.price-list {
	margin-top: 5px;
}

.nopc {
	display: none;
}

@media screen and (max-width: 768px) {
	.nopc {
		display: block;
	}

	.nosp {
		display: none;
	}
}

.p-staff-wrap+.p-staff-wrap {
	margin-top: 45px;
}

.p-staff-name-wrap {
	background-color: #fff;
	padding: 65px 0 65px 40px;
	box-sizing: border-box;
	position: relative;
	height: 206px;
	margin-bottom: 6px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.p-staff-name {
	padding: 10px 0 10px 15px;
	box-sizing: border-box;
	font-size: 26px;
	border-left: 6px solid;
}

body.vocal .p-staff-name {
	border-color: #e8c446;
}

body.guitar .p-staff-name {
	border-color: #90dae7;
}

body.piano .p-staff-name {
	border-color: #ff9a78;
}

body.voice .p-staff-name {
	border-color: #bddb51;
}

body.bass .p-staff-name {
	border-color: #aeeccd;
}

body.dj .p-staff-name {
	border-color: #c8b5f1;
}

.p-staff-name span {
	display: block;
	font-size: 16px;
	margin-top: 10px;
}

.p-staff-img {
	position: absolute;
	right: 0;
	top: 0;
}

.p-staff-box {
	background-color: #fff;
	padding: 30px 30px 5px;
	box-sizing: border-box;
}

.p-staff-wrap+.p-staff-wrap {
	margin-top: 45px;
}

.p-staff-inner {
	padding-bottom: 20px;
	margin-bottom: 30px;
	background-image: url(../img/staff/bg_line.jpg);
	background-repeat: repeat-x;
	background-position: left bottom;
}

.p-staff-mh {
	font-size: 20px;
	margin-bottom: 10px;
}

body.vocal .p-staff-mh {
	color: #e8c446;
}

body.guitar .p-staff-mh {
	color: #90dae7;
}

body.piano .p-staff-mh {
	color: #ff9a78;
}

body.voice .p-staff-mh {
	color: #bddb51;
}

body.bass .p-staff-mh {
	color: #aeeccd;
}

body.dj .p-staff-mh {
	color: #c8b5f1;
}

.p-staff-list li {
	padding-left: 1.5em;
	position: relative;
	box-sizing: border-box;
}

.p-staff-list li:before {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 0;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

body.vocal .p-staff-list li:before {
	border-color: #e0ae00 transparent transparent transparent;
}

body.guitar .p-staff-list li:before {
	border-color: #90dae7 transparent transparent transparent;
}

body.piano .p-staff-list li:before {
	border-color: #ff9a78 transparent transparent transparent;
}

body.voice .p-staff-list li:before {
	border-color: #bddb51 transparent transparent transparent;
}

body.bass .p-staff-list li:before {
	border-color: #aeeccd transparent transparent transparent;
}

body.dj .p-staff-list li:before {
	border-color: #c8b5f1 transparent transparent transparent;
}

.p-staff-list li:after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 10px 10px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

body.vocal .p-staff-list li:after {
	border-color: transparent transparent #eec949 transparent;
}

body.guitar .p-staff-list li:after {
	border-color: transparent transparent rgba(249, 184, 92, 0.5) transparent;
}

body.piano .p-staff-list li:after {
	border-color: transparent transparent rgba(255, 154, 120, 0.5) transparent;
}

body.voice .p-staff-list li:after {
	border-color: transparent transparent rgba(189, 219, 81, 0.5) transparent;
}

body.bass .p-staff-list li:after {
	border-color: transparent transparent rgba(174, 236, 205, 0.5) transparent;
}

body.dj .p-staff-list li:after {
	border-color: transparent transparent rgba(200, 181, 241, 0.5) transparent;
}

#main #main-inner .page-ttl.imstaff {
	background-image: url(../img/staff/bg_mh.png);
}

@media screen and (max-width: 768px) {
	.p-staff-wrap+.p-staff-wrap {
		margin-top: 30px;
	}

	.p-staff-name-wrap {
		padding: 9% 0 9% 15px;
		height: 36.67vw;
		border-top-left-radius: 3px;
		border-top-right-radius: 3px;
	}

	.p-staff-name {
		padding: 10px 0 10px 15px;
		font-size: 20px;
		border-left: 6px solid;
	}

	.p-staff-name span {
		font-size: 12px;
	}

	.p-staff-img {
		height: 100%;
		width: auto;
	}

	.p-staff-box {
		background-color: #fff;
		padding: 20px 15px 1px;
		box-sizing: border-box;
	}

	.p-staff-inner {
		padding-bottom: 20px;
		margin-bottom: 30px;
		background-image: url(../img/staff/bg_line.jpg);
		background-repeat: repeat-x;
		background-position: left bottom;
	}

	.p-staff-mh {
		font-size: 17px;
	}

	#main #main-inner .page-ttl.imstaff {
		background-image: url(../img/staff/bg_mh_sp.png);
	}
}

.p-cource-read {
	padding: 20px 30px;
	background-color: #fff;
	border-radius: 4px;
	box-sizing: border-box;
	margin-bottom: 20px;
}

.p-cource-read-mh {
	text-align: center;
	font-size: 18px;
	padding: 15px 0;
	border-radius: 4px;
	position: relative;
	margin-bottom: 10px;
}

.p-cource-read-mh:after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 4px 0 4px;
	position: absolute;
	bottom: -6px;
	left: 0;
	right: 0;
	margin: auto;
}

body.vocal .p-cource-read-mh {
	background-color: #ebc557;
}

body.guitar .p-cource-read-mh {
	background-color: #90dae7;
}

body.piano .p-cource-read-mh {
	background-color: #ff9a78;
}

body.voice .p-cource-read-mh {
	background-color: #bddb51;
}

body.bass .p-cource-read-mh {
	background-color: #aeeccd;
}

body.dj .p-cource-read-mh {
	background-color: #c8b5f1;
}

body.uku .p-cource-read-mh {
	background-color: #fecc89;
}

body.vocal .p-cource-read-mh:after {
	border-color: #ebc557 transparent transparent transparent;
}

body.guitar .p-cource-read-mh:after {
	border-color: #90dae7 transparent transparent transparent;
}

body.piano .p-cource-read-mh:after {
	border-color: #ff9a78 transparent transparent transparent;
}

body.voice .p-cource-read-mh:after {
	border-color: #bddb51 transparent transparent transparent;
}

body.bass .p-cource-read-mh:after {
	border-color: #aeeccd transparent transparent transparent;
}

body.dj .p-cource-read-mh:after {
	border-color: #c8b5f1 transparent transparent transparent;
}

body.uku .p-cource-read-mh:after {
	border-color: #fecc89 transparent transparent transparent;
}

.p-cource-read-tag {
	float: left;
	width: 320px;
}

#contents .p-cource-read-tag li {
	width: 32%;
	float: left;
	margin: 0 2% 2% 0;
	font-size: 12px;
	color: #ec5832;
	text-align: center;
	padding: 10px 0;
	background-color: #ffe0d8;
	border-radius: 4px;
	letter-spacing: 0;
	font-weight: bold;
	box-sizing: border-box;
}

#contents .p-cource-read-tag li:nth-of-type(3n) {
	margin-right: 0;
}
#contents .p-cource-read-tag li span{
	font-size: 20px;
}
#contents .p-cource-read-tag li{
line-height: 1.2;
}
#contents .p-cource-read-price {
	font-weight: bold;
	font-size: 20px;
	text-align: right;
	line-height: 1.5;
	padding-top: 30px;
}
#contents .p-cource-read .zero{
	font-size: 150%;
}
#contents .p-cource-read .zero span{
	font-size: 150%;
	color: #ec5832;
}

#contents .p-cource-read .p-cource-read-service{
	text-align: center;	
}
.p-cource-read-price strong {
	font-size: 35px;
	color: #ec5832;
}
.p-cource-read-price strong span{
	font-size: 20px;
	color: #ec5832;
}
.p-cource-read-price span {
	font-size: 15px;
/*	letter-spacing: -0.02em;*/
}

#main #main-inner .page-ttl.imcource {
	background-image: url(../img/cource/bg_cource.png);
}

.p-cource-read-tag_free {
	padding-top: 20px;
	float: none;
	width: 100%;
}
.p-cource-read .free{
	border: 4px dashed #ec5832;
	padding: 20px;
	margin-top: 3%;
}
#contents .p-cource-read-tag_free li {
/*	width: 100%;*/
/*	float: none;*/
	margin: 0 2% 2% 0;
	font-size: 12px;
	color: #ec5832;
	text-align: center;
	padding: 15px 0;
	background-color: #ffe0d8;
	border-radius: 4px;
	letter-spacing: 0;
	font-weight: bold;
	box-sizing: border-box;
	line-height: 1.2;
}
.p-cource-read .free h2{
	color: #e5521f;
	font-size: 2.5rem;
	text-align: center;
	margin: 0 auto;
}

@media screen and (max-width: 980px) {
	.p-cource-read {
		padding: 15px 10px 10px;
	}

	.p-cource-read-tag {
		width: 100%;
		float: none;
	}

	#contents .p-cource-read-tag li {
		font-size: 10px;
	}

	#contents .p-cource-read-price {
		text-align: center;
		font-size: 16px;
		margin-top: 10px;
		padding-top: 0;
	}

	.p-cource-read-price strong {
		font-size: 40px;
	}

	.p-cource-read-price span {
		font-size: 18px;
		padding-left: 0;
	}

	#main #main-inner .page-ttl.imcource {
		background-image: url(../img/cource/bg_cource_sp.png);
	}
}

#contents .cource-detail>.price ul.price-list>li>dl>dd {
	font-weight: bold;
}

#contents .p-consultation {
	text-align: center;
	font-size: 26px;
	font-weight: bold;
	margin: 30px auto 25px;
	line-height: 1.3;
	position: relative;
	padding-bottom: 40px;
}

#contents .p-consultation:after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 100px 0 100px;
	border-color: #ec5832 transparent transparent transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

#contents .p-consultation span {
	display: inline-block;
	line-height: 1;
}

body.vocal .p-consultation span {
	background: linear-gradient(transparent 50%, #ebc557 50%);
}

body.guitar .p-consultation span {
	background: linear-gradient(transparent 50%, #90dae7 50%);
}

body.piano .p-consultation span {
	background: linear-gradient(transparent 50%, #ff9a78 50%);
}

body.voice .p-consultation span {
	background: linear-gradient(transparent 50%, #bddb51 50%);
}

@media screen and (max-width: 768px) {
	#contents .p-consultation {
		font-size: 17px;
	}

	#contents .p-consultation span {
		display: inline;
	}
}



#breadcrumb {
	background: #eaeaea;
	padding: 14px 0
}

#breadcrumb ol {
	display: block;
	position: relative;
	*zoom: 1;
	box-sizing: border-box
}

#breadcrumb ol:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden
}

#breadcrumb ol li {
	display: block;
	position: relative;
	min-height: 1px;
	box-sizing: border-box;
	float: left;
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1.1;
	font-weight: bold
}

#breadcrumb ol li:not(:last-child):after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	width: 8px;
	height: 8px;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-left: 8px;
	margin-right: 10px;
	margin-top: -2px
}

#breadcrumb ol li a {
	font-weight: normal;
	color: #333;
	text-decoration: underline
}

#breadcrumb ol li a:hover {
	text-decoration: none
}

@media screen and (max-width: 640px) {
	#breadcrumb {
		padding: 14px 14px 4px 14px;
		overflow: hidden;
		width: 100%;
		box-sizing: border-box;
	}

	#breadcrumb ol {
		width: 100%;
		overflow-x: scroll;
		overflow-y: hidden;
		white-space: nowrap;
		overflow-scrolling: touch;
		-webkit-overflow-scrolling: touch;
	}

	#breadcrumb ol li {
		margin-bottom: 10px;
		display: inline-block;
		float: none;
	}
}

.l-footer-box-wrap-wrap {
	padding: 60px 0 20px;
	border-top: 1px solid #959595;
}

.l-footer-box-wrap {
	text-align: center;
	vertical-align: middle;
}

.l-footer-box {
	display: inline-block;
	background-repeat: no-repeat;
	background-size: contain;
	width: 161px;
	height: 184px;
	vertical-align: middle;
	font-size: 0;
}

.l-footer-box-wrap:nth-of-type(1) .l-footer-box:nth-of-type(1) {
	background-image: url(/assets/img/bg01.png);
}

.l-footer-box-wrap:nth-of-type(1) .l-footer-box:nth-of-type(2) {
	background-image: url(/assets/img/bg02.png);
	margin-left: 10px;
}

.l-footer-box-wrap:nth-of-type(1) .l-footer-box:nth-of-type(3) {
	background-image: url(/assets/img/bg03.png);
	margin-left: 10px;
}

.l-footer-box-wrap:nth-of-type(1) .l-footer-box:nth-of-type(4) {
	background-image: url(/assets/img/bg04.png);
	margin-left: 10px;
}

.l-footer-box-wrap:nth-of-type(1) {
	margin-left: -87px;
}

.l-footer-box-wrap:nth-of-type(2) {
	margin-top: -34px;
	margin-left: 86px;
}

.l-footer-box-wrap:nth-of-type(2) .l-footer-box:nth-of-type(1) {
	background-image: url(/assets/img/bg05.png);
}

.l-footer-box-wrap:nth-of-type(2) .l-footer-box:nth-of-type(2) {
	background-image: url(/assets/img/bg06.png);
	margin-left: 10px;
}

.l-footer-box-wrap:nth-of-type(2) .l-footer-box:nth-of-type(3) {
	background-image: url(/assets/img/bg07.png);
	margin-left: 10px;
}

.l-footer-box-wrap:nth-of-type(2) .l-footer-box:nth-of-type(4) {
	margin-left: 10px;
}

.l-footer-box-inner {
	display: table;
	width: 100%;
	height: 100%;
}

.l-footer-box-inner p {
	display: table-cell;
	vertical-align: middle;
}

.l-footer-box-inner a {
	display: block;
	transition: .3s;
}

.l-footer-box-inner img {
	width: 75%;
	margin-top: -5%;
}

.l-footer-box-wrap:nth-of-type(2) .l-footer-box:nth-of-type(4) img {
	width: 100%;
}

@media screen and (max-width: 840px) {
	.l-footer-box {
		width: 145px;
		height: 170px;
	}
}

@media screen and (max-width: 767px) {
	.l-footer-box-wrap-wrap {
		padding: 0;
		border-top: none;
	}

	.l-footer-box {
		display: block;
		width: 100%;
		height: auto;
		background-image: none !important;
	}

	.l-footer-box-wrap {
		overflow: hidden;
	}

	.l-footer-box-wrap:nth-of-type(1),
	.l-footer-box-wrap:nth-of-type(2) {
		margin: 0;
	}

	.l-footer-box {
		float: left;
		width: 50%;
		height: auto;
		margin: 0 !important;
		border-top: 2px solid #fff;
		box-sizing: border-box;
	}

	.l-footer-box:nth-of-type(1),
	.l-footer-box:nth-of-type(2) {
		border-top: none;
	}

	.l-footer-box:nth-of-type(2n-1) {
		border-right: 1px solid #fff;
	}

	.l-footer-box:nth-of-type(2n) {
		border-left: 1px solid #fff;
	}

	.l-footer-box-wrap:nth-of-type(2) .l-footer-box:nth-of-type(4) {
		display: block;
	}

	.l-footer-box-inner {
		display: block;
		height: auto;
	}

	.l-footer-box-inner p {
		display: block;
	}

	.l-footer-box-inner a {
		display: block;
	}

	.l-footer-box-inner img {
		width: 100%;
		margin-top: 0;
	}
}



.p-top-l-bnr+.p-top-l-bnr {
	margin-top: 50px;
}

.p-top-bnr {
	overflow: hidden;
}

.p-top-bnr-item {
	width: 22.7%;
	float: left;
	margin-right: 3%;
}

.p-top-bnr-item:nth-of-type(4) {
	margin-right: 0;
}

.p-top-bnr-item img {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.p-top-l-bnr {
		margin-bottom: 20px;
	}

	.p-top-l-bnr+.p-top-l-bnr {
		margin-top: 20px;
	}

	.p-top-bnr {
		padding: 0 10px;
		margin-bottom: 30px;
	}

	.p-top-bnr-item {
		width: 48%;
		float: left;
		margin-right: 0;
	}

	.p-top-bnr-item:nth-of-type(2n) {
		float: right;
	}
}

.midashi4 {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin: 50px 0 20px;
}

.midashi4 span {
	display: inline-block;
	position: relative;
	padding: 0 28px;
}

.midashi4 span:before {
	display: block;
	content: "";
	width: 16px;
	height: 4px;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
}

.midashi4 span:after {
	display: block;
	content: "";
	width: 16px;
	height: 4px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.p-cource-slide {
	width: calc(100% - 80px);
	margin: 0 auto 30px;
}

.p-cource-slide * {
	outline: none;
}

.p-cource-slide-item a {
	display: block;
	text-decoration: none;
	color: inherit;
	padding: 0 5px;
}

.p-cource-slide-item img {
	width: 100%;
}

.p-cource-slide-name {
	display: table;
	width: 100%;
	text-align: center;
	font-size: 14px !important;
	font-weight: bold;
	line-height: 1.2 !important;
	padding: 10px;
	margin-bottom: 5px !important;
	box-sizing: border-box;
}

.p-cource-slide-name span {
	display: table-cell;
	vertical-align: middle;
}

.p-cource-slide-txt {
	font-size: 12px !important;
	line-height: 1.4 !important;
}

.p-cource-slide .slick-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 34px;
	height: 34px;
	border-radius: 34px;
	background-color: #e8c446;
	border: none;
	font-size: 0;
	z-index: 10;
}

.p-cource-slide .slick-arrow:before {
	display: block;
	content: "";
	width: 10px;
	height: 10px;
	box-sizing: border-box;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.p-cource-slide .slick-prev {
	left: -45px;
}

.p-cource-slide .slick-prev:before {
	transform: translate(2px, 0) rotate(-135deg);
}

.p-cource-slide .slick-next {
	right: -45px;
}

.p-cource-slide .slick-next:before {
	transform: translate(-2px, 0) rotate(45deg);
}

.p-cource-slide-btn {
	margin-bottom: 50px;
}

.p-cource-slide-btn .btn-def {
	padding: 12px 25px 12px 38px;
}

.vocal .midashi4 span:before,
.vocal .midashi4 span:after,
.vocal .p-cource-slide .slick-arrow {
	background-color: #e8c446;
}

.vocal .p-cource-slide-name {
	background-color: #f3e1a6;
}

.guitar .midashi4 span:before,
.guitar .midashi4 span:after,
.guitar .p-cource-slide .slick-arrow {
	background-color: #90dae7;
}

.guitar .p-cource-slide-name {
	background-color: rgba(144, 218, 231, 0.5);
}

.piano .midashi4 span:before,
.piano .midashi4 span:after,
.piano .p-cource-slide .slick-arrow {
	background-color: #ff9a78;
}

.piano .p-cource-slide-name {
	background: rgba(255, 154, 120, 0.5);
}

.voice .midashi4 span:before,
.voice .midashi4 span:after,
.voice .p-cource-slide .slick-arrow {
	background-color: #bddb51;
}

.voice .p-cource-slide-name {
	background: rgba(189, 219, 81, 0.5);
}

.bass .midashi4 span:before,
.bass .midashi4 span:after,
.bass .p-cource-slide .slick-arrow {
	background-color: #aeeccd;
}

.bass .p-cource-slide-name {
	background: rgba(174, 236, 205, 0.5);
}

.dj .midashi4 span:before,
.dj .midashi4 span:after,
.dj .p-cource-slide .slick-arrow {
	background-color: #c8b5f1;
}

.dj .p-cource-slide-name {
	background: rgba(200, 181, 241, 0.5);
}

.uku .midashi4 span:before,
.uku .midashi4 span:after,
.uku .p-cource-slide .slick-arrow {
	background-color: #fecc89;
}

.uku .p-cource-slide-name {
	background: rgba(254, 203, 137, 0.5);
}

#contents p.p-form-tel {
	font-size: 11px;
}

#contents p.p-form-tel a {
	color: inherit;
}

#contents p.p-form-tel span {
	color: #ff1c1c;
	font-weight: 700;
}

@media screen and (max-width: 640px) {
	.p-cource-slide {
		width: 75%;
		margin: 0 auto 30px;
	}

	.p-cource-slide .slick-list {
		overflow: visible;
	}

	.slick-slide {
		opacity: 0.4;
	}

	.slick-slide.slick-current {
		opacity: 1;
	}
}

/* p-speciazize popup-content  start */

.p-specialize{	
	background: url('../img/index/bg_specialize_pc.png') center / cover no-repeat;
}
.p-specialize-modal{
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.4);
	display: none;
}
.p-specialize-modal.is-active{
	display: block;
}
.p-specialize-modal-inner{
	position: absolute;	
	max-width:650px;
	width: 80%;
	height: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}
@media screen and (max-width: 1450px) {
	.p-specialize-modal-inner{
		max-width: 580px;
	}
	.p-specialize-modal-close-btn{
		top: 15px;
	}
	.p-specialize-modal-ticket{
		top: 71px;
	}
}
.p-specialize-modal-ticket{
	position: absolute;
	width: 100%;
	top: 85px;
	left: 50%;
	transform: translateX(-50%);
}
.p-specialize-modal-close-btn{
	position: absolute;
	top: 30px;
	right: 0;
	width: 115px;
	cursor: pointer
}

.p-specialize-inner{
	max-width: 870px;
	margin: 0 auto;
	padding: 50px 0;
	width: 95%;
}
.p-specialize-inner-main{
	display: flex;
	justify-content: center;
	align-items: center;
}
.p-specialize-main-thumb{
	flex-shrink: 0;
	width: 280px;
	margin-right: 15px;
	display: block!important;
}
.p-specialize-text-wrap{
	width: 570px;
}
.p-specialize-text-sub{
	font-size: 21px;
	text-align: center;
	margin-bottom: 15px;
}
.p-specialize-text-sub span{
	display: inline-block;
}
.p-specialize-text-sub-inner{
	position: relative;
	padding: 0 15px;
	font-size: 21px;
	letter-spacing: 0.04em;
	line-height: 1.5;
	font-weight: 700;
	color: #e5521f;
}
.p-specialize-text-sub-inner::before{
	position: absolute;
	bottom: 5px;
	left: 0;
	transform:  rotate(-25deg);
	content: "";
	display: block;
	width: 2px;
	height: 80%;
	background: #e5521f;
}
.p-specialize-text-sub-inner::after{
	position: absolute;
	bottom: 5px;
	right: 0;
	transform:  rotate(25deg);
	content: "";
	display: block;
	width: 2px;
	height: 80%;
	background: #e5521f;
}
.p-specialize-text-main{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
}
.p-specialize-text-lead{
	margin-right: 15px;
}
#contents .p-specialize-text-middle{
	font-size: 34px;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 0!important;
	margin-right: 15px;
}
.p-specialize-text-middle span{
	font-size: 28px;
	line-height: 1;
}
.p-specialize-mark-icn{
	width: 88px;
	height: 88px;
}
#contents .p-specialize-modal-btn{
	position: relative;
	width: 100%;
	padding: 10px 0;
	background: #e5521f;
	color: #fff;
	font-size: 16px;
	letter-spacing: 0.05em;
	font-weight: 700;
	border-radius: 5px;
	text-align: center;
	cursor: pointer;
	transition: opacity 0.4s ease-in;
}
#contents .p-specialize-modal-btn:hover{
	opacity: 0.7;
}
.p-specialize-modal-btn::before{
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	content: "";
	display: block;
	width: 15px;
	height: 15px;background: url('../../assets/img/index/icn_round_arrow.png') center /100% 100% no-repeat;
}

@media screen and (min-width: 641px) and (max-width: 980px){
.p-specialize-text-wrap{
	width: 70%;
}
.p-specialize-main-thumb{
	width: 25%;
}
#contents .p-specialize-text-middle{
	font-size: 24px;
	font-size: clamp(22px,3.5vw,28px);
}
#contents .p-specialize-text-middle span{
	font-size: 20px;
}
.p-specialize-text-lead{
	width: 25%;
	display: flex;align-items: center;
	margin-bottom: 0!important;
}
.p-specialize-mark-icn{
	width: 15%;
	display: flex;
	align-items: center;
}
.p-specialize-text-main{
	margin-bottom: 10px;
}
.p-specialize-text-sub{
	margin-bottom: 5px;
}
}
@media screen and (max-width: 640px) {
.p-specialize{
	position: relative;
	background: url('../img/index/bg_specialize_sp.png') center /100% 100% no-repeat;
}
.p-specialize::before{
	position: absolute;
	left: 0;	bottom: 0;
	content:"";
	display: block;
	width: 25vw;
	height: 18vw;
	background: url('../img/index/img_specialize_singing_girl_sp.png') center / 100% 100% no-repeat;
}
.p-specialize-inner{
	padding: 40px 0;
}
.p-specialize-main-thumb{
	display: none!important;
}
.p-specialize-main-thumb img{
	display: none!important;
}
#contents .p-specialize-text-middle{
	font-size: 28px;
	margin-right: 2%;
}
#contents .p-specialize-text-middle span{
	font-size: 24px
}
.p-specialize-text-lead{
	width: 15%;
	margin-right: 2%;
}
.p-specialize-mark-icn{
	width: 25%;
	max-width: 85px;
}
.p-specialize-text-main{
	margin-bottom: 10px;
}
#contents .p-specialize-modal-btn{
	width: 300px;
	padding: 15px 0 15px 24px;
	margin-right: 0;
	margin-left: auto;
}
.p-specialize-modal-inner{
	width: 90%;
}
.p-specialize-modal-ticket{
	height: 70vh;
	overflow-y: scroll;
}
}
@media screen and (min-width: 320px) and (max-width: 400px){
#contents .p-specialize-text-middle{
	font-size: 22px;
}
#contents .p-specialize-text-middle span{
	font-size: 18px;
}
#contents .p-specialize-modal-btn{
	width: 225px;
}
}

/* p-speciazize popup-content  end */


/* AF SP .online-cv start */

@media screen and (max-width: 768px) {
	.header-news-sp-wrap .header-news-sp .online-cv {
		margin: 10px 0;
		padding: 3px 20px;
		border-radius: 13px;
		text-decoration: none;
		background-color: rgb(255, 255, 255);
	}
}

/* AF SP .online-cv end */

/* AF SP .online-cv start */

@media screen and (max-width: 768px) {
	.header-news-sp-wrap .header-news-sp .online-cv {
		margin: 10px 0;
		padding: 3px 20px;
		border-radius: 13px;
		text-decoration: none;
		background-color: rgb(255, 255, 255);
	}
}

/* AF SP .online-cv end */





/* オンラインコース紹介用CSS start */
#contents .cource-detail>.info.p-online-page {
	float: none;
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
}

#contents .cource-detail>.price.p-online-page {
	float: right;
	width: 50%;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 0;
}

#contents .cource-detail>.info.p-online-page .cource-lead-txt {
	margin-bottom: 5rem;
}

#contents .cource-detail>.info.p-online-page ul {
	margin-top: 3rem;
	margin-bottom: 3rem;
}

#contents .cource-detail>.info.p-online-page .midashi3.p-online-midashi3 {
	width: 100%;
	margin-top: 4rem;
}

#contents .cource-detail>.info.p-online-page .ac.p-online-page-last-passage {
	margin-top: 3rem;
}

@media screen and (max-width: 768px) {
	#contents .cource-detail>.info.p-online-page {
		float: none;
		width: 100%;
	}

	#contents .cource-detail>.price.p-online-page {
		float: none;
		width: 100%;
	}

	#contents .cource-detail>.info.p-online-page .notice-list {
		margin-bottom: 2rem;
	}

	#contents .cource-detail>.p-online-page ul {
		margin-top: 3rem;
		margin-bottom: 3rem;
	}

	#contents .cource-detail>.info.p-online-page .ac.p-online-page-last-passage {
		margin-top: 3rem;
	}
}

/* オンラインコース紹介用CSS end */

/* 料金コースページ レイアウト崩れ対策CSS start  */

#main #main-inner ul.list-card {
	display: flex;
	flex-wrap: wrap;
}

#main #main-inner ul.list-card li.card {
	float: none;
}


@media screen and (max-width: 768px) {
	#main #main-inner ul.list-card {
		display: flex;
		flex-wrap: wrap;
	}

	#main #main-inner ul.list-card li.card {
		float: none;
	}
}

/* 料金コースページ レイアウト崩れ対策CSS end  */

/* modal start */
.p-modal{
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
	z-index: 15;
}
.p-modal-bg{
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100vh;
    position: absolute;
}

.p-modal-content{
	width: 655px;
	border-radius: 10px;
	background-image: url(/assets/img/bg_modal_pc.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
	position: relative;
	z-index: 20;
}

.p-modal-inner {
	padding: 30px 80px 0;
	position: relative;
}

.p-modal-btn {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}

.p-modal-lead {
	font-size: 16px;
	letter-spacing: 0.04em;
	line-height: 1.4;
	text-align: center;
	padding: 7px 0;
	background-color: #fff;
}


.p-modal-ttl {
	font-size: 20px;
	letter-spacing: 0.04em;
	margin-top: 20px;
	text-align: center;
	color: #e86436;
}

.p-modal-txt-box {
	margin-top: 10px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.p-modal-txt {
	font-size: 16px;
	line-height: 1.4 !important;
	letter-spacing: 0.04em;
	text-align: center;
	margin-left: 10px;
}

.p-modal-txt-sub {
	font-size: 16px;
	line-height: 1.4 !important;
	letter-spacing: 0.04em;
	padding: 2px 5px;
	color: #fff;
	background-color: #dbb531;
	font-weight: 700;
}

.p-modal-phone-list {
	width: 100%;
	margin-top: 17px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.p-modal-phone-list-item {
	width: 240px;
	margin-top: 10px;
}

.p-modal-phone-list-item:nth-child(even) {
	margin-left: 10px;
}

.p-modal-phone-list-item-link {
	text-decoration: none;
	pointer-events: none;
}

.p-modal-mail {
	margin-top: 30px;
	padding: 20px 0;
	border-radius: 0 0 10px 10px;
	background-color: #e86436;
}

.p-modal-mail-txt {
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	display: block;
	width: 260px;
	margin: 0 auto;
	padding: 17px 0 17px 14px;
	border-radius: 10px;
	text-align: center;
	color: #e86436;
	background-color: #fff;
	background-image: url(/assets/img/icn_mail.png);
	background-size: 40px auto;
	background-position: top 10px left 10px;
	background-repeat: no-repeat;
	text-decoration: none !important;
}

.is-modal-open {
	cursor: pointer !important;
}


@media only screen and (max-width: 640px) {
	.p-modal {
		height: 100%;
	}

	.p-modal-content{
		width: 92%;
		border-radius: 10px;
		background-image: url(/assets/img/bg_modal_sp.png);
	}
	
	.p-modal-inner {
		padding: 15px 45px 0;
	}
	
	.p-modal-btn {
		width: 35px;
		height: 35px;
	}
	
	.p-modal-lead {
		font-size: 140%;
		padding: 15px 20px;
	}
	
	
	.p-modal-ttl {
		font-size: 170%;
		letter-spacing: 0.04em;
		margin-top: 20px;
	}

		
	.p-modal-txt-box {
		margin-top: 10px;
	}

	.p-modal-txt {
		font-size: 140%;
		text-align: center;
		margin-left: 10px;
	}

	.p-modal-txt-sub {
		font-size: 140% !important;
		width: 32px;
		min-width: 32px;
		padding: 3px 5px;
}

	.p-modal-phone-list {
		width: 100%;
		margin: 0 auto;
		text-align: center;
		flex-direction: column;
	}
	
	.p-modal-phone-list-item {
		width: 90%;
		margin: 10px auto 0;
		text-align: center ;

	}
	
	.p-modal-phone-list-item:nth-child(even) {
		margin: 10px auto 0;
	}
	
	.p-modal-phone-list-item-link {
		pointer-events: initial;
	}

	.p-modal-mail {
		margin-top: 15px;
	}

	.p-modal-mail-txt {
		font-size: 140% !important;
		width: 85%;
		padding: 5vw 0 5vw 5vw;
		background-size: 13% auto;
		background-position: top 3.5vw left 5%;	
	}
	
}


/* modal end */
/*　表示・非表示　*/
  .br_pc {
    display: block;
  }
  .br_sp {
    display: none!important;
  }

@media screen and (max-width: 768px) {
  .br_pc {
    display: none!important;
  }
  .br_sp {
    display: block!important;
  }

}


/* コースページ 価格 フォントサイズ調整 start */
#contents dd .p-fz-sm {
	font-size: 0.8em;
}
/* コースページ 価格 フォントサイズ調整 end */

/*　年齢確認バリデート部分 start  */
#contents .l-agree{
	margin-top: 20px;
	background: #dadada;
	padding: 10px 15px;
}
#contents .l-agree .p-message{
	font-size: 11px;
}
#contents .l-agree .p-err{
	font-size: 11px;
}

/*　年齢確認バリデート部分 end  */