@charset "UTF-8";
/* -----------------------------------------------

Andy.SCSS: Open-Source Collection of Useful SASS Mixins Library.

URL: http://gillesbertaux.com/andy

By: Gilles Bertaux | http://gillesbertaux.com | @gillesbertaux

The purpose of Andy is to gather useful mixins and avoid endless research or heavy framework use. Feel free to fork it on Github and add your own mixins: https://github.com/gillesbertaux/andy

Mixins available:
	- Background Gradient
	- Background Size
	- Borders
	- Border Corners
	- Box Sizing
	- Center Block
	- Centering Block: Horizontal, Vertical, Both
	- Clearfix
	- Div Outline
	- Font Face
	- Hardware Acceleration
	- Hover
	- Image Retina
	- Line-Height
	- Media Queries
	- Opacity
	- Opacity Black
	- Opacity White
	- Position
	- Radius
	- Scale
	- Shadows
	- Size
	- Text Shadow
	- TranslateX
	- TranslateY
	- Transitions

 ----------------------------------------------- */
/* BACKGROUND GRADIENTS */
/* BACKGROUND SIZE */
/* BORDER */
/* BORDER CORNERS */
/* BOX SIZING */
/* CENTER BLOCK */
/* CENTERING BLOCKS ELEMENTS, HORIZONTAL, VERTICAL, BOTH */
/* CLEARFIX */
@import "https://fonts.googleapis.com/css?family=Lato";
.c-flowitem, .c-productcontent, .c-productitem__text, .c-productmore, .p-post-item.is-horizon, .p-post-item.is-line, .p-profile-box, .l-content, .c-footermenu, .u-clearfix {
	*zoom: 1;
}

.c-flowitem:before, .c-productcontent:before, .c-productitem__text:before, .c-productmore:before, .p-post-item.is-horizon:before, .p-post-item.is-line:before, .p-profile-box:before, .l-content:before, .c-footermenu:before, .u-clearfix:before, .c-flowitem:after, .c-productcontent:after, .c-productitem__text:after, .c-productmore:after, .p-post-item.is-horizon:after, .p-post-item.is-line:after, .p-profile-box:after, .l-content:after, .c-footermenu:after, .u-clearfix:after {
	content: " ";
	display: table;
}

.c-flowitem:after, .c-productcontent:after, .c-productitem__text:after, .c-productmore:after, .p-post-item.is-horizon:after, .p-post-item.is-line:after, .p-profile-box:after, .l-content:after, .c-footermenu:after, .u-clearfix:after {
	clear: both;
}

/* DIV OUTLINE */
/* FONT FACES */
/* FONT SIZE */
/* HARDWARE ACCELERATION */
/* HOVER */
/* IMAGE RETINA */
/* LINE HEIGHT */
/* MEDIA QUERIES */
/* OPACITY */
/* BLACK / WHITE OPACITY */
/* POSITION */
/* RADIUS */
/* SCALE */
/* SHADOWS */
/* SIZE */
/* TEXT SHADOW */
/* TRANSLATE X */
/* TRANSLATE Y */
/* TRANSITION SCALEDOWN */
@keyframes scaleDown {
	0% {
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-ms-transform: scale(0.95);
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
	}
	100% {
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes scaleDown {
	0% {
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-ms-transform: scale(0.95);
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
	}
	100% {
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

/* TRANSITION SCALE UP HOVER */
@keyframes scaleUp {
	0% {
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-ms-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes scaleUp {
	0% {
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-ms-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-ms-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

/* TRANSITION FADEIN */
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

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

/* TRANSITION SLIDEINDOWN */
@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translateY(-100px);
		-ms-transform: translateY(-100px);
		-o-transform: translateY(-100px);
		transform: translateY(-100px);
		opacity: 0;
	}
	75% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 1;
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translateY(-100px);
		-ms-transform: translateY(-100px);
		-o-transform: translateY(-100px);
		transform: translateY(-100px);
		opacity: 0;
	}
	75% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 1;
	}
}

/* TRANSITION SLIDEINUP */
@-webkit-keyframes slideInUp {
	0% {
		-webkit-transform: translateY(100px);
		-ms-transform: translateY(100px);
		-o-transform: translateY(100px);
		transform: translateY(100px);
		opacity: 0;
	}
	75% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 1;
	}
}

@keyframes slideInUp {
	0% {
		-webkit-transform: translateY(100px);
		-ms-transform: translateY(100px);
		-o-transform: translateY(100px);
		transform: translateY(100px);
		opacity: 0;
	}
	75% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 1;
	}
}

/* TRANSITION SLIDEINRIGHT */
@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translateX(100px);
		-ms-transform: translateX(100px);
		-o-transform: translateX(100px);
		transform: translateX(100px);
		opacity: 0;
	}
	75% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 1;
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translateX(100px);
		-ms-transform: translateX(100px);
		-o-transform: translateX(100px);
		transform: translateX(100px);
		opacity: 0;
	}
	75% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 1;
	}
}

/* TRANSITION SLIDEINLEFT */
@-webkit-keyframes slideInLeft {
	0% {
		-webkit-transform: translateX(-100px);
		-ms-transform: translateX(-100px);
		-o-transform: translateX(-100px);
		transform: translateX(-100px);
		opacity: 0;
	}
	75% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 1;
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translateX(-100px);
		-ms-transform: translateX(-100px);
		-o-transform: translateX(-100px);
		transform: translateX(-100px);
		opacity: 0;
	}
	75% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		-o-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 1;
	}
}

/*!
 *  Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
	font-family: 'FontAwesome';
	src: url("../../bower_components/font-awesome/fonts/fontawesome-webfont.eot?v=4.5.0");
	src: url("../../bower_components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"), url("../../bower_components/font-awesome/fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"), url("../../bower_components/font-awesome/fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"), url("../../bower_components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"), url("../../bower_components/font-awesome/fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular") format("svg");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'FontAwesome';
	src: url("../font-awesome/fonts/fontawesome-webfont.eot?v=4.5.0");
	src: url("../font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.5.0") format("embedded-opentype"), url("../font-awesome/fonts/fontawesome-webfont.woff2?v=4.5.0") format("woff2"), url("../font-awesome/fonts/fontawesome-webfont.woff?v=4.5.0") format("woff"), url("../font-awesome/fonts/fontawesome-webfont.ttf?v=4.5.0") format("truetype"), url("../font-awesome/fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular") format("svg");
	font-weight: normal;
	font-style: normal;
}

.fa {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
	font-size: 1.3333em;
	line-height: 0.75em;
	vertical-align: -15%;
}

.fa-2x {
	font-size: 2em;
}

.fa-3x {
	font-size: 3em;
}

.fa-4x {
	font-size: 4em;
}

.fa-5x {
	font-size: 5em;
}

.fa-fw {
	width: 1.2857em;
	text-align: center;
}

.fa-ul {
	padding-left: 0;
	margin-left: 2.1429em;
	list-style-type: none;
}

.fa-ul > li {
	position: relative;
}

.fa-li {
	position: absolute;
	left: -2.1429em;
	width: 2.1429em;
	top: 0.1429em;
	text-align: center;
}

.fa-li.fa-lg {
	left: -1.8571em;
}

.fa-border {
	padding: .2em .25em .15em;
	border: solid 0.08em #eee;
	border-radius: .1em;
}

.fa-pull-left {
	float: left;
}

.fa-pull-right {
	float: right;
}

.fa.fa-pull-left {
	margin-right: .3em;
}

.fa.fa-pull-right {
	margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
	float: right;
}

.pull-left {
	float: left;
}

.fa.pull-left {
	margin-right: .3em;
}

.fa.pull-right {
	margin-left: .3em;
}

.fa-spin {
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
}

.fa-pulse {
	-webkit-animation: fa-spin 1s infinite steps(8);
	animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

.fa-rotate-90 {
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.fa-rotate-180 {
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.fa-rotate-270 {
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}

.fa-flip-horizontal {
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
	-webkit-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

.fa-flip-vertical {
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
	-webkit-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
	filter: none;
}

.fa-stack {
	position: relative;
	display: inline-block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
}

.fa-stack-1x {
	line-height: inherit;
}

.fa-stack-2x {
	font-size: 2em;
}

.fa-inverse {
	color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
	 readers do not read off random characters that represent icons */
.fa-glass:before {
	content: "";
}

.fa-music:before {
	content: "";
}

.fa-search:before {
	content: "";
}

.fa-envelope-o:before {
	content: "";
}

.fa-heart:before {
	content: "";
}

.fa-star:before {
	content: "";
}

.fa-star-o:before {
	content: "";
}

.fa-user:before {
	content: "";
}

.fa-film:before {
	content: "";
}

.fa-th-large:before {
	content: "";
}

.fa-th:before {
	content: "";
}

.fa-th-list:before {
	content: "";
}

.fa-check:before {
	content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
	content: "";
}

.fa-search-plus:before {
	content: "";
}

.fa-search-minus:before {
	content: "";
}

.fa-power-off:before {
	content: "";
}

.fa-signal:before {
	content: "";
}

.fa-gear:before,
.fa-cog:before {
	content: "";
}

.fa-trash-o:before {
	content: "";
}

.fa-home:before {
	content: "";
}

.fa-file-o:before {
	content: "";
}

.fa-clock-o:before {
	content: "";
}

.fa-road:before {
	content: "";
}

.fa-download:before {
	content: "";
}

.fa-arrow-circle-o-down:before {
	content: "";
}

.fa-arrow-circle-o-up:before {
	content: "";
}

.fa-inbox:before {
	content: "";
}

.fa-play-circle-o:before {
	content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
	content: "";
}

.fa-refresh:before {
	content: "";
}

.fa-list-alt:before {
	content: "";
}

.fa-lock:before {
	content: "";
}

.fa-flag:before {
	content: "";
}

.fa-headphones:before {
	content: "";
}

.fa-volume-off:before {
	content: "";
}

.fa-volume-down:before {
	content: "";
}

.fa-volume-up:before {
	content: "";
}

.fa-qrcode:before {
	content: "";
}

.fa-barcode:before {
	content: "";
}

.fa-tag:before {
	content: "";
}

.fa-tags:before {
	content: "";
}

.fa-book:before {
	content: "";
}

.fa-bookmark:before {
	content: "";
}

.fa-print:before {
	content: "";
}

.fa-camera:before {
	content: "";
}

.fa-font:before {
	content: "";
}

.fa-bold:before {
	content: "";
}

.fa-italic:before {
	content: "";
}

.fa-text-height:before {
	content: "";
}

.fa-text-width:before {
	content: "";
}

.fa-align-left:before {
	content: "";
}

.fa-align-center:before {
	content: "";
}

.fa-align-right:before {
	content: "";
}

.fa-align-justify:before {
	content: "";
}

.fa-list:before {
	content: "";
}

.fa-dedent:before,
.fa-outdent:before {
	content: "";
}

.fa-indent:before {
	content: "";
}

.fa-video-camera:before {
	content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
	content: "";
}

.fa-pencil:before {
	content: "";
}

.fa-map-marker:before {
	content: "";
}

.fa-adjust:before {
	content: "";
}

.fa-tint:before {
	content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
	content: "";
}

.fa-share-square-o:before {
	content: "";
}

.fa-check-square-o:before {
	content: "";
}

.fa-arrows:before {
	content: "";
}

.fa-step-backward:before {
	content: "";
}

.fa-fast-backward:before {
	content: "";
}

.fa-backward:before {
	content: "";
}

.fa-play:before {
	content: "";
}

.fa-pause:before {
	content: "";
}

.fa-stop:before {
	content: "";
}

.fa-forward:before {
	content: "";
}

.fa-fast-forward:before {
	content: "";
}

.fa-step-forward:before {
	content: "";
}

.fa-eject:before {
	content: "";
}

.fa-chevron-left:before {
	content: "";
}

.fa-chevron-right:before {
	content: "";
}

.fa-plus-circle:before {
	content: "";
}

.fa-minus-circle:before {
	content: "";
}

.fa-times-circle:before {
	content: "";
}

.fa-check-circle:before {
	content: "";
}

.fa-question-circle:before {
	content: "";
}

.fa-info-circle:before {
	content: "";
}

.fa-crosshairs:before {
	content: "";
}

.fa-times-circle-o:before {
	content: "";
}

.fa-check-circle-o:before {
	content: "";
}

.fa-ban:before {
	content: "";
}

.fa-arrow-left:before {
	content: "";
}

.fa-arrow-right:before {
	content: "";
}

.fa-arrow-up:before {
	content: "";
}

.fa-arrow-down:before {
	content: "";
}

.fa-mail-forward:before,
.fa-share:before {
	content: "";
}

.fa-expand:before {
	content: "";
}

.fa-compress:before {
	content: "";
}

.fa-plus:before {
	content: "";
}

.fa-minus:before {
	content: "";
}

.fa-asterisk:before {
	content: "";
}

.fa-exclamation-circle:before {
	content: "";
}

.fa-gift:before {
	content: "";
}

.fa-leaf:before {
	content: "";
}

.fa-fire:before {
	content: "";
}

.fa-eye:before {
	content: "";
}

.fa-eye-slash:before {
	content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
	content: "";
}

.fa-plane:before {
	content: "";
}

.fa-calendar:before {
	content: "";
}

.fa-random:before {
	content: "";
}

.fa-comment:before {
	content: "";
}

.fa-magnet:before {
	content: "";
}

.fa-chevron-up:before {
	content: "";
}

.fa-chevron-down:before {
	content: "";
}

.fa-retweet:before {
	content: "";
}

.fa-shopping-cart:before {
	content: "";
}

.fa-folder:before {
	content: "";
}

.fa-folder-open:before {
	content: "";
}

.fa-arrows-v:before {
	content: "";
}

.fa-arrows-h:before {
	content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
	content: "";
}

.fa-twitter-square:before {
	content: "";
}

.fa-facebook-square:before {
	content: "";
}

.fa-camera-retro:before {
	content: "";
}

.fa-key:before {
	content: "";
}

.fa-gears:before,
.fa-cogs:before {
	content: "";
}

.fa-comments:before {
	content: "";
}

.fa-thumbs-o-up:before {
	content: "";
}

.fa-thumbs-o-down:before {
	content: "";
}

.fa-star-half:before {
	content: "";
}

.fa-heart-o:before {
	content: "";
}

.fa-sign-out:before {
	content: "";
}

.fa-linkedin-square:before {
	content: "";
}

.fa-thumb-tack:before {
	content: "";
}

.fa-external-link:before {
	content: "";
}

.fa-sign-in:before {
	content: "";
}

.fa-trophy:before {
	content: "";
}

.fa-github-square:before {
	content: "";
}

.fa-upload:before {
	content: "";
}

.fa-lemon-o:before {
	content: "";
}

.fa-phone:before {
	content: "";
}

.fa-square-o:before {
	content: "";
}

.fa-bookmark-o:before {
	content: "";
}

.fa-phone-square:before {
	content: "";
}

.fa-twitter:before {
	content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
	content: "";
}

.fa-github:before {
	content: "";
}

.fa-unlock:before {
	content: "";
}

.fa-credit-card:before {
	content: "";
}

.fa-feed:before,
.fa-rss:before {
	content: "";
}

.fa-hdd-o:before {
	content: "";
}

.fa-bullhorn:before {
	content: "";
}

.fa-bell:before {
	content: "";
}

.fa-certificate:before {
	content: "";
}

.fa-hand-o-right:before {
	content: "";
}

.fa-hand-o-left:before {
	content: "";
}

.fa-hand-o-up:before {
	content: "";
}

.fa-hand-o-down:before {
	content: "";
}

.fa-arrow-circle-left:before {
	content: "";
}

.fa-arrow-circle-right:before {
	content: "";
}

.fa-arrow-circle-up:before {
	content: "";
}

.fa-arrow-circle-down:before {
	content: "";
}

.fa-globe:before {
	content: "";
}

.fa-wrench:before {
	content: "";
}

.fa-tasks:before {
	content: "";
}

.fa-filter:before {
	content: "";
}

.fa-briefcase:before {
	content: "";
}

.fa-arrows-alt:before {
	content: "";
}

.fa-group:before,
.fa-users:before {
	content: "";
}

.fa-chain:before,
.fa-link:before {
	content: "";
}

.fa-cloud:before {
	content: "";
}

.fa-flask:before {
	content: "";
}

.fa-cut:before,
.fa-scissors:before {
	content: "";
}

.fa-copy:before,
.fa-files-o:before {
	content: "";
}

.fa-paperclip:before {
	content: "";
}

.fa-save:before,
.fa-floppy-o:before {
	content: "";
}

.fa-square:before {
	content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
	content: "";
}

.fa-list-ul:before {
	content: "";
}

.fa-list-ol:before {
	content: "";
}

.fa-strikethrough:before {
	content: "";
}

.fa-underline:before {
	content: "";
}

.fa-table:before {
	content: "";
}

.fa-magic:before {
	content: "";
}

.fa-truck:before {
	content: "";
}

.fa-pinterest:before {
	content: "";
}

.fa-pinterest-square:before {
	content: "";
}

.fa-google-plus-square:before {
	content: "";
}

.fa-google-plus:before {
	content: "";
}

.fa-money:before {
	content: "";
}

.fa-caret-down:before {
	content: "";
}

.fa-caret-up:before {
	content: "";
}

.fa-caret-left:before {
	content: "";
}

.fa-caret-right:before {
	content: "";
}

.fa-columns:before {
	content: "";
}

.fa-unsorted:before,
.fa-sort:before {
	content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
	content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
	content: "";
}

.fa-envelope:before {
	content: "";
}

.fa-linkedin:before {
	content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
	content: "";
}

.fa-legal:before,
.fa-gavel:before {
	content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
	content: "";
}

.fa-comment-o:before {
	content: "";
}

.fa-comments-o:before {
	content: "";
}

.fa-flash:before,
.fa-bolt:before {
	content: "";
}

.fa-sitemap:before {
	content: "";
}

.fa-umbrella:before {
	content: "";
}

.fa-paste:before,
.fa-clipboard:before {
	content: "";
}

.fa-lightbulb-o:before {
	content: "";
}

.fa-exchange:before {
	content: "";
}

.fa-cloud-download:before {
	content: "";
}

.fa-cloud-upload:before {
	content: "";
}

.fa-user-md:before {
	content: "";
}

.fa-stethoscope:before {
	content: "";
}

.fa-suitcase:before {
	content: "";
}

.fa-bell-o:before {
	content: "";
}

.fa-coffee:before {
	content: "";
}

.fa-cutlery:before {
	content: "";
}

.fa-file-text-o:before {
	content: "";
}

.fa-building-o:before {
	content: "";
}

.fa-hospital-o:before {
	content: "";
}

.fa-ambulance:before {
	content: "";
}

.fa-medkit:before {
	content: "";
}

.fa-fighter-jet:before {
	content: "";
}

.fa-beer:before {
	content: "";
}

.fa-h-square:before {
	content: "";
}

.fa-plus-square:before {
	content: "";
}

.fa-angle-double-left:before {
	content: "";
}

.fa-angle-double-right:before {
	content: "";
}

.fa-angle-double-up:before {
	content: "";
}

.fa-angle-double-down:before {
	content: "";
}

.fa-angle-left:before {
	content: "";
}

.fa-angle-right:before {
	content: "";
}

.fa-angle-up:before {
	content: "";
}

.fa-angle-down:before {
	content: "";
}

.fa-desktop:before {
	content: "";
}

.fa-laptop:before {
	content: "";
}

.fa-tablet:before {
	content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
	content: "";
}

.fa-circle-o:before {
	content: "";
}

.fa-quote-left:before {
	content: "";
}

.fa-quote-right:before {
	content: "";
}

.fa-spinner:before {
	content: "";
}

.fa-circle:before {
	content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
	content: "";
}

.fa-github-alt:before {
	content: "";
}

.fa-folder-o:before {
	content: "";
}

.fa-folder-open-o:before {
	content: "";
}

.fa-smile-o:before {
	content: "";
}

.fa-frown-o:before {
	content: "";
}

.fa-meh-o:before {
	content: "";
}

.fa-gamepad:before {
	content: "";
}

.fa-keyboard-o:before {
	content: "";
}

.fa-flag-o:before {
	content: "";
}

.fa-flag-checkered:before {
	content: "";
}

.fa-terminal:before {
	content: "";
}

.fa-code:before {
	content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
	content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
	content: "";
}

.fa-location-arrow:before {
	content: "";
}

.fa-crop:before {
	content: "";
}

.fa-code-fork:before {
	content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
	content: "";
}

.fa-question:before {
	content: "";
}

.fa-info:before {
	content: "";
}

.fa-exclamation:before {
	content: "";
}

.fa-superscript:before {
	content: "";
}

.fa-subscript:before {
	content: "";
}

.fa-eraser:before {
	content: "";
}

.fa-puzzle-piece:before {
	content: "";
}

.fa-microphone:before {
	content: "";
}

.fa-microphone-slash:before {
	content: "";
}

.fa-shield:before {
	content: "";
}

.fa-calendar-o:before {
	content: "";
}

.fa-fire-extinguisher:before {
	content: "";
}

.fa-rocket:before {
	content: "";
}

.fa-maxcdn:before {
	content: "";
}

.fa-chevron-circle-left:before {
	content: "";
}

.fa-chevron-circle-right:before {
	content: "";
}

.fa-chevron-circle-up:before {
	content: "";
}

.fa-chevron-circle-down:before {
	content: "";
}

.fa-html5:before {
	content: "";
}

.fa-css3:before {
	content: "";
}

.fa-anchor:before {
	content: "";
}

.fa-unlock-alt:before {
	content: "";
}

.fa-bullseye:before {
	content: "";
}

.fa-ellipsis-h:before {
	content: "";
}

.fa-ellipsis-v:before {
	content: "";
}

.fa-rss-square:before {
	content: "";
}

.fa-play-circle:before {
	content: "";
}

.fa-ticket:before {
	content: "";
}

.fa-minus-square:before {
	content: "";
}

.fa-minus-square-o:before {
	content: "";
}

.fa-level-up:before {
	content: "";
}

.fa-level-down:before {
	content: "";
}

.fa-check-square:before {
	content: "";
}

.fa-pencil-square:before {
	content: "";
}

.fa-external-link-square:before {
	content: "";
}

.fa-share-square:before {
	content: "";
}

.fa-compass:before {
	content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
	content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
	content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
	content: "";
}

.fa-euro:before,
.fa-eur:before {
	content: "";
}

.fa-gbp:before {
	content: "";
}

.fa-dollar:before,
.fa-usd:before {
	content: "";
}

.fa-rupee:before,
.fa-inr:before {
	content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
	content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
	content: "";
}

.fa-won:before,
.fa-krw:before {
	content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
	content: "";
}

.fa-file:before {
	content: "";
}

.fa-file-text:before {
	content: "";
}

.fa-sort-alpha-asc:before {
	content: "";
}

.fa-sort-alpha-desc:before {
	content: "";
}

.fa-sort-amount-asc:before {
	content: "";
}

.fa-sort-amount-desc:before {
	content: "";
}

.fa-sort-numeric-asc:before {
	content: "";
}

.fa-sort-numeric-desc:before {
	content: "";
}

.fa-thumbs-up:before {
	content: "";
}

.fa-thumbs-down:before {
	content: "";
}

.fa-youtube-square:before {
	content: "";
}

.fa-youtube:before {
	content: "";
}

.fa-xing:before {
	content: "";
}

.fa-xing-square:before {
	content: "";
}

.fa-youtube-play:before {
	content: "";
}

.fa-dropbox:before {
	content: "";
}

.fa-stack-overflow:before {
	content: "";
}

.fa-instagram:before {
	content: "";
}

.fa-flickr:before {
	content: "";
}

.fa-adn:before {
	content: "";
}

.fa-bitbucket:before {
	content: "";
}

.fa-bitbucket-square:before {
	content: "";
}

.fa-tumblr:before {
	content: "";
}

.fa-tumblr-square:before {
	content: "";
}

.fa-long-arrow-down:before {
	content: "";
}

.fa-long-arrow-up:before {
	content: "";
}

.fa-long-arrow-left:before {
	content: "";
}

.fa-long-arrow-right:before {
	content: "";
}

.fa-apple:before {
	content: "";
}

.fa-windows:before {
	content: "";
}

.fa-android:before {
	content: "";
}

.fa-linux:before {
	content: "";
}

.fa-dribbble:before {
	content: "";
}

.fa-skype:before {
	content: "";
}

.fa-foursquare:before {
	content: "";
}

.fa-trello:before {
	content: "";
}

.fa-female:before {
	content: "";
}

.fa-male:before {
	content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
	content: "";
}

.fa-sun-o:before {
	content: "";
}

.fa-moon-o:before {
	content: "";
}

.fa-archive:before {
	content: "";
}

.fa-bug:before {
	content: "";
}

.fa-vk:before {
	content: "";
}

.fa-weibo:before {
	content: "";
}

.fa-renren:before {
	content: "";
}

.fa-pagelines:before {
	content: "";
}

.fa-stack-exchange:before {
	content: "";
}

.fa-arrow-circle-o-right:before {
	content: "";
}

.fa-arrow-circle-o-left:before {
	content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
	content: "";
}

.fa-dot-circle-o:before {
	content: "";
}

.fa-wheelchair:before {
	content: "";
}

.fa-vimeo-square:before {
	content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
	content: "";
}

.fa-plus-square-o:before {
	content: "";
}

.fa-space-shuttle:before {
	content: "";
}

.fa-slack:before {
	content: "";
}

.fa-envelope-square:before {
	content: "";
}

.fa-wordpress:before {
	content: "";
}

.fa-openid:before {
	content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
	content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
	content: "";
}

.fa-yahoo:before {
	content: "";
}

.fa-google:before {
	content: "";
}

.fa-reddit:before {
	content: "";
}

.fa-reddit-square:before {
	content: "";
}

.fa-stumbleupon-circle:before {
	content: "";
}

.fa-stumbleupon:before {
	content: "";
}

.fa-delicious:before {
	content: "";
}

.fa-digg:before {
	content: "";
}

.fa-pied-piper:before {
	content: "";
}

.fa-pied-piper-alt:before {
	content: "";
}

.fa-drupal:before {
	content: "";
}

.fa-joomla:before {
	content: "";
}

.fa-language:before {
	content: "";
}

.fa-fax:before {
	content: "";
}

.fa-building:before {
	content: "";
}

.fa-child:before {
	content: "";
}

.fa-paw:before {
	content: "";
}

.fa-spoon:before {
	content: "";
}

.fa-cube:before {
	content: "";
}

.fa-cubes:before {
	content: "";
}

.fa-behance:before {
	content: "";
}

.fa-behance-square:before {
	content: "";
}

.fa-steam:before {
	content: "";
}

.fa-steam-square:before {
	content: "";
}

.fa-recycle:before {
	content: "";
}

.fa-automobile:before,
.fa-car:before {
	content: "";
}

.fa-cab:before,
.fa-taxi:before {
	content: "";
}

.fa-tree:before {
	content: "";
}

.fa-spotify:before {
	content: "";
}

.fa-deviantart:before {
	content: "";
}

.fa-soundcloud:before {
	content: "";
}

.fa-database:before {
	content: "";
}

.fa-file-pdf-o:before {
	content: "";
}

.fa-file-word-o:before {
	content: "";
}

.fa-file-excel-o:before {
	content: "";
}

.fa-file-powerpoint-o:before {
	content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
	content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
	content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
	content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
	content: "";
}

.fa-file-code-o:before {
	content: "";
}

.fa-vine:before {
	content: "";
}

.fa-codepen:before {
	content: "";
}

.fa-jsfiddle:before {
	content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
	content: "";
}

.fa-circle-o-notch:before {
	content: "";
}

.fa-ra:before,
.fa-rebel:before {
	content: "";
}

.fa-ge:before,
.fa-empire:before {
	content: "";
}

.fa-git-square:before {
	content: "";
}

.fa-git:before {
	content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
	content: "";
}

.fa-tencent-weibo:before {
	content: "";
}

.fa-qq:before {
	content: "";
}

.fa-wechat:before,
.fa-weixin:before {
	content: "";
}

.fa-send:before,
.fa-paper-plane:before {
	content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
	content: "";
}

.fa-history:before {
	content: "";
}

.fa-circle-thin:before {
	content: "";
}

.fa-header:before {
	content: "";
}

.fa-paragraph:before {
	content: "";
}

.fa-sliders:before {
	content: "";
}

.fa-share-alt:before {
	content: "";
}

.fa-share-alt-square:before {
	content: "";
}

.fa-bomb:before {
	content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
	content: "";
}

.fa-tty:before {
	content: "";
}

.fa-binoculars:before {
	content: "";
}

.fa-plug:before {
	content: "";
}

.fa-slideshare:before {
	content: "";
}

.fa-twitch:before {
	content: "";
}

.fa-yelp:before {
	content: "";
}

.fa-newspaper-o:before {
	content: "";
}

.fa-wifi:before {
	content: "";
}

.fa-calculator:before {
	content: "";
}

.fa-paypal:before {
	content: "";
}

.fa-google-wallet:before {
	content: "";
}

.fa-cc-visa:before {
	content: "";
}

.fa-cc-mastercard:before {
	content: "";
}

.fa-cc-discover:before {
	content: "";
}

.fa-cc-amex:before {
	content: "";
}

.fa-cc-paypal:before {
	content: "";
}

.fa-cc-stripe:before {
	content: "";
}

.fa-bell-slash:before {
	content: "";
}

.fa-bell-slash-o:before {
	content: "";
}

.fa-trash:before {
	content: "";
}

.fa-copyright:before {
	content: "";
}

.fa-at:before {
	content: "";
}

.fa-eyedropper:before {
	content: "";
}

.fa-paint-brush:before {
	content: "";
}

.fa-birthday-cake:before {
	content: "";
}

.fa-area-chart:before {
	content: "";
}

.fa-pie-chart:before {
	content: "";
}

.fa-line-chart:before {
	content: "";
}

.fa-lastfm:before {
	content: "";
}

.fa-lastfm-square:before {
	content: "";
}

.fa-toggle-off:before {
	content: "";
}

.fa-toggle-on:before {
	content: "";
}

.fa-bicycle:before {
	content: "";
}

.fa-bus:before {
	content: "";
}

.fa-ioxhost:before {
	content: "";
}

.fa-angellist:before {
	content: "";
}

.fa-cc:before {
	content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
	content: "";
}

.fa-meanpath:before {
	content: "";
}

.fa-buysellads:before {
	content: "";
}

.fa-connectdevelop:before {
	content: "";
}

.fa-dashcube:before {
	content: "";
}

.fa-forumbee:before {
	content: "";
}

.fa-leanpub:before {
	content: "";
}

.fa-sellsy:before {
	content: "";
}

.fa-shirtsinbulk:before {
	content: "";
}

.fa-simplybuilt:before {
	content: "";
}

.fa-skyatlas:before {
	content: "";
}

.fa-cart-plus:before {
	content: "";
}

.fa-cart-arrow-down:before {
	content: "";
}

.fa-diamond:before {
	content: "";
}

.fa-ship:before {
	content: "";
}

.fa-user-secret:before {
	content: "";
}

.fa-motorcycle:before {
	content: "";
}

.fa-street-view:before {
	content: "";
}

.fa-heartbeat:before {
	content: "";
}

.fa-venus:before {
	content: "";
}

.fa-mars:before {
	content: "";
}

.fa-mercury:before {
	content: "";
}

.fa-intersex:before,
.fa-transgender:before {
	content: "";
}

.fa-transgender-alt:before {
	content: "";
}

.fa-venus-double:before {
	content: "";
}

.fa-mars-double:before {
	content: "";
}

.fa-venus-mars:before {
	content: "";
}

.fa-mars-stroke:before {
	content: "";
}

.fa-mars-stroke-v:before {
	content: "";
}

.fa-mars-stroke-h:before {
	content: "";
}

.fa-neuter:before {
	content: "";
}

.fa-genderless:before {
	content: "";
}

.fa-facebook-official:before {
	content: "";
}

.fa-pinterest-p:before {
	content: "";
}

.fa-whatsapp:before {
	content: "";
}

.fa-server:before {
	content: "";
}

.fa-user-plus:before {
	content: "";
}

.fa-user-times:before {
	content: "";
}

.fa-hotel:before,
.fa-bed:before {
	content: "";
}

.fa-viacoin:before {
	content: "";
}

.fa-train:before {
	content: "";
}

.fa-subway:before {
	content: "";
}

.fa-medium:before {
	content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
	content: "";
}

.fa-optin-monster:before {
	content: "";
}

.fa-opencart:before {
	content: "";
}

.fa-expeditedssl:before {
	content: "";
}

.fa-battery-4:before,
.fa-battery-full:before {
	content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
	content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
	content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
	content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
	content: "";
}

.fa-mouse-pointer:before {
	content: "";
}

.fa-i-cursor:before {
	content: "";
}

.fa-object-group:before {
	content: "";
}

.fa-object-ungroup:before {
	content: "";
}

.fa-sticky-note:before {
	content: "";
}

.fa-sticky-note-o:before {
	content: "";
}

.fa-cc-jcb:before {
	content: "";
}

.fa-cc-diners-club:before {
	content: "";
}

.fa-clone:before {
	content: "";
}

.fa-balance-scale:before {
	content: "";
}

.fa-hourglass-o:before {
	content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
	content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
	content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
	content: "";
}

.fa-hourglass:before {
	content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
	content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
	content: "";
}

.fa-hand-scissors-o:before {
	content: "";
}

.fa-hand-lizard-o:before {
	content: "";
}

.fa-hand-spock-o:before {
	content: "";
}

.fa-hand-pointer-o:before {
	content: "";
}

.fa-hand-peace-o:before {
	content: "";
}

.fa-trademark:before {
	content: "";
}

.fa-registered:before {
	content: "";
}

.fa-creative-commons:before {
	content: "";
}

.fa-gg:before {
	content: "";
}

.fa-gg-circle:before {
	content: "";
}

.fa-tripadvisor:before {
	content: "";
}

.fa-odnoklassniki:before {
	content: "";
}

.fa-odnoklassniki-square:before {
	content: "";
}

.fa-get-pocket:before {
	content: "";
}

.fa-wikipedia-w:before {
	content: "";
}

.fa-safari:before {
	content: "";
}

.fa-chrome:before {
	content: "";
}

.fa-firefox:before {
	content: "";
}

.fa-opera:before {
	content: "";
}

.fa-internet-explorer:before {
	content: "";
}

.fa-tv:before,
.fa-television:before {
	content: "";
}

.fa-contao:before {
	content: "";
}

.fa-500px:before {
	content: "";
}

.fa-amazon:before {
	content: "";
}

.fa-calendar-plus-o:before {
	content: "";
}

.fa-calendar-minus-o:before {
	content: "";
}

.fa-calendar-times-o:before {
	content: "";
}

.fa-calendar-check-o:before {
	content: "";
}

.fa-industry:before {
	content: "";
}

.fa-map-pin:before {
	content: "";
}

.fa-map-signs:before {
	content: "";
}

.fa-map-o:before {
	content: "";
}

.fa-map:before {
	content: "";
}

.fa-commenting:before {
	content: "";
}

.fa-commenting-o:before {
	content: "";
}

.fa-houzz:before {
	content: "";
}

.fa-vimeo:before {
	content: "";
}

.fa-black-tie:before {
	content: "";
}

.fa-fonticons:before {
	content: "";
}

.fa-reddit-alien:before {
	content: "";
}

.fa-edge:before {
	content: "";
}

.fa-credit-card-alt:before {
	content: "";
}

.fa-codiepie:before {
	content: "";
}

.fa-modx:before {
	content: "";
}

.fa-fort-awesome:before {
	content: "";
}

.fa-usb:before {
	content: "";
}

.fa-product-hunt:before {
	content: "";
}

.fa-mixcloud:before {
	content: "";
}

.fa-scribd:before {
	content: "";
}

.fa-pause-circle:before {
	content: "";
}

.fa-pause-circle-o:before {
	content: "";
}

.fa-stop-circle:before {
	content: "";
}

.fa-stop-circle-o:before {
	content: "";
}

.fa-shopping-bag:before {
	content: "";
}

.fa-shopping-basket:before {
	content: "";
}

.fa-hashtag:before {
	content: "";
}

.fa-bluetooth:before {
	content: "";
}

.fa-bluetooth-b:before {
	content: "";
}

.fa-percent:before {
	content: "";
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}


/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom. */
html {
	font-size: 14px;
	font-family: "Yu Gothic", YuGothic, sans-serif;
	font-weight: 500;
	/* 1 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	html {
		font-size: 13px;
	}
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/**
 * Remove default margin. */
body {
	margin: 0;
	line-height: 1.7;
	font-feature-settings: "palt";
}

/* HTML5 display definitions
 * ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11. */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */
audio,
canvas,
progress,
video {
	display: inline-block;
	/* 1 */
	vertical-align: baseline;
	/* 2 */
}

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22. */
[hidden],
template {
	display: none;
}

/* Links
 * ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10. */
a {
	background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state. */
a:active,
a:hover {
	outline: 0;
}

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

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

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

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

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

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

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

/* Embedded content
 * ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10. */
img {
	border: 0;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

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

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

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

/**
 * Contain overflow in all browsers. */
pre {
	overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers. */
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Forms
 * ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set. */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	/* 1 */
	font: inherit;
	/* 2 */
	margin: 0;
	/* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11. */
button {
	overflow: visible;
}

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

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

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

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10. */
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`. */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance). */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

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

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

/**
 * Remove default vertical scrollbar in IE 8/9/10/11. */
textarea {
	overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */
optgroup {
	font-weight: bold;
}

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

td,
th {
	padding: 0;
}

/* dl
 * ========================================================================== */
/**
 * Remove most spacing between dl, dd. */
dl, dd {
	margin: 0;
}

/* ul
 * ========================================================================== */
/**
 * Remove most spacing between ul, li. */
ul {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
	margin: 0;
}

.heading {
	margin-top: 1em;
	margin-bottom: 1em;
}

.heading small, .heading .c-dropdown__list li a, .c-dropdown__list li .heading a {
	font-size: 0.65em;
	color: #cccccc;
}

.heading.is-xlg, .c-productcontent h2, .l-content h2 {
	font-size: 1.9286rem;
	text-align: center;
	position: relative;
	margin-bottom: 4.2857rem;
	color: #4D65A6;
	border-top: 1px solid #7C8EBE;
	border-bottom: 1px solid #4D65A6;
	font-weight: normal;
	padding-top: 5px;
	/*-webkit-font-smoothing: antialiased;*/
	padding-bottom: 3px;
	letter-spacing: 2.5px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.heading.is-xlg, .c-productcontent h2, .l-content h2 {
		font-size: 1.1429rem;
		margin-bottom: 1.4286rem;
	}
}

.heading.is-lg, .c-card__title {
	background: #E3F2F4;
	color: #4D65A6;
	font-size: 21px;
	padding-top: 5px;
	padding-bottom: 4px;
	border-radius: 18px;
	text-align: center;
	font-weight: normal;
	margin-bottom: 32px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.heading.is-lg, .c-card__title {
		font-size: 14px;
		margin-bottom: 16px;
	}
}

.heading.is-md {
	font-size: 1.4286rem;
	font-weight: normal;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.heading.is-md {
		font-size: 1.7143rem;
	}
}

.heading.is-sm {
	font-weight: normal;
	font-size: 1.1429rem;
}

.heading.is-xs {
	font-size: 1rem;
	font-weight: normal;
}

.heading-lead {
	text-align: center;
	margin-bottom: 3.4286rem;
}

input[type="text"],
input[type="url"],
input[type="search"],
input[type="email"],
input[type="tel"] {
	font-size: 14px;
	line-height: 1.8;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 4px 8px;
	max-width: 100%;
	width: 100%;
	transition: all ease-in-out 0.2s;
}

input[type="text"]:focus, input[type="text"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="tel"]:focus,
input[type="tel"]:active {
	outline: none;
	border-color: #4D65A6;
	-webkit-box-shadow: inset 0 0 0px 2px #4D65A6;
	box-shadow: inset 0 0 0px 3px #4D65A6;
}

textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	max-width: 100%;
	font-size: 14px;
	width: 100%;
	padding: 4px 8px;
	transition: all ease-in-out 0.2s;
}

textarea:focus, textarea:active {
	outline: none;
	border-color: #4D65A6;
	-webkit-box-shadow: inset 0 0 0px 2px #4D65A6;
	box-shadow: inset 0 0 0px 3px #4D65A6;
}

input[type="checkbox"] {
	width: 18px;
	height: 18px;
	vertical-align: middle;
}

input[type="radio"] {
	width: 18px;
	height: 18px;
	vertical-align: middle;
}

select {
	text-transform: none;
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

p,
.text-normal {
	margin-top: 0;
	font-size: 1rem;
	line-height: 1.6em;
}

small, .c-dropdown__list li a,
.text-small {
	font-size: 0.85em;
}

strong,
.text-strong {
	font-weight: bold;
}

del,
.text-del {
	text-decoration: line-through;
}

a,
.text-link {
	color: #4D65A6;
}

a:hover,
.text-link.text-link--hover {
	color: #6b81bb;
}

a:active,
.text-link.text-link--active {
	color: #3d5083;
}

hr, .hr {
	border: 4px solid #4D65A6;
	margin-left: auto;
	margin-right: auto;
	max-width: 90%;
	margin-top: 80px;
	margin-bottom: 80px;
}

.inline-list {
	list-style: none;
	padding-left: 0;
}

.inline-list li {
	display: inline-block;
	padding-left: 8px;
	padding-right: 8px;
}

.c-ol li {
	list-style: decimal;
}

blockquote {
	border-left: 4px solid #4D65A6;
	padding-left: 16px;
	margin-top: 16px;
	margin-bottom: 16px;
}

blockquote cite {
	display: block;
	text-align: right;
}

.c-section.is-about {
	height: 650px;
	background: url(../images/bg-top-about01.jpg) no-repeat;
	background-size: cover;
	background-position: center top;
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-section.is-about {
		background-size: auto 206px;
		background-color: #FDFCE7;
		height: auto;
		padding-bottom: 40px;
		padding-top: 240px;
	}
}

.c-aboutbanner {
	max-width: 530px;
	float: right;
	margin-top: 176px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-aboutbanner {
		margin-top: 0px;
		float: none;
	}
}

.c-aboutbanner__button {
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-aboutbanner__button {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.c-aboutbanner__image {
	max-width: 530px;
	margin-bottom: 46px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-aboutbanner__image {
		text-align: center;
	}
	.c-aboutbanner__image img {
		max-height: 44px;
	}
}

.c-aboutbanner__lead {
	text-align: center;
	color: #4D65A6;
	font-size: 25px;
	margin-bottom: 20px;
}

.c-aboutbanner__lead > span {
	display: block;
	font-size: 15px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-aboutbanner__lead {
		font-size: 20px;
	}
	.c-aboutbanner__lead > span {
		font-size: 13px;
	}
}

.c-accordion__title {
	background: #4D65A6;
	color: #fff;
	padding: 16px 32px;
	margin-bottom: 0;
	font-size: 1.2857rem;
	border-radius: 3px 3px 0 0;
}

.c-accordion__content {
	padding: 16px 32px;
	border: 1px solid #efefef;
	border-radius: 0 0 3px 3px;
}

.c-accordion.is-danger .c-accordion__title {
	background: #cc2919;
}

.c-accordion.is-warning .c-accordion__title {
	background: #cc9e12;
}

.c-accordion.is-success .c-accordion__title {
	background: #13a83a;
}

.c-accordion.is-info .c-accordion__title {
	background: #378da3;
}

.c-badge {
	background: #4D65A6;
	color: #fff;
	font-size: 11.2px;
	border-radius: 1000px;
	display: inline-block;
	padding-top: 0.2857rem;
	padding-bottom: 0.2857rem;
	padding-left: 0.5714rem;
	padding-right: 0.5714rem;
	vertical-align: middle;
}

.c-badge.is-lg {
	font-size: 1rem;
}

.c-badge.is-sm {
	font-size: 0.64rem;
}

.c-badge.is-secondary {
	background: #666;
}

.c-badge.is-tertiary {
	background: #efefef;
}

.c-badge.is-danger {
	background: #cc2919;
}

.c-badge.is-warning {
	background: #cc9e12;
}

.c-badge.is-info {
	background: #378da3;
}

.c-badge.is-success {
	background: #13a83a;
}

.c-breadcrumb {
	margin-top: 1.1429rem;
	margin-bottom: 1rem;
	font-size: 0.8571rem;
}

.c-breadcrumb span {
	font-size: 0.8571rem;
}

.c-breadcrumb > ul {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

.c-breadcrumb > ul > li {
	display: inline-block;
	padding-right: 16px;
	font-size: 0.8571rem;
}

.c-breadcrumb > ul > li a {
	color: #999;
	word-spacing: normal;
	white-space: nowrap;
}

.c-button, .c-social-share > a {
	display: inline-block;
	padding-left: 1.1429rem;
	padding-right: 1.1429rem;
	padding-top: 0.5714rem;
	padding-bottom: 0.5714rem;
	border-radius: 0px;
	background: #4D65A6;
	color: #fff;
	text-decoration: none;
	border: none;
	font-size: 1rem;
	position: relative;
	transition: all ease 0.2s;
}

.c-button__icon {
	position: absolute;
	top: 50%;
	right: 16px;
	margin-top: -12px;
	font-size: 1.7143rem;
}

.c-button:hover, .c-social-share > a:hover {
	opacity: 0.8;
	color: #fff;
	cursor: pointer;
}

.c-button:disabled, .c-social-share > a:disabled {
	cursor: not-allowed;
}

.c-button:focus, .c-social-share > a:focus {
	outline: none;
}

.c-button:active, .c-social-share > a:active {
	box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.3);
	outline: none;
	color: #fff;
}

.c-button.is-xlg, .c-social-share > a.is-xlg {
	text-align: center;
	width: 100%;
	border-radius: 1000px;
	font-size: 15px;
	letter-spacing: 1px;
	padding-top: 14px;
	padding-bottom: 14px;
}

.c-button.is-lg, .c-social-share > a.is-lg {
	text-align: center;
	width: 100%;
	border-radius: 1000px;
	font-size: 15px;
	letter-spacing: 1px;
}

.c-button.is-sm, .c-social-share > a.is-sm {
	font-size: 0.9286rem;
	padding: 0.2857rem 1.1429rem;
	border-radius: 50px;
}

.c-button.is-xs, .c-social-share > a.is-xs {
	font-size: 0.9143rem;
	padding: 0.1429rem 0.9143rem;
}

.c-button.is-secondary, .c-social-share > a.is-secondary {
	background: #666;
}

.c-button.is-tertiary, .c-social-share > a.is-tertiary {
	background: #efefef;
}

.c-button.is-danger, .c-social-share > a.is-danger {
	background: #cc2919;
}

.c-button.is-warning, .c-social-share > a.is-warning {
	background: #cc9e12;
}

.c-button.is-info, .c-social-share > a.is-info {
	background: #378da3;
}

.c-button.is-success, .c-social-share > a.is-success {
	background: #13a83a;
}

.c-button.is-round, .c-social-share > a.is-round {
	border-radius: 1000px;
}

.c-button.is-outline, .c-social-share > a.is-outline {
	background: transparent;
	border: 3px solid #454449;
	color: #454449;
	font-weight: bold;
}

.c-button.is-disable, .c-social-share > a.is-disable {
	background: #fff;
	color: #4D65A6;
	border: 1px solid #4D65A6;
}

.c-button.is-disable:hover, .c-social-share > a.is-disable:hover {
	background: #4D65A6;
	border-color: #4D65A6;
	opacity: 1;
	color: #fff;
}

.c-card {
	position: relative;
	display: block;
	text-align: center;
	text-decoration: none;
	margin-bottom: 2.2857rem;
	max-width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-card {
		border-bottom: 1px solid #ccc;
		margin-left: -20px;
		margin-right: -20px;
		max-width: 1000px;
		padding-left: 20px;
		padding-right: 20px;
		overflow: hidden;
		margin-top: 0;
		margin-bottom: 0;
		padding-top: 16px;
		padding-bottom: 16px;
	}
}

.c-card__thumbnail {
	width: 100%;
	max-width: 100%;
	min-height: 160px;
	background-position: center center;
	margin-bottom: 1.1429rem;
	height: 233px;
	background-repeat: no-repeat;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-card__thumbnail {
		background-size: contain;
		width: 70px;
		height: 70px;
		min-height: 70px;
		margin-top: 0;
		float: left;
	}
}

.c-card__title {
	margin-bottom: 16px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-card__title {
		width: calc(100% - 86px);
		float: right;
		margin-top: 0;
		text-align: left;
		padding-left: 12px;
		padding-right: 12px;
		border-radius: 10px;
	}
}

.c-card__text {
	position: relative;
	color: #454449;
	z-index: 1;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-card__text {
		width: calc(100% - 86px);
		float: right;
		margin-top: 0;
		text-align: left;
	}
}

.c-card__link {
	clear: both;
}

.l-content-about .c-card,
.l-content-about .c-cardbox {
	margin-bottom: 120px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.l-content-about .c-card,
	.l-content-about .c-cardbox {
		margin-bottom: 2px;
	}
}

.c-aboutvideo {
	text-align: center;
}

.c-aboutvideo iframe {
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	body.voice .c-card__title {
		margin-top: 0 !important;
	}
}

.c-cardbox {
	max-width: 220px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-cardbox {
		border-bottom: 1px solid #ccc;
		margin-left: -20px;
		overflow: hidden;
		margin-right: -20px;
		max-width: 1000px;
		padding-left: 20px;
		padding-right: 20px;
		overflow: hidden;
		margin-top: 0;
		margin-bottom: 0;
		padding-top: 16px;
		padding-bottom: 16px;
	}
}

.c-cardbox__thumbnail {
	margin-bottom: 16px;
	background-repeat: no-repeat;
	background-position: center center;
	height: 160px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-cardbox__thumbnail {
		width: 90px;
		background-size: contain;
		height: 80px;
		min-height: 80px;
		margin-top: 0;
		float: left;
	}
}

.c-cardbox__title {
	font-size: 15px;
	font-weight: bold;
	color: #4D65A6;
	margin-bottom: 8px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-cardbox__title {
		width: calc(100% - 106px);
		float: right;
		margin-top: 0;
		text-align: left;
	}
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-cardbox__text {
		width: calc(100% - 106px);
		float: right;
		margin-top: 0;
		text-align: left;
	}
}

.c-centerbox {
	max-width: 730px;
	margin-left: auto;
	margin-right: auto;
}

.c-centerbox .wp-caption.alignleft {
	margin-top: 16px;
}

.c-dropdown {
	position: relative;
	text-align: center;
}

.c-dropdown__list {
	padding-left: 0;
	border-left: 1px solid #BBBBBB;
	border-right: 1px solid #BBBBBB;
	border-top: 1px solid #BBBBBB;
	list-style: none;
	max-width: 240px;
	border-radius: 1.5px;
	position: absolute;
	left: 50%;
	margin-top: 4px;
	margin-bottom: 0;
	margin-left: -102px;
	display: none;
	opacity: 0;
	z-index: 10000000;
	-webkit-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.c-dropdown__list li {
	border-bottom: 1px solid #BBBBBB;
}

.c-dropdown__list li:last-child {
	border-radius: 0 0 1.5px 1.5px;
}

.c-dropdown__list li a {
	text-decoration: none;
	-webkit-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	transition: all 0.1s linear;
	display: block;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 16px;
	padding-right: 16px;
}

.c-dropdown__list li a:hover {
	background: #4D65A6;
	color: #fff;
}

.c-dropdown__trigger:hover {
	cursor: pointer;
}

.c-dropdown__trigger:hover .c-dropdown__list {
	display: block;
	opacity: 1;
}

.c-expandnav {
	background: #333333;
	position: absolute;
	width: 100%;
	z-index: 10000;
	transition: all ease .4s;
	visibility: visible;
	opacity: 1;
	transform: translateY(0px);
}

.c-expandnav.is-close {
	transform: translateY(10px);
	visibility: hidden;
	opacity: 0;
}

.c-expandnav ul {
	position: relative;
}

.c-expandnav ul:before {
	content: "\f0d8";
	font-family: FontAwesome;
	color: #333;
	display: inline-block;
	position: absolute;
	top: -20px;
	left: 82px;
	font-size: 20px;
}

.c-expandnav ul li {
	display: inline-block;
}

.c-expandnav ul li:first-child > a {
	padding-left: 0;
}

.c-expandnav ul li a {
	padding-left: 22px;
	padding-right: 22px;
	font-size: 14px;
	padding-top: 22px;
	padding-bottom: 22px;
	display: inline-block;
	color: #fff;
	text-decoration: none;
	transition: all ease .2s;
}

.c-expandnav ul li a:hover {
	color: #8e9fcb;
}

.c-faqbox {
	margin-bottom: 40px;
}

.c-faqbox h3 {
	margin-top: 80px;
}

.c-faqlist {
	margin-bottom: 120px;
}

.c-flowlist {
	padding-top: 15px;
	padding-left: 90px;
	padding-right: 90px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-flowlist {
		padding-left: 0;
		padding-right: 0;
	}
}

.c-flowitem {
	display: inline-block;
	width: 100%;
	margin-bottom: 24px;
	padding-bottom: 56px;
	position: relative;
}

.c-flowitem:after {
	content: "";
	width: 40px;
	height: 22px;
	display: block;
	position: absolute;
	bottom: 5px;
	left: 50%;
	margin-left: -20px;
	background: url(../images/icon-down.svg);
	background-repeat: no-repeat;
}

.c-flowitem:last-child:after {
	display: none;
}

.c-flowitem__icon {
	width: 106px;
	height: 100px;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	margin-top: -68px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-flowitem__icon {
		width: 53px;
		height: 50px;
		background-size: contain;
		left: 19px;
		margin-top: -80px;
	}
}

.c-flowitem__content {
	width: 700px;
	float: right;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-flowitem__content {
		width: 100%;
		float: none;
	}
}

.c-flowitem__title {
	width: 288px;
	text-align: center;
	color: #fff;
	background: #667188;
	float: left;
	font-size: 20px;
	padding-top: 15px;
	border-radius: 5px 0 0 5px;
	padding-bottom: 8px;
	height: 65px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-flowitem__title {
		width: 100%;
		font-size: 16px;
		height: auto;
		padding-bottom: 16px;
		border-radius: 4px 4px 0 0;
	}
}

.c-flowitem__text {
	height: 65px;
	width: 412px;
	float: right;
	background: #EAF5F7;
	font-size: 16px;
	padding-top: 18px;
	border-radius: 0 5px 5px 0;
	padding-left: 20px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-flowitem__text {
		width: 100%;
		height: auto;
		font-size: 14px;
		height: auto;
		padding-bottom: 16px;
		border-radius: 0px 0px 5px 5px;
	}
}

.c-flowitem__text .c-button.is-sm, .c-flowitem__text .c-social-share > a.is-sm {
	margin-left: 24px;
}

.c-contactform {
	border-top: 1px solid #B9BDBE;
	border-bottom: 1px solid #B9BDBE;
	padding-top: 48px;
	padding-bottom: 48px;
	margin-bottom: 80px;
}

.c-form-block {
	padding-top: 1.1429rem;
	padding-bottom: 1.1429rem;
	overflow: hidden;
}

.c-form-block .c-label.is-danger {
	margin-left: 1.1429rem;
	position: absolute;
	left: 0;
	background: #4D65A6;
	color: #454449;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-form-block .c-label.is-danger {
		margin-left: 0;
	}
}

.c-form-block__title {
	padding-left: 80px;
	font-weight: bold;
	position: relative;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-form-block__title {
		margin-bottom: 20px;
		padding-left: 50px;
	}
}

.c-form-block textarea {
	min-height: 200px;
}

.c-form-block label {
	margin-bottom: 5px;
	font-weight: bold;
	display: inline-block;
}

.c-form-block__title label {
	margin-top: 6px;
}

.c-form-block__title .c-label {
	margin-top: -2px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-form-block__title .c-label {
		margin-left: 0;
	}
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-form-block__title {
		width: 100%;
		float: none;
		margin-bottom: 20px;
	}
}

.c-form-block__box {
	width: 60%;
	float: left;
}

.c-form-block__box p {
	margin-top: 8px;
	font-size: 0.9em;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-form-block__box {
		width: 100%;
		float: none;
	}
}

.c-form__radio label {
	display: inline-block;
	margin-right: 32px;
}

.c-form__radio label input {
	margin-right: 8px;
}

.p-privacy {
	text-align: left;
	margin-top: 60px;
	margin-bottom: 40px;
}

.p-privacy .p-privacy__box {
	margin-top: 48px;
	margin-bottom: 48px;
	padding: 32px;
	background: #EEF1F1;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	max-height: 200px;
	overflow: auto;
}

.p-privacy .p-privacy__box > h3 {
	text-align: center;
	color: #333;
	background: none;
	text-align: center;
	font-weight: bold;
	margin-top: 0;
}

.p-privacy .p-privacy__box > h4 {
	text-align: center;
	color: #333;
}

.p-privacy .p-privacy__radio {
	text-align: center;
}

.p-privacy .p-privacy__radio input[type="radio"] {
	margin-right: 6px;
	margin-left: 6px;
}

.p-privacy h4 {
	margin-top: 0;
	font-size: 15px;
	margin-bottom: 16px;
}
.p-privacy .p-privacy__box ol {
	padding-left: 0;
}
.c-radiogroup {
	display: block;
	margin-bottom: 8px;
}

.c-radiogroup input {
	margin-right: 8px;
}

.c-form-input.is-birthday select {
	display: inline;
	margin-left: 8px;
	margin-right: 8px;
}

.container, .l-container {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.container:after, .l-container:after {
	content: " ";
	display: block;
	clear: both;
}

.row {
	display: -webkit-flex; /* Safari */
	display: flex;
	margin-left: -15px;
	margin-right: -15px;
	position: relative;
}

.row:after {
	content: " ";
	display: block;
	clear: both;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.row {
		display: block;
		margin-left: 0;
		margin-right: 0;
	}
}

.small-1 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 8.3333%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.is-push-sm-1 {
	margin-left: 8.3333%;
}

.small-2 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 16.6667%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.is-push-sm-2 {
	margin-left: 16.6667%;
}

.small-3 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 25%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.is-push-sm-3 {
	margin-left: 25%;
}

.small-4 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 33.3333%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.is-push-sm-4 {
	margin-left: 33.3333%;
}

.small-5 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 41.6667%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.is-push-sm-5 {
	margin-left: 41.6667%;
}

.small-6 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.is-push-sm-6 {
	margin-left: 50%;
}

.small-7 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 58.3333%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.is-push-sm-7 {
	margin-left: 58.3333%;
}

.small-8 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 66.6667%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.is-push-sm-8 {
	margin-left: 66.6667%;
}

.small-9 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 75%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.is-push-sm-9 {
	margin-left: 75%;
}

.small-10 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 83.3333%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.is-push-sm-10 {
	margin-left: 83.3333%;
}

.small-11 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 91.6667%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.is-push-sm-11 {
	margin-left: 91.6667%;
}

.small-12 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

.is-push-sm-12 {
	margin-left: 100%;
}

@media screen and (min-width: 40em) {
	.large-1 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 8.3333%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.is-push-lg-1 {
		margin-left: 8.3333%;
	}
	.large-2 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 16.6667%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.is-push-lg-2 {
		margin-left: 16.6667%;
	}
	.large-3 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 25%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.is-push-lg-3 {
		margin-left: 25%;
	}
	.large-4 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 33.3333%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.is-push-lg-4 {
		margin-left: 33.3333%;
	}
	.large-5 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 41.6667%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.is-push-lg-5 {
		margin-left: 41.6667%;
	}
	.large-6 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 50%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.is-push-lg-6 {
		margin-left: 50%;
	}
	.large-7 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 58.3333%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.is-push-lg-7 {
		margin-left: 58.3333%;
	}
	.large-8 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 66.6667%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.is-push-lg-8 {
		margin-left: 66.6667%;
	}
	.large-9 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 75%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.is-push-lg-9 {
		margin-left: 75%;
	}
	.large-10 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 83.3333%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.is-push-lg-10 {
		margin-left: 83.3333%;
	}
	.large-11 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 91.6667%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.is-push-lg-11 {
		margin-left: 91.6667%;
	}
	.large-12 {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 100%;
		float: left;
		padding-left: 15px;
		padding-right: 15px;
	}
	.is-push-lg-12 {
		margin-left: 100%;
	}
}

.c-guidecontact {
	margin-bottom: 80px;
	margin-top: 40px;
}

.c-inline-list {
	list-style: disc;
	margin-left: 0;
	padding-left: 0;
	overflow: hidden;
	list-style-position: outside;
}

.c-inline-list li {
	float: left;
	margin-left: 2.2857rem;
	margin-right: 0.5714rem;
}

.c-label {
	background: #4D65A6;
	color: #fff;
	font-size: 11.2px;
	border-radius: 0;
	display: inline-block;
	padding-top: 0.2143rem;
	padding-bottom: 0.2143rem;
	padding-left: 1.1429rem;
	padding-right: 1.1429rem;
	vertical-align: middle;
}

.c-label > a {
	color: #fff;
	text-decoration: none;
}

.c-label.is-lg {
	font-size: 1rem;
}

.c-label.is-sm {
	font-size: 0.64rem;
}

.c-label.is-secondary {
	background: #666;
}

.c-label.is-tertiary {
	background: #efefef;
	color: #454449;
}

.c-label.is-danger {
	background: #cc2919;
}

.c-label.is-warning {
	background: #cc9e12;
}

.c-label.is-info {
	background: #378da3;
}

.c-label.is-success {
	background: #13a83a;
}

.c-lead {
	font-size: 20px;
	text-align: center;
	color: #333333;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-lead {
		font-size: 14px;
	}
}

.c-main-visual {
	max-width: 100%;
	width: 100%;
	min-height: 21.4286rem;
	background: #efefef;
}

.c-media > img {
	width: 100%;
	max-width: 100%;
	margin-bottom: 0;
}

.c-media > figcaption {
	margin-top: 0;
	background: #efefef;
	text-align: center;
	padding: 0.5714rem 1.1429rem;
}

.c-menu {
	padding-left: 0;
	margin-left: 0;
	border-top: 1px solid #efefef;
	border-left: 1px solid #efefef;
	border-right: 1px solid #efefef;
}

.c-menu > li {
	list-style: none;
}

.c-menu > li > a {
	display: block;
	border-bottom: 1px solid #efefef;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 16px;
	padding-right: 16px;
	text-decoration: none;
}

.c-menu > li > a:hover, .c-menu > li > a.is-active {
	background: #4D65A6;
	color: #fff;
}

.c-message {
	padding: 1.1429rem;
	background: #efefef;
	border: 1px solid #f2f2f2;
	border-radius: 3px;
	margin-bottom: 16px;
}

.c-message .c-message__icon {
	margin-right: 0.4286rem;
}

.c-message .c-message__icon.is-right {
	float: right;
	margin-top: 0.2857rem;
}

.c-message > p {
	margin-bottom: 0;
}

.c-message.is-primary {
	background: #4D65A6;
	border: 1px solid #485f9c;
}

.c-message.is-primary > p {
	color: #fff;
}

.c-message.is-secondary {
	background: #666;
	border: 1px solid #5e5e5e;
}

.c-message.is-secondary > p {
	color: #fff;
}

.c-message.is-danger {
	background: #cc2919;
	border: 1px solid #be2617;
}

.c-message.is-danger > * {
	color: #fff;
}

.c-message.is-warning {
	background: #cc9e12;
	border: 1px solid #be9311;
}

.c-message.is-warning > p {
	color: #fff;
}

.c-message.is-info {
	background: #378da3;
	border: 1px solid #338398;
}

.c-message.is-info > p {
	color: #fff;
}

.c-message.is-success {
	background: #13a83a;
	border: 1px solid #119a35;
}

.c-message.is-success > p {
	color: #fff;
}

.c-navs-list > li {
	display: inline-block;
}

.c-navs-list > li > a {
	display: inline-block;
	padding: 0.5714rem 1.1429rem;
	background: #efefef;
	text-decoration: none;
	border-radius: 3px;
}

.c-navs-list > li > a:hover, .c-navs-list > li > a.is-active {
	background: #4D65A6;
	color: #fff;
}

.c-navs-list.is-expand > li > a {
	padding: 0.5714rem 2.2857rem;
}

.c-section.is-offer {
	height: 650px;
	background: url(../toppage_files/bg-offer01.jpg) no-repeat;
	background-size: cover;
	background-position: center top;
	padding-top: 196px;
	-webkit-transform: translateY(-2px);
	transform: translateY(-2px);
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-section.is-offer {
		height: auto;
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

.c-offerbanner {
	max-width: 439px;
	margin-left: auto;
	margin-right: auto;
}

.c-offerbanner__button {
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-offerbanner__button {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.c-offerbanner__image {
	max-width: 368px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 46px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-offerbanner__image img {
		max-height: 44px;
	}
}

.c-offerbanner__lead {
	text-align: center;
	color: #fff;
	font-size: 18px;
	margin-bottom: 20px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-offerbanner__lead {
		font-size: 16px;
	}
}

/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	/* position relative and z-index fix webkit rendering fonts issue */
	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;
	/* fix for flashing background */
	-webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
	display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
	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 {
	visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.no-js .owl-carousel {
	display: block;
}

.owl-carousel .animated {
	-webkit-animation-duration: 1000ms;
	-webkit-animation-duration-animation-duration: 1000ms;
	-webkit-animation-fill-mode: both;
	-webkit-animation-fill-mode-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;
	-webkit-animation-name-animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.owl-height {
	transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
	-webkit-transform-style: preserve-3d;
	-webkit-transform-style-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;
	background: url("owl.video.play.png") no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: -webkit-transform 100ms ease;
	transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transform: scale(1.3, 1.3);
	-webkit-transform--ms-transform: scale(1.3, 1.3);
	-webkit-transform--ms-transform-transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.owl-theme .owl-nav {
	margin-top: 10px;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav .owl-theme .owl-nav [class*='owl-'] {
	color: #FFF;
	font-size: 14px;
	margin: 5px;
	padding: 4px 7px;
	background: #D6D6D6;
	display: inline-block;
	cursor: pointer;
	border-radius: 3px;
}

.owl-theme .owl-nav .owl-theme .owl-nav [class*='owl-'] .owl-theme .owl-nav [class*='owl-']:hover {
	background: #869791;
	color: #FFF;
	text-decoration: none;
}

.owl-theme .owl-nav .owl-theme .owl-nav .disabled {
	opacity: 0.5;
	cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
	margin-top: 10px;
}

.owl-theme .owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-theme .owl-dots .owl-dot {
	display: inline-block;
	zoom: 1;
	*display: inline;
}

.owl-theme .owl-dots .owl-theme .owl-dots .owl-dot .owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: #D6D6D6;
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity 200ms ease;
	border-radius: 30px;
}

.owl-theme .owl-dots .owl-theme .owl-dots .owl-dot .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-theme .owl-dots .owl-dot .owl-theme .owl-dots .owl-dot:hover span {
	background: #869791;
}

.c-page-header {
	width: 100%;
	max-width: 100%;
	padding-top: 0.3571rem;
	padding-bottom: 2.1429rem;
	text-align: center;
	background: #fff;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-page-header h1 {
		margin-bottom: 0;
		padding-bottom: 0;
		line-height: 1;
	}
	.c-page-header h1 img {
		max-height: 24px;
	}
}

.c-page-header.is-left {
	text-align: left;
}

.c-page-header.is-right {
	text-align: right;
}

.c-page-header__title {
	font-size: 2.5714rem;
}

.c-page-header__subtitle {
	font-size: 1.1429rem;
}

.c-page-header.is-about {
	text-align: right;
	background: url(../images/bg-page-header-about.jpg) no-repeat center center;
	background-size: contain;
	margin-top: -48px;
	padding-top: 146px;
	padding-bottom: 120px;
}

.c-page-header.is-about h1 {
	padding-right: 62px;
}

@media screen and (max-width: 39.9375em) and (min-width: 0em) {
	.c-page-header.is-about h1 {
		padding-left: 100px;
		padding-right: 0px;
		text-align: right;
	}
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-page-header.is-about {
		padding-top: 46px;
		background-size: auto 200px;
		background-position: center bottom;
		margin-bottom: 40px;
		padding-bottom: 180px;
	}
}

.c-pagination > ul {
	text-align: center;
	list-style: none;
}

.c-pagination > ul > li {
	display: inline-block;
}

.c-pagination > ul > li > span,
.c-pagination > ul > li > a {
	display: inline-block;
	padding-left: 8px;
	padding-right: 8px;
	text-decoration: none;
	border-radius: 3px;
}

.c-pagination > ul > li > span:hover,
.c-pagination > ul > li > a:hover {
	background: #4D65A6;
	color: #fff;
}

.c-pagination > ul > li > span.is-active,
.c-pagination > ul > li > a.is-active {
	background: #4D65A6;
	color: #fff;
}

.c-pagination__next, .c-pagination__prev {
	display: inline-block;
	padding-left: 8px;
	padding-right: 8px;
	text-decoration: none;
	background: #4D65A6;
	color: #fff;
	border-radius: 1000px;
}

.c-pagination__prev {
	margin-right: 2.2857rem;
}

.c-pagination__next {
	margin-left: 2.2857rem;
}

.c-panel__title {
	background: #4D65A6;
	color: #fff;
	padding: 16px 32px;
	margin-bottom: 0;
	font-size: 1.2857rem;
	border-radius: 3px 3px 0 0;
}

.c-panel__content {
	padding: 16px 32px;
	border: 1px solid #efefef;
	border-radius: 0 0 3px 3px;
	background: #fff;
}

.c-panel.is-danger .c-panel__title {
	background: #cc2919;
}

.c-panel.is-warning .c-panel__title {
	background: #cc9e12;
}

.c-panel.is-success .c-panel__title {
	background: #13a83a;
}

.c-panel.is-info .c-panel__title {
	background: #378da3;
}

.c-post-navs ul {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
	overflow: hidden;
}

.c-post-navs__prev a, .c-post-navs__next a {
	border-radius: 1000px;
	border: 2px solid #4D65A6;
	padding: 8px 32px;
	display: inline-block;
	text-decoration: none;
}

.c-post-navs__prev a:hover, .c-post-navs__next a:hover {
	background: #4D65A6;
	color: #fff;
}

.c-post-navs__prev {
	float: left;
}

.c-post-navs__next {
	float: right;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.wp-image-237 {
		height: 16px;
		width: auto;
	}
	.wp-image-170 {
		height: 25px;
		width: auto;
	}
	.wp-image-168 {
		margin-left: 24px;
		margin-right: 24px;
		width: 80%;
	}
	.wp-image-144,
	.wp-image-143,
	.wp-image-142 {
		width: 70%;
	}
	.wp-image-159 {
		width: 60%;
	}
}

.c-product-menu {
	text-align: center;
	margin-bottom: 32px;
	overflow: hidden;
	letter-spacing: -4px;
}

.c-product-menu.is-faq {
	margin-bottom: 16px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-product-menu {
		background: #EAF5F7;
		margin-left: -20px;
		margin-right: -20px;
		border-top: 1px solid #DCEEF2;
	}
}

.c-product-menu > li {
	display: inline-block;
	padding-left: 14px;
	padding-right: 14px;
	border-left: 1px solid #4D65A6;
}

@media screen and (min-width: 40em) {
	.c-product-menu > li {
		line-height: 1;
	}
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-product-menu > li {
		display: block;
		width: 100%;
		border-left: none;
	}
}

.c-product-menu > li:last-child {
	border-right: 1px solid #4D65A6;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-product-menu > li:last-child {
		border-right: none;
	}
}

.c-product-menu > li a {
	word-spacing: normal;
	white-space: nowrap;
	letter-spacing: 0px;
	text-decoration: none;
	line-height: 1;
	display: inline-block;
	padding-left: 3px;
	padding-top: 1px;
	padding-bottom: 1px;
	padding-right: 3px;
}

.c-product-menu > li a:hover {
	background: rgba(77, 101, 166, 0.15);
	text-decoration: none;
	border-radius: 4px;
}

.c-product-menu > li a.is-active {
	background: rgba(77, 101, 166, 0.15);
	text-decoration: none;
	border-radius: 4px;
}

@media screen and (min-width: 40em) {
	.c-product-menu > li a.is-active {
		background: rgba(77, 101, 166, 0.15);
	}
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-product-menu > li a {
		border-left: none;
		padding-top: 9px;
		padding-bottom: 9px;
		display: block;
		width: 100%;
		text-align: center;
		font-size: 14px;
		border-bottom: 1px solid #DCEEF2;
	}
}

.c-product-navs {
	overflow: hidden;
	margin-left: -16px;
	margin-right: -16px;
	margin-top: 32px;
	margin-bottom: 41px;
	padding-bottom: 1px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-product-navs {
		margin-bottom: 17px;
	}
}

.c-product-navs > li {
	width: 50%;
	float: left;
	padding-left: 16px;
	padding-right: 16px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-product-navs > li {
		width: 100%;
		float: none;
		margin-bottom: 16px;
	}
	.c-product-navs > li > a {
		font-size: 13px !important;
	}
}

.c-productcategory {
	overflow: hidden;
	padding-top: 32px;
}

.c-productcategory__content {
	max-width: 484px;
	float: left;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productcategory__content {
		float: none;
	}
}

.c-productcategory__heading {
	margin-top: 28px;
	margin-bottom: 40px;
}

.c-productcategory__lead {
	font-weight: bold;
	font-size: 18px;
	color: #555555;
	margin-bottom: 16px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productcategory__lead {
		text-align: center;
	}
}

.c-productcategory__thumbnail {
	max-width: 503px;
	float: right;
	margin-top: -17px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productcategory__thumbnail {
		float: none;
	}
}

.postid-86 .c-productcontent h4 {
	margin-top: 80px;
}

.c-productcontent {
	text-align: center;
}

.c-productcontent h2 {
	margin-top: 80px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productcontent h2 {
		margin-top: 40px;
	}
}

.c-productcontent h3 {
	background: #E3F2F4;
	color: #4D65A6;
	font-size: 21px;
	padding-top: 5px;
	padding-bottom: 4px;
	border-radius: 1000px;
	text-align: center;
	font-weight: normal;
	margin-bottom: 32px;
	margin-top: 60px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productcontent h3 {
		font-size: 14px;
		margin-bottom: 16px;
	}
}

.c-productcontent .alignright + p {
	text-align: left;
}

.c-productcontent .alignright + p + p {
	text-align: left;
}

.c-productcontent h4 {
	font-size: 18px;
	margin-top: 48px;
	margin-bottom: 24px;
	color: #4D65A6;
}

.c-productcontent h4 > span {
	display: block;
	font-size: 0.8em;
	color: #666;
	font-weight: normal;
}

.c-staff-card {
	margin-top: 40px;
	margin-bottom: 40px;
}

.c-staff-card h3.heading.is-lg, .c-staff-card h3.c-card__title {
	margin-bottom: 16px;
}

.c-staff-card h4 {
	font-weight: bold;
	margin-top: 0;
	color: #4D65A6;
}

.c-productlist {
	margin-bottom: 120px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productlist {
		margin-bottom: 60px;
	}
}

.c-productitem {
	width: 263px;
	display: block;
	text-decoration: none;
	float: left;
	padding-left: 27px;
	padding-right: 27px;
	color: #333;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productitem {
		border-bottom: 1px solid #DDDDDD;
		width: auto;
		padding-top: 20px;
		padding-bottom: 20px;
		width: 100%;
	}
}

.c-productitem__wrap {
	overflow: hidden;
	padding-top: 14px;
	margin-left: -27px;
	margin-right: -27px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productitem__wrap {
		margin-left: -20px;
		margin-right: -20px;
	}
}

.c-productitem:hover .c-productitem__thumbnail:before {
	transform: scale3d(1.2, 3.4, 1.2);
	opacity: 1;
}

.c-productitem__thumbnail {
	width: 210px;
	height: 190px;
	background-size: contain;
	background-position: center bottom;
	background-repeat: no-repeat;
	margin-bottom: 8px;
	position: relative;
}

.c-productitem__thumbnail:before {
	content: "";
	width: 210px;
	height: 190px;
	display: block;
	background: rgba(77, 101, 166, 0.1);
	position: absolute;
	top: 0;
	z-index: -1;
	left: 0;
	transform: scale3d(0.6, 0.6, 0.6);
	opacity: 0;
	transform-origin: center center;
	transition: all ease 0.2s;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productitem__thumbnail {
		width: 100px;
		height: 100px;
		float: left;
	}
	.c-productitem__thumbnail:before {
		display: none;
	}
}

.c-productitem__icon {
	width: 55px;
	height: 67px;
	background: url(../images/icon-original.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: -14px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productitem__icon {
		width: 35px;
	}
}

.c-productitem__label {
	background: #4D65A6;
	color: #fff;
	font-weight: bold;
	text-align: center;
	font-size: 13px;
	border-radius: 4px;
	padding-top: 4px;
	padding-bottom: 3px;
	margin-bottom: 12px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productitem__label {
		width: calc( 100% - 110px);
		float: right;
	}
}

.c-productitem__title {
	font-weight: bold;
	color: #4D65A6;
	font-size: 15px;
	margin-bottom: 12px;
	min-height: 5.5rem;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productitem__title {
		width: calc( 100% - 110px);
		float: right;
		min-height: 55px;
	}
}

.c-productitem__text {
	font-size: 13px;
	clear: both;
	margin-bottom: 16px;
}

.c-productmainvisual {
	margin-bottom: 60px;
}

.c-productmainvisual__thumbnail {
	margin-top: 60px;
	text-align: center;
	margin-bottom: 40px;
}

.c-productmainvisual__thumbnail p {
	font-size: 17px;
	color: #285C43;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productmainvisual__thumbnail p {
		font-size: 14px;
		font-weight: bold;
	}
}

.c-productmainvisual__block {
	overflow: hidden;
}

.c-productmainvisual__block.is-point-2 .c-productmainvisual__content {
	max-width: 550px;
}

.c-productmainvisual__block.is-point-2 .c-productmainvisual__points {
	max-width: 340px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productmainvisual__block.is-point-2 .c-productmainvisual__points {
		margin-top: 34px;
		margin-left: 70px;
		margin-right: 70px;
	}
}

.c-productmainvisual__block.is-point-4 .c-productmainvisual__content {
	max-width: 100%;
	margin-bottom: 40px;
}

.c-productmainvisual__block.is-point-4 .c-productmainvisual__points {
	max-width: 100%;
	float: none;
	text-align: center;
}

.c-productmainvisual__block.is-point-4 .c-productmainvisual__points .c-productmainvisual__pointitem {
	float: none;
	display: inline;
}

.c-productmainvisual__content {
	max-width: 489px;
	width: 100%;
	float: left;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productmainvisual__content {
		float: none;
	}
}

.c-productmainvisual__lead {
	font-weight: bold;
	font-size: 16px;
	color: #285C43;
	margin-bottom: 24px;
}

.c-productmainvisual__text {
	color: #666666;
	font-size: 14px;
}

.c-productmainvisual__text ul li {
	color: #666666;
	font-size: 14px;
	margin-bottom: 8px;
	position: relative;
	padding-left: 16px;
}

.c-productmainvisual__text ul li:before {
	content: "";
	left: 0px;
	top: 8px;
	width: 4px;
	height: 4px;
	border: 1px solid #336566;
	margin-right: 8px;
	display: inline-block;
	margin-bottom: 1px;
	position: absolute;
}

.c-productmainvisual__points {
	max-width: 570px;
	float: right;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productmainvisual__points {
		float: none;
		display: table;
		margin-top: 16px;
	}
}

.c-productmainvisual__pointitem {
	float: left;
	margin-right: 20px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productmainvisual__pointitem {
		float: none;
		margin-right: 0;
		display: table-cell;
		padding-left: 4px;
		padding-right: 4px;
	}
}

.c-productmore {
	margin-top: 120px;
	overflow: hidden;
	margin-bottom: 80px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productmore {
		margin-top: 40px;
	}
}

.c-productmore .c-button, .c-productmore .c-social-share > a {
	vertical-align: middle;
	line-height: 2.4;
}

.c-productmore .c-button img, .c-productmore .c-social-share > a img {
	width: 33px;
	margin-top: 2px;
	margin-right: 16px;
	vertical-align: top;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productrelated a {
		display: block;
		margin-bottom: 16px;
	}
}

.c-productslider {
	border-top: 1px solid #BBBBBB;
	margin-top: 120px;
	padding-left: 200px;
	padding-right: 200px;
	padding-top: 40px;
	padding-bottom: 40px;
	position: relative;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productslider {
		margin-top: 40px;
	}
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productslider {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.c-productslider .c-productslider-item {
	display: block;
	width: 180px;
	text-decoration: none;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productslider .c-productslider-item {
		width: 100%;
	}
}

.c-productslider .c-productslider-item__thumbnail {
	text-align: center;
}

.c-productslider .c-productslider-item__thumbnail > img {
	max-height: 100px;
	width: auto;
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.c-productslider .c-productslider-item__title {
	text-align: center;
}

.c-productslider .owl-nav {
	width: 100%;
}

.c-productslider .owl-nav .owl-prev {
	background: url(../images/icon-slider-prev.svg);
	width: 27px;
	height: 27px;
	position: absolute;
	left: -200px;
	top: 50%;
	margin-top: -13px;
	background-repeat: no-repeat;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productslider .owl-nav .owl-prev {
		left: -20px;
	}
}

.c-productslider .owl-nav .owl-next {
	background: url(../images/icon-slider-next.svg);
	background-repeat: no-repeat;
	width: 27px;
	height: 27px;
	position: absolute;
	right: -200px;
	top: 50%;
	margin-top: -13px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-productslider .owl-nav .owl-next {
		right: -20px;
	}
}

.c-servicebanner {
	width: 50%;
	display: table-cell;
	vertical-align: top;
	padding-top: 106px;
	padding-bottom: 92px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-servicebanner {
		width: 100%;
		display: block;
		overflow: hidden;
		padding-bottom: 40px;
		padding-top: 40px;
	}
}

.c-servicebanner__lead {
	font-size: 23px;
}

.c-servicebanner__lead > span {
	font-size: 18px;
	display: block;
	text-align: center;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-servicebanner__lead {
		font-size: 18px;
	}
	.c-servicebanner__lead > span {
		font-size: 14px;
	}
}

.c-servicebanner__inner {
	max-width: 480px;
	text-align: center;
	color: #fff;
}

.c-servicebanner__title {
	margin-bottom: 26px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-servicebanner__title img {
		max-height: 44px;
	}
}

.c-servicebanner__button {
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.c-servicebanner.is-up {
	background-image: linear-gradient(50% 98.46% 90deg, #002200 0%, #335533 62.85%);
	background: -webkit-linear-gradient(90deg, #002200 0%, #335533 62.85%);
	background: -webkit-gradient(linear, 50% 98.46%, 50% 1.99%, color-stop(0, #002200), color-stop(0.6285, #335533));
	background: -o-linear-gradient(90deg, #002200 0%, #335533 62.85%);
	background: -ms-linear-gradient(90deg, #002200 0%, #335533 62.85%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#002200', endColorstr='#335533' ,GradientType=0)";
	background: linear-gradient(0deg, #002200 0%, #335533 62.85%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#335533', endColorstr='#002200', GradientType=0);
}

.c-servicebanner.is-up .c-servicebanner__title {
	max-width: 334px;
	margin-left: auto;
	margin-right: auto;
}

.c-servicebanner.is-up .c-servicebanner__inner {
	float: right;
	margin-right: 71px;
	padding-right: 0px;
	max-width: 420px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-servicebanner.is-up .c-servicebanner__inner {
		margin-right: 0;
		padding-left: 20px;
		padding-right: 20px;
	}
}

.c-servicebanner.is-up .c-servicebanner__lead {
	margin-bottom: 17px;
	padding-left: 18px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-servicebanner.is-up .c-servicebanner__lead {
		padding-left: 0;
		margin-top: 50px;
	}
}

.c-servicebanner.is-up .c-servicebanner__image {
	max-width: 420px;
	margin-bottom: 6px;
	-webkit-transform: translateX(6px);
	transform: translateX(6px);
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-servicebanner.is-up .c-servicebanner__image {
		margin-bottom: -40px;
	}
}

.c-servicebanner.is-down {
	background: -moz-linear-gradient(50% 98.46% 90deg, #111122 0%, #334466 84.16%);
	background: -webkit-linear-gradient(90deg, #111122 0%, #334466 84.16%);
	background: -webkit-gradient(linear, 50% 98.46%, 50% 1.99%, color-stop(0, #111122), color-stop(0.8416, #334466));
	background: -o-linear-gradient(90deg, #111122 0%, #334466 84.16%);
	background: -ms-linear-gradient(90deg, #111122 0%, #334466 84.16%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#111122', endColorstr='#334466' ,GradientType=0)";
	background: linear-gradient(0deg, #111122 0%, #334466 84.16%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#334466', endColorstr='#111122', GradientType=0);
}

.c-servicebanner.is-down .c-servicebanner__lead {
	margin-top: -29px;
	padding-left: 15px;
	margin-bottom: 17px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-servicebanner.is-down .c-servicebanner__lead {
		padding-left: 0;
		margin-top: 0;
	}
}

.c-servicebanner.is-down .c-servicebanner__title {
	max-width: 370px;
	margin-left: auto;
	margin-right: auto;
}

.c-servicebanner.is-down .c-servicebanner__inner {
	float: left;
	margin-left: 24px;
	max-width: 478px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-servicebanner.is-down .c-servicebanner__inner {
		margin-left: 0;
		padding-left: 20px;
		padding-right: 20px;
		float: none;
	}
}

.c-servicebanner.is-down .c-servicebanner__image {
	width: 478px;
	margin-bottom: 24px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-servicebanner.is-down .c-servicebanner__image {
		width: 100%;
	}
}

@media screen and (min-width: 40em) {
	.slidebar-button {
		display: none !important;
	}
	.slidebar-menu {
		display: none !important;
	}
}
#mbLoginB {
	display: none;
}
@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.slidebar-button {
		position: fixed;
		right: 10px;
		top: 10px;
		text-align: center;
		z-index: 100000;
		text-decoration: none;
		padding: 4px;
		border-radius: 3px;
		line-height: 1;
	}
	.slidebar-button svg #iconmenu * {
		transition: all linear .2s;
	}
	.slidebar-menu {
		height: 100%;
		position: fixed;
		z-index: 100000;
		margin-top: 45px;
		width: 100%;
		-webkit-transform: translateX(100%);
		transform: translate3d(100%, 0px, 0px);
		right: 0;
		top: 0;
		-webkit-transition: all ease-in-out 0.2s;
		transition: all ease-in-out 0.2s;
	}
	#mbLoginB {
		display: block;
	}
	.slidebar-menu > ul > li a {
		display: block;
		padding-left: 1.1429rem;
		padding-top: 0.8571rem;
		padding-bottom: 0.8571rem;
		padding-right: 0.5714rem;
		text-decoration: none;
		color: #333;
		font-weight: bold;
		border-bottom: 1px solid #CCCCCC;
	}
	.slidebar-menu > ul > li a i.fa {
		margin-right: 8px;
	}
	.slidebar-menu__submenu {
		background: #f1f1f1;
	}
	.slidebar-menu__submenu a {
		border-top: 1px solid #fff;
	}
	.slidebar-menu__login {
		padding-left: 20px;
		padding-right: 20px;
		margin-top: 20px;
	}
	.slidebar-menu__login .c-header__login {
		display: block;
		float: none;
		text-align: center;
		margin-right: auto;
		margin-left: auto;
	}
	.slidebar-container {
		height: 100%;
		padding-top: 45px;
	}
	.slidebar-container:after {
		content: "";
		position: fixed;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.8);
		top: 0;
		left: 0;
		opacity: 0;
		-webkit-transition: all ease-in-out 0.2s;
		transition: all ease-in-out 0.2s;
		display: none;
	}
	.slidebar-container {
		-webkit-transition: all ease-in-out 0.2s;
		transition: all ease-in-out 0.2s;
	}
	.is-slidebar-active {
		cursor: pointer;
	}
	.is-slidebar-active .slidebar-button {
		z-index: 1000000000;
	}
	.is-slidebar-active #iconmenu #Fill-1 {
		-webkit-transform: rotate(45deg) translateX(3px) translateY(-2px);
		transform: rotate(45deg) translateX(3px) translateY(-2px);
	}
	.is-slidebar-active #iconmenu #Fill-2 {
		-webkit-transform: rotate(-45deg) translateX(-13px) translateY(7px);
		transform: rotate(-45deg) translateX(-13px) translateY(7px);
	}
	.is-slidebar-active #iconmenu #Fill-3 {
		display: none;
	}
	.is-slidebar-active .slidebar-container:after {
		content: "";
		opacity: 1;
		position: fixed;
		width: 100%;
		height: calc(100% - 45px);
		margin-top: 45px;
		background: rgba(0, 0, 0, 0.8);
		display: block;
		top: 0;
		left: 0;
	}
	.is-slidebar-active .slidebar-menu {
		background: #fff;
		-webkit-transform: translateX(0);
		transform: translate3d(0, 0, 0);
	}
}

.c-slider {
	overflow: hidden;
	position: relative;
}

.c-slider__item {
	background: url(../images/jp_top_image2.jpg) no-repeat center top;
	padding-top: 652px;
	background-size: cover;
	position: relative;
}
@media screen and (min-width: 1994px) {
	.c-slider__item {
		padding-top: 33%;
		
	}
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-slider__item {
		background: url(../images/jp_top_imageSP.jpg) no-repeat center top;
		background-position: center bottom !important;
		background-size: contain;
		min-height: 0px;
		padding-top: 142%;
	}
}

.c-slider__item > span {
	background: url(../images/img-mainvisual_mes.png) no-repeat center top;
	background-size: cover;
	width: 92px;
	height: 300px;
	position: absolute;
	top: 66px;
	left: -20px;
	right:0;
	bottom:0;
	margin: 0 auto;
	text-indent: -9999px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-slider__item > span {
		background: url(../images/img-mainvisual_mesSP.png) no-repeat center top;
		background-size: contain;
		width: 51.2%;
		min-height: 0;
		padding-top: 17.6%;
		left:0px;
		margin:0 auto;
		top: 2.7%;
	}
}

.c-slider__banners {
	position: absolute;
	display: -webkit-flex; /* Safari */
	display: flex;
	flex-direction: row-reverse;
	/*最初と最後のアイテムは端に、残りは等間隔*/
	-webkit-justify-content: space-between; /* Safari */
	justify-content:         space-between;
	width: 536px;
	left: -14px;
	right: 0;
	bottom: 90px;
	margin: auto;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-slider__banners {
		width: 70%;
		text-align: center;
		margin-left: 0;
		left: initial;
		bottom: 40px;
		right: 8px;
	}
}

.c-slider__banner {
	display: block;
}
.c-slider__banners .c-slider__banner:nth-of-type(1) img {
	width: 213px;
}
.c-slider__banners .c-slider__banner:nth-of-type(2) img {
	width: 310px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-slider__banner {
		margin-bottom: 20px;
		width: 100%;
		float: none;
		margin-left: auto;
		margin-right: auto;
	}
}

.c-social-share > a.c-social-share__facebook {
	background: #3b5998;
}

.c-social-share > a.c-social-share__twitter {
	background: #00aced;
}

.c-social-share > a.c-social-share__googleplus {
	background: #d34836;
}

.c-table {
	width: 100%;
}

.c-table > thead > tr {
	background: #4D65A6;
}

.c-table > thead > tr > th {
	color: #fff;
	padding: 0.5714rem;
	border: 1px solid #efefef;
}

.c-table > tbody > tr > td {
	border: 1px solid #efefef;
	padding: 0.5714rem;
}

.c-table > tbody > tr > th {
	background: #4D65A6;
	color: #fff;
	padding: 0.5714rem;
	border: 1px solid #efefef;
}

.c-table.is-simple {
	border: none;
}

.c-table.is-simple > thead > tr > th {
	color: #fff;
	padding: 0.5714rem;
	border-bottom: 1px solid #ccc;
}

.c-table.is-simple > tbody > tr > td {
	border: none;
	border-bottom: 1px solid #ccc;
	padding: 1.1429rem;
}

.c-table.is-simple > tbody > tr > th {
	width: 200px;
	background: #4D65A6;
	color: #fff;
	padding: 1.1429rem;
	border: none;
	border-bottom: 1px solid #ccc;
}

.c-table.is-payment {
	border: none;
	table-layout: fixed;
}

.c-table.is-payment caption {
	text-align: left;
	font-weight: bold;
	padding-bottom: 4px;
	padding-top: 4px;
}

.c-table.is-payment > thead > tr > th {
	color: #fff;
	padding: 0.5714rem;
	border-bottom: 1px solid #ccc;
	text-align: center;
	background: #2d3b60;
	font-size: 12px;
}

.c-table.is-payment > tbody > tr > td {
	text-align: center;
	border: none;
	border-bottom: 1px solid #ccc;
	padding: 0.5714rem;
}

.c-table.is-payment > tbody > tr > th {
	background: #4D65A6;
	color: #fff;
	padding: 0.5714rem;
	border: none;
	text-align: center;
	border-bottom: 1px solid #ccc;
}

.c-table.is-form > tbody > tr > th {
	background: none;
	color: #333;
	border: none;
	border-bottom: 2px solid #e8e8e8;
	padding-top: 22px;
	padding-bottom: 22px;
	text-align: left;
	width: 240px;
}

.c-table.is-form > tbody > tr > th .c-label.is-require {
	background: none;
	float: right;
	color: #cc2919;
	font-weight: bold;
}

.c-table.is-form > tbody > tr > td {
	padding-top: 22px;
	padding-left: 40px;
	padding-bottom: 22px;
	border: none;
	border-bottom: 2px solid #e8e8e8;
}

.c-table.is-form > tbody > tr > td p {
	margin-bottom: 0;
}

.c-table.is-form > tbody > tr > td select {
	width: auto;
}

.c-table.is-form > tbody > tr > td input[type="text"] {
	width: auto;
	margin-bottom: 4px;
}

/* スクロール催促 */
div.nScroll {
	height:70px;
	margin-top: -70px;
	text-align: center;
}
div.nScroll a {
	padding-top: 20px;
	padding-bottom: 10px;
	color: #4d65a6;
	z-index: 2;
	display: inline-block;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	text-decoration: none;
}
div.nsWhite a {
	color: white;	
}
div.nScroll a span {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 24px;
	height: 24px;
	margin-left: -12px;
	border-left: 1px solid #4d65a6;
	border-bottom: 1px solid #4d65a6;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb 1.5s infinite;
	animation: sdb 1.5s infinite;
	box-sizing: border-box;
}
div.nsWhite a span {
	border-left: 1px solid white;
	border-bottom: 1px solid white;
}
@-webkit-keyframes sdb {
	0% {
		-webkit-transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		-webkit-transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}
@keyframes sdb {
	0% {
		transform: rotate(-45deg) translate(0, 0);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: rotate(-45deg) translate(-20px, 20px);
		opacity: 0;
	}
}
/* スクロール催促 end*/

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-table.is-form > tbody > tr > td input[type="text"] {
		width: 100%;
	}
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-table.is-form > tbody,
	.c-table.is-form > tbody > tr,
	.c-table.is-form > tbody > tr > th,
	.c-table.is-form > tbody > tr > td {
		display: block;
		width: 100%;
	}
	.c-table.is-form > tbody > tr > td {
		padding-left: 0;
	}
}

.c-tabs__navs {
	margin-left: 0;
	padding-left: 0;
	margin-bottom: 0;
}

.c-tabs__navs > li {
	display: inline-block;
}

.c-tabs__navs > li > a {
	display: inline-block;
	padding: 0.5714rem 1.1429rem;
	background: #efefef;
	text-decoration: none;
	border-radius: 3px 3px 0 0;
}

.c-tabs__navs > li > a:hover, .c-tabs__navs > li > a.is-active {
	background: #4D65A6;
	color: #fff;
}

.c-tabs__navs.is-expand > li > a {
	padding: 0.5714rem 2.2857rem;
}

.c-tabs__content {
	border: 1px solid #efefef;
	padding: 8px;
	background: #fff;
	display: none;
}

.c-tabs__content.is-active {
	display: block;
}

.c-tabs__content p {
	margin-top: 0;
}

.c-tel-banner__number {
	font-size: 2.1429rem;
	font-weight: bold;
	margin-bottom: 0;
	line-height: 1em;
}

.c-tel-banner__text {
	font-size: 0.8571rem;
}

.c-section.is-voice {
	height: 650px;
	background: url(../images/bg-top-voice01.jpg) no-repeat;
	background-size: cover;
	background-position: center top;
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-section.is-voice {
		background-size: auto 286px;
		background-color: #FDFCE7;
		height: auto;
		padding-bottom: 40px;
		padding-top: 307px;
		background-position: -258px top;
	}
}

.c-voicebanner {
	max-width: 439px;
	float: left;
	margin-top: 176px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-voicebanner {
		margin-top: 0px;
		float: none;
	}
}

.c-voicebanner__button {
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-voicebanner__button {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.c-voicebanner__image {
	max-width: 439px;
	margin-bottom: 46px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-voicebanner__image {
		text-align: center;
		margin-bottom: 23px;
	}
	.c-voicebanner__image img {
		max-height: 16px;
	}
}

.c-voicebanner__lead {
	text-align: center;
	color: #4D65A6;
	font-size: 18px;
	margin-bottom: 20px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-voicebanner__lead {
		font-size: 20px;
	}
	.c-voicebanner__lead > span {
		font-size: 13px;
	}
}

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #fff;
	border: 1px solid #f0f0f0;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	position-white-space: nowrap;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.wp-caption {
	border: none;
}

.wp-caption img {
	margin-bottom: 8px;
}

.l-section.is-contact {
	background: #454449;
}

.p-contact {
	max-width: 680px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	border-radius: 4px;
	background: #fff;
	padding-top: 0.5714rem;
	padding-bottom: 2.2857rem;
	box-shadow: 0 4px 24px 4px rgba(0, 0, 0, 0.1);
}

.p-contact__button {
	margin-top: 24px;
}

.p-contact__tel {
	font-size: 1.7143rem;
	letter-spacing: 2px;
	margin-top: 24px;
}

.p-contact__tel i.fa {
	margin-right: 8px;
}

.p-2_image {
	margin-top: 24px;
	margin-bottom: 24px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.p-2_image img {
		margin-bottom: 8px;
	}
}

.p-3_image {
	margin-top: 24px;
	margin-bottom: 24px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.p-3_image img {
		margin-bottom: 8px;
	}
}

.p-left_image_right_text {
	margin-top: 24px;
	margin-bottom: 24px;
}

.p-left_text_right_image {
	margin-top: 24px;
	margin-bottom: 24px;
}

.p-visualeditor {
	margin-top: 24px;
	margin-bottom: 24px;
}

.c-productcontent h3 small, .c-productcontent h3 .c-dropdown__list li a, .c-dropdown__list li .c-productcontent h3 a {
	font-size: 0.5em;
	display: inline-block;
	margin-left: 4px;
	margin-right: 4px;
}

.p-landing-block {
	display: table;
	margin-bottom: 3.4286rem;
}

.p-landing-block__thumbnail {
	display: table-cell;
	width: 50%;
	background-position: center;
	background-repeat: no-repet;
}

.p-landing-block__content {
	display: table-cell;
	padding-left: 4.5714rem;
	padding-right: 4.5714rem;
	padding-top: 4.5714rem;
	padding-bottom: 4.5714rem;
}

.p-post-item.is-horizon {
	border: 1px solid #efefef;
	padding: 16px;
	background: #fff;
}

.p-post-item.is-horizon .p-post-item__thumbnail {
	float: left;
	margin-right: 16px;
	margin-bottom: 0;
}

.p-post-item.is-line {
	border-bottom: 1px solid #efefef;
	padding-top: 16px;
	padding-bottom: 16px;
	display: block;
	margin-bottom: 0;
}

.p-post-item.is-line .p-post-item__thumbnail {
	float: left;
	margin-right: 16px;
	margin-bottom: 0;
}

.p-post-item.is-line .p-post-item__thumbnail > img {
	max-height: 1.7143rem;
	width: auto;
}

.p-post-item.is-line .p-post-item__date,
.p-post-item.is-line .p-post-item__category {
	margin-right: 16px;
	float: left;
	color: #454449;
}

.p-post-item.is-line .p-post-item__title {
	float: left;
	color: #454449;
	margin-right: 16px;
	margin-bottom: 0;
	font-size: 1rem;
	margin-top: 0.2143rem;
	margin-right: 16px;
}

.p-post-item {
	margin-bottom: 1.1429rem;
}

.p-post-item__title {
	font-size: 1.2857rem;
	margin-top: 0.5714rem;
	margin-bottom: 0.5714rem;
	line-height: 1.3;
}

.p-post-item__title > a {
	color: #000;
	text-decoration: none;
}

.p-post h1,
.p-post h2,
.p-post h3,
.p-post h4,
.p-post h5,
.p-post h6,
.p-post p {
	margin-top: 0;
}

.p-profile-box {
	border: 1px solid #efefef;
	padding: 16px;
}

.p-profile-box__thumbnail {
	float: left;
	text-align: center;
	margin-right: 16px;
}

.p-profile-box__authorname {
	margin-top: 0;
	font-size: 1.2857rem;
	line-height: 1.2857rem;
	margin-bottom: 8px;
}

.p-sitemap {
	margin-bottom: 3.4286rem;
}

.p-sitemap__title {
	font-size: 1.2857rem;
	color: #454449;
	margin-bottom: 1.7143rem;
}

.p-sitemap > ul > li {
	list-style: disc;
	list-style-position: inside;
	margin-bottom: 0.5714rem;
}

.p-sitemap > ul > li a {
	text-decoration: none;
}

.p-sitemap > ul > li a:hover {
	text-decoration: underline;
}

.l-content-about .c-lead {
	margin-top: -20px;
	font-feature-settings: "pital";
	letter-spacing: 0px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.l-content-about .c-lead {
		margin-top: 20px;
	}
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.l-content-about .heading.is-xlg, .l-content-about .c-productcontent h2, .c-productcontent .l-content-about h2, .l-content-about .l-content h2, .l-content .l-content-about h2 {
		margin-top: 40px;
		margin-bottom: 20px;
	}
}

.l-content {
	text-align: center;
}

.l-content.is-text-left {
	text-align: left;
}

.l-content.is-text-left h2:first-child {
	margin-top: 32px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.l-content.is-text-left h2:first-child {
		margin-top: 32px;
	}
}

.l-content.is-text-left h3 {
	text-align: left;
	padding-left: 16px;
	padding-right: 16px;
}

.l-content h2 {
	margin-top: 80px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.l-content h2 {
		margin-top: 40px;
	}
}

.l-content h3 {
	background: #E3F2F4;
	color: #4D65A6;
	font-size: 20px;
	padding-top: 5px;
	padding-bottom: 4px;
	border-radius: 20px;
	text-align: center;
	font-weight: normal;
	margin-bottom: 32px;
	margin-top: 40px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.l-content h3 {
		font-size: 14px;
		margin-bottom: 16px;
		padding-left: 8px;
		padding-right: 8px;
	}
	.l-content h3 br {
		display: none;
	}
}

.l-content h4 {
	font-size: 18px;
	margin-top: 24px;
	margin-bottom: 24px;
	color: #4D65A6;
	text-align: left;
}

.l-content h4 > span {
	display: block;
	font-size: 0.8em;
	color: #666;
	font-weight: normal;
}

.l-content ol {
	margin-top: 20px;
	margin-bottom: 20px;
	padding-left: 0;
}

.l-content ol li {
	list-style: decimal;
	list-style-position: inside;
	text-align: left;
	margin-bottom: 16px;
}

.l-content ol + p {
	text-align: left;
}

.l-content ul {
	margin-bottom: 32px;
	margin-top: 40px;
}

.l-content ul li {
	margin-bottom: 4px;
}

.l-content ul li:before {
	content: "\f111";
	font-family: FontAwesome;
	color: #4D65A6;
	display: inline-block;
	margin-right: 8px;
}

.l-content .block {
	margin-top: 50px;
	margin-bottom: 50px;
}

.l-content .alignright + p {
	text-align: left;
}

.l-content .alignright + p + p {
	text-align: left;
}

.l-content .row p {
	text-align: left;
}

.l-content h5 {
	font-size: 15px;
	color: #333;
}

.c-footermenu {
	background: #333333;
	padding-top: 50px;
	padding-bottom: 62px;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footermenu {
		padding-top: 0px;
		padding-bottom: 0px;
	}
}

.c-footermenu__list {
	float: left;
	padding-left: 24px;
	padding-right: 41px;
	border-left: 1px solid #222222;
	border-right: 1px solid #444444;
	height: 140px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footermenu__list {
		height: auto;
		float: left;
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		border-left: none;
		border-right: none;
		padding-top: 0;
		padding-bottom: 0;
	}
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footermenu__list.is-primary {
		display: none;
	}
}

.c-footermenu__list.is-primary > ul > li {
	margin-bottom: 6px;
}

.c-footermenu__list.is-primary > ul > li > a {
	color: #7C8EBE;
	font-weight: bold;
}

.c-footermenu__list > ul > li {
	color: #fff;
	line-height: 1;
	margin-bottom: 4px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footermenu__list > ul > li {
		text-align: center;
		margin-bottom: 0;
		padding-top: 12px;
		padding-bottom: 12px;
		border-bottom: 1px solid #222222;
		border-top: 1px solid #444444;
		line-height: 1.7;
	}
}

.c-footermenu__list > ul > li:before {
	content: "\f105";
	font-family: FontAwesome;
	color: #7C8EBE;
	font-size: 18px;
	font-weight: 100;
	margin-right: 8px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footermenu__list > ul > li:before {
		display: none;
	}
}

.c-footermenu__list > ul > li > a {
	display: inline-block;
	line-height: 1.4;
	margin-bottom: 4px;
	letter-spacing: 2.6px;
	text-decoration: none;
	font-size: 13px;
	color: #fff;
	word-spacing: normal;
	white-space: nowrap;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footermenu__list > ul > li > a {
		text-align: center;
		display: block;
		margin-bottom: 0;
	}
}

.c-footermenu__title {
	color: #7C8EBE;
	margin-top: 4px;
	font-size: 13px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footermenu__title {
		display: none;
	}
}

.c-footermenu__sns {
	margin-left: 8px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footermenu__sns {
		display: block;
		margin-left: 0;
		text-align: centers;
	}
}

.c-footermenu__sns a {
	color: #fff;
	margin-right: 8px;
}

.c-footer {
	max-width: 964px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footer {
		padding-left: 16px;
		padding-right: 16px;
	}
}

.c-footer__sns {
	text-align: center;
	margin-top: 19px;
	margin-bottom: 30px;
}

.c-footer__content {
	overflow: hidden;
}

.c-footer__facebook {
	width: 503px;
	float: left;
	/*height: 230px;*/
	height: 275px;
	background: #e8e8e8;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footer__facebook {
		width: 100%;
		float: none;
		height: auto;
	}
}

.c-footer__contact {
	width: 415px;
	float: left;
	margin-left: 46px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footer__contact {
		width: 100%;
		float: none;
		margin-left: 0;
	}
}

.c-footer__labels {
	overflow: hidden;
	margin-bottom: 16px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footer__labels {
		margin-top: 24px;
	}
}

.c-footer__label {
	width: calc(50% - 9px);
	background: #4D65A6;
	border-radius: 1000px;
	text-align: center;
	color: #fff;
	display: block;
	margin-bottom: 10px;
	/*float: left;*/
	padding-top: 8px;
	padding-bottom: 8px;
	text-decoration: none;
	width: 100%;
	-webkit-transition: all ease .2s;
	-moz-transition: all ease .2s;
	-ms-transition: all ease .2s;
	-o-transition: all ease .2s;
	transition: all ease .2s;
}

.c-footer__label:hover {
	color: #fff;
	opacity: 0.8;
}

.c-footer__label + .c-footer__label {
	/*margin-left: 18px;*/
	margin-left: 0px;
	margin-bottom: 0px;
}

.c-footer__tel img {
	display: block;
	width: 280px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 13px;
}

.c-footer__tel p {
	letter-spacing: 1px;
	text-align: center;
	font-size: 12px;
}

.c-footer__logo {
	border-top: 1px solid #999999;
	border-bottom: 1px solid #999999;
	padding-top: 46px;
	padding-bottom: 24px;
	text-align: center;
}

.c-footer__logo img {
	margin-bottom: 16px;
	max-width: 351px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-footer__logo img {
		max-width: 100%;
	}
}

.c-footer__logo p {
	margin-bottom: 0;
	text-align: center;
	font-size: 12px;
}

.c-footer__copyright {
	font-size: 12px;
	text-align: center;
	padding-top: 16px;
	padding-bottom: 16px;
	color: #666666;
}

/**
 * module
 * サイドバー */
.l-global-navigation {
	background: #fff;
	margin-bottom: 0;
	/*margin-top: 2rem;*/
	/*border-bottom: 1px solid #BBBBBB;*/
	padding-bottom: 1.5rem;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.l-global-navigation {
		display: none;
	}
}

.l-global-navigation ul {
	width: 100%;
}

.l-global-navigation ul > li {
	float: left;
	border-left: 1px solid #BBBBBB;
}

.l-global-navigation ul > li:last-child {
	border-right: 1px solid #BBBBBB;
}

.l-global-navigation ul > li a {
	display: block;
	font-size: 13px;
	padding-left: 20px;
	padding-right: 20px;
	text-align: center;
	text-decoration: none;
	color: #454449;
	padding-top: 0;
	line-height: 1.2;
	padding-bottom: 0;
	transition: all ease-in-out .2s;
	min-width: 130px;
	position: relative;
	word-spacing: normal;
	white-space: nowrap;
	position: relative;
}

.l-global-navigation ul > li a:after {
	content: "";
	/*width: 80%;*/
	width: 95%;
	height: 24px;
	background: rgba(77, 101, 166, 0.9);
	position: absolute;
	opacity: 0;
	z-index: 0;
	top: -5px;
	left: 50%;
	transition: all ease 0.2s;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-backface-visibility: hidden;
	border-radius: 200px;
	z-index: 0;
}

.l-global-navigation ul > li a > i.fa.fa-angle-down {
	margin-left: 12px;
}

.l-global-navigation ul > li a.is-current {
	color: #fff;
}

.l-global-navigation ul > li a.is-current span {
	position: relative;
	z-index: 1;
}

.l-global-navigation ul > li a.is-current:after {
	opacity: 1;
}

.l-global-navigation ul > li a:hover {
	color: #fff;
}

.l-global-navigation ul > li a:hover span {
	position: relative;
	z-index: 1;
}

.l-global-navigation ul > li a:hover:after {
	opacity: 1;
}

.l-global-navigation.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000000;
}

.page-id-5 .l-global-navigation ul > li:nth-child(2) a {
	color: #fff;
}

.page-id-5 .l-global-navigation ul > li:nth-child(2) a span {
	position: relative;
	z-index: 10;
}

.page-id-5 .l-global-navigation ul > li:nth-child(2) a:after {
	opacity: 1;
}

.page-id-26 .l-global-navigation ul > li:nth-child(5) a {
	color: #fff;
}

.page-id-26 .l-global-navigation ul > li:nth-child(5) a span {
	position: relative;
	z-index: 10;
}

.page-id-26 .l-global-navigation ul > li:nth-child(5) a:after {
	opacity: 1;
}

.guide .l-global-navigation ul > li:nth-child(4) a {
	color: #fff;
}

.guide .l-global-navigation ul > li:nth-child(4) a span {
	position: relative;
	z-index: 10;
}

.guide .l-global-navigation ul > li:nth-child(4) a:after {
	opacity: 1;
}

.parent-pageid-9 .l-global-navigation ul > li:nth-child(4) a {
	color: #fff;
}

.parent-pageid-9 .l-global-navigation ul > li:nth-child(4) a span {
	position: relative;
	z-index: 10;
}

.parent-pageid-9 .l-global-navigation ul > li:nth-child(4) a:after {
	opacity: 1;
}

.single-products .l-global-navigation ul > li:nth-child(1) a,
.post-type-archive-products .l-global-navigation ul > li:nth-child(1) a,
.tax-product_series .l-global-navigation ul > li:nth-child(1) a,
.tax-product_category .l-global-navigation ul > li:nth-child(1) a {
	color: #fff;
}

.single-products .l-global-navigation ul > li:nth-child(1) a span,
.post-type-archive-products .l-global-navigation ul > li:nth-child(1) a span,
.tax-product_series .l-global-navigation ul > li:nth-child(1) a span,
.tax-product_category .l-global-navigation ul > li:nth-child(1) a span {
	position: relative;
	z-index: 10;
}

.single-products .l-global-navigation ul > li:nth-child(1) a:after,
.post-type-archive-products .l-global-navigation ul > li:nth-child(1) a:after,
.tax-product_series .l-global-navigation ul > li:nth-child(1) a:after,
.tax-product_category .l-global-navigation ul > li:nth-child(1) a:after {
	opacity: 1;
}

.l-header {
	padding-top: 1.4286rem;
	padding-bottom: 0;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.l-header {
		position: fixed;
		top: 0;
		width: 100%;
		padding-top: 8px;
		height: 45px;
		z-index: 10000;
		background: #fff;
		border-bottom: 1px solid #e8e8e8;
	}
}

.l-header__tel {
	color: #454449;
	font-size: 1.5714rem;
}

.l-header__tel i.fa {
	margin-right: 8px;
}

.l-header__logo img {
	max-width: 180px;
}

.c-header {
	overflow: hidden;
}

.c-header__logo {
	max-width: 326px;
	margin-top: 8px;
	float: left;
	display: block;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-header__logo {
		margin-left: 8px;
		max-width: 180px;
	}
}

.c-header__desc {
	font-size: 0.8571rem;
	color: #4D65A6;
	margin-left: 16px;
	margin-top: 8px;
	float: left;
}

.c-header__login {
	display: block;
	float: right;
	text-decoration: none;
	background: #4D65A6;
	color: #fff;
	padding-left: 17px;
	padding-right: 17px;
	font-size: 13px;
	border-radius: 100px;
	padding-top: 3px;
	padding-bottom: 3px;
}
.c-header__login_toSample {
	position: absolute;
	right:15px;
	bottom: 1.1429rem;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-header__login {
		display: none;
	}
	.c-header__login_toSample {
		display: block;
		position: relative;
		right: auto;
		bottom: auto;
	}
}

.c-header__login i.fa {
	margin-left: 4px;
}

.l-header.js-fixedheader {
	display: none;
	position: fixed;
	width: 100%;
	z-index: 9999;
	top: 0;
	left: 0;
	background: #fff;
	height: 75px;
	padding-top: 24px;
	border-bottom: 1px solid #CCCCCC;
}

.l-header.js-fixedheader.is-fixed {
	display: block;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.l-header.js-fixedheader.is-fixed {
		display: none;
	}
}

.l-header.js-fixedheader .c-header__logo {
	width: 180px;
	float: left;
}

.l-header.js-fixedheader .c-expandnav {
	top: 60px;
	left: 0;
	width: 100%;
}

.l-header.js-fixedheader .c-expandnav ul:before {
	left: 260px;
}

.l-header.js-fixedheader .l-global-navigation {
	width: 675px;
	float: left;
	margin-top: 6px;
	margin-left: 32px;
	border-bottom: none;
}

.l-header.js-fixedheader .l-global-navigation .l-container {
	width: auto;
}

.l-header.js-fixedheader .l-global-navigation .l-container ul li a {
	padding-left: 20px;
	padding-right: 20px;
	min-width: 0px;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.l-container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (min-width: 640px) {
	
	body {
		min-width: 1000px;
	}
}

.l-main.is-two-columns {
	width: calc(100% - rem-calc(320));
	float: left;
}

.l-section {
	padding-top: 5.7143rem;
	padding-bottom: 5.7143rem;
}

.l-section.is-gray {
	background: #f5f5f5;
}

.l-section.is-md {
	padding-bottom: 40px;
	padding-top: 40px;
}

.l-section.is-bottom {
	padding-top: 0 !important;
}

.l-section.is-top {
	padding-bottom: 0 !important;
}

.c-section.is-service {
	display: table;
	width: 100%;
	-webkit-transform: translateY(-1px);
	transform: translateY(-1px);
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-section.is-service {
		display: block;
	}
}

.l-sidebar {
	width: rem-calc(320);
	float: left;
}

.u-text-center {
	text-align: center !important;
}

.u-text-left {
	text-align: left !important;
}

.u-text-right {
	text-align: right !important;
}

.u-animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

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

@-webkit-keyframes bounce {
	from, 20%, 53%, 80%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: 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 {
	from, 20%, 53%, 80%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: 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;
	transform-origin: center bottom;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

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

@keyframes fadeInDown {
	from {
		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 fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUp {
	from {
		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 fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

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

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	60% {
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
}

@-webkit-keyframes flash {
	0%, 50%, 100% {
		opacity: 1;
	}
	25%, 75% {
		opacity: 0;
	}
}

@keyframes flash {
	0%, 50%, 100% {
		opacity: 1;
	}
	25%, 75% {
		opacity: 0;
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}

@-webkit-keyframes shake {
	0%, 100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	20%, 40%, 60%, 80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
}

@keyframes shake {
	0%, 100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	20%, 40%, 60%, 80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px);
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	40% {
		-webkit-transform: rotate(-10deg);
		-ms-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	60% {
		-webkit-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	80% {
		-webkit-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(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: scale(1);
		transform: scale(1);
	}
	10%, 20% {
		-webkit-transform: scale(0.9) rotate(-3deg);
		transform: scale(0.9) rotate(-3deg);
	}
	30%, 50%, 70%, 90% {
		-webkit-transform: scale(1.1) rotate(3deg);
		transform: scale(1.1) rotate(3deg);
	}
	40%, 60%, 80% {
		-webkit-transform: scale(1.1) rotate(-3deg);
		transform: scale(1.1) rotate(-3deg);
	}
	100% {
		-webkit-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0);
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
	10%, 20% {
		-webkit-transform: scale(0.9) rotate(-3deg);
		-ms-transform: scale(0.9) rotate(-3deg);
		transform: scale(0.9) rotate(-3deg);
	}
	30%, 50%, 70%, 90% {
		-webkit-transform: scale(1.1) rotate(3deg);
		-ms-transform: scale(1.1) rotate(3deg);
		transform: scale(1.1) rotate(3deg);
	}
	40%, 60%, 80% {
		-webkit-transform: scale(1.1) rotate(-3deg);
		-ms-transform: scale(1.1) rotate(-3deg);
		transform: scale(1.1) rotate(-3deg);
	}
	100% {
		-webkit-transform: scale(1) rotate(0);
		-ms-transform: scale(1) rotate(0);
		transform: scale(1) rotate(0);
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
	0% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
	15% {
		-webkit-transform: translateX(-25%) rotate(-5deg);
		transform: translateX(-25%) rotate(-5deg);
	}
	30% {
		-webkit-transform: translateX(20%) rotate(3deg);
		transform: translateX(20%) rotate(3deg);
	}
	45% {
		-webkit-transform: translateX(-15%) rotate(-3deg);
		transform: translateX(-15%) rotate(-3deg);
	}
	60% {
		-webkit-transform: translateX(10%) rotate(2deg);
		transform: translateX(10%) rotate(2deg);
	}
	75% {
		-webkit-transform: translateX(-5%) rotate(-1deg);
		transform: translateX(-5%) rotate(-1deg);
	}
	100% {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
	}
	15% {
		-webkit-transform: translateX(-25%) rotate(-5deg);
		-ms-transform: translateX(-25%) rotate(-5deg);
		transform: translateX(-25%) rotate(-5deg);
	}
	30% {
		-webkit-transform: translateX(20%) rotate(3deg);
		-ms-transform: translateX(20%) rotate(3deg);
		transform: translateX(20%) rotate(3deg);
	}
	45% {
		-webkit-transform: translateX(-15%) rotate(-3deg);
		-ms-transform: translateX(-15%) rotate(-3deg);
		transform: translateX(-15%) rotate(-3deg);
	}
	60% {
		-webkit-transform: translateX(10%) rotate(2deg);
		-ms-transform: translateX(10%) rotate(2deg);
		transform: translateX(10%) rotate(2deg);
	}
	75% {
		-webkit-transform: translateX(-5%) rotate(-1deg);
		-ms-transform: translateX(-5%) rotate(-1deg);
		transform: translateX(-5%) rotate(-1deg);
	}
	100% {
		-webkit-transform: translateX(0%);
		-ms-transform: translateX(0%);
		transform: translateX(0%);
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}

@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	70% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.3);
		-ms-transform: scale(0.3);
		transform: scale(0.3);
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05);
	}
	70% {
		-webkit-transform: scale(0.9);
		-ms-transform: scale(0.9);
		transform: scale(0.9);
	}
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}
	80% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
		-ms-transform: translateY(30px);
		transform: translateY(30px);
	}
	80% {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
		transform: translateX(30px);
	}
	80% {
		-webkit-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
		-ms-transform: translateX(30px);
		transform: translateX(30px);
	}
	80% {
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
		transform: translateX(-30px);
	}
	80% {
		-webkit-transform: translateX(10px);
		transform: translateX(10px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
		-ms-transform: translateX(-30px);
		transform: translateX(-30px);
	}
	80% {
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px);
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	80% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}
	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	80% {
		-webkit-transform: translateY(10px);
		-ms-transform: translateY(10px);
		transform: translateY(10px);
	}
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	25% {
		-webkit-transform: scale(0.95);
		transform: scale(0.95);
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
	}
}

@keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
	25% {
		-webkit-transform: scale(0.95);
		-ms-transform: scale(0.95);
		transform: scale(0.95);
	}
	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(0.3);
		-ms-transform: scale(0.3);
		transform: scale(0.3);
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

@keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

@keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

@keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

@keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
		-ms-transform: translateY(2000px);
		transform: translateY(2000px);
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		transform: translateX(-20px);
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		-ms-transform: translateX(-20px);
		transform: translateX(-20px);
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		transform: translateX(20px);
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
		-ms-transform: translateX(20px);
		transform: translateX(20px);
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		transform: translateY(-20px);
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	100% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
		-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	100% {
		-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	-ms-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip;
}

@-webkit-keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotateX(-10deg);
		transform: perspective(400px) rotateX(-10deg);
	}
	70% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
	}
	100% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		-ms-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotateX(-10deg);
		-ms-transform: perspective(400px) rotateX(-10deg);
		transform: perspective(400px) rotateX(-10deg);
	}
	70% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		-ms-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
	}
	100% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		-ms-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotateY(-10deg);
		transform: perspective(400px) rotateY(-10deg);
	}
	70% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
	}
	100% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		-ms-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotateY(-10deg);
		-ms-transform: perspective(400px) rotateY(-10deg);
		transform: perspective(400px) rotateY(-10deg);
	}
	70% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		-ms-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
	}
	100% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		-ms-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px) rotateX(0deg);
		-ms-transform: perspective(400px) rotateX(0deg);
		transform: perspective(400px) rotateX(0deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		-ms-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px) rotateY(0deg);
		-ms-transform: perspective(400px) rotateY(0deg);
		transform: perspective(400px) rotateY(0deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		-ms-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	-ms-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}
	60% {
		-webkit-transform: translateX(-20%) skewX(30deg);
		transform: translateX(-20%) skewX(30deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: translateX(0%) skewX(-15deg);
		transform: translateX(0%) skewX(-15deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		-ms-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}
	60% {
		-webkit-transform: translateX(-20%) skewX(30deg);
		-ms-transform: translateX(-20%) skewX(30deg);
		transform: translateX(-20%) skewX(30deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: translateX(0%) skewX(-15deg);
		-ms-transform: translateX(0%) skewX(-15deg);
		transform: translateX(0%) skewX(-15deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(0%) skewX(0deg);
		-ms-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		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% {
		-webkit-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) skewX(-30deg);
		opacity: 0;
	}
}

@keyframes lightSpeedOut {
	0% {
		-webkit-transform: translateX(0%) skewX(0deg);
		-ms-transform: translateX(0%) skewX(0deg);
		transform: translateX(0%) skewX(0deg);
		opacity: 1;
	}
	100% {
		-webkit-transform: translateX(100%) skewX(-30deg);
		-ms-transform: translateX(100%) skewX(-30deg);
		transform: translateX(100%) 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 center;
		transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}
	100% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		-ms-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}
	100% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		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: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		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: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		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: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		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: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	100% {
		-webkit-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	100% {
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: rotate(200deg);
		-ms-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		opacity: 1;
	}
	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slideInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
	100% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
		-ms-transform: translateX(-2000px);
		transform: translateX(-2000px);
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
		-ms-transform: translateX(2000px);
		transform: translateX(2000px);
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
		-ms-transform: translateY(-2000px);
		transform: translateY(-2000px);
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(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: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	40% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	80% {
		-webkit-transform: rotate(60deg) translateY(0);
		transform: rotate(60deg) translateY(0);
		opacity: 1;
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	100% {
		-webkit-transform: translateY(700px);
		transform: translateY(700px);
		opacity: 0;
	}
}

@keyframes hinge {
	0% {
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		-webkit-transform-origin: top left;
		-ms-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: rotate(80deg);
		-ms-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	40% {
		-webkit-transform: rotate(60deg);
		-ms-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	80% {
		-webkit-transform: rotate(60deg) translateY(0);
		-ms-transform: rotate(60deg) translateY(0);
		transform: rotate(60deg) translateY(0);
		opacity: 1;
		-webkit-transform-origin: top left;
		-ms-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	100% {
		-webkit-transform: translateY(700px);
		-ms-transform: translateY(700px);
		transform: translateY(700px);
		opacity: 0;
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg);
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-100%) rotate(-120deg);
		-ms-transform: translateX(-100%) rotate(-120deg);
		transform: translateX(-100%) rotate(-120deg);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		-ms-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg);
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg);
	}
}

@keyframes rollOut {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
		-ms-transform: translateX(0px) rotate(0deg);
		transform: translateX(0px) rotate(0deg);
	}
	100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
		-ms-transform: translateX(100%) rotate(120deg);
		transform: translateX(100%) rotate(120deg);
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut;
}

.u-display-block {
	display: block !important;
}

.u-display-none {
	display: none !important;
}

.u-display-inlineblock {
	display: inline-block !important;
}

.u-display-inline {
	display: inline !important;
}

.u-mbs {
	margin-top: 16px;
	margin-bottom: 16px;
}

.u-mbs.is-xlg {
	margin-top: 80px !important;
	margin-bottom: 80px !important;
}

.u-mbs.is-lg {
	margin-top: 32px !important;
	margin-bottom: 32px !important;
}

.u-mbs.is-sm {
	margin-top: 4px !important;
	margin-bottom: 4px !important;
}

.u-mbs.is-top {
	margin-bottom: 0 !important;
}

.u-mbs.is-bottom {
	margin-top: 0 !important;
}

.u-f-left {
	float: left !important;
}

.u-f-right {
	float: right !important;
}

.u-f-none {
	float: none !important;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.u-hidden-sm, .nScroll {
		display: none !important;
	}
}

@media screen and (min-width: 40em) {
	.u-hidden-lg {
		display: none !important;
	}
}

.u-visible-sm,
.u-visible-md,
.u-visible-lg {
	display: none !important;
}

@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.u-visible-sm {
		display: block !important;
	}
	.u-visible-sm.is-inlineblock {
		display: inline-block !important;
	}
}

@media screen and (min-width: 40em) {
	.u-visible-lg {
		display: block !important;
	}
	.u-visible-lg.is-inlineblock {
		display: inline-block !important;
	}
}

.u-text-danger {
	color: #cc2919;
}

.u-text-info {
	color: #378da3;
}

.u-text-success {
	color: #378da3;
}

@media screen and (min-width: 40em) {
	.wow {
		visibility: hidden;
	}
}

.c-product-suggestion {
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari6.1以降 */
	flex-wrap: wrap;
	font-size: 1.3em;
	margin: 0 auto;
	text-align: justify;
	width: 800px;
}
.c-product-suggestion li {
	background: url(../images/checkBox.svg) no-repeat left center;
	background-size: contain;
	margin-bottom: 1em;
	padding-left: 2em;
	padding-right: 2em;
	white-space: nowrap;
	min-width: 50%;
}
@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-product-suggestion {
		display: block;
		font-size: 1em;
		width: 100%;
	}
	.c-product-suggestion li {
		background: url(../images/checkBox.svg) no-repeat left top;
		background-size: 1.5em;
		white-space: normal;
	}
}


.productsBanner {
	display: -webkit-flex; /* Safari */
	display: flex;
	margin: 0 auto;
	width: 1000px;
}
.productsBanner .servicebanner__lead {
	margin-top: 0;
}
.productsBanner > div {
	width: 50%;
}
.productsBanner div:nth-of-type(1) {
	padding-top: 0;
}
.productsBanner > div:nth-of-type(2) a {
	display: block;
	height: 397px;
}
.productsBanner div:nth-of-type(2) > img {
	display: none;
}
.productsBanner div div:nth-of-type(1) {
	color: white;
	font-size: 23px;
	margin-bottom: 17px;
	text-align: center;
}
.c-servicebanner {
	padding-bottom: 0;
}
@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.productsBanner {
		flex-direction: column-reverse;
		width: 90%;
	}
	.productsBanner > div {
		width: auto;
	}
	.productsBanner div:nth-of-type(1) {
		padding-top: 0px;
		margin-top: -30px;
		position: relative;
	}
	.productsBanner .c-servicebanner__title {
		display: none;
	}
	.productsBanner div:nth-of-type(2) {
		min-height: 0%;
	}
	.productsBanner div:nth-of-type(2) > img {
		display: block;
		margin: 0 auto;
		width: 200px;
		margin-bottom: 30px;
	}
	.c-servicebanner {
		padding-bottom: 92px;
	}
	.productsBanner > div:nth-of-type(2) a {
		display: inline;
		height: auto;
	}
}

.c-product-process {
	margin: 0 auto;
	font-size: 1.2rem;
	text-align: justify;
	width: 60%;
}
.c-product-process h5 {
	border-left: 10px #006F00 solid;
	border-bottom: 1px #006F00 solid;
	font-size: 1.2rem;
	margin: 0;
	margin-bottom: 10px;
	padding: 0 0 0 0.5em;
}
.c-product-process p {
	font-size: 1.2rem;
	padding: 0;
	margin: 0 0 1.5em 0;
}
.c-product-process ul {
	padding-left:1.2rem;
	margin-bottom: 2rem;
}
.c-product-process ul li {
	list-style-type: decimal;
}
@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.c-product-process {
		width: 90%;
	}
	.c-product-process h5 {
		font-size: 1rem;
	}
	.c-product-process ul {
		padding-left:1.2rem;
		margin-bottom: 2rem;
		font-size: 1rem;
	}
}

.ndoFeatures {
	font-size: 1.14rem;
	margin:0 auto;
	margin-bottom: 2em;
	text-align:justify;
	width:530px;
}
.ndoFeatures span, .ndoFeatures sup {
	font-size: 0.625em;
}
.ndoFeatures span {
	display: block;
	margin-top: 1.3em;
	padding-left: 1em;
	text-indent: -1em;
	line-height: 120%;
}
.ndoProcess {
	margin:0 auto;
	width: 564px;
}
.ndoProcess p, .ndoProcess h5 {
	text-align: left;
}
.ndoProcess h5 {
	font-size: 1.85rem;
	margin-bottom: 2.28rem;
}
.ndoProcess p {
	font-size: 1.21rem;
	margin-bottom: 0.71rem;
}
.ndoProcess p:nth-of-type(2) {
	margin-bottom: 1.42rem;
}
.ndoProcess table {
	border-top: 1px #4c4948 solid;
	border-left: 1px #4c4948 solid;
	
	
}
.ndoProcess table th, .ndoProcess table td {
	border-right: 1px #4c4948 solid;
	border-bottom: 1px #4c4948 solid;
	width: 188px;
}
.ndoProcess table th {
	background-color: #eeeeef;

}
@media screen and (min-width: 0em) and (max-width: 39.9375em) {
	.ndoFeatures {
		width: 90%;
	}
	.ndoProcess {
		width: 100%;
	}
	.ndoProcess table th, .ndoProcess table td {
		width: 29.5vw;
	}
}