@charset 'UTF-8';


/* ----------------------------
	Reset
---------------------------- */
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,main,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}article,main,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}



/* ----------------------------
	Fonts
---------------------------- */
@font-face {
	font-family: 'Noto Sans CJK';
	font-style: normal;
	font-weight: 400;
	src: local('Noto Sans CJK JP Regular'),
			 url('../font/NotoSansCJK/NotoSansCJKjp-Regular.woff2') format('woff2'),
       url('../font/NotoSansCJK/NotoSansCJKjp-Regular.woff') format('woff');
}
@font-face {
	font-family: 'Noto Sans CJK';
	font-style: normal;
	font-weight: 600;
	src: local('Noto Sans CJK JP Bold'),
			 url('../font/NotoSansCJK/NotoSansCJKjp-Bold.woff2') format('woff2'),
       url('../font/NotoSansCJK/NotoSansCJKjp-Bold.woff') format('woff');
}
@font-face {
	font-family: 'Bauer Bodoni';
	font-style: normal;
	font-weight: 400;
	src: url('../font/BauerBodoni/BauerBodoniStd-Roman.woff2') format('woff2'),
       url('../font/BauerBodoni/BauerBodoniStd-Roman.woff') format('woff'),
			 url('../font/BauerBodoni/BauerBodoniStd-Roman.otf') format('truetype');
}
@font-face {
	font-family: 'Gill Sans';
	font-style: normal;
	font-weight: 400;
	src: url('../font/GillSans/GillSans.woff2') format('woff2'),
       url('../font/GillSans/GillSans.woff') format('woff'),
			 url('../font/GillSans/GillSans.otf') format('truetype');
}
@font-face {
	font-family: 'Manus Smooth';
	font-style: normal;
	font-weight: 400;
	src: url('../font/ManusSmooth/ManusSmooth.woff2') format('woff2'),
       url('../font/ManusSmooth/ManusSmooth.woff') format('woff'),
			 url('../font/ManusSmooth/ManusSmooth.ttf') format('truetype');
}



/* ----------------------------
  Base
---------------------------- */
body {
	min-width: 1024px;
	background-color: #81d8d1;
  line-height: 1.714285714;
  letter-spacing: 0.02em;
  font-size: 14px;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
	font-feature-settings : "palt";
	-webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans CJK', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 812px) {
  body {
		min-width: 0;
    line-height: 1.769230769;
    font-size: 13px;
  }
}


/* Anchor
---------------------------- */
a {
	outline: none;
  text-decoration: none;
  color: inherit;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}


/* Image
---------------------------- */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}


/* Button
---------------------------- */
button {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  background: none;
  border: 0;
  outline: none;
  box-sizing: border-box;
  letter-spacing: inherit;
  cursor: pointer;
	font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
}


/* Media
---------------------------- */
svg {
	display: block;
}




/* ----------------------------
  Utilities
---------------------------- */

/* Break Line
---------------------------- */
.pc { display: block !important; }
span.pc { display: inline !important; }
.sp { display: none !important; }
span.sp { display: none !important; }
.xsp { display: none !important; }

@media screen and (max-width: 812px) {
  .pc { display: none !important; }
  span.pc { display: none !important; }
  .sp { display: block !important; }
  span.sp { display: inline !important; }
}



/* ----------------------------
	Menu
---------------------------- */

/* Menu Container
---------------------------- */
.menu-container {
	display: -webkit-box; /* Less than android 4.3 */
	display: -webkit-flex; /* Less than iOS8 */
	display: flex;
	-webkit-box-pack: center; /* Less than android 4.3 */
	-webkit-justify-content: center; /* Less than iOS8 */
	justify-content: center;
	-webkit-box-align: center; /* Less than android 4.3 */
	-webkit-align-items: center; /* Less than iOS8 */
	align-items: center;
	background: #81d8d1;
	min-width: 1024px;
	overflow: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.6s, visibility 0.6s;
	transition: opacity 0.6s, visibility 0.6s;
}
.menu-visible .menu-container {
	opacity: 1;
	visibility: visible;
}
.menu-container-inner {
	padding-top: 20px;
	padding-bottom: 25px;
}

@media screen and (max-width: 812px) {
	.menu-container {
		display: block;
		min-width: 0px;
	}
	.menu-container-inner {
		padding-top: 86px;
		padding-bottom: 50px;
	}
}



/* ----------------------------
	Menu
---------------------------- */
.menu {
	text-align: center;
}


/* Menu Title
---------------------------- */
.menu-title {
	font-family: "Gill Sans", sans-serif;
	font-size: 21px;
}

@media screen and (max-width: 812px) {
	.menu-title {
		font-size: 18px;
	}
}


/* Menu List
---------------------------- */
.menu-list {
	display: -webkit-box; /* Less than android 4.3 */
	display: -webkit-flex; /* Less than iOS8 */
	display: flex;
	-webkit-box-pack: center; /* Less than android 4.3 */
	-webkit-justify-content: center; /* Less than iOS8 */
	justify-content: center;
	margin-top: 28px;
}
.menu-list-item a {
	display: block;
}

@media screen and (max-width: 812px) {
	.menu-list {
		display: block;
		margin-top: 30px;
	}
	.menu-list-item a {
		display: -webkit-box; /* Less than android 4.3 */
		display: -webkit-flex; /* Less than iOS8 */
		display: flex;
		-webkit-box-pack: center; /* Less than android 4.3 */
		-webkit-justify-content: center; /* Less than iOS8 */
		justify-content: center;
		-webkit-box-align: start; /* Less than android 4.3 */
		-webkit-align-items: flex-start; /* Less than iOS8 */
		align-items: flex-start;
	}
	.menu-list-item:nth-child(odd) a {
		-webkit-box-orient: horizontal; /* Less than android 4.3 */
		-webkit-box-direction: reverse; /* Less than android 4.3 */
		-webkit-flex-direction: row-reverse; /* Less than iOS8 */
		flex-direction: row-reverse;
	}
}

/* Each Menu List */
.menu-list-sato {
	margin-top: 15px;
	margin-right: 26px;
}
.menu-list-imada {
	margin-top: 85px;
	margin-right: 4px;
}
.menu-list-suzuki {
	margin-top: 0;
	margin-right: 18px;
}
.menu-list-i {
	margin-top: 88px;
	margin-right: 12px;
}
.menu-list-arai {
	margin-top: 12px;
	margin-right: 4px;
}
.menu-list-okamoto {
	margin-top: 80px;
}

@media screen and (max-width: 812px) {
	.menu-list-sato {
		margin-top: 0;
		margin-right: 0;
	}
	.menu-list-imada {
		margin-top: -17px;
		margin-right: 0;
	}
	.menu-list-suzuki {
		margin-top: -16px;
		margin-right: 0;
	}
	.menu-list-i {
		margin-top: -27px;
		margin-right: 0;
	}
	.menu-list-arai {
		margin-top: -14px;
		margin-right: 0;
	}
	.menu-list-okamoto {
		margin-top: -13px;
	}
}


/* Menu List Image
---------------------------- */
.menu-list-image {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 812px) {
	.menu-list-image {
		margin: 0;
	}
}

/* Each Menu List Image */
.menu-list-sato .menu-list-image {
	margin-bottom: 15px;
}
.menu-list-imada .menu-list-image {
	margin-bottom: 16px;
}
.menu-list-suzuki .menu-list-image {
	margin-bottom: 13px;
	margin-right: 32px;
}
.menu-list-i .menu-list-image {
	margin-bottom: 13px;
}
.menu-list-arai .menu-list-image {
	margin-bottom: 30px;
	margin-right: 4px;
}
.menu-list-okamoto .menu-list-image {
	margin-bottom: 15px;
}

@media screen and (max-width: 812px) {
	.menu-list-sato .menu-list-image {
		margin-bottom: 0;
		margin-left: 20px;
		width: 94px;
	}
	.menu-list-imada .menu-list-image {
		margin-bottom: 0;
		margin-right: -5px;
		width: 102px;
	}
	.menu-list-suzuki .menu-list-image {
		margin-bottom: 0;
		margin-right: 0;
		width: 98px;
	}
	.menu-list-i .menu-list-image {
		margin-bottom: 0;
		margin-right: 15px;
		width: 144px;
	}
	.menu-list-arai .menu-list-image {
		margin-bottom: 0;
		margin-right: 0;
		margin-left: 4px;
		width: 98.5px;
	}
	.menu-list-okamoto .menu-list-image {
		margin-bottom: 0;
		margin-right: -18px;
		width: 117.5px;
	}
}


/* Menu List Body
---------------------------- */
.menu-list-body dt {
	line-height: 1;
	letter-spacing: 0;
	font-family: "Bauer Bodoni", serif;
	font-size: 30px;
}
.menu-list-body dt + dd {
	display: block;
	margin-top: -2px;
	line-height: 1.5;
	font-weight: bold;
}
.menu-list-body dd + dd {
	margin: 12px auto 0;
	width: 94px;
	line-height: 28px;
	box-sizing: border-box;
	font-family: "Gill Sans", sans-serif;
	font-size: 12px;
	-webkit-transition: background 0.6s, color 0.6s;
	transition: background 0.6s, color 0.6s;
}

@media screen and (max-width: 812px) {
	.menu-list-body dt + dd {
		margin-top: -2px;
		font-size: 12px;
	}
}

/* Menu List Body Theme */
.menu-list-yellow .menu-list-body dd + dd {
	border: 1px solid #ffff00;
	color: #ffff00;
}
.menu-list-yellow:hover .menu-list-body dd + dd {
	background: #ffff00;
	color: #81d8d1;
}
.menu-list-pink .menu-list-body dd + dd {
	border: 1px solid #ff8ffe;
	color: #ff8ffe;
}
.menu-list-pink:hover .menu-list-body dd + dd {
	background: #ff8ffe;
	color: #fff;
}
.menu-list-orange .menu-list-body dd + dd {
	border: 1px solid #ffa443;
	color: #ffa443;
}
.menu-list-orange:hover .menu-list-body dd + dd {
	background: #ffa443;
	color: #fff;
}

@media screen and (max-width: 812px) {
	.menu-list-yellow:hover .menu-list-body dd + dd {
		background: transparent;
		color: #ffff00;
	}
	.menu-list-pink:hover .menu-list-body dd + dd {
		background: transparent;
		color: #ff8ffe;
	}
	.menu-list-orange:hover .menu-list-body dd + dd {
		background: transparent;
		color: #ffa443;
	}
}


/* Each Menu List Body */
.menu-list-okamoto .menu-list-body dt {
	font-size: 26px;
}

@media screen and (max-width: 812px) {

	/* Position */
	.menu-list-sato .menu-list-body {
		margin-top: 29px;
	}
	.menu-list-imada .menu-list-body {
		margin-top: 60px;
	}
	.menu-list-suzuki .menu-list-body {
		margin-top: 40px;
	}
	.menu-list-i .menu-list-body {
		margin-top: 63px;
	}
	.menu-list-arai .menu-list-body {
		margin-top: 55px;
	}
	.menu-list-okamoto .menu-list-body {
		margin-top: 63px;
	}

	/* Font Size */
	.menu-list-sato .menu-list-body dt {
		font-size: 37px;
	}
	.menu-list-imada .menu-list-body dt {
		font-size: 38px;
	}
	.menu-list-suzuki .menu-list-body dt {
		font-size: 37px;
	}
	.menu-list-i .menu-list-body dt {
		font-size: 40px;
	}
	.menu-list-arai .menu-list-body dt {
		font-size: 38px;
	}
	.menu-list-okamoto .menu-list-body dt {
		font-size: 28px;
	}
}


/* Menu Back
---------------------------- */
.menu-back {
	margin-top: 37px;
}
.menu-back a {
	display: inline-block;
	line-height: 1.8;
	border-bottom: 1px solid;
	box-sizing: border-box;
	font-family: "Gill Sans", sans-serif;
	font-size: 15px;
	vertical-align: top;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
}
.menu-back a:hover {
	opacity: 0.6;
}

@media screen and (max-width: 812px) {
	.menu-back {
		margin-top: 32px;
	}
	.menu-back a {
		font-size: 14px;
	}
	.menu-back a:hover {
		opacity: 1;
	}
}


/* Menu Official
---------------------------- */
.menu-official {
	margin: 35px auto 0;
	width: 380px;
}
.menu-official a {
	display: block;
	border: 2px solid #fff;
	letter-spacing: 0;
	line-height: 4.222222222;
	font-weight: bold;
	font-size: 18px;
	-webkit-transition: background 0.6s, color 0.6s;
	transition: background 0.6s, color 0.6s;
}
.menu-official a:hover {
	background: #fff;
	color: #81d8d1;
}

@media screen and (max-width: 812px) {
	.menu-official {
		margin-top: 30px;
		width: 80%;
		max-width: 300px;
	}
	.menu-official a {
		line-height: 4;
		font-size: 14px;
	}
	.menu-official a:hover {
		background: transparent;
		color: #fff;
	}
}



/* Menu Transition - Menu Container
---------------------------- */

/* Title */
.menu-container .menu-title {
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.menu-visible .menu-container .menu-title {
	opacity: 1;
}

/* Menu List Item */
.menu-container .menu-list-item {
	opacity: 0;
	transform: translateY(16px);
	-webkit-transition: opacity 0.6s, -webkit-transform 0.6;
	transition: opacity 0.6s, transform 0.6s;
}
.menu-visible .menu-container .menu-list-item {
	opacity: 1;
	transform: translateY(0);
}
.menu-container .menu-list-sato {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.menu-container .menu-list-imada {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}
.menu-container .menu-list-suzuki {
	-webkit-transition-delay: 0.7s;
	transition-delay: 0.7s;
}
.menu-container .menu-list-i {
	-webkit-transition-delay: 0.9s;
	transition-delay: 0.9s;
}
.menu-container .menu-list-arai {
	-webkit-transition-delay: 1.1s;
	transition-delay: 1.1s;
}
.menu-container .menu-list-okamoto {
	-webkit-transition-delay: 1.3s;
	transition-delay: 1.3s;
}

/* Menu Back */
.menu-container .menu-back {
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
	-webkit-transition-delay: 1.7s;
	transition-delay: 1.7s;
}
.menu-visible .menu-container .menu-back {
	opacity: 1;
}

/* Menu Official */
.menu-container .menu-official {
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	transition: opacity 0.6s;
	-webkit-transition-delay: 1.7s;
	transition-delay: 1.7s;
}
.menu-visible .menu-container .menu-official {
	opacity: 1;
}



/* ----------------------------
	Util
---------------------------- */

/* Util Label
---------------------------- */
.util-label {
	line-height: 90px;
	font-family: "Bauer Bodoni", serif;
	font-size: 25px;
	position: absolute;
	left: 35px;
	top: 0;
	z-index: 10001;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.6s, visibility 0.6s, color 0.6s;
	transition: opacity 0.6s, visibility 0.6s, color 0.6s;
}
.menu-visible .util-label {
	opacity: 1;
	visibility: visible;
	position: fixed;
}

@media screen and (max-width: 812px) {
	.util-label {
		line-height: 1;
		font-size: 19px;
		left: 4%;
		top: 18px;
	}
}


/* Util Button - Open Menu
---------------------------- */
.util-button {
	width: 90px;
	height: 90px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10001;
}
.util-button button {
	display: block;
	height: 100%;
	position: relative;
}
.util-button span {
	display: block;
	padding-top: 100%;
	width: 100%;
	height: 0;
	overflow: hidden;
}

@media screen and (max-width: 812px) {
	.util-button {
		width: 50px;
		height: 50px;
	}
}

/* Menu Button Hamburger */
.util-button button:before,
.util-button span:before,
.util-button span:after {
	content: "";
	display: block;
	height: 2px;
	width: 33.3333333%;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}
.util-button button:before {
	margin-top: -11px;
}
.util-button span:before {
	margin-top: -1px;
}
.util-button span:after {
	margin-top: 9px;
}

@media screen and (max-width: 812px) {
	.util-button button:before,
	.util-button span:before,
	.util-button span:after {
		height: 2px;
		width: 40%;
	}
	.util-button button:before {
		margin-top: -7px;
	}
	.util-button span:after {
		margin-top: 5px;
	}
}

/* Menu Button Hover */
.util-button button:hover:before {
	-webkit-transform: translateX(-2px);
	transform: translateX(-2px);
}
.util-button button:hover span:before {
	-webkit-transform: translateX(2px);
	transform: translateX(2px);
}
.util-button button:hover span:after {
	-webkit-transform: translateX(-2px);
	transform: translateX(-2px);
}

@media screen and (max-width: 812px) {
	.util-button button:hover:before {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.util-button button:hover span:before {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	.util-button button:hover span:after {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

/* Menu Button Close */
.menu-visible .util-button button:before,
.menu-visible .util-button button:hover:before {
	-webkit-transform: translateX(0) rotate(45deg);
	transform: translateX(0) rotate(45deg);
	margin-top: 0;
}
.menu-visible .util-button span:before,
.menu-visible .util-button button:hover span:before {
	-webkit-transform: translateX(2px);
	transform: translateX(2px);
	margin-top: 0;
	opacity: 0;
}
.menu-visible .util-button span:after,
.menu-visible .util-button button:hover span:after {
	-webkit-transform: translateX(0) rotate(-45deg);
	transform: translateX(0) rotate(-45deg);
	margin-top: 0;
}


/* Util Logo
---------------------------- */
.util-logo {
	width: 66px;
	height: 28px;
	position: absolute;
	right: 90px;
	top: 32px;
	z-index: 10001;
}
.menu-visible .util-logo {
	position: fixed;
	-webkit-animation: fadein 0.6s 1;
	animation: fadein 0.6s 1;
}
.util-logo a {
	display: block;
	height: 100%;
	-webkit-ransition: opacity 0.6s;
	transition: opacity 0.6s;
}
.util-logo a:hover {
	opacity: 0.6;
}
.util-logo svg {
	fill: #fff;
}

@media screen and (max-width: 812px) {
	.util-logo {
		width: 40px;
		height: 17px;
		right: 50px;
		top: 18px;
	}
	.util-logo a:hover {
		opacity: 1;
	}
}

@-webkit-keyframes fadein {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes fadein {
	0% { opacity: 0; }
	100% { opacity: 1; }
}



/* ----------------------------
	Footer
---------------------------- */
.footer {
	padding-bottom: 54px;
}

@media screen and (max-width: 812px) {
	.footer {
		padding-bottom: 46px;
		position: relative;
	}
	.footer:before {
		content: "";
		display: block;
		background: url(../img/index/main-bg-sp.jpg) repeat-y top center;
		background-size: 100% auto;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		opacity: 0.05;
	}
	.footer-inner {
		position: relative;
	}
}


/* Footer SNS
---------------------------- */
.footer-sns {
	display: -webkit-box; /* Less than android 4.3 */
	display: -webkit-flex; /* Less than iOS8 */
	display: flex;
	-webkit-box-pack: center; /* Less than android 4.3 */
	-webkit-justify-content: center; /* Less than iOS8 */
	justify-content: center;
	text-align: center;
	padding: 45px 0;
	margin-bottom: 50px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-sns li {
	margin: 0 16px;
	width: 60px;
	height: 60px;
}
.footer-sns a {
	display: block;
	width: 100%;
	height: 100%;
	border: 2px solid #fff;
	box-sizing: border-box;
	background: transparent;
	border-radius: 100%;
	overflow: hidden;
	position: relative;
	-webkit-transition: background 0.6s;
	transition: background 0.6s;
}
.footer-sns a:hover {
	background: #fff;
}
.footer-sns svg {
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	fill: #fff;
	-webkit-transition: fill 0.6s;
	transition: fill 0.6s;
}

@media screen and (max-width: 812px) {
	.footer-sns {
		padding: 27px 0;
		margin-bottom: 38px;
	}
	.footer-sns li {
		margin: 0 10px;
		width: 45px;
		height: 45px;
	}
	.footer-sns a:hover {
		background: transparent;
	}
}

/* Each */
.footer-sns-facebook a:hover svg {
	fill: #0068b7;
}
.footer-sns-twitter a:hover svg {
	fill: #00b4ff;
}
.footer-sns-line {
	display: none;
}

@media screen and (max-width: 812px) {
	.footer-sns-facebook svg {
		width: 16.5px;
		height: 16.5px;
	}
	.footer-sns-facebook a:hover svg {
		fill: #fff;
	}
	.footer-sns-twitter svg {
		width: 16px;
		height: 16px;
	}
	.footer-sns-twitter a:hover svg {
		fill: #fff;
	}
	.footer-sns-line {
		display: block;
	}
}


/* Footer Contact
---------------------------- */
.footer-contact {
	margin-top: 24px;
	text-align: center;
	letter-spacing: 0;
	font-weight: bold;
}

@media screen and (max-width: 812px) {
	.footer-contact {
		margin-top: 16px;
		line-height: 1.666666667;
		font-size: 12px;
	}
}




/* ----------------------------
  Foot
---------------------------- */
.foot {
  padding-top: 38px;
  padding-bottom: 24px;
	background: #fff;
	color: #3b3b3c;
	position: relative;
}

@media screen and (max-width: 812px) {
  .foot {
    padding-bottom: 18px;
    padding: 45px 5.3333333% 18px;
  }
}


/* Foot Icons
---------------------------- */
.foot-icons {
  margin: 0 auto;
  max-width: 308px;
  width: 100%;
  line-height: 1;
}
.foot-icons ul {
  display: -webkit-box; /* Less than android 4.3 */
  display: -ms-flexbox; /* IE10 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-pack: justify; /* Less than android 4.3 */
  -webkit-justify-content: space-between; /* Less than iOS8 */
  justify-content: space-between;
}
.foot-icons li:first-child {
  padding-right: 32px;
  border-right: 1px solid #7d7d7d;
}
.foot-icons a {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.foot-icons a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 812px) {
  .foot-icons {
    max-width: 330px;
  }
  .foot-icons li:first-child {
    padding-right: 20px;
  }
  .foot-icons img {
    width: auto;
    height: 26px;
  }
  .foot-icons svg {
    width: 28px;
    height: 26px;
  }
}


/* Foot Follow
---------------------------- */
.foot-follow {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
}
.foot-follow a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 812px) {
  .foot-follow {
    margin-top: 10px;
    text-align: center;
    font-size: 13px;
  }
  .foot-follow a:hover {
    text-decoration: underline;
  }
}


/* Foot Copy
---------------------------- */
.foot-copy {
  margin-top: 10px;
  line-height: 1.3;
  text-align: center;
  font-family: "Chronicle Display Roman", serif;
  font-size: 10px;
}

@media screen and (max-width: 812px) {
  .foot-copy {
    margin-top: 16px;
  }
}



/* ----------------------------
	Loader
---------------------------- */
.loader {
	background: #81d8d1;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20000;
	-webkit-transition: opacity 1s, visibility 1s;
	transition: opacity 1s, visibility 1s;
}
.loaded .loader {
	opacity: 0;
	visibility: hidden;
}
.loader p {
	line-height: 1;
	text-align: center;
	font-family: "Bauer Bodoni", serif;
	font-size: 18px;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin-top: -0.5em;
	-webkit-animation: flashing 1s infinite alternate;
	animation: flashing 1s infinite alternate;
}

@-webkit-keyframes flashing {
	0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes flashing {
	0% { opacity: 0; }
  100% { opacity: 1; }
}



/* ----------------------------
	Effects
---------------------------- */
[data-effect="fade"] {
	opacity: 0;
	-webkit-transition: opacity 1.2s;
	transition: opacity 1.2s;
}
[data-effect="fade"].fade {
	opacity: 1;
}


/* ----------------------------
	Slider
---------------------------- */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
	outline: none;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
