/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/

/*
==============================================
slideDown
==============================================
*/


.slideDown{
	animation-name: slideDown;
	-webkit-animation-name: slideDown;	

	animation-duration: 1s;	
	-webkit-animation-duration: 1s;

	animation-timing-function: ease;	
	-webkit-animation-timing-function: ease;	

	visibility: visible !important;						
}

@keyframes slideDown {
	0% {
		transform: translateY(-100%);
	}
	50%{
		transform: translateY(8%);
	}
	65%{
		transform: translateY(-4%);
	}
	80%{
		transform: translateY(4%);
	}
	95%{
		transform: translateY(-2%);
	}			
	100% {
		transform: translateY(0%);
	}		
}

@-webkit-keyframes slideDown {
	0% {
		-webkit-transform: translateY(-100%);
	}
	50%{
		-webkit-transform: translateY(8%);
	}
	65%{
		-webkit-transform: translateY(-4%);
	}
	80%{
		-webkit-transform: translateY(4%);
	}
	95%{
		-webkit-transform: translateY(-2%);
	}			
	100% {
		-webkit-transform: translateY(0%);
	}	
}

/*
==============================================
slideUp
==============================================
*/


.slideUp{
	animation-name: slideUp;
	-webkit-animation-name: slideUp;	

	animation-duration: 1s;	
	-webkit-animation-duration: 1s;

	animation-timing-function: ease;	
	-webkit-animation-timing-function: ease;

	visibility: visible !important;			
}

@keyframes slideUp {
	0% {
		transform: translateY(100%);
	}
	50%{
		transform: translateY(-8%);
	}
	65%{
		transform: translateY(4%);
	}
	80%{
		transform: translateY(-4%);
	}
	95%{
		transform: translateY(2%);
	}			
	100% {
		transform: translateY(0%);
	}	
}

@-webkit-keyframes slideUp {
	0% {
		-webkit-transform: translateY(100%);
	}
	50%{
		-webkit-transform: translateY(-8%);
	}
	65%{
		-webkit-transform: translateY(4%);
	}
	80%{
		-webkit-transform: translateY(-4%);
	}
	95%{
		-webkit-transform: translateY(2%);
	}			
	100% {
		-webkit-transform: translateY(0%);
	}	
}

/*
==============================================
slideLeft
==============================================
*/


.slideLeft{
	animation-name: slideLeft;
	-webkit-animation-name: slideLeft;	

	animation-duration: 1s;	
	-webkit-animation-duration: 1s;

	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		

	visibility: visible !important;	
}

@keyframes slideLeft {
	0% {
		transform: translateX(150%);
	}
	50%{
		transform: translateX(-8%);
	}
	65%{
		transform: translateX(4%);
	}
	80%{
		transform: translateX(-4%);
	}
	95%{
		transform: translateX(2%);
	}			
	100% {
		transform: translateX(0%);
	}
}

@-webkit-keyframes slideLeft {
	0% {
		-webkit-transform: translateX(150%);
	}
	50%{
		-webkit-transform: translateX(-8%);
	}
	65%{
		-webkit-transform: translateX(4%);
	}
	80%{
		-webkit-transform: translateX(-4%);
	}
	95%{
		-webkit-transform: translateX(2%);
	}			
	100% {
		-webkit-transform: translateX(0%);
	}
}

/*
==============================================
slideRight
==============================================
*/


.slideRight{
	animation-name: slideRight;
	-webkit-animation-name: slideRight;	

	animation-duration: 1s;	
	-webkit-animation-duration: 1s;

	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		

	visibility: visible !important;	
}

@keyframes slideRight {
	0% {
		transform: translateX(-150%);
	}
	50%{
		transform: translateX(8%);
	}
	65%{
		transform: translateX(-4%);
	}
	80%{
		transform: translateX(4%);
	}
	95%{
		transform: translateX(-2%);
	}			
	100% {
		transform: translateX(0%);
	}	
}

@-webkit-keyframes slideRight {
	0% {
		-webkit-transform: translateX(-150%);
	}
	50%{
		-webkit-transform: translateX(8%);
	}
	65%{
		-webkit-transform: translateX(-4%);
	}
	80%{
		-webkit-transform: translateX(4%);
	}
	95%{
		-webkit-transform: translateX(-2%);
	}			
	100% {
		-webkit-transform: translateX(0%);
	}
}

/*
==============================================
slideExpandUp
==============================================
*/


.slideExpandUp{
	animation-name: slideExpandUp;
	-webkit-animation-name: slideExpandUp;	

	animation-duration: 1.6s;	
	-webkit-animation-duration: 1.6s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease -out;

	visibility: visible !important;	
}

@keyframes slideExpandUp {
	0% {
		transform: translateY(100%) scaleX(0.5);
	}
	30%{
		transform: translateY(-8%) scaleX(0.5);
	}	
	40%{
		transform: translateY(2%) scaleX(0.5);
	}
	50%{
		transform: translateY(0%) scaleX(1.1);
	}
	60%{
		transform: translateY(0%) scaleX(0.9);		
	}
	70% {
		transform: translateY(0%) scaleX(1.05);
	}			
	80%{
		transform: translateY(0%) scaleX(0.95);		
	}
	90% {
		transform: translateY(0%) scaleX(1.02);
	}	
	100%{
		transform: translateY(0%) scaleX(1);		
	}
}

@-webkit-keyframes slideExpandUp {
	0% {
		-webkit-transform: translateY(100%) scaleX(0.5);
	}
	30%{
		-webkit-transform: translateY(-8%) scaleX(0.5);
	}	
	40%{
		-webkit-transform: translateY(2%) scaleX(0.5);
	}
	50%{
		-webkit-transform: translateY(0%) scaleX(1.1);
	}
	60%{
		-webkit-transform: translateY(0%) scaleX(0.9);		
	}
	70% {
		-webkit-transform: translateY(0%) scaleX(1.05);
	}			
	80%{
		-webkit-transform: translateY(0%) scaleX(0.95);		
	}
	90% {
		-webkit-transform: translateY(0%) scaleX(1.02);
	}	
	100%{
		-webkit-transform: translateY(0%) scaleX(1);		
	}
}

/*
==============================================
expandUp
==============================================
*/


.expandUp{
	animation-name: expandUp;
	-webkit-animation-name: expandUp;	

	animation-duration: 0.7s;	
	-webkit-animation-duration: 0.7s;

	animation-timing-function: ease;	
	-webkit-animation-timing-function: ease;		

	visibility: visible !important;	
}

@keyframes expandUp {
	0% {
		transform: translateY(100%) scale(0.6) scaleY(0.5);
	}
	60%{
		transform: translateY(-7%) scaleY(1.12);
	}
	75%{
		transform: translateY(3%);
	}	
	100% {
		transform: translateY(0%) scale(1) scaleY(1);
	}	
}

@-webkit-keyframes expandUp {
	0% {
		-webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
	}
	60%{
		-webkit-transform: translateY(-7%) scaleY(1.12);
	}
	75%{
		-webkit-transform: translateY(3%);
	}	
	100% {
		-webkit-transform: translateY(0%) scale(1) scaleY(1);
	}	
}

/*
==============================================
fadeIn
==============================================
*/

.fadeIn{
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;	

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;

	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;		

	visibility: visible !important;	
}

@keyframes fadeIn {
	0% {
		transform: scale(0);
		opacity: 0.0;		
	}
	60% {
		transform: scale(1.1);	
	}
	80% {
		transform: scale(0.9);
		opacity: 1;	
	}	
	100% {
		transform: scale(1);
		opacity: 1;	
	}		
}

@-webkit-keyframes fadeIn {
	0% {
		-webkit-transform: scale(0);
		opacity: 0.0;		
	}
	60% {
		-webkit-transform: scale(1.1);
	}
	80% {
		-webkit-transform: scale(0.9);
		opacity: 1;	
	}	
	100% {
		-webkit-transform: scale(1);
		opacity: 1;	
	}		
}

/*
==============================================
expandOpen
==============================================
*/


.expandOpen{
	animation-name: expandOpen;
	-webkit-animation-name: expandOpen;	

	animation-duration: 1.2s;	
	-webkit-animation-duration: 1.2s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	

	visibility: visible !important;	
}

@keyframes expandOpen {
	0% {
		transform: scale(1.8);		
	}
	50% {
		transform: scale(0.95);
	}	
	80% {
		transform: scale(1.05);
	}
	90% {
		transform: scale(0.98);
	}	
	100% {
		transform: scale(1);
	}			
}

@-webkit-keyframes expandOpen {
	0% {
		-webkit-transform: scale(1.8);		
	}
	50% {
		-webkit-transform: scale(0.95);
	}	
	80% {
		-webkit-transform: scale(1.05);
	}
	90% {
		-webkit-transform: scale(0.98);
	}	
	100% {
		-webkit-transform: scale(1);
	}					
}

/*
==============================================
bigEntrance
==============================================
*/


.bigEntrance{
	animation-name: bigEntrance;
	-webkit-animation-name: bigEntrance;	

	animation-duration: 1.6s;	
	-webkit-animation-duration: 1.6s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	

	visibility: visible !important;			
}

@keyframes bigEntrance {
	0% {
		transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
		opacity: 0.2;
	}
	30% {
		transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);		
		opacity: 1;
	}
	45% {
		transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
		opacity: 1;
	}
	60% {
		transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);		
		opacity: 1;
	}	
	75% {
		transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
		opacity: 1;
	}
	90% {
		transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);		
		opacity: 1;
	}	
	100% {
		transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
		opacity: 1;
	}		
}

@-webkit-keyframes bigEntrance {
	0% {
		-webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
		opacity: 0.2;
	}
	30% {
		-webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);		
		opacity: 1;
	}
	45% {
		-webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
		opacity: 1;
	}
	60% {
		-webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);		
		opacity: 1;
	}	
	75% {
		-webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
		opacity: 1;
	}
	90% {
		-webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);		
		opacity: 1;
	}	
	100% {
		-webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
		opacity: 1;
	}				
}

/*
==============================================
hatch
==============================================
*/

.hatch{
	animation-name: hatch;
	-webkit-animation-name: hatch;	

	animation-duration: 2s;	
	-webkit-animation-duration: 2s;

	animation-timing-function: ease-in-out;	
	-webkit-animation-timing-function: ease-in-out;

	transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	-webkit-transform-origin: 50% 100%; 

	visibility: visible !important;		
}

@keyframes hatch {
	0% {
		transform: rotate(0deg) scaleY(0.6);
	}
	20% {
		transform: rotate(-2deg) scaleY(1.05);
	}
	35% {
		transform: rotate(2deg) scaleY(1);
	}
	50% {
		transform: rotate(-2deg);
	}	
	65% {
		transform: rotate(1deg);
	}	
	80% {
		transform: rotate(-1deg);
	}		
	100% {
		transform: rotate(0deg);
	}									
}

@-webkit-keyframes hatch {
	0% {
		-webkit-transform: rotate(0deg) scaleY(0.6);
	}
	20% {
		-webkit-transform: rotate(-2deg) scaleY(1.05);
	}
	35% {
		-webkit-transform: rotate(2deg) scaleY(1);
	}
	50% {
		-webkit-transform: rotate(-2deg);
	}	
	65% {
		-webkit-transform: rotate(1deg);
	}	
	80% {
		-webkit-transform: rotate(-1deg);
	}		
	100% {
		-webkit-transform: rotate(0deg);
	}		
}


/*
==============================================
bounce
==============================================
*/


.bounce{
	animation-name: bounce;
	-webkit-animation-name: bounce;	

	animation-duration: 1.6s;	
	-webkit-animation-duration: 1.6s;

	animation-timing-function: ease;	
	-webkit-animation-timing-function: ease;	
	
	transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	-webkit-transform-origin: 50% 100%; 	
}

@keyframes bounce {
	0% {
		transform: translateY(0%) scaleY(0.6);
	}
	60%{
		transform: translateY(-100%) scaleY(1.1);
	}
	70%{
		transform: translateY(0%) scaleY(0.95) scaleX(1.05);
	}
	80%{
		transform: translateY(0%) scaleY(1.05) scaleX(1);
	}	
	90%{
		transform: translateY(0%) scaleY(0.95) scaleX(1);
	}				
	100%{
		transform: translateY(0%) scaleY(1) scaleX(1);
	}	
}

@-webkit-keyframes bounce {
	0% {
		-webkit-transform: translateY(0%) scaleY(0.6);
	}
	60%{
		-webkit-transform: translateY(-100%) scaleY(1.1);
	}
	70%{
		-webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
	}
	80%{
		-webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
	}	
	90%{
		-webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
	}				
	100%{
		-webkit-transform: translateY(0%) scaleY(1) scaleX(1);
	}		
}


/*
==============================================
pulse
==============================================
*/

.pulse{
	animation-name: pulse;
	-webkit-animation-name: pulse;	

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;

	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.9);
		opacity: 0.7;		
	}
	50% {
		transform: scale(1);
		opacity: 1;	
	}	
	100% {
		transform: scale(0.9);
		opacity: 0.7;	
	}			
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0.95);
		opacity: 0.7;		
	}
	50% {
		-webkit-transform: scale(1);
		opacity: 1;	
	}	
	100% {
		-webkit-transform: scale(0.95);
		opacity: 0.7;	
	}			
}

/*
==============================================
floating
==============================================
*/

.floating{
	animation-name: floating;
	-webkit-animation-name: floating;

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;

	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@keyframes floating {
	0% {
		transform: translateY(0%);	
	}
	50% {
		transform: translateY(8%);	
	}	
	100% {
		transform: translateY(0%);
	}			
}

@-webkit-keyframes floating {
	0% {
		-webkit-transform: translateY(0%);	
	}
	50% {
		-webkit-transform: translateY(8%);	
	}	
	100% {
		-webkit-transform: translateY(0%);
	}			
}

/*
==============================================
tossing
==============================================
*/

.tossing{
	animation-name: tossing;
	-webkit-animation-name: tossing;	

	animation-duration: 2.5s;	
	-webkit-animation-duration: 2.5s;

	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
	0% {
		transform: rotate(-4deg);	
	}
	50% {
		transform: rotate(4deg);
	}
	100% {
		transform: rotate(-4deg);	
	}						
}

@-webkit-keyframes tossing {
	0% {
		-webkit-transform: rotate(-4deg);	
	}
	50% {
		-webkit-transform: rotate(4deg);
	}
	100% {
		-webkit-transform: rotate(-4deg);	
	}				
}

/*
==============================================
pullUp
==============================================
*/

.pullUp{
	animation-name: pullUp;
	-webkit-animation-name: pullUp;	

	animation-duration: 1.1s;	
	-webkit-animation-duration: 1.1s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	

	transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	-webkit-transform-origin: 50% 100%; 		
}

@keyframes pullUp {
	0% {
		transform: scaleY(0.1);
	}
	40% {
		transform: scaleY(1.02);
	}
	60% {
		transform: scaleY(0.98);
	}
	80% {
		transform: scaleY(1.01);
	}
	100% {
		transform: scaleY(0.98);
	}				
	80% {
		transform: scaleY(1.01);
	}
	100% {
		transform: scaleY(1);
	}							
}

@-webkit-keyframes pullUp {
	0% {
		-webkit-transform: scaleY(0.1);
	}
	40% {
		-webkit-transform: scaleY(1.02);
	}
	60% {
		-webkit-transform: scaleY(0.98);
	}
	80% {
		-webkit-transform: scaleY(1.01);
	}
	100% {
		-webkit-transform: scaleY(0.98);
	}				
	80% {
		-webkit-transform: scaleY(1.01);
	}
	100% {
		-webkit-transform: scaleY(1);
	}		
}

/*
==============================================
pullDown
==============================================
*/

.pullDown{
	animation-name: pullDown;
	-webkit-animation-name: pullDown;	

	animation-duration: 1.1s;	
	-webkit-animation-duration: 1.1s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	

	transform-origin: 50% 0%;
	-ms-transform-origin: 50% 0%;
	-webkit-transform-origin: 50% 0%; 		
}

@keyframes pullDown {
	0% {
		transform: scaleY(0.1);
	}
	40% {
		transform: scaleY(1.02);
	}
	60% {
		transform: scaleY(0.98);
	}
	80% {
		transform: scaleY(1.01);
	}
	100% {
		transform: scaleY(0.98);
	}				
	80% {
		transform: scaleY(1.01);
	}
	100% {
		transform: scaleY(1);
	}							
}

@-webkit-keyframes pullDown {
	0% {
		-webkit-transform: scaleY(0.1);
	}
	40% {
		-webkit-transform: scaleY(1.02);
	}
	60% {
		-webkit-transform: scaleY(0.98);
	}
	80% {
		-webkit-transform: scaleY(1.01);
	}
	100% {
		-webkit-transform: scaleY(0.98);
	}				
	80% {
		-webkit-transform: scaleY(1.01);
	}
	100% {
		-webkit-transform: scaleY(1);
	}		
}

/*
==============================================
stretchLeft
==============================================
*/

.stretchLeft{
	animation-name: stretchLeft;
	-webkit-animation-name: stretchLeft;	

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	

	transform-origin: 100% 0%;
	-ms-transform-origin: 100% 0%;
	-webkit-transform-origin: 100% 0%; 
}

@keyframes stretchLeft {
	0% {
		transform: scaleX(0.3);
	}
	40% {
		transform: scaleX(1.02);
	}
	60% {
		transform: scaleX(0.98);
	}
	80% {
		transform: scaleX(1.01);
	}
	100% {
		transform: scaleX(0.98);
	}				
	80% {
		transform: scaleX(1.01);
	}
	100% {
		transform: scaleX(1);
	}							
}

@-webkit-keyframes stretchLeft {
	0% {
		-webkit-transform: scaleX(0.3);
	}
	40% {
		-webkit-transform: scaleX(1.02);
	}
	60% {
		-webkit-transform: scaleX(0.98);
	}
	80% {
		-webkit-transform: scaleX(1.01);
	}
	100% {
		-webkit-transform: scaleX(0.98);
	}				
	80% {
		-webkit-transform: scaleX(1.01);
	}
	100% {
		-webkit-transform: scaleX(1);
	}		
}

/*
==============================================
stretchRight
==============================================
*/

.stretchRight{
	animation-name: stretchRight;
	-webkit-animation-name: stretchRight;	

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	

	transform-origin: 0% 0%;
	-ms-transform-origin: 0% 0%;
	-webkit-transform-origin: 0% 0%; 		
}

@keyframes stretchRight {
	0% {
		transform: scaleX(0.3);
	}
	40% {
		transform: scaleX(1.02);
	}
	60% {
		transform: scaleX(0.98);
	}
	80% {
		transform: scaleX(1.01);
	}
	100% {
		transform: scaleX(0.98);
	}				
	80% {
		transform: scaleX(1.01);
	}
	100% {
		transform: scaleX(1);
	}							
}

@-webkit-keyframes stretchRight {
	0% {
		-webkit-transform: scaleX(0.3);
	}
	40% {
		-webkit-transform: scaleX(1.02);
	}
	60% {
		-webkit-transform: scaleX(0.98);
	}
	80% {
		-webkit-transform: scaleX(1.01);
	}
	100% {
		-webkit-transform: scaleX(0.98);
	}				
	80% {
		-webkit-transform: scaleX(1.01);
	}
	100% {
		-webkit-transform: scaleX(1);
	}		
}
/**
 * Swiper 3.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: February 7, 2016
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}
/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* CSS crunched with Crunch - http://crunchapp.net/ */

/****************************************************************************

	Kube Framework 4
	http://k1.imperavi.com/

****************************************************************************/

/*
.retina-image(@path, @w: auto, @h: auto) {
  background-image: url(@path);
  @at2x_path: ~`@{path}.replace(/\.\w+$/, function(match) { return "@2x" + match; })`;

  	@media
  only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (   min--moz-device-pixel-ratio: 2),
  only screen and (     -o-min-device-pixel-ratio: 2/1),
  only screen and (        min-device-pixel-ratio: 2),
  only screen and (                min-resolution: 192dpi),
  only screen and (                min-resolution: 2dppx) {
    background-image: url(@at2x_path);
    background-size: @w @h;
    }
  }

*/

/* =Reset
-----------------------------------------------------------------------------*/
/*
youtubeiframeレスポンシブ用
*/

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow:auto; 
  -webkit-overflow-scrolling:touch;
  border:2px solid #ccc; 
}
.youtube iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
}




/*
バナー用CSS
*/
.covid-medical h2 {
  border-top: solid 4px #036B35 !important;
  background-color: #039b40 !important;

}
.covid-medical h3{
  border: solid 1px #039b40 !important;
  color: #039b40 !important;

}



.banner-container.flex {
  display: flex;
  justify-content: center;
  padding:0 0 40px 0;
}

.banner-left {
  margin-right:10px;
  background: #2b5bfd;
}
.banner-right {
  margin-right:10px;
  background: #039b40;
}

.banner-left img {
  opacity: 1;

}
.banner-left img:hover {
  opacity: .5;
}
.banner-right img {
  opacity: 1;

}
.banner-right img:hover {
  opacity: .5;
}

.bottom-banner-container.flex {
  display: flex;
  justify-content: center;
  padding:0 0 40px 0;
}

.bottom-banner img:hover {
  opacity: .5;
}

.bottom-banner { 
	padding: 0px 20px
}

/*
バナー用CSS
*/





*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html,
body,
div,
span,
object,
iframe,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
embed,
object,
iframe,
audio,
video,
canvas,
progress,
meter,
output,
textarea {
  display: block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}

/* To prevent some browsers from inserting quotes on q and p */
blockquote,
q {
  quotes: none;
}
blockquote p:before,
blockquote p:after,
q:before,
q:after {
  content: '';
  content: none;
}

/* Table reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th,
td {
  text-align: left;
  vertical-align: top;
}
thead th,
thead td {
  font-weight: bold;
  vertical-align: bottom;
}

/* Image inside */
a img,
th img,
td img {
  vertical-align: top;
}
button,
input,
select,
textarea {
  margin: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/* Normalize buttons in IE */
button {
  width: auto;
  overflow: visible;
}

/* Hand cursor on clickable controls */
input[type="reset"],
input[type="submit"],
input[type="file"],
input[type="radio"],
input[type="checkbox"],
select,
button {
  cursor: pointer;
}

/* Trick with vertical align for radio and checkbox  */
input[type="radio"],
input[type="checkbox"] {
  font-size: 110%;
  position: relative;
  top: -1px;
  margin-right: 3px;
}

/* Normalize search fields */
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* Normalize horizontal line */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ddd;
}

/* Responsive media */
img,
video,
audio,
embed,
object {
  max-width: 100%;
}
img,
video,
embed,
object {
  height: auto;
}
embed,
object {
  height: 100%;
}
img {
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

/* =Typography
-----------------------------------------------------------------------------*/
body {
  font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  font-size: 0.9375em;
  line-height: 1.65em;
  background: #ffffff;
  color: #222222;
}

/* =Links
-----------------------------------------------------------------------------*/
a {
  color: #134da5;
}
a:focus,
a:hover {
  color: #595757;
}

/* =Headings
-----------------------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  font-weight: bold;
  color: #000000;
  text-rendering: optimizeLegibility;
  margin: 0 0 .5em 0;
}
h1,
.h1,
h2,
.h2 {
  line-height: 1.1;
}
h3,
.h3,
h4,
.h4 {
  line-height: 1.3;
}
h1,
.h1 {
  font-size: 2.25em;
}
h2,
.h2 {
  font-size: 1.5em;
  margin-bottom: .7em;
}
h3,
.h3 {
  font-size: 1.3125em;
}
h4,
.h4 {
  font-size: 1.125em;
}
h5,
.h5 {
  font-size: 1em;
}
h6,
.h6 {
  font-size: 0.75em;
  text-transform: uppercase;
}

/* =Lead
-----------------------------------------------------------------------------*/
.lead {
  font-size: 1.3125em;
  line-height: 1.5;
  margin-bottom: 1.1em;
}

/* =Line height and margin
-----------------------------------------------------------------------------*/
p,
ul,
ol,
dl,
dd,
dt,
blockquote,
td,
th {
  line-height: 1.65em;
}
ul,
ol,
ul ul,
ol ol,
ul ol,
ol ul {
  margin: 0 0 0 3.3em;
}
ul li,
ol li {
  text-align: left;
}
ol ol li {
  list-style-type: lower-alpha;
}
ol ol ol li {
  list-style-type: lower-roman;
}
p,
ul,
ol,
dl,
blockquote,
hr,
pre,
table,
form,
fieldset,
figure,
address {
  margin-bottom: 1.65em;
}

/* =Blockquote
-----------------------------------------------------------------------------*/
blockquote {
  position: relative;
  font-style: italic;
  font-size: 1.125em;
  margin-left: 2.475em;
  padding-left: 1.65em;
  border-left: 2px solid #dddddd;
}
blockquote p {
  margin-bottom: .5em;
}
blockquote small,
cite {
  color: rgba(0, 0, 0, 0.4);
  font-style: italic;
}
small,
blockquote cite {
  font-size: 12.75px;
  line-height: 1;
}

/* =Address
-----------------------------------------------------------------------------*/
address {
  font-style: normal;
}

/* =Definition list
-----------------------------------------------------------------------------*/
dl dt {
  font-weight: bold;
}
dd {
  margin-left: 1.65em;
}

/* =Text-level
-----------------------------------------------------------------------------*/
s,
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #0f0f0f;
  cursor: help;
}
strong,
b {
  font-weight: bold;
}
em,
i {
  font-style: italic;
}
sub,
sup {
  font-size: 11.25px;
  line-height: 0;
  position: relative;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
figcaption {
  margin: .3em 0;
  font-size: 12.75px;
  font-style: italic;
}
ins,
u {
  text-decoration: underline;
}
mark {
  background-color: #ffc800;
  color: #0f0f0f;
  text-decoration: none;
}

/* =Code
-----------------------------------------------------------------------------*/
pre,
code,
kbd,
samp,
var,
output {
  font-size: 90%;
  font-style: normal;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
pre {
  margin-top: 1.65em;
  font-size: 100%;
  line-height: 1.5;
  color: #222222;
  overflow: auto;
}
code,
samp,
kbd {
  padding: 3px 6px 2px 6px;
  display: inline-block;
  line-height: 1;
  border-radius: 2px;
}
code {
  background: #f4f4f4;
  border: 1px solid #d4d4d4;
}
pre code {
  font-size: 100%;
  border: none;
  padding: 0;
  background: none;
  line-height: 1.65em;
}
var {
  color: rgba(0, 0, 0, 0.5);
}
samp {
  background: #d3e3fb;
  border: 1px solid #b2cef8;
}
kbd {
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

/* =Form
-----------------------------------------------------------------------------*/
button:active,
button:focus {
  outline: none;
}
textarea,
select {
  font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  font-size: 1em;
  box-shadow: none;
}
textarea,
select[multiple],
select[multiple="multiple"] {
  padding: 0.3em 0.35em;
  line-height: 1.35em;
  width: 100%;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="phone"],
input[type="tel"],
input[type="number"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="color"],
input[type="time"],
input[type="search"],
input[type="datetime-local"] {
  font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  font-size: 1em;
  box-shadow: none;
  padding: 0.3em 0.35em;
  line-height: 1.65em;
  border-radius: 0;
  outline: none;
}
select[multiple],
select[multiple="multiple"],
textarea,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="phone"],
input[type="tel"],
input[type="number"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="color"],
input[type="time"],
input[type="search"],
input[type="datetime-local"] {
  background: #ffffff;
  border: 1px solid #cccccc;
  position: relative;
  z-index: 2;
  -webkit-appearance: none;
}
textarea[disabled],
input[type="text"][disabled],
input[type="password"][disabled],
input[type="email"][disabled],
input[type="url"][disabled],
input[type="phone"][disabled],
input[type="tel"][disabled],
input[type="number"][disabled],
input[type="datetime"][disabled],
input[type="date"][disabled],
input[type="month"][disabled],
input[type="color"][disabled],
input[type="time"][disabled],
input[type="search"][disabled],
input[type="datetime-local"][disabled] {
  resize: none;
  color: rgba(0, 0, 0, 0.5);
}
select[disabled],
input[type="checkbox"][disabled],
input[type="radio"][disabled] {
  cursor: default;
}
input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type="range"] {
  position: relative;
  top: 3px;
}
select {
  margin-bottom: 0 !important;
}
fieldset {
  padding: 1.65em;
  margin-bottom: 1.65em;
  border: 1px solid #cccccc;
}
fieldset *:last-child {
  margin-bottom: 0 !important;
}
legend {
  font-weight: bold;
  padding: 0 1em;
  margin-left: -1em;
}

/* =Tables
-----------------------------------------------------------------------------*/
table {
  max-width: 100%;
  width: 100%;
  empty-cells: show;
}
table caption {
  text-transform: uppercase;
  padding: 0 1.1em;
  color: rgba(0, 0, 0, 0.4);
  font-size: 12.75px;
}
table th,
table td {
  border-bottom: 1px solid #eeeeee;
  padding: 0.825em 1.1em;
}
table tfoot th,
table tfoot td {
  color: rgba(0, 0, 0, 0.4);
}

/* =Grid
-----------------------------------------------------------------------------*/
.units-container:after,
.units-row:after {
  content: "";
  display: table;
  clear: both;
}
.units-container {
  
/* it's the trick to not collapse padding-top in the child element */
  padding-top: 1px;
  margin-top: -1px;
}
.units-row {
  margin-bottom: 1.65em;
}
.width-100,
.unit-100 {
  width: 100%;
}
.width-90,
.unit-90 {
  width: 90%;
}
.width-80,
.unit-80 {
  width: 80%;
}
.width-75,
.unit-75 {
  width: 75%;
}
.width-70,
.unit-70 {
  width: 70%;
}
.width-66,
.unit-66 {
  width: 66.6%;
}
.width-65,
.unit-65 {
  width: 65%;
}
.width-60,
.unit-60 {
  width: 60%;
}
.width-50,
.unit-50 {
  width: 50%;
}
.width-40,
.unit-40 {
  width: 40%;
}
.width-35,
.unit-35 {
  width: 35%;
}
.width-33,
.unit-33 {
  width: 33.3%;
}
.width-30,
.unit-30 {
  width: 30%;
}
.width-25,
.unit-25 {
  width: 25%;
}
.width-20,
.unit-20 {
  width: 20%;
}
.width-10,
.unit-10 {
  width: 10%;
}
.units-row .unit-90,
.units-row .unit-80,
.units-row .unit-75,
.units-row .unit-70,
.units-row .unit-66,
.units-row .unit-65,
.units-row .unit-60,
.units-row .unit-50,
.units-row .unit-40,
.units-row .unit-35,
.units-row .unit-33,
.units-row .unit-30,
.units-row .unit-25,
.units-row .unit-20,
.units-row .unit-10 {
  float: left;
  margin-left: 3%;
}
.units-row .unit-90:first-child,
.units-row .unit-80:first-child,
.units-row .unit-75:first-child,
.units-row .unit-70:first-child,
.units-row .unit-66:first-child,
.units-row .unit-65:first-child,
.units-row .unit-60:first-child,
.units-row .unit-50:first-child,
.units-row .unit-40:first-child,
.units-row .unit-35:first-child,
.units-row .unit-33:first-child,
.units-row .unit-30:first-child,
.units-row .unit-25:first-child,
.units-row .unit-20:first-child,
.units-row .unit-10:first-child {
  margin-left: 0;
}
.units-row .unit-90 {
  width: 89.7%;
}
.units-row .unit-80 {
  width: 79.4%;
}
.units-row .unit-75 {
  width: 74.25%;
}
.units-row .unit-70 {
  width: 69.1%;
}
.units-row .unit-66 {
  width: 65.66666667%;
}
.units-row .unit-65 {
  width: 65.66666667%;
}
.units-row .unit-60 {
  width: 58.8%;
}
.units-row .unit-50 {
  width: 48.5%;
}
.units-row .unit-40 {
  width: 38.2%;
}
.units-row .unit-35 {
  width: 31.33333333%;
}
.units-row .unit-33 {
  width: 31.33333333%;
}
.units-row .unit-30 {
  width: 27.9%;
}
.units-row .unit-25 {
  width: 22.75%;
}
.units-row .unit-20 {
  width: 17.6%;
}
.units-row .unit-10 {
  width: 7.3%;
}
.unit-push-90,
.unit-push-80,
.unit-push-75,
.unit-push-70,
.unit-push-66,
.unit-push-65,
.unit-push-60,
.unit-push-50,
.unit-push-40,
.unit-push-35,
.unit-push-33,
.unit-push-30,
.unit-push-25,
.unit-push-20,
.unit-push-10 {
  position: relative;
}
.unit-push-90 {
  left: 92.7%;
}
.unit-push-80 {
  left: 82.4%;
}
.unit-push-75 {
  left: 77.25%;
}
.unit-push-70 {
  left: 72.1%;
}
.unit-push-66 {
  left: 68.66666667%;
}
.unit-push-65 {
  left: 68.66666667%;
}
.unit-push-60 {
  left: 61.8%;
}
.unit-push-50 {
  left: 51.5%;
}
.unit-push-40 {
  left: 41.2%;
}
.unit-push-35 {
  left: 34.33333333%;
}
.unit-push-33 {
  left: 34.33333333%;
}
.unit-push-30 {
  left: 30.9%;
}
.unit-push-25 {
  left: 25.75%;
}
.unit-push-20 {
  left: 20.6%;
}
.unit-push-10 {
  left: 10.3%;
}
.units-row .unit-push-right {
  float: right;
}
.units-row .unit-role-right {
  margin-left: 3%;
  float: right;
}
.units-row .unit-role-left {
  margin-left: 0;
}
.centered,
.unit-centered {
  float: none !important;
  margin: 0 auto !important;
}
.unit-padding {
  padding: 1.65em;
}
.units-padding .unit-100,
.units-padding .unit-90,
.units-padding .unit-80,
.units-padding .unit-75,
.units-padding .unit-70,
.units-padding .unit-66,
.units-padding .unit-65,
.units-padding .unit-60,
.units-padding .unit-50,
.units-padding .unit-40,
.units-padding .unit-35,
.units-padding .unit-33,
.units-padding .unit-30,
.units-padding .unit-25,
.units-padding .unit-20,
.units-padding .unit-10 {
  padding: 1.65em;
}
.units-split .unit-90,
.units-split .unit-80,
.units-split .unit-75,
.units-split .unit-70,
.units-split .unit-66,
.units-split .unit-65,
.units-split .unit-60,
.units-split .unit-50,
.units-split .unit-40,
.units-split .unit-35,
.units-split .unit-33,
.units-split .unit-30,
.units-split .unit-25,
.units-split .unit-20,
.units-split .unit-10 {
  margin-left: 0;
}
.units-split .unit-90 {
  width: 90%;
}
.units-split .unit-80 {
  width: 80%;
}
.units-split .unit-75 {
  width: 75%;
}
.units-split .unit-70 {
  width: 70%;
}
.units-split .unit-66 {
  width: 66.6%;
}
.units-split .unit-65 {
  width: 65%;
}
.units-split .unit-60 {
  width: 60%;
}
.units-split .unit-50 {
  width: 50%;
}
.units-split .unit-40 {
  width: 40%;
}
.units-split .unit-35 {
  width: 35%;
}
.units-split .unit-33 {
  width: 33.3%;
}
.units-split .unit-30 {
  width: 30%;
}
.units-split .unit-25 {
  width: 25%;
}
.units-split .unit-20 {
  width: 20%;
}
.units-split .unit-10 {
  width: 10%;
}

/* =Blocks
-----------------------------------------------------------------------------*/
.blocks-2,
.blocks-3,
.blocks-4,
.blocks-5,
.blocks-6 {
  padding-left: 0;
  list-style: none;
  margin-left: -3%;
}
.blocks-2:after,
.blocks-3:after,
.blocks-4:after,
.blocks-5:after,
.blocks-6:after {
  content: "";
  display: table;
  clear: both;
}
.blocks-2 > li,
.blocks-3 > li,
.blocks-4 > li,
.blocks-5 > li,
.blocks-6 > li {
  height: auto;
  float: left;
  margin-bottom: 1.65em;
  margin-left: 3%;
}
.blocks-2 > li ul,
.blocks-3 > li ul,
.blocks-4 > li ul,
.blocks-5 > li ul,
.blocks-6 > li ul {
  list-style-type: disc;
}
.blocks-2 > li ul ul,
.blocks-3 > li ul ul,
.blocks-4 > li ul ul,
.blocks-5 > li ul ul,
.blocks-6 > li ul ul {
  list-style-type: circle;
}
.blocks-2 > li li,
.blocks-3 > li li,
.blocks-4 > li li,
.blocks-5 > li li,
.blocks-6 > li li {
  float: none;
  margin: 0;
}
.blocks-2 > li {
  width: 47%;
}
.blocks-3 > li {
  width: 30.33333333%;
}
.blocks-4 > li {
  width: 22%;
}
.blocks-5 > li {
  width: 17%;
}
.blocks-6 > li {
  width: 13.66666667%;
}
.block-first {
  clear: both;
}

/* =Tables
-----------------------------------------------------------------------------*/
table.table-bordered td,
table.table-bordered th {
  border: 1px solid #eeeeee;
}
table.table-simple td,
table.table-simple th,
table.table-simple caption {
  border: none;
  padding-left: 0;
}
table.table-flat td,
table.table-flat th,
table.table-flat caption {
  border: none;
  padding: 0;
}
table.table-stroked td,
table.table-stroked th {
  border-bottom: 1px solid #eeeeee;
}
table.table-stripped tbody tr:nth-child(odd) td {
  background: #f8f8f8;
}
table.table-hovered tbody tr:hover td {
  background-color: #f4f4f4;
}

/* Responsive Tables */
.table-container {
  width: 100%;
  overflow: auto;
  margin-bottom: 1.65em;
}
.table-container table {
  margin-bottom: 0;
}
.table-container::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
}
.table-container::-webkit-scrollbar-thumb {
  border-radius: 8px;
  border: 3px solid #fff;
  background-color: rgba(0, 0, 0, 0.3);
}

/* =Forms
-----------------------------------------------------------------------------*/
.forms .btn,
.forms input[type="submit"].btn,
.forms button,
.forms input[type="submit"],
.forms input[type="reset"] {
  padding: 0.3625em 1.3em;
}
.forms .btn-outline {
  padding: 0.3em 1.3em;
}
.forms .btn-outline.bold {
  padding: 0.2375em 1.3em;
}
.forms label {
  display: block;
  margin-bottom: 1.1em;
}
.forms input[type="text"],
.forms input[type="password"],
.forms input[type="email"],
.forms input[type="url"],
.forms input[type="phone"],
.forms input[type="tel"],
.forms input[type="number"],
.forms input[type="datetime"],
.forms input[type="date"],
.forms input[type="month"],
.forms input[type="color"],
.forms input[type="time"],
.forms input[type="search"],
.forms input[type="range"],
.forms input[type="file"],
.forms input[type="datetime-local"],
.forms textarea,
.forms select {
  display: block;
}
.forms-inline input[type="text"],
.forms-inline-list input[type="text"],
.forms-inline input[type="password"],
.forms-inline-list input[type="password"],
.forms-inline input[type="email"],
.forms-inline-list input[type="email"],
.forms-inline input[type="url"],
.forms-inline-list input[type="url"],
.forms-inline input[type="phone"],
.forms-inline-list input[type="phone"],
.forms-inline input[type="tel"],
.forms-inline-list input[type="tel"],
.forms-inline input[type="number"],
.forms-inline-list input[type="number"],
.forms-inline input[type="datetime"],
.forms-inline-list input[type="datetime"],
.forms-inline input[type="date"],
.forms-inline-list input[type="date"],
.forms-inline input[type="month"],
.forms-inline-list input[type="month"],
.forms-inline input[type="color"],
.forms-inline-list input[type="color"],
.forms-inline input[type="time"],
.forms-inline-list input[type="time"],
.forms-inline input[type="search"],
.forms-inline-list input[type="search"],
.forms-inline input[type="range"],
.forms-inline-list input[type="range"],
.forms-inline input[type="file"],
.forms-inline-list input[type="file"],
.forms-inline input[type="datetime-local"],
.forms-inline-list input[type="datetime-local"],
.forms-inline textarea,
.forms-inline-list textarea,
.forms-inline select,
.forms-inline-list select {
  display: inline-block;
}
.forms-list,
.forms-inline,
.forms-inline-list {
  margin: 0;
  padding: 0;
  margin-bottom: 1.1em;
  list-style: none;
}
.forms-list label,
.forms-inline label,
.forms-inline-list li,
.forms-inline-list li label {
  display: inline-block;
  margin-bottom: 0;
}
.forms-inline-list li label {
  margin-right: 0.825em;
}
.forms-inline-list li {
  margin-bottom: 3px;
}
.forms-list li {
  margin-bottom: 6px;
}
.forms-desc {
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 12.75px;
  line-height: 1.4em;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="phone"],
input[type="tel"],
input[type="number"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="color"],
input[type="time"],
input[type="search"],
input[type="datetime-local"],
textarea {
  -moz-transition: border ease 0.5s;
  transition: border ease 0.5s;
}

/* States */
.error,
.success {
  font-weight: normal;
  font-size: 12.75px;
}
input.input-error,
textarea.input-error,
select.input-error,
.input-error {
  border-color: #de2c3b;
  box-shadow: 0 0 0 2px rgba(222, 44, 59, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) inset;
}
input.input-success,
textarea.input-success,
select.input-success,
.input-success {
  border-color: #2c9f42;
  box-shadow: 0 0 0 2px rgba(44, 159, 66, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) inset;
}
input.input-gray,
textarea.input-gray,
select.input-gray,
.input-gray {
  border-color: #b3b6b7;
  box-shadow: 0 0 0 2px rgba(179, 182, 183, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2) inset;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="phone"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="datetime"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="color"]:focus,
input[type="time"]:focus,
input[type="search"]:focus,
input[type="datetime-local"]:focus,
textarea:focus {
  outline: none;
  border-color: #2575ed;
  box-shadow: 0 0 0 2px rgba(37, 117, 237, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) inset;
}

/*
	Search
*/
input.input-search,
input[type="search"] {
  padding-right: .5em;
  padding-left: .5em;
  margin-bottom: 0;
  border-radius: 15px;
}
input.input-on-black {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.35);
}
input.input-on-black::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
input.input-on-black::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
input.input-on-black:focus,
input.input-on-black.active {
  border: 1px solid #fff;
  background: #fff;
  box-shadow: none;
}
input.input-on-black:focus::-webkit-input-placeholder,
input.input-on-black.active::-webkit-input-placeholder {
  color: #aaa;
}
input.input-on-black:focus::-moz-placeholder,
input.input-on-black.active::-moz-placeholder {
  color: #aaa;
}

/* Sizes */
input.input-big {
  font-size: 18px;
}
input.input-small {
  font-size: 12.75px;
}
input.input-smaller {
  font-size: 11.25px;
}

/* Append & Prepend */
.input-groups {
  display: table !important;
}
.input-groups input {
  width: 100%;
}
.input-groups input,
.input-groups .input-append,
.input-groups .input-prepend,
.input-groups .btn-append {
  display: table-cell !important;
}
.input-groups .btn-append,
.input-groups .input-append,
.input-groups .input-prepend {
  width: 1%;
  vertical-align: middle;
}
.input-groups .input-append,
.input-groups .input-prepend {
  background-color: #f4f4f4;
  border: 1px solid #d4d4d4;
  margin: 0;
  padding: .45em .75em .15em .75em;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.65em;
  font-size: 12.75px;
  white-space: nowrap;
}
.input-groups .input-prepend {
  border-right: none;
}
.input-groups .input-append {
  position: relative;
  z-index: 1;
  border-left: none;
}
.input-groups .btn-append .btn {
  display: block;
  height: auto;
  border-radius: 0 2px 2px 0;
}

/* =Navs
-----------------------------------------------------------------------------*/

/* NavBar */
.navbar {
  font-size: 105%;
  margin-bottom: 1.65em;
}
.navbar:after {
  content: "";
  display: table;
  clear: both;
}
.navbar.navbar-left {
  float: left;
}
.navbar.navbar-right {
  float: right;
}
.navbar ul {
  list-style: none;
  margin: 0;
}
.navbar ul:after {
  content: "";
  display: table;
  clear: both;
}
.navbar li {
  float: left;
  margin-right: 1.65em;
}
.navbar.navbar-right li {
  margin-right: 0;
  margin-left: 1.65em;
}
.navbar a,
.navbar span {
  display: block;
  text-decoration: none;
}
.navbar a:hover {
  color: #de2c3b;
  text-decoration: underline;
}
.navbar li.active a,
.navbar span {
  text-decoration: none;
  cursor: text;
  color: rgba(0, 0, 0, 0.4);
}
.navigation-toggle {
  display: none;
  text-transform: uppercase;
  position: relative;
  color: #0f0f0f;
  background-color: #ffffff;
}
.navigation-toggle:after {
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -12px;
  left: 10px;
  content: "\2630";
  font-size: 24px;
  line-height: 1;
}
.navigation-toggle.navigation-toggle-black {
  background-color: #0f0f0f;
  color: #ffffff;
}
.navigation-toggle.navigation-toggle-show {
  margin-bottom: 1.65em;
}
.navigation-toggle span {
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: block;
  padding: 10px 20px 10px 40px;
}
.navigation-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}

/* Pills */
.navbar-pills a,
.navbar-pills span {
  padding: 0.825em 1.65em;
}
.navbar-pills a:hover {
  color: #0f0f0f;
  background: #eee;
}
.navbar-pills li.active a,
.navbar-pills span {
  text-decoration: none;
  cursor: text;
  color: rgba(0, 0, 0, 0.4);
  background: #eee;
}
.navbar-pills li {
  margin-right: 1px;
}
.navbar-pills.navbar-right li {
  margin-left: 1px;
}

/* Fullwidth */
.fullwidth ul {
  width: 100%;
}
.fullwidth li {
  float: none !important;
  margin: 0;
  display: table-cell;
  width: 1%;
  text-align: center;
}
.fullwidth li a,
.fullwidth li span {
  display: block;
}

/* Vertical */
.nav {
  margin-bottom: 1.65em;
}
.nav ul {
  list-style: none;
  margin: 0;
}
.nav ul li ul {
  margin-left: 2em;
  font-size: .95em;
}
.nav a,
.nav span {
  display: block;
  padding: .5em 0;
}
.nav a {
  color: #0f0f0f;
  text-decoration: none;
}
.nav a:hover {
  color: #de2c3b;
  text-decoration: underline;
}
.nav li.active a,
.nav span {
  text-decoration: none;
  cursor: text;
  color: rgba(0, 0, 0, 0.4);
}
.nav i.fa {
  width: 1.65em;
}

/* Stacked */
.nav-stacked li {
  margin-bottom: 1px;
}
.nav-stacked a,
.nav-stacked span {
  padding: .6em .7em;
}
.nav-stacked a {
  background: #f6f6f6;
}
.nav-stacked a:hover {
  color: #000;
  background: #eee;
}
.nav-stacked li.active a,
.nav-stacked span {
  background: #ffffff;
  text-decoration: none;
  cursor: text;
  color: rgba(0, 0, 0, 0.3);
}

/* Stats */
.nav-stats li {
  position: relative;
}
.nav-stats a,
.nav-stats span {
  padding-right: 50px;
}
.nav-stats sup,
.nav-stats .badge {
  position: absolute;
  top: 50%;
  right: 0;
}
.nav-stats sup {
  color: rgba(0, 0, 0, 0.4);
}
.nav-stats .badge {
  margin-top: -8px;
}

/* =Tabs
-----------------------------------------------------------------------------*/
.nav-tabs {
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 1.65em;
}
.nav-tabs:after {
  content: "";
  display: table;
  clear: both;
}
.nav-tabs ul {
  list-style: none;
  margin: 0;
}
.nav-tabs li {
  float: left;
  margin-right: 2px;
}
.nav-tabs a,
.nav-tabs span {
  display: block;
  line-height: 1;
  padding: 0.825em 1.65em;
  border: 1px solid transparent;
}
.nav-tabs a {
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
}
.nav-tabs a:focus,
.nav-tabs a:hover {
  color: #0f0f0f;
  text-decoration: underline;
  background-color: #eee;
}
.nav-tabs li.active a,
.nav-tabs span {
  color: #0f0f0f;
  background: #fff;
  position: relative;
  border: 1px solid #ddd;
  border-bottom: 1px solid #fff;
  bottom: -1px;
  cursor: default;
  text-decoration: none;
}

/* =Breadcrumbs
-----------------------------------------------------------------------------*/
.breadcrumbs {
  margin-bottom: 1.65em;
}
.breadcrumbs:after {
  content: "";
  display: table;
  clear: both;
}
.breadcrumbs ul {
  font-size: .9em;
  color: rgba(0, 0, 0, 0.4);
  list-style: none;
  margin: 0;
}
.breadcrumbs ul:after {
  content: "";
  display: table;
  clear: both;
}
.breadcrumbs li {
  float: left;
  margin-right: 5px;
}
.breadcrumbs li + li:before {
  content: " > ";
  color: #aaa;
  font-size: 12px;
  margin: 0 7px 0 5px;
  position: relative;
  top: -1px;
}
.breadcrumbs.breadcrumbs-path li + li:before {
  content: " / ";
  top: 0;
}
.breadcrumbs a {
  color: #0f0f0f;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #0f0f0f;
  text-decoration: underline;
}
.breadcrumbs li.active a,
.breadcrumbs span,
.breadcrumbs li.active a:hover {
  text-decoration: none;
  cursor: text;
  color: rgba(0, 0, 0, 0.4);
}

/* =Pagination
-----------------------------------------------------------------------------*/
.pagination {
  position: relative;
  left: -9px;
  margin-left: 0;
  list-style: none;
}
.pagination:after {
  content: "";
  display: table;
  clear: both;
}
.pagination li {
  float: left;
  margin-right: 2px;
}
.pagination a,
.pagination span {
  display: block;
  padding: 7px 9px;
  line-height: 1;
  border-radius: 2px;
  color: #0f0f0f;
  text-decoration: none;
}
.pagination span,
.pagination li.active a,
.pagination li.active a:hover {
  color: #ffffff;
  background-color: #0f0f0f;
  cursor: text;
}
.pagination a:focus,
.pagination a:hover {
  text-decoration: none;
  background-color: #0f0f0f;
  color: #fff;
}

/* =Buttons
-----------------------------------------------------------------------------*/
.btn,
input[type="submit"].btn {
  display: inline-block;
  vertical-align: top;
  font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.65em;
  text-align: center;
  text-decoration: none;
  color: #222222;
  -webkit-appearance: none;
  outline: none;
  margin: 0;
  border: none;
  border-radius: 2px;
  box-shadow: none;
  cursor: pointer;
  background: #e0e3e5;
  padding: 0.55em 2.5em;
}
.btn:hover,
input[type="submit"].btn:hover {
  color: rgba(0, 0, 0, 0.5);
  background: #b3b6b7;
}
.btn::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.btn-big,
input[type="submit"].btn-big {
  font-size: 18px;
}
.btn-small,
input[type="submit"].btn-small {
  font-size: 12.75px;
}
.btn-smaller,
input[type="submit"].btn-smaller {
  font-size: 11.25px;
  vertical-align: baseline;
}
.btn-round {
  border-radius: 15px;
}
.btn-outline,
input[type="submit"].btn-outline {
  background: none;
  padding: 0.4875em 2.5em;
  border: 1px solid #0f0f0f;
}
.btn-outline:hover,
input[type="submit"].btn-outline:hover {
  border-color: #b3b6b7;
}
.btn-outline.btn-active {
  padding: 0.55em 2.5em;
}
.btn-outline.bold {
  border-width: 2px;
  padding: 0.425em 2.5em;
}
.btn-active,
.btn[disabled],
.btn-disabled {
  background: none;
  background: #b3b6b7;
  color: rgba(0, 0, 0, 0.5);
}
.btn-active:hover,
.btn[disabled]:hover,
.btn-disabled:hover {
  color: rgba(0, 0, 0, 0.5);
  background: #b3b6b7;
}
.btn-active {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) inset;
}
.btn-outline.btn[disabled],
.btn-outline.btn-disabled {
  background: none;
  box-shadow: none;
  color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.btn-outline.btn-active {
  background: none;
  color: rgba(0, 0, 0, 0.4);
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset;
}
.btn[disabled],
.btn-disabled {
  cursor: default;
  box-shadow: none;
}
.btn-blue,
input[type="submit"].btn-blue {
  color: rgba(255, 255, 255, 0.9);
  background: #2575ed;
}
.btn-blue:hover,
input[type="submit"].btn-blue:hover {
  color: rgba(255, 255, 255, 0.6);
  background: #1a52a5;
}
.btn-blue.btn-active,
input[type="submit"].btn-blue.btn-active {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
}
.btn-blue.btn-active,
input[type="submit"].btn-blue.btn-active,
.btn-blue.btn-disabled,
input[type="submit"].btn-blue.btn-disabled,
.btn-blue.btn[disabled],
input[type="submit"].btn-blue.btn[disabled] {
  color: rgba(255, 255, 255, 0.5);
  background: #1a52a5;
}
.btn-blue.btn-active:hover,
input[type="submit"].btn-blue.btn-active:hover,
.btn-blue.btn-disabled:hover,
input[type="submit"].btn-blue.btn-disabled:hover,
.btn-blue.btn[disabled]:hover,
input[type="submit"].btn-blue.btn[disabled]:hover {
  color: rgba(255, 255, 255, 0.5);
}
.btn-blue.btn-outline,
input[type="submit"].btn-blue.btn-outline {
  background: none;
  border-color: #2575ed;
  color: #2575ed;
}
.btn-blue.btn-outline:hover,
input[type="submit"].btn-blue.btn-outline:hover {
  color: rgba(255, 255, 255, 0.9);
  background: #2575ed;
}
.btn-blue.btn-outline.btn[disabled],
input[type="submit"].btn-blue.btn-outline.btn[disabled],
.btn-blue.btn-outline.btn-disabled,
input[type="submit"].btn-blue.btn-outline.btn-disabled {
  background: none;
  box-shadow: none;
  color: rgba(37, 117, 237, 0.4);
  border: 1px solid rgba(37, 117, 237, 0.3);
}
.btn-blue.btn-outline.btn-active,
input[type="submit"].btn-blue.btn-outline.btn-active {
  background: none;
  color: rgba(37, 117, 237, 0.6);
  border: none;
  box-shadow: 0 1px 3px rgba(26, 82, 165, 0.6) inset;
}
.btn-red,
input[type="submit"].btn-red {
  color: rgba(255, 255, 255, 0.9);
  background: #de2c3b;
}
.btn-red:hover,
input[type="submit"].btn-red:hover {
  color: rgba(255, 255, 255, 0.6);
  background: #b2232f;
}
.btn-red.btn-active,
input[type="submit"].btn-red.btn-active {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
}
.btn-red.btn-active,
input[type="submit"].btn-red.btn-active,
.btn-red.btn-disabled,
input[type="submit"].btn-red.btn-disabled,
.btn-red.btn[disabled],
input[type="submit"].btn-red.btn[disabled] {
  color: rgba(255, 255, 255, 0.5);
  background: #b2232f;
}
.btn-red.btn-active:hover,
input[type="submit"].btn-red.btn-active:hover,
.btn-red.btn-disabled:hover,
input[type="submit"].btn-red.btn-disabled:hover,
.btn-red.btn[disabled]:hover,
input[type="submit"].btn-red.btn[disabled]:hover {
  color: rgba(255, 255, 255, 0.5);
}
.btn-red.btn-outline,
input[type="submit"].btn-red.btn-outline {
  background: none;
  border-color: #de2c3b;
  color: #de2c3b;
}
.btn-red.btn-outline:hover,
input[type="submit"].btn-red.btn-outline:hover {
  color: rgba(255, 255, 255, 0.9);
  background: #de2c3b;
}
.btn-red.btn-outline.btn[disabled],
input[type="submit"].btn-red.btn-outline.btn[disabled],
.btn-red.btn-outline.btn-disabled,
input[type="submit"].btn-red.btn-outline.btn-disabled {
  background: none;
  box-shadow: none;
  color: rgba(222, 44, 59, 0.4);
  border: 1px solid rgba(222, 44, 59, 0.3);
}
.btn-red.btn-outline.btn-active,
input[type="submit"].btn-red.btn-outline.btn-active {
  background: none;
  color: rgba(222, 44, 59, 0.6);
  border: none;
  box-shadow: 0 1px 3px rgba(178, 35, 47, 0.6) inset;
}
.btn-green,
input[type="submit"].btn-green {
  color: rgba(255, 255, 255, 0.9);
  background: #2c9f42;
}
.btn-green:hover,
input[type="submit"].btn-green:hover {
  color: rgba(255, 255, 255, 0.6);
  background: #237f35;
}
.btn-green.btn-active,
input[type="submit"].btn-green.btn-active {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
}
.btn-green.btn-active,
input[type="submit"].btn-green.btn-active,
.btn-green.btn-disabled,
input[type="submit"].btn-green.btn-disabled,
.btn-green.btn[disabled],
input[type="submit"].btn-green.btn[disabled] {
  color: rgba(255, 255, 255, 0.5);
  background: #237f35;
}
.btn-green.btn-active:hover,
input[type="submit"].btn-green.btn-active:hover,
.btn-green.btn-disabled:hover,
input[type="submit"].btn-green.btn-disabled:hover,
.btn-green.btn[disabled]:hover,
input[type="submit"].btn-green.btn[disabled]:hover {
  color: rgba(255, 255, 255, 0.5);
}
.btn-green.btn-outline,
input[type="submit"].btn-green.btn-outline {
  background: none;
  border-color: #2c9f42;
  color: #2c9f42;
}
.btn-green.btn-outline:hover,
input[type="submit"].btn-green.btn-outline:hover {
  color: rgba(255, 255, 255, 0.9);
  background: #2c9f42;
}
.btn-green.btn-outline.btn[disabled],
input[type="submit"].btn-green.btn-outline.btn[disabled],
.btn-green.btn-outline.btn-disabled,
input[type="submit"].btn-green.btn-outline.btn-disabled {
  background: none;
  box-shadow: none;
  color: rgba(44, 159, 66, 0.4);
  border: 1px solid rgba(44, 159, 66, 0.3);
}
.btn-green.btn-outline.btn-active,
input[type="submit"].btn-green.btn-outline.btn-active {
  background: none;
  color: rgba(44, 159, 66, 0.6);
  border: none;
  box-shadow: 0 1px 3px rgba(35, 127, 53, 0.6) inset;
}
.btn-black,
input[type="submit"].btn-black {
  color: rgba(255, 255, 255, 0.9);
  background: #0f0f0f;
}
.btn-black:hover,
input[type="submit"].btn-black:hover {
  color: rgba(255, 255, 255, 0.6);
  background: #363738;
}
.btn-black.btn-active,
input[type="submit"].btn-black.btn-active {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7) inset;
}
.btn-black.btn-active,
input[type="submit"].btn-black.btn-active,
.btn-black.btn-disabled,
input[type="submit"].btn-black.btn-disabled,
.btn-black.btn[disabled],
input[type="submit"].btn-black.btn[disabled] {
  color: rgba(255, 255, 255, 0.5);
  background: #363738;
}
.btn-black.btn-active:hover,
input[type="submit"].btn-black.btn-active:hover,
.btn-black.btn-disabled:hover,
input[type="submit"].btn-black.btn-disabled:hover,
.btn-black.btn[disabled]:hover,
input[type="submit"].btn-black.btn[disabled]:hover {
  color: rgba(255, 255, 255, 0.5);
}
.btn-black.btn-outline,
input[type="submit"].btn-black.btn-outline {
  background: none;
  border-color: #0f0f0f;
  color: #0f0f0f;
}
.btn-black.btn-outline:hover,
input[type="submit"].btn-black.btn-outline:hover {
  color: rgba(255, 255, 255, 0.9);
  background: #0f0f0f;
}
.btn-black.btn-outline.btn[disabled],
input[type="submit"].btn-black.btn-outline.btn[disabled],
.btn-black.btn-outline.btn-disabled,
input[type="submit"].btn-black.btn-outline.btn-disabled {
  background: none;
  box-shadow: none;
  color: rgba(15, 15, 15, 0.4);
  border: 1px solid rgba(15, 15, 15, 0.3);
}
.btn-black.btn-outline.btn-active,
input[type="submit"].btn-black.btn-outline.btn-active {
  background: none;
  color: rgba(15, 15, 15, 0.6);
  border: none;
  box-shadow: 0 1px 3px rgba(54, 55, 56, 0.6) inset;
}
.btn-yellow,
input[type="submit"].btn-yellow {
  color: rgba(0, 0, 0, 0.9);
  background: #ffc800;
}
.btn-yellow:hover,
input[type="submit"].btn-yellow:hover {
  color: rgba(0, 0, 0, 0.6);
  background: #cca000;
}
.btn-yellow.btn-active,
input[type="submit"].btn-yellow.btn-active {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
}
.btn-yellow.btn-active,
input[type="submit"].btn-yellow.btn-active,
.btn-yellow.btn-disabled,
input[type="submit"].btn-yellow.btn-disabled,
.btn-yellow.btn[disabled],
input[type="submit"].btn-yellow.btn[disabled] {
  color: rgba(0, 0, 0, 0.5);
  background: #cca000;
}
.btn-yellow.btn-active:hover,
input[type="submit"].btn-yellow.btn-active:hover,
.btn-yellow.btn-disabled:hover,
input[type="submit"].btn-yellow.btn-disabled:hover,
.btn-yellow.btn[disabled]:hover,
input[type="submit"].btn-yellow.btn[disabled]:hover {
  color: rgba(0, 0, 0, 0.5);
}
.btn-yellow.btn-outline,
input[type="submit"].btn-yellow.btn-outline {
  background: none;
  border-color: #ffc800;
  color: #ffc800;
}
.btn-yellow.btn-outline:hover,
input[type="submit"].btn-yellow.btn-outline:hover {
  color: rgba(0, 0, 0, 0.9);
  background: #ffc800;
}
.btn-yellow.btn-outline.btn[disabled],
input[type="submit"].btn-yellow.btn-outline.btn[disabled],
.btn-yellow.btn-outline.btn-disabled,
input[type="submit"].btn-yellow.btn-outline.btn-disabled {
  background: none;
  box-shadow: none;
  color: rgba(255, 200, 0, 0.4);
  border: 1px solid rgba(255, 200, 0, 0.3);
}
.btn-yellow.btn-outline.btn-active,
input[type="submit"].btn-yellow.btn-outline.btn-active {
  background: none;
  color: rgba(255, 200, 0, 0.6);
  border: none;
  box-shadow: 0 1px 3px rgba(204, 160, 0, 0.6) inset;
}
.btn-white,
input[type="submit"].btn-white {
  color: rgba(0, 0, 0, 0.9);
  background: #ffffff;
}
.btn-white:hover,
input[type="submit"].btn-white:hover {
  color: rgba(0, 0, 0, 0.6);
  background: #ededed;
}
.btn-white.btn-active,
input[type="submit"].btn-white.btn-active {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset;
}
.btn-white.btn-active,
input[type="submit"].btn-white.btn-active,
.btn-white.btn-disabled,
input[type="submit"].btn-white.btn-disabled,
.btn-white.btn[disabled],
input[type="submit"].btn-white.btn[disabled] {
  color: rgba(0, 0, 0, 0.5);
  background: #ededed;
}
.btn-white.btn-active:hover,
input[type="submit"].btn-white.btn-active:hover,
.btn-white.btn-disabled:hover,
input[type="submit"].btn-white.btn-disabled:hover,
.btn-white.btn[disabled]:hover,
input[type="submit"].btn-white.btn[disabled]:hover {
  color: rgba(0, 0, 0, 0.5);
}
.btn-white.btn-outline,
input[type="submit"].btn-white.btn-outline {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white.btn-outline:hover,
input[type="submit"].btn-white.btn-outline:hover {
  color: rgba(0, 0, 0, 0.9);
  background: #ffffff;
}
.btn-white.btn-outline.btn[disabled],
input[type="submit"].btn-white.btn-outline.btn[disabled],
.btn-white.btn-outline.btn-disabled,
input[type="submit"].btn-white.btn-outline.btn-disabled {
  background: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-white.btn-outline.btn-active,
input[type="submit"].btn-white.btn-outline.btn-active {
  background: none;
  color: rgba(255, 255, 255, 0.6);
  border: none;
  box-shadow: 0 1px 3px rgba(237, 237, 237, 0.6) inset;
}
.btn-white.btn-outline.btn-active {
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4875em 2.5em;
}

/*
	Buttons Group
*/
.btn-single,
.btn-group {
  display: inline-block;
  margin-right: 2px;
  vertical-align: bottom;
}
.btn-single:after,
.btn-group:after {
  content: "";
  display: table;
  clear: both;
}
.btn-single > .btn,
.btn-single > input,
.btn-group > .btn,
.btn-group > input {
  float: left;
  border-radius: 0;
  margin-left: -1px;
}
.btn-single > .btn {
  border-radius: 2px;
}
.btn-group > .btn:first-child {
  border-radius: 2px 0 0 2px;
}
.btn-group > .btn:last-child {
  border-radius: 0 2px 2px 0;
}
.btn-group > .btn.btn-round:first-child,
.btn-group > .input-search:first-child {
  border-radius: 15px 0 0 15px;
}
.btn-group > .btn.btn-round:last-child,
.btn-group > .input-search:last-child {
  border-radius: 0 15px 15px 0;
}

/* =Notifications
-----------------------------------------------------------------------------*/
.tools-alert {
  padding: 12px 15px;
  background: #f7f8f8;
  color: #0f0f0f;
  margin-bottom: 1.65em;
}
.tools-message {
  display: none;
  position: fixed;
  z-index: 100;
  top: 10px;
  right: 10px;
  max-width: 350px;
  line-height: 1.5;
  font-size: 95%;
  padding: 12px 15px;
  color: #0f0f0f;
  background: #e0e3e5;
}
.tools-message ul {
  margin: 0;
  list-style: none;
}
.tools-message-black,
.tools-message-blue,
.tools-message-red,
.tools-message-green {
  color: rgba(255, 255, 255, 0.95);
}
.tools-message-black {
  background: #0f0f0f;
}
.tools-message-blue {
  background: #2575ed;
}
.tools-message-red {
  background: #de2c3b;
}
.tools-message-yellow {
  background: #ffc800;
}
.tools-message-green {
  background: #2c9f42;
}
.tools-alert-black {
  background: #dadada;
}
.tools-alert-blue {
  background: #d3e3fb;
}
.tools-alert-red {
  background: #f8d5d8;
}
.tools-alert-yellow {
  background: #fff4cc;
}
.tools-alert-green {
  background: #d5ecd9;
}

/* =Labels
-----------------------------------------------------------------------------*/
.label,
.badge {
  background: #e0e3e5;
  font-size: 12.75px;
  display: inline-block;
  line-height: 1;
  padding: 4px 7px 3px 7px;
  color: #0f0f0f;
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
}
.label-outline {
  background: none;
  border: 1px solid #0f0f0f;
  padding: 3px 6px 2px 6px;
}
.badge {
  border-radius: 15px;
}
.badge-small {
  font-size: 11.25px;
  padding: 3px 5px;
}
.label-black,
.label-blue,
.label-red,
.label-green,
.badge-black,
.badge-blue,
.badge-red,
.badge-green {
  color: #ffffff;
}
.label-black,
.badge-black {
  background: #0f0f0f;
}
.label-blue,
.badge-blue {
  background: #2575ed;
}
.label-red,
.badge-red {
  background: #de2c3b;
}
.label-green,
.badge-green {
  background: #2c9f42;
}
.label-yellow,
.badge-yellow {
  background: #ffc800;
}
.label-white,
.badge-white {
  background: #ffffff;
}
.label-black.label-outline,
.label-blue.label-outline,
.label-red.label-outline,
.label-green.label-outline,
.label-yellow.label-outline,
.label-white.label-outline {
  background: none;
  color: #0f0f0f;
}
.label-blue.label-outline {
  border-color: #2575ed;
  color: #2575ed;
}
.label-red.label-outline {
  border-color: #de2c3b;
  color: #de2c3b;
}
.label-green.label-outline {
  border-color: #2c9f42;
  color: #2c9f42;
}
.label-yellow.label-outline {
  border-color: #ffc800;
  color: #ffc800;
}
.label-white.label-outline {
  border-color: #ffffff;
  color: #ffffff;
}

/* =Progress
-----------------------------------------------------------------------------*/
#tools-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000000;
  height: 10px;
}
#tools-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #1a52a5;
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
  background-size: 40px 40px;
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
    }
  }

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
    }
  }

@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
    }
  }


/* =Accordion
-----------------------------------------------------------------------------*/
.accordion-title {
  position: relative;
  display: block;
  margin: 0;
  margin-bottom: 2px;
  padding: 12px 50px 12px 18px;
  color: #000;
  text-decoration: none;
  font-weight: normal;
  font-size: 0.9375em;
  line-height: 1,4em;
  background: #f7f8f8;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.accordion-title.accordion-title-opened {
  margin-bottom: 0;
  font-weight: bold;
  background: #f0f1f2;
}
.accordion-title a,
.accordion-title:hover {
  color: #000;
  text-decoration: none;
}
.accordion-panel {
  padding: 1.65em;
  margin-bottom: 10px;
}
.accordion-toggle {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 20px;
  padding: 0;
  font-size: 0;
  line-height: 1;
}
.accordion-toggle-closed {
  background: #000;
  width: 1px;
  height: 15px;
  margin-left: 1px;
}
.accordion-toggle-closed:before {
  position: absolute;
  top: 7px;
  left: -7px;
  content: "";
  width: 15px;
  height: 1px;
  background: #000;
}
.accordion-toggle-opened:before {
  position: absolute;
  top: 7px;
  left: -8px;
  content: "";
  width: 15px;
  height: 1px;
  background: #000;
}

/* =Filterbox
-----------------------------------------------------------------------------*/
.filterbox {
  position: relative;
}
.filterbox input {
  padding-right: 30px;
}
.filterbox span {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 1px;
  width: 26px;
  height: 100%;
  cursor: pointer;
}
.filterbox span:after {
  content: "";
  display: inline-block;
  position: relative;
  top: 50%;
  margin-left: 8px;
  margin-top: -21px;
  width: 0;
  height: 0;
  vertical-align: middle;
  border-top: 5px solid rgba(0, 0, 0, 0.6);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.filterbox-list {
  z-index: 1000;
  position: absolute;
  left: 0;
  display: none;
  margin: 0;
  list-style: none;
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  max-height: 250px;
  overflow: auto;
}
.filterbox-list li {
  padding: 4px 10px;
  color: #000;
  cursor: pointer;
}
.filterbox-list li:hover {
  background: #f0f1f2;
}
.filterbox-list li.active {
  background: #2575ed;
  color: #fff;
}

/* =Tooltip
-----------------------------------------------------------------------------*/
.tooltip {
  position: absolute;
  z-index: 10000;
  display: inline-block;
  color: #fff;
  padding: 2px 10px;
  font-size: 12.75px;
  line-height: 1.5em;
  max-width: 250px;
  background: #0f0f0f;
}
.tooltip-theme-red {
  background: #de2c3b;
}
.tooltip-theme-blue {
  background: #2575ed;
}
.tooltip-theme-green {
  background: #2c9f42;
}
.tooltip-theme-yellow {
  background: #ffc800;
}
.tooltip-theme-white {
  background: #ffffff;
}
.tooltip-theme-yellow,
.tooltip-theme-white {
  color: #000;
}

/* =Dropdown
-----------------------------------------------------------------------------*/
.dropdown {
  display: none;
  position: absolute;
  z-index: 102;
  top: 0;
  right: 0;
  width: 250px;
  color: #0f0f0f;
  background: #ffffff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
  overflow: auto;
}
.dropdown section {
  max-height: 250px;
  overflow: auto;
  padding: 20px;
}
.dropdown footer {
  padding: 20px;
}
ul.dropdown {
  max-height: 300px;
  list-style: none;
  margin: 0;
  line-height: 1.5;
  font-size: 95%;
  padding: 0;
}
ul.dropdown a {
  display: block;
  padding: 7px 15px;
  text-decoration: none;
  color: #0f0f0f;
}
ul.dropdown a:hover {
  background: #eee;
}
ul.dropdown li.divider {
  border-bottom: 1px solid #e2e2e2;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.caret.caret-up {
  border-top: 0;
  border-bottom: 4px solid;
}

/* =Livesearch
-----------------------------------------------------------------------------*/
.livesearch-box {
  position: relative;
  display: inline-block;
  width: 100%;
}
.livesearch-box input {
  padding-left: 30px;
}
.livesearch-box .close {
  position: absolute;
  top: .2em;
  right: 5px;
  z-index: 2;
  padding: 4px 6px;
  line-height: 1;
  font-size: 20px;
  cursor: pointer;
  color: #000000;
  text-decoration: none;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.livesearch-box .close:before {
  content: '\00D7';
}
.livesearch-box .close:hover {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
.livesearch-icon {
  position: absolute;
  top: 53%;
  left: 10px;
  z-index: 2;
}
.livesearch-icon:before,
.livesearch-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin: -8px 0 0;
  background: rgba(0, 0, 0, 0.5);
}
.livesearch-icon:before {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  background: transparent;
  border-radius: 12px;
}
.livesearch-icon:after {
  left: 10px;
  width: 2px;
  height: 7px;
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* =Upload
-----------------------------------------------------------------------------*/
.tools-droparea {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  border: 3px dashed rgba(0, 0, 0, 0.1);
}
.tools-droparea.drag-hover {
  background: rgba(200, 222, 250, 0.75);
}
.tools-droparea.drag-drop {
  background: rgba(250, 248, 200, 0.5);
}
.tools-droparea-placeholder {
  text-align: center;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.5);
}

/* =Autocomplete
-----------------------------------------------------------------------------*/
.autocomplete {
  position: absolute;
  z-index: 1000;
  left: 0;
  display: none;
  margin: 0;
  list-style: none;
  background: #fff;
  width: 250px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  max-height: 250px;
  overflow: auto;
}
.autocomplete a {
  padding: 4px 10px;
  color: #000;
  display: block;
  text-decoration: none;
}
.autocomplete a:hover {
  background: #f0f1f2;
}
.autocomplete a.active {
  background: #2575ed;
  color: #fff;
}

/* =Modal
-----------------------------------------------------------------------------*/
#modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  overflow: auto;
  width: 100%;
  height: 100%;
  background-color: #000 !important;
  filter: alpha(opacity=30);
  -moz-opacity: 0.3;
  opacity: 0.3;
  z-index: 100;
}
.modal-blur {
  -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
}
.modal-box {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 101;
}
.modal {
  position: relative;
  margin: auto;
  margin-bottom: 20px;
  padding: 0;
  background: #fff;
  color: #000;
  box-shadow: 0 1px 70px rgba(0, 0, 0, 0.5);
}
.modal header {
  padding: 30px 40px 5px 40px;
  font-size: 18px;
  font-weight: bold;
}
.modal section {
  padding: 30px 40px 50px 40px;
}
.modal footer button {
  width: 100%;
  border-radius: 0;
}
.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 30px;
  height: 30px;
  text-align: right;
  color: #bbb;
  font-size: 30px;
  font-weight: 300;
  cursor: pointer;
}
.modal-close:hover {
  color: #000;
}

/* =Helpers
-----------------------------------------------------------------------------*/
.group:after {
  content: "";
  display: table;
  clear: both;
}
.hide {
  display: none;
}
.highlight {
  background-color: #f7f3e2;
}
.big {
  font-size: 18px;
}
.small {
  font-size: 12.75px;
}
.smaller {
  font-size: 11.25px;
}
.nowrap,
.nowrap td {
  white-space: nowrap;
}
.req,
.required {
  font-weight: normal;
  color: #de2c3b;
}
.error {
  color: #de2c3b;
}
.success {
  color: #2c9f42;
}
.text-centered {
  text-align: center;
}
.text-right {
  text-align: right;
}
.last {
  margin-right: 0 !important;
}
.pause {
  margin-bottom: 0.825em !important;
}
.end {
  margin-bottom: 0 !important;
}
.normal {
  font-weight: normal;
}
.light {
  font-weight: 300;
}
.bold {
  font-weight: bold;
}
.italic {
  font-style: italic;
}
.left {
  float: left;
}
.right {
  float: right;
}
.upper {
  text-transform: uppercase;
}
.list-flat {
  margin-left: 0;
  list-style: none;
}
.color-black {
  color: #0f0f0f;
}
.color-white {
  color: #ffffff;
}

/* Colors */
.color-gray-10 {
  color: rgba(0, 0, 0, 0.1);
}
.color-gray-20 {
  color: rgba(0, 0, 0, 0.2);
}
.color-gray-30 {
  color: rgba(0, 0, 0, 0.3);
}
.color-gray-40 {
  color: rgba(0, 0, 0, 0.4);
}
.color-gray-50 {
  color: rgba(0, 0, 0, 0.5);
}
.color-gray-60 {
  color: rgba(0, 0, 0, 0.6);
}
.color-gray-70 {
  color: rgba(0, 0, 0, 0.7);
}
.color-gray-80 {
  color: rgba(0, 0, 0, 0.8);
}
.color-gray-90 {
  color: rgba(0, 0, 0, 0.9);
}
.color-white-10 {
  color: rgba(255, 255, 255, 0.1);
}
.color-white-20 {
  color: rgba(255, 255, 255, 0.2);
}
.color-white-30 {
  color: rgba(255, 255, 255, 0.3);
}
.color-white-40 {
  color: rgba(255, 255, 255, 0.4);
}
.color-white-50 {
  color: rgba(255, 255, 255, 0.5);
}
.color-white-60 {
  color: rgba(255, 255, 255, 0.6);
}
.color-white-70 {
  color: rgba(255, 255, 255, 0.7);
}
.color-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.color-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive embedded objects */
.video-wrapper {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 1.65em;
}
.video-wrapper iframe,
.video-wrapper object,
.video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =Responsive
-----------------------------------------------------------------------------*/
	@media only screen and (max-width: 767px) {
  .left,
  .right {
    float: none;
  }
  .hide-on-mobile {
    display: none;
    }
  }


/* string content */
.str {
  color: #dd1144;
}

/* a keyword */
.kwd {
  color: #333333;
}

/* a comment */
.com {
  color: #999988;
}

/* a type name */
.typ {
  color: #445588;
}

/* a literal value */
.lit {
  color: #445588;
}

/* punctuation */
.pun {
  color: #888;
}

/* lisp open bracket */
.opn {
  color: #333333;
}

/* lisp close bracket */
.clo {
  color: #333333;
}

/* a markup tag name */
.tag {
  color: #367ac3;
}

/* a markup attribute name */
.atn {
  color: #51a7c9;
}

/* a markup attribute value */
.atv {
  color: #709c1a;
}

/* a declaration */
.dec {
  color: #666;
}

/* a variable name */
.var {
  color: teal;
}

/* a function name */
.fun {
  color: #990000;
}
.linenums ol li {
  list-style-type: none;
  counter-increment: list;
  position: relative;
}
.linenums ol li:after {
  content: counter(list);
  position: absolute;
  left: -3.3em;
  border-right: 1px solid #e5e5e5;
  padding-right: 9px;
  width: 2.45em;
  text-align: right;
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
}

/* =Grid Responsive
-----------------------------------------------------------------------------*/
	@media only screen and (max-width: 767px) {
  .mobile-width-100 {
    width: 100%;
  }
  .units-row .unit-90,
  .units-row .unit-80,
  .units-row .unit-75,
  .units-row .unit-70,
  .units-row .unit-66,
  .units-row .unit-65,
  .units-row .unit-60,
  .units-row .unit-50,
  .units-row .unit-40,
  .units-row .unit-35,
  .units-row .unit-33,
  .units-row .unit-30,
  .units-row .unit-25,
  .units-row .unit-20,
  .units-row .unit-10 {
    width: 100%;
    float: none;
    margin-left: 0;
    margin-bottom: 1.65em;
  }
  .unit-push-90,
  .unit-push-80,
  .unit-push-75,
  .unit-push-70,
  .unit-push-66,
  .unit-push-65,
  .unit-push-60,
  .unit-push-50,
  .unit-push-40,
  .unit-push-35,
  .unit-push-33,
  .unit-push-30,
  .unit-push-25,
  .unit-push-20,
  .unit-push-10 {
    left: 0;
  }
  .units-row .unit-push-right {
    float: none;
  }
  .units-mobile-50 .unit-90,
  .units-mobile-50 .unit-80,
  .units-mobile-50 .unit-75,
  .units-mobile-50 .unit-70,
  .units-mobile-50 .unit-66,
  .units-mobile-50 .unit-65,
  .units-mobile-50 .unit-60,
  .units-mobile-50 .unit-40,
  .units-mobile-50 .unit-30,
  .units-mobile-50 .unit-35,
  .units-mobile-50 .unit-33,
  .units-mobile-50 .unit-25,
  .units-mobile-50 .unit-20,
  .units-mobile-50 .unit-10 {
    float: left;
    margin-left: 3%;
    width: 48.5%;
  }
  .units-mobile-50 .unit-90:first-child,
  .units-mobile-50 .unit-80:first-child,
  .units-mobile-50 .unit-75:first-child,
  .units-mobile-50 .unit-70:first-child,
  .units-mobile-50 .unit-66:first-child,
  .units-mobile-50 .unit-65:first-child,
  .units-mobile-50 .unit-60:first-child,
  .units-mobile-50 .unit-40:first-child,
  .units-mobile-50 .unit-35:first-child,
  .units-mobile-50 .unit-30:first-child,
  .units-mobile-50 .unit-33:first-child,
  .units-mobile-50 .unit-25:first-child,
  .units-mobile-50 .unit-20:first-child,
  .units-mobile-50 .unit-10:first-child {
    margin-left: 0;
    }
  }


/* =Blocks Responsive
-----------------------------------------------------------------------------*/
	@media only screen and (max-width: 767px) {
  .blocks-2,
  .blocks-3,
  .blocks-4,
  .blocks-5,
  .blocks-6 {
    margin-left: 0;
    margin-bottom: 1.65em;
  }
  .blocks-2 > li,
  .blocks-3 > li,
  .blocks-4 > li,
  .blocks-5 > li,
  .blocks-6 > li {
    float: none;
    margin-left: 0;
    width: 100%;
  }
  .blocks-mobile-50 > li,
  .blocks-mobile-33 > li {
    float: left;
    margin-left: 3%;
  }
  .blocks-mobile-33,
  .blocks-mobile-50 {
    margin-left: -3%;
  }
  .blocks-mobile-50 > li {
    width: 47%;
  }
  .blocks-mobile-33 > li {
    width: 30.33333333%;
    }
  }


/* =Typography Responsive
-----------------------------------------------------------------------------*/

/* Portrait tablet to landscape and desktop */
	@media (min-width: 768px) and (max-width: 979px) {
  h1 {
    font-size: 2.25em;
    line-height: 1.125;
  }
  h2 {
    font-size: 1.5em;
    line-height: 1.25;
  }
  h3 {
    font-size: 1.3125em;
    line-height: 1.25;
  }
  h4 {
    font-size: 1.125em;
    line-height: 1.22222222;
  }
  h5 {
    font-size: 1em;
  }
  h6 {
    font-size: 0.75em;
    }
  }


/* Landscape phone to portrait tablet */
	@media (max-width: 767px) {
  h1 {
    font-size: 2.25em;
    line-height: 1.25;
  }
  h2 {
    font-size: 1.5em;
    line-height: 1.15384615;
  }
  h3 {
    font-size: 1.3125em;
    line-height: 1.13636364;
  }
  h4 {
    font-size: 1.125em;
    line-height: 1.11111111;
  }
  h5 {
    font-size: 1em;
  }
  h6 {
    font-size: 0.75em;
  }
  .lead {
    font-size: 1.2em;
  }
  ul,
  ol,
  ul ul,
  ol ol,
  ul ol,
  ol ul {
    margin-left: 1.65em;
  }
  blockquote {
    margin-left: 0;
    }
  }


/* =Navigation Responsive
-----------------------------------------------------------------------------*/
	@media only screen and (max-width: 767px) {
  .navbar.navbar-left,
  .navbar.navbar-right,
  .navbar li,
  .navbar.navbar-left li,
  .navbar.navbar-right li {
    float: none;
    text-align: left;
    width: auto;
  }
  .navbar li,
  .navbar.navbar-right li {
    margin-left: 0;
    margin-right: 0;
  }
  .fullwidth ul,
  .fullwidth li {
    width: auto;
  }
  .fullwidth li {
    display: block;
    }
  }


/* =Forms Responsive
-----------------------------------------------------------------------------*/
	@media only screen and (max-width: 767px) {
  .forms-list label {
    display: inline-block;
    }
  }

	@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 12pt;
  }
  .h1,
  h1 {
    font-size: 36pt;
  }
  .h2,
  h2 {
    font-size: 24pt;
  }
  .h3,
  h3 {
    font-size: 18pt;
  }
  .h4,
  h4 {
    font-size: 14pt;
  }
  .h5,
  h5 {
    font-size: 12pt;
  }
  .h6,
  h6 {
    font-size: 12pt;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    page-break-inside: avoid;
  }
  blockquote {
    border: none;
    font-style: italic;
  }
  img {
    max-width: 100% !important;
  }
  select {
    background: #fff !important;
    }
  }


/****************************************************************************

	My Style Less

****************************************************************************/

/* Grid */

/* Color */

/*-----------------------------------------------------------------------------
Typography
-----------------------------------------------------------------------------*/
body {
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
  color: #595757;
}

/*-----------------------------------------------------------------------------
Link
-----------------------------------------------------------------------------*/
a {
  color: #595757;
  text-decoration: none;
}
a,
a:hover {
  transition: all 0.3s ease 0s;
}

/*-----------------------------------------------------------------------------
Common
-----------------------------------------------------------------------------*/
.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
  padding: 0 12px;
  position: relative;
}
	@media only screen and (max-width: 767px) {
  .wrapper {
    padding: 0 6px;
    }
  }

ul {
  list-style: none;
}

/*-----------------------------------------------------------------------------
Helper
-----------------------------------------------------------------------------*/

/*「...」*/
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*Margin Zero*/
.zero {
  margin: 0!important;
}

/*Label*/
.label {
  background: #e0e3e5 none repeat scroll 0 0;
  border-radius: 3px;
  color: #0f0f0f;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 6px 12px 3px;
  text-align: center;
  text-transform: uppercase;
  width: 80px;
}
.label.label-orange,
.label.label-green,
.label.label-blue {
  color: #fff;
}
.label.label-orange {
  background-color: #f39700;
}
.label.label-green {
  background-color: #8ec31e;
}
.label.label-blue {
  background-color: #2fa8e1;
}

/*width767px Display None*/
	@media only screen and (max-width: 767px) {
  .no-display-sp {
    display: none!important;
    }
  }

	@media only screen and (max-width: 1024px) {
  .no-display-mobile {
    display: none!important;
    }
  }

.on-display-sp {
  display: none;
}
	@media only screen and (max-width: 767px) {
  .on-display-sp {
    display: block!important;
    }
  }


/*-----------------------------------------------------------------------------
Image Replacement（画像置換）
-----------------------------------------------------------------------------*/
.ht {
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 0;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 100%;
}

/*-----------------------------------------------------------------------------
Header
-----------------------------------------------------------------------------*/

/*Site Title*/
.page-header .site-title {
  width: 180px;
  height: 58px;
}
	@media only screen and (max-width: 767px) {
  .page-header .site-title {
    width: 150px;
    }
  }

.page-header .site-title a {
  display: block;
  opacity: 0.65;
}
.page-header .site-title a:hover {
  opacity: 1.0;
}
.page-header .site-title .ht {
  background-image: url(images/header/logo01@2x.png);
  padding-top: 30.556%;
}

/*Navi 1*/
.page-header .header-nav-1 li {
  margin-right: 13px;
}
.page-header .header-nav-1 li a {
  font-size: 13px;
  line-height: 1;
}
.page-header .header-nav-1 li a:before {
  background-image: url("images/common/part01@2x.png");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 12px;
  margin-right: 2px;
  position: relative;
  top: 1px;
  width: 10px;
}
.page-header .header-nav-1 li:nth-child(4):hover {
  cursor: pointer;
}
.page-header .header-nav-1 li:nth-child(4) .ht {
  background-image: url("images/common/icon01@2x.png");
  width: 16px;
  height: 17px;
  position: relative;
  top: -2px;
}
.page-header .header-nav-1 li:nth-child(4) .ht:hover {
  cursor: pointer;
}
.page-header .header-nav-1 li:nth-child(4) .ht.minus {
  background-image: url("images/common/icon01-minus@2x.png");
}
.page-header .header-nav-1 li:nth-child(4):hover .ht {
  background-image: url("images/common/icon01-on@2x.png");
}
.page-header .header-nav-1 li:nth-child(4):hover .ht.minus {
  background-image: url("images/common/icon01-on-minus@2x.png");
}
.page-header .header-nav-1 li.modal-menu > .btn-menu {
  background-color: #595757;
  border: solid 2px #595757;
  display: block;
  height: 45px;
  position: relative;
  top: -19px;
  width: 46px;
}
.page-header .header-nav-1 li.modal-menu > .btn-menu:before {
  content: none;
}
.page-header .header-nav-1 li.modal-menu > .btn-menu .bar {
  background-color: #fff;
  display: block;
  height: 2px;
  margin: 5px auto;
  position: relative;
  top: 0px;
  width: 18px;
}
.page-header .header-nav-1 li.modal-menu > .btn-menu:hover {
  background-color: #fff;
}
.page-header .header-nav-1 li.modal-menu > .btn-menu:hover .bar {
  background-color: #595757;
}

/*Smakflakes*/
.page-header #flkscnvs {
  position: absolute!important;
}

/*-----------------------------------------------------------------------------
Header Fixed
-----------------------------------------------------------------------------*/
.page-header .box-fixed {
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99999;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.page-header .box-fixed .box-1 {
  height: 76px;
}
	@media only screen and (max-width: 767px) {
  .page-header .box-fixed .box-1 {
    height: 65px;
    }
  }

.page-header .box-fixed .box-1 .site-title {
  position: absolute;
  top: 10px;
  left: 32px;
}
	@media only screen and (max-width: 767px) {
  .page-header .box-fixed .box-1 .site-title {
    left: 10px;
    }
  }

.page-header .box-fixed .box-1 .header-nav-1 {
  position: absolute;
  top: 19px;
  right: -65px;
}
	@media only screen and (max-width: 1024px) {
  .page-header .box-fixed .box-1 .header-nav-1 {
    right: 0;
    }
  }

	@media only screen and (max-width: 767px) {
  .page-header .box-fixed .box-1 li {
    float: left;
    }
  }

.page-header .box-fixed .box-2 .right {
  padding: 0 0 13px;
}
.page-header .box-fixed .box-2 input {
  background-color: #eeefef;
  border: medium none;
  height: 27px;
  min-width: 490px;
  margin-left: 3px;
  padding-left: 10px;
}
	@media only screen and (max-width: 767px) {
  .page-header .box-fixed .box-2 input {
    min-width: 0;
    width: 60%;
    }
  }

.page-header .box-fixed .box-2 input::-webkit-input-placeholder {
  font-size: 10px;
  font-weight: normal;
}
.page-header .box-fixed .box-2 input:-ms-input-placeholder {
  font-size: 10px;
  font-weight: normal;
}
.page-header .box-fixed .box-2 input::-moz-placeholder {
  font-size: 10px;
  font-weight: normal;
}
.page-header .box-fixed .box-2 .btn {
  background-color: #1283c4;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
}
.page-header .box-fixed .box-2 .btn:hover {
  background-color: #fff;
  color: #1283c4;
  box-shadow: 0 0 0 1px #1283c4 inset;
}

/*-----------------------------------------------------------------------------
Modal Box
-----------------------------------------------------------------------------*/
.modal-box {
  z-index: 99999;
}
.modal-box header {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 40px 0px;
}
.modal-box section {
  padding: 10px 30px 10px;
}
	@media only screen and (max-width: 767px) {
  .modal-box section {
    padding: 10px 6px;
    }
  }

.modal-box .btn {
  padding: 0.55em 1em;
}
.modal-box .modal-close {
  background-image: url("images/common/icon03@2x.png");
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.modal-box .modal-close:hover {
  opacity: 1;
}
.modal-box .modal-nav {
  padding: 0;
}

/* Modal Menu Nav 1 */
.modal-box .modal-nav-1 {
  padding: 0;
  margin-bottom: 10px;
}
	@media only screen and (max-width: 767px) {
  .modal-box .modal-nav-1 .menu-item {
    margin-bottom: 5px!important;
    }
  }

.modal-box .modal-nav-1 .menu-item a {
  opacity: 1;
  width: 114px;
  height: 114px;
  margin: 0 auto;
}
	@media only screen and (max-width: 767px) {
  .modal-box .modal-nav-1 .menu-item a {
    width: 90px;
    height: 90px;
    }
  }

.modal-box .modal-nav-1 .menu-item a .inner {
  padding: 3px;
}
.modal-box .modal-nav-1 .menu-item a:hover .outer {
  background-image: url("images/header/nav-2/menu-item-00.png");
}
.modal-box .modal-nav-1 .menu-item a:hover .inner.off .ht {
  opacity: 1;
}
.modal-box .modal-nav-1 .menu-item.menu-item-03 a,
.modal-box .modal-nav-1 .menu-item.menu-item-06 a {
  float: none;
}

/* Modal Menu Nav 1 : 各画像*/
.modal-box .modal-nav-1 .menu-item-01 a .inner .ht {
  background-image: url("images/modal/memu-item-01.png");
}
.modal-box .modal-nav-1 .menu-item-02 a .inner .ht {
  background-image: url("images/modal/memu-item-02.png");
}
.modal-box .modal-nav-1 .menu-item-03 a .inner .ht {
  background-image: url("images/modal/memu-item-03.png");
}
.modal-box .modal-nav-1 .menu-item-04 a .inner .ht {
  background-image: url("images/modal/memu-item-04.png");
}tvtt
.modal-box .modal-nav-1 .menu-item-05 a .inner .ht {
  background-image: url("images/modal/memu-item-05.png");
}
.modal-box .modal-nav-1 .menu-item-06 a .inner .ht {
  background-image: url("images/modal/memu-item-06.png");
}

/*Modal Menu Nav 2*/
.modal-box .modal-nav-2 {
  opacity: 1;
}
	@media only screen and (max-width: 767px) {
  .modal-box .modal-nav-2 .menu-item {
    margin-bottom: 10px;
    }
  }

.modal-box .modal-nav-2 a {
  border-left: solid 1px #1283c4;
  border-bottom: solid 1px #1283c4;
  border-right: solid 1px #1283c4;
}
	@media only screen and (max-width: 767px) {
  .modal-box .modal-nav-2 a {
    width: 250px;
    margin: 0 auto;
    }
  }

.modal-box .modal-nav-2 a:hover {
  border: none;
  box-shadow: none;
}

/*Modal Menu Nav 3*/
	@media only screen and (max-width: 767px) {
  .modal-box .modal-nav-3 .menu-item {
    margin-bottom: 10px;
    }
  }

.modal-box .modal-nav-3 a {
  border-color: #2fa8e1;
  border-width: 1px;
  color: #2fa8e1;
  border-radius: 3px;
}
	@media only screen and (max-width: 767px) {
  .modal-box .modal-nav-3 a {
    display: block;
    width: 250px;
    margin: 0 auto;
    }
  }

.modal-box .modal-nav-3 a:hover {
  background-color: #2fa8e1;
  color: #fff;
}

/*Modal Menu Nav 4*/
	@media only screen and (max-width: 767px) {
  .modal-box .modal-nav-4 li {
    margin-bottom: 10px;
    }
  }

.modal-box .modal-nav-4 a {
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top-width: 3px;
  border-top-color: #2fa8e1;
  font-weight: bold;
  background-image: url("images/home/sec-3-list-bg@2x.png");
}
	@media only screen and (max-width: 767px) {
  .modal-box .modal-nav-4 a {
    font-size: 12px;
    padding: 0.55em 5px;
    }
  }

.modal-box .modal-nav-4 a:hover {
  background-color: #2fa8e1;
  border-top-color: #1283c4;
  color: #fff;
  background-image: none;
}

/*Modal header nav 1*/
.modal-box .header-nav-1 {
  display: none;
  margin-bottom: 10px;
}
	@media only screen and (max-width: 767px) {
  .modal-box .header-nav-1 {
    display: block;
  }
  .modal-box .header-nav-1 a {
    line-height: 1;
    }
  }


/*-----------------------------------------------------------------------------
Side Fixed Menu
-----------------------------------------------------------------------------*/
.side-fixed-menu {
  position: fixed;
  top: 160px;
  width: 100%;
}
	@media only screen and (max-width: 1024px) {
  .side-fixed-menu {
    width: 99%;
    }
  }

.side-fixed-menu .wrapper {
  max-width: 1100px;
}
.side-fixed-menu ul {
  position: absolute;
  right: 0;
  top: 0;
}

/*Page Top*/
.side-fixed-menu #page-top {
  display: block;
  margin-bottom: 10px;
  position: relative;
}
.side-fixed-menu #page-top .ht {
  background-image: url("images/common/btn-page-top@2x.png");
  width: 45px;
  height: 57px;
  margin: 0 auto;
  transition: all 0.3s ease 0s;
}
.side-fixed-menu #page-top .ht.off {
  opacity: 1;
  transition: all 0.3s ease 0s;
}
.side-fixed-menu #page-top .ht.on {
  background-image: url("images/common/btn-page-top-on@2x.png");
  position: absolute;
  top: 0;
  opacity: 0;
}
.side-fixed-menu #page-top:hover .ht.off {
  opacity: 0;
}
.side-fixed-menu #page-top:hover .ht.on {
  opacity: 1;
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.9);
    opacity: 0.7;
    }
  }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
    }
  }


/* Button Photo Gallery*/
.side-fixed-menu .photo-gallery {
  display: block;
  background-color: #1283c4;
  border: solid 2px #1283c4;
  padding: 10px 0px;
}
.side-fixed-menu .photo-gallery .ht {
  background-image: url("images/common/btn-photo-gallery@2x.png");
  width: 41px;
  height: 154px;
}
	@media only screen and (max-width: 767px) {
  .side-fixed-menu .photo-gallery .ht {
    height: 35px;
    }
  }

.side-fixed-menu .photo-gallery:hover {
  background-color: #fff;
}
.side-fixed-menu .photo-gallery:hover .ht {
  background-image: url("images/common/btn-photo-gallery-on@2x.png");
}

/*-----------------------------------------------------------------------------
Header Anime Box
-----------------------------------------------------------------------------*/
.page-header .box-anime {
  overflow: hidden;
  position: relative;
}
.page-header .box-anime .site-title {
  left: 32px;
  position: absolute;
  top: 10px;
}
	@media only screen and (max-width: 767px) {
  .page-header .box-anime .site-title {
    left: 10px;
    }
  }

.page-header .box-anime .header-nav-1 {
  position: absolute;
  right: -65px;
  top: 19px;
}
	@media only screen and (max-width: 767px) {
  .page-header .box-anime .header-nav-1 li {
    float: left;
    }
  }

	@media only screen and (max-width: 1024px) {
  .page-header .box-anime .header-nav-1 {
    right: 0;
    }
  }

.page-header .box-anime .illust {
  display: block;
  position: absolute;
  z-index: 999;
}
.page-header .box-anime .illust img {
  max-width: none;
}

/* Home 以外 */
.page-header .box-anime {
  width: 100%;
  height: 290px;
  background-image: url(images/header/bg02.png);
  background-repeat: no-repeat;
  background-position: center center;
}
body.spring .page-header .box-anime {
  background-image: url(images/header/bg02-spring.png);
}
body.summer .page-header .box-anime {
  background-image: url(images/header/bg02-summer.png);
}
body.autumn .page-header .box-anime {
  background-image: url(images/header/bg02-autumn.png);
}
body.winter .page-header .box-anime {
  background-image: url(images/header/bg02-winter.png);
}

/*両サイドのループ処理（共通）*/
body .page-header .box-anime:after,
body .page-header .box-anime:before {
  content: "";
  display: block;
  width: 50%;
  height: 290px;
  position: absolute;
  top: 0;
  background-image: url(images/header/bg02-spring-left.png);
  background-repeat: repeat-x;
}

/*左ループ処理*/
body .page-header .box-anime:before {
  left: -900px;
}
body.spring .page-header .box-anime:before {
  background-image: url(images/header/bg02-spring-left.png);
}
body.summer .page-header .box-anime:before {
  background-image: url(images/header/bg02-summer-left.png);
}
body.autumn .page-header .box-anime:before {
  background-image: url(images/header/bg02-autumn-left.png);
}
body.winter .page-header .box-anime:before {
  background-image: url(images/header/bg02-winter-left.png);
}

/*右ループ処理*/
body .page-header .box-anime:after {
  right: -900px;
}
body.spring .page-header .box-anime:after {
  background-image: url(images/header/bg02-spring-right.png);
}
body.summer .page-header .box-anime:after {
  background-image: url(images/header/bg02-summer-right.png);
}
body.autumn .page-header .box-anime:after {
  background-image: url(images/header/bg02-autumn-right.png);
}
body.winter .page-header .box-anime:after {
  background-image: url(images/header/bg02-winter-right.png);
}

/* Home  Anime Box
-----------------------------------------------------------------------------*/
body.home .page-header .box-anime {
  width: 100%;
  height: 850px;
  background-image: url(images/header/bg01.png) !important;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 115px;
}
	@media only screen and (max-width: 767px) {
  body.home .page-header .box-anime {
    height: auto;
    }
  }

	@media only screen and (max-width: 400px) {
  body.home .page-header .box-anime {
    height: 600px;
    }
  }

	@media only screen and (max-width: 374px) {
  body.home .page-header .box-anime {
    height: 600px;
    }
  }

body.home .page-header .box-anime .site-title {
  top: -105px;
  left: 32px;
}
		@media only screen and (max-width: 767px) {
  body.home .page-header .box-anime .site-title {
    left: 10px;
    }
  }

body.home .page-header .box-anime .header-nav-1 {
  top: -96px;
  right: -65px;
}
	@media only screen and (max-width: 1024px) {
  body.home .page-header .box-anime .header-nav-1 {
    top: -96px;
    right: 0;
    }
  }

body.home .page-header .box-anime .illust.sun {
  opacity: 0;
  -webkit-animation: fa-spin 20s infinite linear;
  animation: fa-spin 20s infinite linear;
}
body.home .page-header .box-anime:after,
body.home .page-header .box-anime:before {
  width: 0;
}

/*Navi 2、Modal Navi 2,
-----------------------------------------------------------------------------*/

/*共通*/
.modal-nav-1,
body.home .page-header .box-anime .header-nav-2 {
  padding: 0 20px;
}
.modal-nav-1 .menu-item a,
body.home .page-header .box-anime .header-nav-2 .menu-item a {
  display: block;
  width: 230px;
  height: 230px;
  position: relative;
  opacity: 0;
}
.modal-nav-1 .menu-item a .outer,
body.home .page-header .box-anime .header-nav-2 .menu-item a .outer {
  background-image: url(images/header/nav-2/menu-item-00.png);
  height: 100%;
  position: absolute;
  top: 0;
  
/*transition: all 5s linear 0.1s;*/
}
.modal-nav-1 .menu-item a:hover .outer,
body.home .page-header .box-anime .header-nav-2 .menu-item a:hover .outer {
  background-image: url(images/header/nav-2/menu-item-00-on.png);
  -webkit-animation: fa-spin 15s infinite linear;
  animation: fa-spin 15s infinite linear;
}
.modal-nav-1 .menu-item a:hover .inner.off .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item a:hover .inner.off .ht {
  opacity: 0;
  
/*transition: all 0.3s ease 0s;*/
}
.modal-nav-1 .menu-item a .inner,
body.home .page-header .box-anime .header-nav-2 .menu-item a .inner {
  width: 100%;
  height: 100%;
  padding: 8px;
  position: absolute;
  top: 0;
}
.modal-nav-1 .menu-item a .inner .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item a .inner .ht {
  height: 100%;
  transition: all 0.3s ease 0s;
}
.modal-nav-1 .menu-item a .image,
body.home .page-header .box-anime .header-nav-2 .menu-item a .image {
  height: 100%;
  position: absolute;
  top: 0;
}

/*Home*/
body.home .page-header .box-anime .header-nav-2 {
  padding: 0;
}
	@media only screen and (max-width: 767px) {
  body.home .page-header .box-anime .header-nav-2 {
    position: relative;
    top: -30px;
  }
  body.home .page-header .box-anime .header-nav-2 .blocks-3 {
    margin-left: -2%;
    padding-left: 0;
  }
  body.home .page-header .box-anime .header-nav-2 .blocks-3 > li {
    float: left;
    margin-left: 2%;
    width: 31.3333%;
    margin-bottom: 1em;
    }
  }

	@media only screen and (max-width: 767px) {
  body.home .page-header .box-anime .header-nav-2 .menu-item a {
    display: block;
    height: 0;
    opacity: 0;
    padding-top: 100%;
    position: relative;
    width: 100%;
  }
  body.home .page-header .box-anime .header-nav-2 .menu-item a .outer {
    background-image: url("images/header/nav-2/menu-item-00.png");
    height: 0;
    padding-top: 100%;
    position: absolute;
    top: 0;
  }
  body.home .page-header .box-anime .header-nav-2 .menu-item a .inner {
    padding: 4px;
  }
  body.home .page-header .box-anime .header-nav-2 .menu-item a .inner .ht {
    height: 0;
    padding-top: 100%;
    transition: all 0.3s ease 0s;
  }
  body.home .page-header .box-anime .header-nav-2 .menu-item a .image {
    height: 100%;
    padding-top: 100%;
    position: absolute;
    top: 0;
  }
  body.home .page-header .box-anime .header-nav-2 .menu-item a:hover .outer {
    background-image: url(images/header/nav-2/menu-item-00.png);
    }
  }


/*各メニュー*/
.modal-nav-1 .menu-item-01 a .inner .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item-01 a .inner .ht {
  background-image: url(images/header/nav-2/menu-item-01.png);
}
.modal-nav-1 .menu-item-01 a .inner.on .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item-01 a .inner.on .ht {
  background-image: url(images/header/nav-2/menu-item-01-on.png);
}
.modal-nav-1 .menu-item-01 a .image,
body.home .page-header .box-anime .header-nav-2 .menu-item-01 a .image {
  background-image: url(images/header/nav-2/image/menu-item-01.png);
}
.modal-nav-1 .menu-item-02 a .inner .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item-02 a .inner .ht {
  background-image: url(images/header/nav-2/menu-item-02.png);
}
.modal-nav-1 .menu-item-02 a .inner.on .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item-02 a .inner.on .ht {
  background-image: url(images/header/nav-2/menu-item-02-on.png);
}
.modal-nav-1 .menu-item-02 a .image,
body.home .page-header .box-anime .header-nav-2 .menu-item-02 a .image {
  background-image: url(images/header/nav-2/image/menu-item-02.png);
}
.modal-nav-1 .menu-item-03 a .inner .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item-03 a .inner .ht {
  background-image: url(images/header/nav-2/menu-item-03.png);
}
.modal-nav-1 .menu-item-03 a .inner.on .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item-03 a .inner.on .ht {
  background-image: url(images/header/nav-2/menu-item-03-on.png);
}
.modal-nav-1 .menu-item-03 a .image,
body.home .page-header .box-anime .header-nav-2 .menu-item-03 a .image {
  background-image: url(images/header/nav-2/image/menu-item-03.png);
}
.modal-nav-1 .menu-item-04 a .inner .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item-04 a .inner .ht {
  background-image: url(images/header/nav-2/menu-item-04.png);
}
.modal-nav-1 .menu-item-04 a .inner.on .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item-04 a .inner.on .ht {
  background-image: url(images/header/nav-2/menu-item-04-on.png);
}
.modal-nav-1 .menu-item-04 a .image,
body.home .page-header .box-anime .header-nav-2 .menu-item-04 a .image {
  background-image: url(images/header/nav-2/image/menu-item-04.png);
}
.modal-nav-1 .menu-item-05 a .inner .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item-05 a .inner .ht {
  background-image: url(images/header/nav-2/menu-item-05.png);
}
.modal-nav-1 .menu-item-05 a .inner.on .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item-05 a .inner.on .ht {
  background-image: url(images/header/nav-2/menu-item-05-on.png);
}
.modal-nav-1 .menu-item-05 a .image,
body.home .page-header .box-anime .header-nav-2 .menu-item-05 a .image {
  background-image: url(images/header/nav-2/image/menu-item-05.png);
}
.modal-nav-1 .menu-item-06 a .inner .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item-06 a .inner .ht {
  background-image: url(images/header/nav-2/menu-item-06.png);
}
.modal-nav-1 .menu-item-06 a .inner.on .ht,
body.home .page-header .box-anime .header-nav-2 .menu-item-06 a .inner.on .ht {
  background-image: url(images/header/nav-2/menu-item-06-on.png);
}
.modal-nav-1 .menu-item-06 a .image,
body.home .page-header .box-anime .header-nav-2 .menu-item-06 a .image {
  background-image: url(images/header/nav-2/image/menu-item-06.png);
}
	@media only screen and (max-width: 767px) {
  .modal-nav-1 .menu-item-01 a .inner .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-01 a .inner .ht {
    background-image: url(images/modal/memu-item-01.png);
  }
  .modal-nav-1 .menu-item-01 a .inner.on .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-01 a .inner.on .ht {
    background-image: url(images/modal/memu-item-01.png);
  }
  .modal-nav-1 .menu-item-02 a .inner .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-02 a .inner .ht {
    background-image: url(images/header/nav-2/menu-item-02.png);
  }
  .modal-nav-1 .menu-item-02 a .inner.on .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-02 a .inner.on .ht {
    background-image: url(images/header/nav-2/menu-item-02-on.png);
  }
  .modal-nav-1 .menu-item-02 a .image,
  body.home .page-header .box-anime .header-nav-2 .menu-item-02 a .image {
    background-image: url(images/header/nav-2/image/menu-item-02.png);
  }
  .modal-nav-1 .menu-item-03 a .inner .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-03 a .inner .ht {
    background-image: url(images/header/nav-2/menu-item-03.png);
  }
  .modal-nav-1 .menu-item-03 a .inner.on .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-03 a .inner.on .ht {
    background-image: url(images/header/nav-2/menu-item-03-on.png);
  }
  .modal-nav-1 .menu-item-03 a .image,
  body.home .page-header .box-anime .header-nav-2 .menu-item-03 a .image {
    background-image: url(images/header/nav-2/image/menu-item-03.png);
  }
  .modal-nav-1 .menu-item-04 a .inner .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-04 a .inner .ht {
    background-image: url(images/header/nav-2/menu-item-04.png);
  }
  .modal-nav-1 .menu-item-04 a .inner.on .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-04 a .inner.on .ht {
    background-image: url(images/header/nav-2/menu-item-04-on.png);
  }
  .modal-nav-1 .menu-item-04 a .image,
  body.home .page-header .box-anime .header-nav-2 .menu-item-04 a .image {
    background-image: url(images/header/nav-2/image/menu-item-04.png);
  }
  .modal-nav-1 .menu-item-05 a .inner .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-05 a .inner .ht {
    background-image: url(images/header/nav-2/menu-item-05.png);
  }
  .modal-nav-1 .menu-item-05 a .inner.on .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-05 a .inner.on .ht {
    background-image: url(images/header/nav-2/menu-item-05-on.png);
  }
  .modal-nav-1 .menu-item-05 a .image,
  body.home .page-header .box-anime .header-nav-2 .menu-item-05 a .image {
    background-image: url(images/header/nav-2/image/menu-item-05.png);
  }
  .modal-nav-1 .menu-item-06 a .inner .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-06 a .inner .ht {
    background-image: url(images/header/nav-2/menu-item-06.png);
  }
  .modal-nav-1 .menu-item-06 a .inner.on .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-06 a .inner.on .ht {
    background-image: url(images/header/nav-2/menu-item-06-on.png);
  }
  .modal-nav-1 .menu-item-06 a .image,
  body.home .page-header .box-anime .header-nav-2 .menu-item-06 a .image {
    background-image: url(images/header/nav-2/image/menu-item-06.png);
    }
  }

	@media only screen and (max-width: 767px) {
  body.home .page-header .box-anime .header-nav-2 .menu-item-01 a .inner .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-01 a .inner.on .ht {
    background-image: url(images/modal/memu-item-01.png);
  }
  body.home .page-header .box-anime .header-nav-2 .menu-item-02 a .inner .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-02 a .inner.on .ht {
    background-image: url(images/modal/memu-item-02.png);
  }
  body.home .page-header .box-anime .header-nav-2 .menu-item-03 a .inner .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-03 a .inner.on .ht {
    background-image: url(images/modal/memu-item-03.png);
  }
  body.home .page-header .box-anime .header-nav-2 .menu-item-04 a .inner .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-04 a .inner.on .ht {
    background-image: url(images/modal/memu-item-04.png);
  }
  body.home .page-header .box-anime .header-nav-2 .menu-item-05 a .inner .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-05 a .inner.on .ht {
    background-image: url(images/modal/memu-item-05.png);
  }
  body.home .page-header .box-anime .header-nav-2 .menu-item-06 a .inner .ht,
  body.home .page-header .box-anime .header-nav-2 .menu-item-06 a .inner.on .ht {
    background-image: url(images/modal/memu-item-06.png);
    }
  }


/*各メニュー位置調整*/
.modal-nav-1 .menu-item-02 a,
body.home .page-header .box-anime .header-nav-2 .menu-item-02 a,
.modal-nav-1 .menu-item-05 a,
body.home .page-header .box-anime .header-nav-2 .menu-item-05 a {
  margin: 0 auto;
}
.modal-nav-1 .menu-item-03 a,
body.home .page-header .box-anime .header-nav-2 .menu-item-03 a,
.modal-nav-1 .menu-item-06 a,
body.home .page-header .box-anime .header-nav-2 .menu-item-06 a {
  float: right;
}

/*Navi 3, Modal Nav 2
-----------------------------------------------------------------------------*/

/*共通*/
.modal-nav-2,
body.home .page-header .box-anime .header-nav-3 {
  padding: 0 20px;
  opacity: 0;
}
.modal-nav-2 a,
body.home .page-header .box-anime .header-nav-3 a {
  display: block;
  width: 100%;
  background-color: #fff;
}
.modal-nav-2 a:hover,
body.home .page-header .box-anime .header-nav-3 a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background-color: #1283c4;
}
.modal-nav-2 a:hover .ht,
body.home .page-header .box-anime .header-nav-3 a:hover .ht {
  transition: all 0.3s ease 0s;
}
.modal-nav-2 a .ht,
body.home .page-header .box-anime .header-nav-3 a .ht {
  padding-top: 19.932%;
  transition: all 0.3s ease 0s;
}

/*各メニュー位置*/
.modal-nav-2 .menu-item-01 a .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-00 a .ht {
  background-image: url(images/header/nav-3/menu-item-00.png);
}
.modal-nav-2 .menu-item-01 a:hover .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-00 a:hover .ht {
  background-image: url(images/header/nav-3/menu-item-00-on.png);
}
.modal-nav-2 .menu-item-01 a .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-01 a .ht {
  background-image: url(images/header/nav-3/menu-item-01.png);
}
.modal-nav-2 .menu-item-01 a:hover .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-01 a:hover .ht {
  background-image: url(images/header/nav-3/menu-item-01-on.png);
}
.modal-nav-2 .menu-item-02 a .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-02 a .ht {
  background-image: url(images/header/nav-3/menu-item-02.png);
}
.modal-nav-2 .menu-item-02 a:hover .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-02 a:hover .ht {
  background-image: url(images/header/nav-3/menu-item-02-on.png);
}
.modal-nav-2 .menu-item-03 a .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-03 a .ht {
  background-image: url(images/header/nav-3/menu-item-03.png);
}
.modal-nav-2 .menu-item-03 a:hover .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-03 a:hover .ht {
  background-image: url(images/header/nav-3/menu-item-03-on.png);
}
.modal-nav-2 .menu-item-04 a .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-04 a .ht {
  background-image: url(images/header/nav-3/menu-item-04.png);
}
.modal-nav-2 .menu-item-04 a:hover .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-04 a:hover .ht {
  background-image: url(images/header/nav-3/menu-item-04-on.png);
}

.modal-nav-2 .menu-item-06 a .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-06 a .ht {
  background-image: url(images/header/nav-3/menu-item-06.png);
}
.modal-nav-2 .menu-item-06 a:hover .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-06 a:hover .ht {
  background-image: url(images/header/nav-3/menu-item-06-on.png);
}

.modal-nav-2 .menu-item-07 a .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-07 a .ht {
  background-image: url(images/header/nav-3/menu-item-07.png);
}

.modal-nav-2 .menu-item-07 a:hover .ht,
body.home .page-header .box-anime .header-nav-3 .menu-item-07 a:hover .ht {
  background-image: url(images/header/nav-3/menu-item-07-on.png);
}


	@media only screen and (max-width: 767px) {
  body.home .page-header .box-anime .header-nav-3 {
    position: relative;
    top: -50px;
  }
  body.home .page-header .box-anime .header-nav-3 li {
    margin-bottom: 10px;
  }
  body.home .page-header .box-anime .header-nav-3 a {
    width: 250px;
    margin: 0 auto;
    }
  }


/*-----------------------------------------------------------------------------
Footer
-----------------------------------------------------------------------------*/
.page-footer {
  border-top: 1px solid #dcdcdd;
  padding-top: 10px;
}
.page-footer .navbar li {
  margin-right: 20px;
}
.page-footer .navbar li a {
  font-size: 13px;
  line-height: 1;
}
	@media only screen and (max-width: 767px) {
  .page-footer .navbar li a {
    padding: 5px 0;
    }
  }

.page-footer .navbar li a:before {
  background-image: url("images/common/part01@2x.png");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 12px;
  margin-right: 4px;
  position: relative;
  top: 1px;
  width: 10px;
}
.page-footer .navbar li:last-child {
  margin-right: 0;
}
.page-footer .navbar li:last-child:hover {
  cursor: pointer;
}
.page-footer .copyright {
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.8;
}
	@media only screen and (max-width: 767px) {
  .page-footer .copyright {
    font-size: 10px;
    text-align: center;
    }
  }


/*-----------------------------------------------------------------------------
Home Section 共通
-----------------------------------------------------------------------------*/
body.home .sec {
  padding: 15px 0;
}
	@media only screen and (max-width: 767px) {
  body.home .sec {
    padding: 20px 0;
    }
  }


/*Button:一覧を見る*/
body.home .sec .box-footer .btn-see-list {
  display: block;
  width: 228px;
  padding: 17px 0;
  border-radius: 5px;
  margin: 0 auto;
  background-color: #2fa8e1;
  border: solid 1px #2fa8e1;
}
body.home .sec .box-footer .btn-see-list .ht {
  background-image: url("images/home/btn-item01@2x.png");
  height: 13px;
  margin: 0 auto;
  width: 81px;
}
body.home .sec .box-footer .btn-see-list:hover {
  background-color: #fff;
}
body.home .sec .box-footer .btn-see-list:hover .ht {
  background-image: url("images/home/btn-item01-on@2x.png");
}

/*-----------------------------------------------------------------------------
Home Section 1
-----------------------------------------------------------------------------*/

/*Header*/
body.home .sec-1 .box-header {
  border-bottom: 1px dotted #2fa8e1;
  padding-bottom: 20px;
}
body.home .sec-1 .box-header .box-title .ht {
  background-image: url("images/home/sec-1-title@2x.png");
  height: 17px;
  margin: 0 auto;
  width: 161px;
}

/*Body*/
body.home .sec-1 .box-body {
  padding: 10px;
}
body.home .sec-1 .box-body .meta {
  font-size: 12px;
}
body.home .sec-1 .box-body .meta .new {
  color: #2fa8e1;
  font-weight: bold;
}
body.home .sec-1 .box-body .title {
  font-size: 14px;
  text-decoration: underline;
  padding-left: 10px;
}

/*-----------------------------------------------------------------------------
Home Section 2
-----------------------------------------------------------------------------*/

/*Header*/
body.home .sec-2 .box-header {
  border-bottom: 1px dotted #2fa8e1;
  padding-bottom: 20px;
}
body.home .sec-2 .box-header .box-title .ht {
  background-image: url("images/home/sec-1-title@2x.png");
  /*background-image: url("images/home/sec-2-title@2x.png");*/
  height: 17px;
  margin: 0 auto;
  width: 161px;
  /*width: 177px;*/
}

/*Body*/
body.home .sec-2 .box-body {
  padding: 20px 10px;
}
body.home .sec-2 .box-body .blocks-2 {
  margin-left: -1%;
}
	@media only screen and (max-width: 767px) {
  body.home .sec-2 .box-body .blocks-2 {
    margin-left: 0;
    }
  }

body.home .sec-2 .box-body .blocks-2 > li {
  width: 49%;
  margin-left: 1%;
  margin-bottom: 1%;
}
	@media only screen and (max-width: 767px) {
  body.home .sec-2 .box-body .blocks-2 > li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
    }
  }

body.home .sec-2 .box-body a {
  background-color: #f7f7f7;
  display: block;
  padding: 10px 20px;
}
body.home .sec-2 .box-body a:hover {
  color: #595757;
  background-color: #f1f1f1;
}
body.home .sec-2 .box-body a:hover .btn-detail {
  padding-right: 0;
  transition: all 0.3s ease 0s;
}
body.home .sec-2 .box-body a .update {
  font-size: 12px;
  line-height: 1;
}
body.home .sec-2 .box-body a .title {
  font-size: 16px;
  font-weight: bold;
  color: #2fa8e1;
  line-height: 1;
  padding: 15px 0;
}
body.home .sec-2 .box-body a .date,
body.home .sec-2 .box-body a .place,
body.home .sec-2 .box-body a .lecturer {
  padding-bottom: 10px;
}
body.home .sec-2 .box-body a .date dt:before,
body.home .sec-2 .box-body a .place dt:before,
body.home .sec-2 .box-body a .lecturer dt:before {
  background-image: url("images/home/icon-circle@2x.png");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 14px;
  margin-right: 2px;
  width: 14px;
  position: relative;
  top: 1px;
}
body.home .sec-2 .box-body a .date dt,
body.home .sec-2 .box-body a .place dt,
body.home .sec-2 .box-body a .lecturer dt {
  float: left;
  width: 20%;
  font-weight: normal;
  line-height: 1;
}
body.home .sec-2 .box-body a .date dd,
body.home .sec-2 .box-body a .place dd,
body.home .sec-2 .box-body a .lecturer dd {
  float: left;
  width: 77%;
  margin-left: 3%;
  text-decoration: underline;
  line-height: 1;
}
body.home .sec-2 .box-body a .btn-detail {
  font-size: 12px;
  padding-right: 15px;
  line-height: 1;
  padding-top: 5px;
  transition: all 0.3s ease 0s;
}
body.home .sec-2 .box-body a .btn-detail .right:before {
  background-image: url("images/common/part01@2x.png");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 10px;
  margin-right: 6px;
  width: 8px;
}

/*-----------------------------------------------------------------------------
Home Section 3
-----------------------------------------------------------------------------*/
body.home .sec-3 {
  padding-top: 60px;
  padding-bottom: 0;
}
	@media only screen and (max-width: 767px) {
  body.home .sec-3 {
    padding-top: 20px;
  }
  body.home .sec-3 li {
    margin-bottom: 10px;
    }
  }

body.home .sec-3 .list-item a {
  background-image: url("images/home/sec-3-list-bg@2x.png");
  display: block;
  padding: 5px;
}
body.home .sec-3 .list-item a .image {
  position: relative;
  height: 58px;
}
body.home .sec-3 .list-item a .image > .title {
  bottom: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding: 18px;
  width: 100%;
  transition: all 1s ease 0s;
  z-index: 10;
}
body.home .sec-3 .list-item a .image > .sankaku {
  border-color: transparent transparent #fff;
  border-style: solid;
  border-width: 0 15px 15px 0;
  bottom: 0;
  height: 0;
  left: 15%;
  position: absolute;
  width: 0;
  z-index: 11;
  transition: all 1s ease 0s;
}
body.home .sec-3 .list-item a .description {
  font-size: 14px;
  padding: 10px 10px 7px 31px;
  position: relative;
  line-height: 1.3;
  transition: all 0.3s ease 0s;
  background-color: #fff;
}
body.home .sec-3 .list-item a .description:before {
  background-image: url("images/home/icon-circle@2x.png");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 14px;
  left: 9px;
  position: absolute;
  top: 10px;
  width: 14px;
}
body.home .sec-3 .list-item a:hover {
  color: #595757;
}
body.home .sec-3 .list-item a:hover .sankaku {
  left: 85%;
  transition: all 1s ease 0s;
}
body.home .sec-3 .list-item a:hover .title {
  background-color: #2fa8e1;
  transition: all 1s ease 0s;
}
body.home .sec-3 .list-item a:hover > .image:after {
  opacity: 1;
  transition: all 1s ease 0s;
}
body.home .sec-3 .list-item a:hover .description {
  color: #595757;
  transition: all 0.3s ease 0s;
}

/*各タイトル*/
body.home .sec-3 .list-item .title > .ht {
  height: 17px;
}
body.home .sec-3 .list-item-01 .title > .ht {
  background-image: url("images/home/sec-3-list-title01@2x.png");
  width: 196px;
}
body.home .sec-3 .list-item-02 .title > .ht {
  background-image: url("images/home/sec-3-list-title02@2x.png");
  width: 89px;
}
body.home .sec-3 .list-item-03 .title > .ht {
  background-image: url("images/home/sec-3-list-title03@2x.png");
  width: 93px;
}
body.home .sec-3 .list-item-04 .title > .ht {
  background-image: url("images/home/sec-3-list-title04@2x.png");
  width: 89px;
}
body.home .sec-3 .list-item-05 .title > .ht {
  background-image: url("images/home/sec-3-list-title05@2x.png");
  width: 123px;
}
body.home .sec-3 .list-item-06 .title > .ht {
  background-image: url("images/home/sec-3-list-title06@2x.png");
  width: 143px;
}
body.home .sec-3 .list-item-07 .title > .ht {
  background-image: url("images/home/sec-3-list-title07@2x.png");
  width: 255px;
}
body.home .sec-3 .list-item-08 .title > .ht {
  background-image: url("images/home/sec-3-list-title08@2x.png");
  width: 220px;
}
body.home .sec-3 .list-item-09 .title > .ht {
  background-image: url("images/home/sec-3-list-title09@2x.png");
  width: 178px;
}
body.home .sec-3 .list-item-01 a:hover .title > .ht {
  background-image: url("images/home/sec-3-list-title01-on@2x.png");
}
body.home .sec-3 .list-item-02 a:hover .title > .ht {
  background-image: url("images/home/sec-3-list-title02-on@2x.png");
}
body.home .sec-3 .list-item-03 a:hover .title > .ht {
  background-image: url("images/home/sec-3-list-title03-on@2x.png");
}
body.home .sec-3 .list-item-04 a:hover .title > .ht {
  background-image: url("images/home/sec-3-list-title04-on@2x.png");
}
body.home .sec-3 .list-item-05 a:hover .title > .ht {
  background-image: url("images/home/sec-3-list-title05-on@2x.png");
}
body.home .sec-3 .list-item-06 a:hover .title > .ht {
  background-image: url("images/home/sec-3-list-title06-on@2x.png");
}
body.home .sec-3 .list-item-07 a:hover .title > .ht {
  background-image: url("images/home/sec-3-list-title07-on@2x.png");
}
body.home .sec-3 .list-item-08 a:hover .title > .ht {
  background-image: url("images/home/sec-3-list-title08-on@2x.png");
}
body.home .sec-3 .list-item-09 a:hover .title > .ht {
  background-image: url("images/home/sec-3-list-title09-on@2x.png");
}

/*-----------------------------------------------------------------------------
Page Content
-----------------------------------------------------------------------------*/

/*Page Title*/
.content .box .box-header {
  background-color: #f8edd4;
  padding: 30px 0 40px;
}
	@media only screen and (max-width: 767px) {
  .content .box .box-header {
    padding: 10px 0 20px;
    }
  }

.content .box .box-header .page-title {
  font-size: 30px;
  font-weight: normal;
  position: relative;
  padding-left: 100px;
}
	@media only screen and (max-width: 767px) {
  .content .box .box-header .page-title {
    font-size: 20px;
    padding-left: 70px;
    }
  }

.content .box .box-header .page-title:before {
  content: "";
  display: block;
  width: 87px;
  height: 90px;
  background-image: url("images/common/icon02@2x.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -45px;
}
	@media only screen and (max-width: 767px) {
  .content .box .box-header .page-title:before {
    width: 62px;
    height: 63px;
    margin-top: -32px;
    }
  }


/*Breadcrumbs */
.content > .box > .box-breadcrumbs {
  background-color: #f8edd4;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
}
	@media only screen and (max-width: 767px) {
  .content > .box > .box-breadcrumbs {
    padding-bottom: 0;
    }
  }


/* Navigation Category */
.content > .box > .box-nav {
  background-color: #f8edd4;
  padding: 10px 0 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-top: -1px;
}
.content > .box > .box-nav a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-top: solid 4px #1283c4;
  color: #1283c4;
  font-size: 18px;
  padding: 10px 20px;
  box-shadow: 0 0px 1px rgba(0, 0, 0, 0.05);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.content > .box > .box-nav a:hover {
  color: #fff;
  background-color: #1283c4;
  border-color: #2fa8e1;
}
.content > .box > .box-nav span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

/* Navigation Category sp*/
.content > .box > .box-nav.box-nav-sp a {
  width: auto;
}
.content > .box > .box-nav.box-nav-sp .swiper-container {
  padding-bottom: 20px;
}
.content > .box > .box-nav.box-nav-sp .swiper-pagination {
  bottom: -1px;
}
.content > .box > .box-nav.box-nav-sp .swiper-pagination span {
  display: inline-block;
}

/* Box Body */
.content > .box > .box-body {
  padding: 30px 0;
  background-color: #fafafa;
  background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: -ms-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: linear-gradient(top, #ffffff, #f2f2f2);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f2f2f2', GradientType=0);
}
.content > .box > .box-body h2 {
  font-weight: normal;
  padding: 10px 20px;
  border-top: solid 4px #1283c4;
  background-color: #2fa8e1;
  color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
}
.content > .box > .box-body h3 {
  border: 1px solid #1283c4;
  color: #1283c4;
  font-weight: normal;
  padding: 6px 20px;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
}
.content > .box > .box-body h4 {
  border-bottom: 1px solid #1283c4;
  color: #1283c4;
  margin-left: 15px;
  padding-bottom: 6px;
}
.content > .box > .box-body h5 {
  color: #1283c4;
  margin-left: 15px;
  border-bottom: 1px dashed #1283c4;
  padding-bottom: 6px;
}
.content > .box > .box-body h6 {
  color: #1283c4;
  margin-left: 15px;
}
.content > .box > .box-body p {
  padding: 0 15px;
}
	@media only screen and (max-width: 767px) {
  .content > .box > .box-body p {
    padding: 0;
    }
  }

	@media only screen and (max-width: 767px) {
  .content > .box > .box-body h4,
  .content > .box > .box-body h5,
  .content > .box > .box-body h6 {
    margin-left: 0;
    }
  }

div.box-body div.wrapper a{
	text-decoration: underline
}



/************************************
** レスポンシブページネーション
************************************/
.pagination{
  list-style-type: none;
  padding-left: 0;
  margin: 30px 0;
}

.pagination,
.pagination li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pagination a {
  font-weight: 300;
  padding-top: 1px;
  text-decoration:none;
  border: 1px solid #ddd;
  border-left-width: 0;
  min-width:36px;
  min-height:36px;
  color: #333;
}

.pagination li:not([class*="current"]) a:hover {
  background-color: #eee;
}

.pagination li:first-of-type a {
  border-left-width: 1px;
}

.pagination li.first span,
.pagination li.last span,
.pagination li.previous span,
.pagination li.next span {
  /* screen readers only */
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.pagination li.first a::before,
.pagination li.last a::after,
.pagination li.previous a::before,
.pagination li.next a::after {
  display: inline-block;
  font-family: Fontawesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

.pagination li.first a::before { content: "\f100"; }
.pagination li.last a::after { content: "\f101"; }

.pagination li.previous a::before { content: "\f104"; }
.pagination li.next a::after { content: "\f105"; }

.pagination li.current a {
 background-color: #ddd;
 cursor: default;
 pointer-events: none;
}

.pagination > li:first-child > a {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

@media only screen and ( max-width: 680px ) {
  .pagination li.first,
  .pagination li.last {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .pagination li.previous a { border-left-width: 1px; }
}

@media only screen and ( max-width: 500px ) {
  .pagination li {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .pagination li.current,
  .pagination li.first,
  .pagination li.last,
  .pagination li.previous,
  .pagination li.next{
    position: initial;
    top: initial;
    left: initial;
  }

  .pagination li.previous a { border-left-width: 0; }
}

p.r_side{
	text-align:right;
}

img.alignleft{
	float:left;
	margin-right:12px;
}

img.alignright{
	float:right;
	margin-left:12px;
}

img.aligncenter{
	display: block;
	margin: 8px auto;
}

.kaizen-text{
	margin-top:8px;
	margin-bottom:18px;
	margin-left:12px;
}

.kaizen-midashi{
	color:#1283c4;
	font-weight:bold;
	font-size:120%;
}

.kaizen-text_c{
	text-align:center;
}

.kaizen-list{
	list-style-type: disc;
}

ul.kaizen-list li{
	margin-bottom:12px;
}

table.kaizen-table tr td{
	padding:14px 0px;
}

/* rirnri shinsa */

.rinri-section {
  margin: 30px 0px 30px 49.5px;
}

a.icon {
	text-decoration: none !important;
	color: #fff;
    float: right;
    display: block;
    width: 5rem;
	font-size:0.8em;
    text-align: center;
    font-weight: 800;
	line-height:1.8em;
    margin: 0px 5px;
}

a.icon.rinri-word {
	 background: #2a5696;
}

a.icon.rinri-word:hover {
	 background: #1f4070;
}
a.icon.rinri-pdf {
	background: #f15642;
}


a.icon.rinri-pdf:hover {
	background:#b54031;
}


ul.rinri-list {
  list-style: none;
  margin-bottom: 0px;
}

 .rinri-list li {
	line-height:1.65em;
	margin: 15px 0px;
	
}

.rinri-list li:last-child {
	margin-bottom: 0px;

}

ol.rinri-olist {
  list-style-type: none;
  margin-left: 3.5em;
  margin-bottom: 0px;
}

li.rinri-olist {
    list-style-type: none;
    counter-increment: cnt;
    margin-bottom: 0.8em
}

li.rinri-olist:last-child {
	margin-bottom: 0px;
}

li.rinri-olist::before{
  content: "(" counter(cnt) ") ";
  display:inline-block;
  margin-left:-2em; /* サイトに合せて調整 */
  width: 2em; /* サイトに合せて調整 */
}


ol.parentheses1 {
  margin-left: 3.5em; /* サイトに合せて調整 */
}

p.rinri-caption {
	text-indent: -4em;
	margin-left: 6em;
	font-size: 14px;
}

.rinri-tb {
	background:#fff;
  width:100%;
}

/*topics2 変更*/
ul#cat-menu li.active a {
  color: white;
  background-color: #1283c4;
}



.topics2-wrapper {
  margin-top: 50px;
}

.content-wrapper {
  height: 280px;
}

.topics2-wrapper h2{
  font-size:20px;
  font-weight: normal;
  padding: 5px 10px;
  border-top: solid 4px #1283c4;
  background-color: #2fa8e1;
  color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
}

/*続きを読む
*/
a.more-link {
  color:#1283c4;
}

a.more-link:hover {
  color:#595757 ;
}

a.more-link::before {
  content:"　";
}


img.attachment-thumbnail.size-thumbnail.wp-post-image {
  margin-right: 20px;
  float: left;
}

/*rinriコンタクトフォーム用
*/

.wpcf7-mail-sent-ok {
	color: green;
	border: solid thin green;
	width: auto;
	text-align: center;
	padding: 1em 0 ;
	

}

.ygc-img-lightup img {
  width: 250px;
}

.ygc-img-sec {
  margin: 50px 0px;
}

.ygc-img-sec2021 img{
height: 250px
}

.ygc-section {
  margin: 50px 0px;
}

.ygc-img-box {
  text-align: center;
}

.ygc-img-box img {
  margin: 0px 50px;
}

.ygc-img-box-2 {
  margin-bottom: 30px;
}

.figimage {
  display: inline-block;
  background: #fff
}

.ygc-img-box-1 img {
  width: 500px
}

.ygc-img-box-3 img {
  margin: 0px 25px;
}

.ygc-video {
  text-align: center;
}

.figvideo video {
  width: 500px;
  margin: 0 auto;
}

.ygcimg img {
  width: 250px

}

.ygc-img-sec2021 img {
  height: 250px;
  object-fit: contain;
}

.ygcvid video {
  margin: 0 auto;
}
/*イエローグリーンキャンペーンバナー
*/

/*トップページバナー*/
.ygcbanner:hover {
  opacity: 0.5;
}

.banner-center {
  text-align: center;
  margin-bottom: 20px;
  padding-right: 10px;
}

/*追加ボタンデザイン*/




a.btn_ao_b {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 1.3rem 2rem;
  border: 2px solid #014897;
  background: #fff;
  text-decoration: none !important;
  transition: 0.3s;
}
a.btn_ao_b:hover {
  background-color: #e9f3fd;
}
a.btn_ao_b .b__text {
  display: block;
  flex-grow: 1;
  color: #004386;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-right: 15px;
  font-size: 23px;
}
a.btn_ao_b .b__text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
  border-top: 3px solid #014897;
  border-right: 3px solid #014897;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  a.btn_ao_b .b__text {
    font-size: 18px;
    padding-right: 20px;
  }
  a.btn_ao_b .b__text::after {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 736px) {
  a.btn_ao_b .b__text {
    font-size: 14px;
    padding-right: 20px;
  }
  a.btn_ao_b .b__text::after {
    width: 10px;
    height: 10px;
  }
}

