@charset "utf-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
/*foucusReset*/
input[type="text"], 
input[type="password"], 
input[type="submit"],
textarea, 
button,
select {
	-webkit-appearance: none;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
body {
	line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}
nav ul {
	list-style:none;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
a {
	margin:0;
	padding:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
/* change colours to suit your needs */
ins {
	background-color:#ff9;
	color:#000;
	text-decoration:none;
}
/* change colours to suit your needs */
mark {
	background-color:#ff9;
	color:#000; 
	font-style:italic;
	font-weight:bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom:1px dotted;
	cursor:help;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
/* change border colour to suit your needs */
hr {
	display:block;
	height:1px;
	border:0;   
	border-top:1px solid #cccccc;
	margin:1em 0;
	padding:0;
}
input, select {
	vertical-align:middle;
}
ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
ol{
	margin: 0;
	padding: 0;
	list-style-type: none;
}
/*borderLineInBox*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
/*aReset*/
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a img {
	border-width: 0px;
	border-style: none;
	border-color: #fff;
	background: transparent;
}
/* pageNaviCss */
.wp-pagenavi:before,
.wp-pagenavi:after,
.cf:before,
.cf:after {
	content:"";
	display:table;
}
.wp-pagenavi:after,
.cf:after {
	clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.cf,
.wp-pagenavi {
	zoom:1;
}
::selection {
	background: #FFF000; /* Safari */
}
::-moz-selection {
	background: #FFF000; /* Firefox */
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
}
select::-ms-expand {
  display: none;
}
select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
}

/*-------------------------------------------------------------------------
LOADING
------------------------------------------------------------------------*/
	position: fixed;
	z-index: 1400;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	transition-duration:0.4s;
	transition-delay: 0.6s;
	opacity: 0;
	visibility: hidden;
}
.overlay_wrap.visible{
	transition-duration:0.2s;
	transition-delay: 0.1s;
	opacity: 1;
	visibility: visible;
}
.overlay {
	position: absolute;
	z-index: 10000;
	top: 50%;
	left: 50%;
	width: 56px;
	height: 56px;
	margin: -28px 0 0 -28px;
}

.wave {
  opacity: 1;
  position: fixed;
  top: calc( 50% - 25px);
  left: calc( 50% - 25px);
  background: #ffef34;
  width: 50px;
  height: 50px;
  transform-origin: 48% 48%;
  border-radius: 43%;
  animation: drift 5000ms infinite linear;
}

.wave.wave_three {
  animation: drift 6000ms infinite linear;
  opacity: .8;
  background: #ffef34;
}

.wave.wave_two {
  animation: drift 7000ms infinite linear;
  opacity: .6;
  background: #ffef34;
}
@keyframes drift {
  from { transform: rotate(0deg); }
  from { transform: rotate(360deg); }
}
.fadeOutDown { 
  -webkit-animation-name: fadeOutDown; 
  animation-name: fadeOutDown; 
}
@-webkit-keyframes fadeOutDown { 
  0% { 
    opacity: 1; 
    transform: translateY(0); 
  }
  100% { 
    opacity: 0; 
    transform: translateY(150px); 
  } 
} 
@keyframes fadeOutDown { 
  0% { 
    opacity: 1; 
    transform: translateY(0); 
  }
  65% {
    opacity: 0; 
  }
  70% {
	      transform: translateY(50px); 
  }
  100% { 
  } 
} 

.fadeInUp { 
  -webkit-animation-name: fadeInUp; 
  animation-name: fadeInUp; 
}
@-webkit-keyframes fadeInUp { 
  0% { 
    opacity: 0;
  } 
  30%{
    opacity: 0; 
    transform: translateY(50px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  } 
} 
@keyframes fadeInUp { 
  0% { 
    opacity: 0;
  } 
  30%{
    opacity: 0; 
    transform: translateY(50px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  } 
} 
.loadingWrap {
	width: 100%;/*100%で全画面表示*/
	height: 100%;/*100%で全画面表示*/
	background: #FFF;/*背景色*/
	position: fixed;
	top: 0;/*画面上部からの位置*/
	left: 0;/*画面左部からの位置*/
	z-index: 9999;/*レイヤー(この他にpositionを使用していない場合は不要)*/
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}

@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
.loading {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 56px;
	height: 56px;
	margin: -28px 0 0 -28px;
}
.loading .spinner {
	position: absolute;
	left: 2px;
	top: 2px;
	width: 52px;
	height: 52px;
	-webkit-animation: spin 1s infinite linear;
	-moz-animation: spin 1s infinite linear;
	-o-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
}
.loading .mask {
	width: 24px;
	height: 24px;
	overflow: hidden;
}
.loading .maskedCircle {
	width: 40px;
	height: 40px;
	border-radius: 24px;
	border: 4px solid #c5a00e;
}

/*-------------------------------------------------------------------------
OTHER FORMAT STYLE
------------------------------------------------------------------------*/
.label{
	color: #fb6d50;
	margin-top: 20px;
	font-size: 16px;
	font-weight: bold;
	}
.percent:after {
content: '%';
font-size: .8em;
margin-left: 0.1em;
	color: #fb6d50;
}
input {
display: block;
margin: auto;
margin-bottom: 3em;
}
.btn {
display: block;
width: 200px;
margin: 0 auto;
padding: 10px 20px;
background: #cccccc;
color: #ffffff;
text-transform: uppercase;
cursor: pointer;
font-size: 0.8em;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.btn:hover {
background: #333333;
color: #ffffff;
}
.depth-1{
	box-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 5px 0 rgba(0, 0, 0, 0.08);
}

.depth-1-hover:hover{
	box-shadow:0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.txt_c{
	text-align:center;
} 
.sp-blok{
	display: none;
}
/*-------------------------------------------------------------------------
BODY LAYOUT
------------------------------------------------------------------------*/
body{
	width: 100%;
	font-family: "TsukuGoPro-E";
	color: #000000;
	font-weight: bold;
	letter-spacing: 0.1em;
	font-size: 13px;
	line-height: 1.8em;
	text-align: justify;
	text-justify: inter-ideograph;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	transition: 0.5s;
}

/* text-style */
a{
	color: #000000;
}
p{
	margin-bottom: 20px;
}
.img_b img{
	width: 100%;
}

/* wrap */
.wrap{
	width: 100%;
	margin: 0 auto;
}
.inner{
	position: relative;
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	padding: 0 20px;
}
.inner > div,
.inner > section{
	width: 100%;
}
.inner_swiper{
	position: relative;
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	padding: 0 20px;
}
/* layout */
.lo_bw{
	display: flex;
	display:-ms-flexbox;
	justify-content: space-between;
	-webkit-box-pack: justify;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
}
.lo_bw > div{
	box-sizing: border-box;
	max-width: 100%;　
}
.lo_end{
	display: flex;
	display:-ms-flexbox;
	justify-content: flex-end;
}
.lo_rev{
	flex-direction: row-reverse;
}
.lo_str{
	display: flex;
	display:-ms-flexbox;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.lo_str_02{
	display: flex;
	display:-ms-flexbox;
	justify-content: flex-start;
	flex-wrap: wrap;
	}
.lo_str_02 > div,
.lo_str_02 > article{
	width: 48%;
	position: relative;
	margin-bottom: 4%;
	margin-right: 4%;
	box-sizing: border-box;
	max-width: 100%;　
}
.lo_str_02 > div:nth-child(2n),
.lo_str_02 > article:nth-child(2n){
	margin-right: 0;
}
.lo_str_03{
	display: flex;
	display:-ms-flexbox;
	justify-content: flex-start;
	flex-wrap: wrap;
	}
.lo_str_03 > article{
	width: 32%;
	position: relative;
	margin-bottom: 2%;
	margin-right: 2%;
}
.lo_str_03 > article:nth-child(3n){
	margin-right: 0;
}
.row_service_a > div:first-child{
	width: 55%;
}
.row_service_a > div:nth-child(2n){
	width: 40%;
	margin-left: 5%;
}
.row_service_b > div:first-child{
	width: 40%;
	margin-right: 5%;
}
.row_service_b > div:nth-child(2n){
	width: 55%;
}
.ver_ce{
	align-items: center;
}
.ver_str{
	align-items: flex-start;
}
.ver_ce_al_ce{
	display: flex; 
	display:-ms-flexbox;
    justify-content: center;
    align-items: center;
}
.st_height{
	position: relative;
	width: 100%;
	min-height: 800px;
	overflow:hidden;
}
.st_height > div{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
}
/*-------------------------------------------------------------------------
HEADER
------------------------------------------------------------------------*/
header{
	position: absolute;
	top: 0;
	padding: 5px 20px;
	background: #FFF;
	border-bottom: 1px solid #e0dddd;
	z-index: 10;
}
h2{
	font-size: 10px;
	color: #979595;
	font-weight: normal;
}
.top_menu li{
	margin-left: 40px;
}
.top_menu li a{
	font-size: 12px;
	color: #979595;
	font-family: 'Ubuntu', sans-serif;
	transition: 0.2s;
}
.top_menu li a:hover{
	font-size: 12px;
	color: #979595;
	font-family: 'Ubuntu', sans-serif;
	color: #BF9F00;
	transition: 0.2s;
}


/*-------------------------------------------------------------------------
NAVI
------------------------------------------------------------------------*/
/* ToggleBtnAnimation */
#nav_btn_wrap{
	position: absolute;
	display: block;
	width: 45px;
	height: 25px;
	top: 45px;
	right: 30px;
	z-index: 300;
	cursor: pointer;
}
#nav_btn_wrap span{
	position: absolute;
	background: #000000;
}
#nav_btn_wrap span:nth-child(1){
	height: 2px;
	top: 0;
	right: 0;
	animation-name: navBtn-top-out;
	animation-delay: 0.1s;
	animation-duration: 0.3s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
#nav_btn_wrap span:nth-child(2){
	height: 2px;
	top: 12px;
	animation-name: navBtn-top-out;
	animation-delay: 0.1s;
	animation-duration: 0.3s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
#nav_btn_wrap span:nth-child(3){
	height: 2px;
	top: 22px;
	right: 0;
	animation-name: navBtn-bottom-out;
	animation-delay: 0.1s;
	animation-duration: 0.3s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
@keyframes navBtn-top-out{
	0% {
		opacity: 0;
		width: 0;
	}
	100%{
		opacity: 1;
		width: 45px;
	}
}
@keyframes navBtn-middle-out{
	0% {
		opacity: 0;
		width: 0;
	}
	100%{
		opacity: 1;
		width: 45px;
	}
}
@keyframes navBtn-bottom-out{
	0% {
		opacity: 0;
		width: 0;
	}
	100%{
		opacity: 1;
		width: 45px;
	}
}
@-ms-keyframes navBtn-top-out{
	0% {
		opacity: 0;
		width: 0;
	}
	100%{
		opacity: 1;
		width: 45px;
	}
}
@-ms-keyframes navBtn-middle-out{
	0% {
		opacity: 0;
		width: 0;
	}
	100%{
		opacity: 1;
		width: 45px;
	}
}
@-ms-keyframes navBtn-bottom-out{
	0% {
		opacity: 0;
		width: 0;
	}
	100%{
		opacity: 1;
		width: 45px;
	}
}
#nav_btn_wrap.navOpen span:nth-child(1){
	animation-name: navBtn-top;
	background: #000000;
	animation-duration: 0.3s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
@keyframes navBtn-top{
	0% {
		top: 0;
		right: auto;
		left: 0;
		width: 0;
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
	}
	30% {
		top: 0;
		width: 0;
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
	}
	31%{
		top: 0;
		left: 0;
		width: 0;
	}
	60%{
		top: 0;
		left: 0;
		width: 0;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	100%{
		top: 0;
		left: 0;
		width: 36px;
		-webkit-transform: translateY(12px) translateX(5px) rotate(45deg);
		-ms-transform: translateY(2px) translateX(5px) rotate(45deg);
		transform: translateY(12px) translateX(5px) rotate(45deg);
	}
}
#nav_btn_wrap.navOpen span:nth-child(2){
	background: #000000;
	animation-delay: 0.1s;
	animation-name: navBtn-middle;
	animation-duration: 0.3s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
@keyframes navBtn-middle{
	0% {
		width: 0;
	}
	30% {
		width: 0;
	}
	100% { 
		opacity: 0;
		width: 0;
	}
}
#nav_btn_wrap.navOpen span:nth-child(3){
	background: #000000;
	animation-delay: 0.3s;
	animation-name: navBtn-bottom;
	animation-duration: 0.4s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
@keyframes navBtn-bottom{
	0% {
		top: 0;
		right: 0;
		width: 0;
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
	}
	30% {
		top: 0;
		right: 0;
		width: 0;
		transform: rotate(0);
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
	}
	31%{
		top: 0;
		width: 0;
	}
	60%{
		top: 0;
		width: 0;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	100%{
		top: 0;
		width: 36px;
		-webkit-transform: translateY(12px) translateX(-4px) rotate(-45deg);
		-ms-transform: translateY(12px) translateX(-4px) rotate(-45deg);
		transform: translateY(12px) translateX(-4px) rotate(-45deg);
	}
}

/* header */
.nav{
	position: fixed;
	top: 20px;
	right: -10px;
	z-index: 20;
}
nav ul li a{
	color: #000000;
	font-size: 25px;
	line-height: 0.8em;
	font-family: 'Ubuntu', sans-serif;
}
nav ul li a span{	
	font-size: 13px;
	line-height: 1em;
	color: #979595;
	font-family: 'Ubuntu', sans-serif;
	color: #BF9F00;
}
.fixed-header{
	position: fixed;
	visibility: hidden;
	opacity: 0;
	height: 100%;
	width: 600px;
	background: rgba(255, 255, 255, 1);
	top: 0;
	right: -100%;
	padding: 5% 2% 2% 3%;
	transition: 0.6s;
}
.fixed-header.navOpen{
	visibility: visible;
	opacity: 1;
	transition: 0.6s;
	right: 0;
}
.fixed-header > div:first-child{
	width: 100%;
}
.fixed-header ul{
}
.fixed-header ul li{
	margin-bottom: 30px;
}
.menu_num{
	width: 2.2em;
}

.sub_title{
	text-align: left;
	font-size: 30px;
	line-height: 1.6em;
	font-weight: bold;
	color: #000000;
	margin-bottom: 60px;
}
.sub_title span{
	display: block;
}
.sub_title span:first-child{
	
	margin-left: 0;
}
.sub_title span:last-child{
	margin-left: 60px;
}
.eng_sub_title{
	position: relative;
	font-family: 'Ubuntu', sans-serif;
	font-size: 16px;
	margin-bottom: 60px;
	text-align: left;
	margin-left: 150px;
	padding: 5px 20px;
	display: inline;
}
.eng_sub_title:before{
	content: "";
	top: 50%;
	left: -150px;
	position: absolute;
	height: 1px;
	width: 30%;
	display: block;
	background: #000000;
	z-index: -1;
}

/*-------------------------------------------------------------------------
MAIN 
------------------------------------------------------------------------*/
/* mainBg */
.sec_intro{
	background: url(img/main_bg.jpg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: 630px;
	background-color: #fafafa;
}
/*mainTitle*/
.big_title_animation {
	position: relative;
	font-family: 'Ubuntu', sans-serif;
	font-weight: bolder;
	font-size: 90px;
	line-height: 1em;
	margin: 0 auto;
	display: inline-block;
}
.jp_sub_title{
	display:block;
	color: #BF9F00;
	font-size: 14px;
	letter-spacing: 0.1em;
	text-align: right;
	margin-top: -10px;
}
.big_title_header{
	margin-left: -400px;
}
.big_title_footer{
	margin-left: 50px;
}
.r_mark{
	font-size: 15px;
}

.big_title_animation{
	text-align: center;
	color: rgba(0,0,0,0);
	background: #ed8080; /* Old browsers */
	background: -moz-linear-gradient(left,  #ed8080 0%, #2a77d6 16%, #5eb524 32%, #eacd25 48%, #ed8080 64%, #2a77d6 80%, #5eb524 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,#ed8080), color-stop(16%,#2a77d6), color-stop(32%,#5eb524), color-stop(48%,#eacd25), color-stop(64%,#ed8080), color-stop(80%,#2a77d6), color-stop(100%,#5eb524)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(left,  #ed8080 0%,#2a77d6 16%,#5eb524 32%,#eacd25 48%,#ed8080 64%,#2a77d6 80%,#5eb524 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(left,  #ed8080 0%,#2a77d6 16%,#5eb524 32%,#eacd25 48%,#ed8080 64%,#2a77d6 80%,#5eb524 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(left,  #ed8080 0%,#2a77d6 16%,#5eb524 32%,#eacd25 48%,#ed8080 64%,#2a77d6 80%,#5eb524 100%); /* IE10+ */
	background: linear-gradient(to right,  #ed8080 0%,#2a77d6 16%,#5eb524 32%,#eacd25 48%,#ed8080 64%,#2a77d6 80%,#5eb524 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ed8080', endColorstr='#5eb524',GradientType=1 ); /* IE6-9 */
	-webkit-background-size: 300% 300%;
	-moz-background-size: 300% 300%;
	background-size: 300% 300%;

    color: rgba(0,0,0,0);
    -webkit-background-clip: text;
	animation:big_title_animation infinite 4s linear;
	-o-animation:big_title_animation infinite 4s linear;
	-moz-animation:big_title_animation infinite 4s linear;
	-webkit-animation:big_title_animation infinite 4s linear;
	
	background-repeat: no-repeat;
	background-position: top left;
	background-color: #222;
	display: inline;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.big_title_animation{
		background: none;
		color: #BF9F00;
	}
}
@-moz-keyframes big_title_animation {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@-webkit-keyframes big_title_animation {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@-o-keyframes big_title_animation {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@keyframes big_title_animation {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
/* scroolDownAnimation */
.next_page{
	position: absolute;
	width: 180px;
	bottom: 40px;
	left: calc(50% - 50px);
}
#scroll-down {
    display: block;
    position: relative;
    padding-top: 79px;
  text-align:center;
}
.arrow-down {
    display: block;
    margin: 0 auto;
    width: 10px;
    height: 38px;
}
#scroll-title {
    display: block;
    text-transform: uppercase;
	font-family: 'Ubuntu', sans-serif;
  font-size:14px;
  font-weight:bold;
  letter-spacing:.1em;
}
#scroll-down::before {
    -webkit-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Safari 4+ */
    
    -moz-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Fx 5+ */
    
    -o-animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* Opera 12+ */
    
    animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
    /* IE 10+, Fx 29+ */
    
    position: absolute;
    top: 40px;
    left: 50%;
    margin-left: -1px;
    width: 1px;
    height: 70px;
    background: #000000;
    content: '';
}
@-webkit-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@-moz-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@-o-keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
@keyframes elasticus {
    0% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
    50% {
        -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
        -moz-transform-origin: 0% 0%;
        -o-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50.1% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
        -moz-transform-origin: 0% 100%;
        -o-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-transform: scale(1, 0);
        -ms-transform: scale(1, 0);
        -moz-transform: scale(1, 0);
        -o-transform: scale(1, 0);
        transform: scale(1, 0);
    }
}
/*-------------------------------------------------------------------------
SECTION HEADER 
------------------------------------------------------------------------*/
/* patternA */
.sec_header_a > div:first-child{
	width: 100%;
	max-width: 800px;
	padding-right: 50px;
}
.sec_header_a > div:last-child{
	width: calc(100% - 800px);
	text-align: center;
}
.sec_header_a > div:last-child img{
	width: 100%;
	max-width: 300px;
}
/* patternB */
.sec_header_b > div:first-child{
	width: 100%;
	max-width: 500px;
	padding-right: 50px;
}
.sec_header_b > div:last-child{
	width: calc(100% - 500px);
	text-align: center;
}
/* sectionHeaderInnerStyle */
.sec_eng_sub_title{
	display: block;
	font-size: 60px;
	line-height: 1.2em;
	font-family: 'Ubuntu', sans-serif;
	color: #000000;
	margin-bottom: 10px;
	overflow: hidden;
	word-break: break-all;
}
.sec_desc{
	margin-bottom: 60px;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.8em;
	color: #000000;
}
.sec_features_title_secound{
	margin-left: 40px;
	text-align: right;
}
h3{
	font-size: 16px;
	line-height: 0.9em;
	color: #BF9F00;
	margin-bottom: 20px;
}
/*-------------------------------------------------------------------------
SWIPER
------------------------------------------------------------------------*/
/* secFeatures */
#swiper_features .swiper-slide{
	width: 350px;
	background: #FFF;
	margin-bottom: 80px;
}
#swiper_features .swiper-slide img{
	width: 100%;
	vertical-align: bottom;
}
.howto_content_footer{
	padding: 10px 15px 15px;
}
.sec_features_num{
	position: relative;
	text-align: left;
	font-size: 18px;
	line-height: 1em;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #DDDDDD;
}
.sec_features_num i{
	color: #BF9F00;
	font-size: 22px;
}
.sec_features_num span{
	font-size: 16px;
}
.sec_features_num:after{
	content: "";
	display: block;
	position: absolute;
	bottom: -1px;
	left: 0; 
	height: 1px;
	width: 110px;
	background: #000000;
}
.sec_features_title{
	margin-bottom: 10px;
	text-align: left;
	font-size: 18px;
	line-height: 1.6em;
	color: #000000;
}
.swiper_button_next_features {
	z-index: 30;
	position: absolute;
	bottom: -50px;
	right: -30px;
}
.swiper_button_next_features {display: block;margin:50px;border:4px solid #BF9F00;border-radius:100%;width:40px;height:40px;transition:all 0.3s;box-sizing:border-box;}

.swiper_button_next_features .swiper_button_next_features-inner {display: block;position:relative;top:-33px;left:-33px;border:21px solid transparent;box-sizing:border-box;}

.swiper_button_next_features .swiper_button_next_features-inner:before {content:'';position:relative;float:left;top:16px;left:28px;width:4px;height:16px;background-color:#BF9F00;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transition:all 0.3s;-webkit-transition:all 0.3s;box-sizing:border-box;}

.swiper_button_next_features .swiper_button_next_features-inner:after {content:'';position:relative;float:left;top:9px;left:28px;width:4px;height:16px;background-color:#BF9F00;transform:rotate(45deg);-webkit-transform:rotate(45deg);transition:all 0.3s;-webkit-transition:all 0.3s;box-sizing:border-box;}

.swiper_button_next_features:hover {cursor:pointer;border-color:transparent;border-color:#e6f5fc;}
.swiper_button_next_features:hover .swiper_button_next_features-inner {left:-15px;}
.swiper_button_prev_features {
	position: absolute;
	bottom: -50px;
	left: -30px;
	z-index: 30;
}
.swiper_button_prev_features {display: block;margin:50px;border:4px solid #BF9F00;border-radius:100%;width:40px;height:40px;transition:all 0.3s;box-sizing:border-box;}

.swiper_button_prev_features .swiper_button_prev_features-inner {display: block;position:relative;top:-33px;right:-33px;border:21px solid transparent;box-sizing:border-box;}

.swiper_button_prev_features .swiper_button_prev_features-inner:before {content:'';position:relative;float:left;top:16px;right:41px;width:4px;height:16px;background-color:#BF9F00;transform:rotate(45deg);-webkit-transform:rotate(45deg);transition:all 0.3s;-webkit-transition:all 0.3s;box-sizing:border-box;}

.swiper_button_prev_features .swiper_button_prev_features-inner:after {content:'';position:relative;float:left;top:9px;right:41px;width:4px;height:16px;background-color:#BF9F00;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transition:all 0.3s;-webkit-transition:all 0.3s;box-sizing:border-box;}

.swiper_button_prev_features:hover {cursor:pointer;border-color:transparent;border-color:#e6f5fc;}
.swiper_button_prev_features:hover .swiper_button_prev_features-inner {right:-15px;}

.swiper_button_next_features.swiper-button-disabled,
.swiper_button_prev_features.swiper-button-disabled{
	opacity: 0;
}
/* Pagination Styles */
.swiper_pagination_features {
	position: absolute;
	bottom: 0;
	text-align: center;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
	position: absolute;
	bottom: -10px;
	left: 50%;
	-webkit-transform: translateY(0) translateX(-50%);
	transform: translateY(0) translateX(-50%);
	padding: 20px;
	z-index: 10;
}
.swiper_pagination_features span{
	width: 8px;
	height: 8px;
	margin: 0 10px;
	display: inline-block;
	border-radius: 100%;
	transition: all .25s linear;
}
.swiper_pagination_bullet_features{
	background: #000000;
	opacity: 0.3;
}
.swiper_pagination_bullet_active_features{
	background: #BF9F00;
	opacity: 1;
}
/*-------------------------------------------------------------------------
SWIPER HOW TO
------------------------------------------------------------------------*/
#swiper_howto{
	margin-top: 10px;
	text-align: left;
}
#swiper_howto .swiper-slide{
	width: 350px;
	padding:0 25px;
	margin-bottom: 50px;
}
.flow-no{
	display: block;
	font-size: 14px;
	font-weight: lighter;
	font-family: 'Ubuntu', sans-serif;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.flow-no:after{
	position: absolute;
	content: "";
	bottom: 0;
	display: block;
	height: 2px;
	width: 50px;
	background: #000000;
}
.flow_step_title{
	display: block;
	font-size: 15px;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 15px;
	text-indent: -1.2em;
	padding-left: 1.2em;
}
.flow_step_title:after{
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	display: block;
	height: 2px;
	width: 50px;
	background: #000000;
}
.swiper_howto_border{
	margin-top: 20px;
	text-align: top;
	padding-bottom: 25px;
}
.swiper_howto_footer{
	font-size: 14px;
	letter-spacing: 0;
	font-weight: bolder;
	padding-bottom: 10px;
	margin: 0 auto 10px;
	line-height: 1.6em;
}
.swiper_howto_header{
	width: 100%;
	margin-bottom: 0;
}
.swiper_howto_header img{
	width: 100%;
	height: auto;
	vertical-align: top;
}
.swiper_button_next_howto {
	z-index: 30;
	position: absolute;
	bottom: -50px;
	right: -30px;
}
.swiper_button_next_howto {display: block;margin:50px;border:4px solid #73dac5;border-radius:100%;width:40px;height:40px;transition:all 0.3s;box-sizing:border-box;}

.swiper_button_next_howto .swiper_button_next_howto-inner {display: block;position:relative;top:-33px;left:-33px;border:21px solid transparent;box-sizing:border-box;}

.swiper_button_next_howto .swiper_button_next_howto-inner:before {content:'';position:relative;float:left;top:16px;left:28px;width:4px;height:16px;background-color:#73dac5;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transition:all 0.3s;-webkit-transition:all 0.3s;box-sizing:border-box;}

.swiper_button_next_howto .swiper_button_next_howto-inner:after {content:'';position:relative;float:left;top:9px;left:28px;width:4px;height:16px;background-color:#73dac5;transform:rotate(45deg);-webkit-transform:rotate(45deg);transition:all 0.3s;-webkit-transition:all 0.3s;box-sizing:border-box;}

.swiper_button_next_howto:hover {cursor:pointer;border-color:transparent;border-color:#FFF;}
.swiper_button_next_howto:hover .swiper_button_next_howto-inner {left:-15px;}
.swiper_button_prev_howto {
	position: absolute;
	bottom: -50px;
	left: -30px;
	z-index: 30;
}
.swiper_button_prev_howto {display: block;margin:50px;border:4px solid #73dac5;border-radius:100%;width:40px;height:40px;transition:all 0.3s;box-sizing:border-box;}

.swiper_button_prev_howto .swiper_button_prev_howto-inner {display: block;position:relative;top:-33px;right:-33px;border:21px solid transparent;box-sizing:border-box;}

.swiper_button_prev_howto .swiper_button_prev_howto-inner:before {content:'';position:relative;float:left;top:16px;right:41px;width:4px;height:16px;background-color:#73dac5;transform:rotate(45deg);-webkit-transform:rotate(45deg);transition:all 0.3s;-webkit-transition:all 0.3s;box-sizing:border-box;}

.swiper_button_prev_howto .swiper_button_prev_howto-inner:after {content:'';position:relative;float:left;top:9px;right:41px;width:4px;height:16px;background-color:#73dac5;transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transition:all 0.3s;-webkit-transition:all 0.3s;box-sizing:border-box;}

.swiper_button_prev_howto:hover {cursor:pointer;border-color:transparent;border-color:#FFF;}
.swiper_button_prev_howto:hover .swiper_button_prev_howto-inner {right:-15px;}

.swiper_button_next_howto.swiper-button-disabled,
.swiper_button_prev_howto.swiper-button-disabled{
	opacity: 0;
}
/* Pagination Styles */
.swiper_pagination_howto {
	position: absolute;
	bottom: 0;
	text-align: center;

	position: absolute;
	bottom: 0;
	text-align: center;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	-o-transition: 300ms;
	transition: 300ms;
	position: absolute;
	bottom: -10px;
	left: 50%;
	-webkit-transform: translateY(0) translateX(-50%);
	transform: translateY(0) translateX(-50%);
	padding: 20px;
	z-index: 10;
}
.swiper_pagination_howto span{
	width: 8px;
	height: 8px;
	margin: 0 10px;
	display: inline-block;
	border-radius: 100%;
	transition: all .25s linear;
}
.swiper_pagination_bullet_howto{
	background: #000000;
	opacity: 0.3;
}
.swiper_pagination_bullet_active_howto{
	background: #73dac5;
	opacity: 1;
}
/*-------------------------------------------------------------------------
CONTACT
----------------------------------------------------------------*/

.inner_contact{
	position: relative;
	width: 100%;
	max-width: 770px;
	margin: 0 auto;
	padding: 0 20px;
}
.sec_contact{
	padding: 50px 0px;
	background: #fafafa;
}
/*-------------------------------------------------------------------------
CONTACTFORM form_1
----------------------------------------------------------------*/
.form_1{
  width: 100%;
  margin: 0 auto 50px;
  padding-left: 100px;
  border-collapse: collapse;
}
.form_1 th,
.form_1 td {
	position: relative;
    text-align: left;
    vertical-align: middle;
    padding: 15px 0;
	border-bottom: 1px solid #dddddd;
}
.form_1 tr:last-child th,
.form_1 tr:last-child td{
	border: none;
}
.form_1 th h2{
	font-size: 14px;
	color: #000000;
	font-weight: bold;
}
.form_1 th{
	width: 280px;
}
.form_1 th{
	padding-right: 30px;
}
.form_1 .fix-txt{
	margin-top: 30px;
	line-height: 1.8em;
}
.form_1 .fix-txt a{
	display: block;
	line-height: 1.8em;
	color: #4e4d4d;
	font-size: 25px;
	margin-top: 40px;
}
.form_1 .fix-txt a i{
	color: #FFAB00;
}
.form_1 .fix-title{
	font-size: 20px;
	padding-bottom: 30px;
	border-bottom: 1px solid #000000;
}
/*---formDesign---*/
.form_1 input[type="text"], 
.form_1 input[type="submit"],
.form_1 input[type="tel"],
.form_1 input[type="search"],
.form_1 input[type="email"],
.form_1 input[type="mail"],
.form_1 input[type="password"],
.form_1 textarea, 
.form_1 button,
.form_1 select{
  outline: 0;
  width: 100%;
  padding: 20px 15px 15px 10px;
  margin: 15px auto;
  outline: 0;
  border: 1px solid #DDDDDD;
  font-size: 16px;
  line-height: 1.2em;
  background: #FFF;
 }
.form_1 textarea{
	height: 10em;
}
.form_1 input[type="text"]:focus,
.form_1 input[type="tel"]:focus,
.form_1 select:focus,
.form_1 textarea:focus{
  border-color: #C1A139;
  }
  
/*---selectBox---*/
.form_1 select {
  width: 100%;
  padding: 15px 60px 15px 10px;
  background-image: url(img/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px 20px;
  vertical-align: middle;
  border: 1px solid #DDDDDD;
  margin: 15px auto;
  }

/*---btn---*/
.form_1 .button_wrap{
	position: relative;
	width: 100%;
	margin: 50px auto 20px;
}
.form_1 .button_wrap input{
	width: 100%;
	display: block;
	cursor: pointer;
	border: none;
	margin: 0 auto;
	color: #FFF;
	background: #000000;
	border: 2px solid #000000;
	font-size: 20px;
	font-weight: bold;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.form_1 .button_wrap.back_btn input{
	background: #767676;
	border: 2px solid #767676;
}
.form_1 .button_wrap:hover input{
	border-radius: 15px;
	letter-spacing: 0.4em;
}
.form_1 .button_wrap i{
	visibility: hidden;
	display: block;
	position: absolute;
	font-size: 16px;
	color: #FFF;
	top: calc( 50% - 13px);
	right: calc( 30% + 30px );
	z-index: 1000;
	opacity: 0;
	transition: 0.3s;
}
.form_1 .button_wrap:hover i{
	visibility: visible;
	display: block;
	position: absolute;
	font-size: 25px;
	color: #FFF;
	top: calc( 50% - 13px);
	right: 30%;
	z-index: 1000;
	opacity: 1;
	transition: 0.3s;
}
.form_1 .button_wrap.back-btn input{
	background: #acacac;
	border: 2px solid #acacac;
	color: #FFF;
}
.form_1 .required{
	background: red;
	display: inline-block;
	font-size: 10px;
	padding: 0 10px;
	color: #FFF;
	margin-left: 10px;
	border-radius: 3px;
    -webkit-border-radius: 3px; 
    -moz-border-radius: 3px;
}
/*---radioBox---*/
.form_radio span{
	display: inline-block;
	margin: 5px;
}
.form_1 .form_radio input[type="radio"]{
  display: none;
}
.form_1 .form_radio label{
  cursor: pointer;
  padding-right: 15px;
  color: #b0b0b0;
	font-weight: bold;
	
}
.form_1 .form_radio label .mwform-radio-field-text:before{
  content:"\f1db";
  font-family: FontAwesome;
  margin-right: 7px;
  color: #ccc;
  font-size: 20px;
  position: relative;
  top: 2px;
}
.form_1 .form_radio label input[type="radio"]:checked + .mwform-radio-field-text{
	color: #BF9F00;
}
.form_1 .form_radio label input[type="radio"]:checked + .mwform-radio-field-text:before{
  content:"\f05d";
  font-family: FontAwesome;
	color: #BF9F00;
	}
@media screen and (max-width:767px) {
	.form_1 th,
	.form_1 td{
		display: block;
		width: 100%;
	}
	.form_1 th {
		border-color: #000000;
	}
	.form_1 tr:last-child th{
		border-bottom: 1px solid #000000;
	}
	.form_1 td {
		border-bottom: none;
	}
	.step_bar .step:before, .step_bar .step:after {
	  position: absolute;
	  left: -15px;
	  display: block;
	  content: '';
	  background-color: #FFF;
	  border-left: 4px solid #DEDEDE;
	  width: 20px;
	  height: 20px;
	}
	.header-header {
		font-size: 20px;
	}
	.header-footer a{
		font-size: 30px;
	}
	.step_bar .step {
	  padding: 0 20px 0 10px;
	}
	#footer a{
		font-size: 25px;
	}
	.room-num input{
		max-width: 230px;
	}
	.required{
		margin-left: 4px;
	}
}
.contact-tel-link{
	padding-bottom: 10px;
	margin-bottom: 30px;
	display: inline-block;
	border-bottom: 1px solid #000000;
	font-size: 20px;
	margin-right: 30px;
	transition: 0.3s;
}
.back-to-top{
	padding-bottom: 10px;
	display: inline-block;
	font-size: 20px;
	border-bottom: 1px solid #000000;
	font-size: 20px;
	transition: 0.3s;
}
.contact-tel-link:hover,
.back-to-top:hover{
	color: #BF9F00;
	border-bottom: 1px solid #BF9F00;
}
/*-------------------------------------------------------------------------
FOOTER
----------------------------------------------------------------*/
#gmap{
	width: 100%;
}
.content > section{
	position: relative
}
footer{
	padding: 50px 0;
	background: #000000;
}
.footer_list{
	margin-bottom: 20px;
}
.footer_list li{
	margin-right: 40px;
}
.footer_list li a{
	font-size: 16px;
	color: #FFF;
	font-family: 'Ubuntu', sans-serif;
	transition: 0.2s;
}
.footer_list li a:hover{
	color: #BF9F00;
	transition: 0.2s;
}
.address{
	padding: 30px 0;
	font-weight: normal;
}
address{
	text-align: left;
	font-style:normal;
	font-weight: normal;
	color: #FFF;
	font-size: 13px;
}
small{
	font-size: 10px;
	color: #e2e2e2;
	font-weight: normal;
}
small a{
	font-size: 10px;
	color: #e2e2e2;
	font-weight: normal;
}

/*-------------------------------------------------------------------------
ANIMATION
----------------------------------------------------------------*/
#top{
	margin-top: 1000px;
}
.animation_left_fade{
	display: block;
	opacity: 0;
	transition-duration:0.6s;
	transition-delay: 0.5s;
	-ms-transition-duration:0.6s;
	-ms-transition-delay: 0.5s;
	transform: translate(-30px, 0);
	-webkit-transform: translate(-30px, 0);
	transform: translate(-30px, 0);
}
.animation_left_fade.is_shown{
	opacity: 1;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
}
.animation_up_fade{
	opacity: 0;
	transition-duration:0.6s;
	transition-delay: 0.5s;
	-ms-transition-duration:0.6s;
	-ms-transition-delay: 0.5s;
	transform: translate(0, 20px);
	-webkit-transform: translate(0, 20px);
	-ms-transform: translate(0, 20px);
}
.animation_up_fade.is_shown{
	opacity: 1;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
}
.title_animation{
	display: block;
	transform: translate(0, 70px);
	transition-duration:0.5s;
	transition-delay: 0.2s;
	-webkit-transform: translate(0, 70px);
}
.title_animation.is_shown{
	display: block;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}

body .note{
	display: block;
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-size: 10px;
	position: absolute;
	bottom: 20px;
	left: 20px;
	font-weight: 200;
	color: #787878;
}
body .footer_note{
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-weight: 200;
	font-size: 10px;
	color: #FFF;
}
/*-------------------------------------------------------------------------
MEDIA QUERY
------------------------------------------------------------------------*/
@media screen and (max-width: 1000px){
	body .note{
	bottom: 0;
	left: 10px;
	padding-right: 10px;
	margin-bottom: 5px;
	}
	.lo_bw{
		display: block;
	}
	.lo_str{
		display: block;
	}
	.fixed-header .lo_str{
		display: flex;
		display:-ms-flexbox;
	}
	.footer_list li{
		padding-bottom: 10px;
		margin-bottom: 20px;
		border-bottom: 1px solid #FFF;
	}
	.st_height > div{
		width: 100%;
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		-webkit-transform: none;
		padding: 100px 20px;
	}
	.sec_header_a > div:first-child{
		max-width: 1080px;
		padding-right: 0;
	}
	.sec_header_a > div:last-child{
		width: 100%;
		text-align: center;
	}
	.sec_header_b > div:first-child{
		max-width: 1080px;
		padding-right: 0;
	}
	.sec_header_b > div:last-child{
		width: 100%;
		max-width: 500px;
	}
	.inner_swiper{
		padding: 0 0;
	}
	.sec_features_title_secound{
		display: inline;
		margin-left: 0;
		text-align: left;
	}
	.form_1{
		  padding: 0;
	}
	.swiper_button_prev_howto {
		left: -40px;
	}
	.swiper_button_next_howto {
		right: -40px;
	}
	header{
		display: none;
		opacity: 0;
	}
	#nav_btn_wrap{
		position: absolute;
		width: 45px;
		height: 90px;
		top: 10px;
		right: 30px;
		overflow: hidden;
		z-index: 30;
	}
	/* scroolDownAnimation */
	.next_page{
		display: none;
	}
	.sec_about_header{
		padding: 0 0 300px;
	}
	/*mainTitle*/
	.big_title_animation {
		font-size: 60px;
		text-align: left;
	}

	.jp_sub_title{
		color: #BF9F00;
		font-size: 12px;
		margin: 20px auto;
	}
	.sec_intro{
		background-position: right bottom;
		background-size: 500px;
	}
	.eng_sub_title{
		position: relative;
		font-family: 'Ubuntu', sans-serif;
		font-size: 16px;
		margin-bottom: 60px;
		text-align: left;
		margin-left: 0;
		padding: 5px 20px 5px 0;
		display: inline;
		word-break: break-all;
	}
	.eng_sub_title:before{
		display: none;
	}
	.sub_title{
		text-align: left;
		font-size: 30px;
		line-height: 1.6em;
		font-weight: bold;
		color: #000000;
		margin-bottom: 20px;
	}

}
@media screen and (max-width: 600px){
	.big_title_animation{
		margin-top: 15px;
		margin-bottom: 0;
		line-height: 1.4em;
		font-size: 40px;
		padding-bottom: 0;
	}
	.sec_intro{
		background-position: right bottom;
		background-size: 350px;
		padding-top: -20px;
		margin-top: 20px;
	}
	.st_height > div{
		width: 100%;
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		-webkit-transform: none;
		padding: 40px 10px;
	}
	.sec_desc{
		font-size: 16px;
		line-height: 1.8em;
		letter-spacing: 0.1em;
		margin-bottom: 35px;
	}

	.sec_intro.st_height > div{
		padding: 0 10px 60px;
	}
	.st_height{
		position: relative;
		width: 100%;
		min-height: 470px;
	}
	.eng_sub_title{
		display: none;
	}
	.sp-blok{
		display: inline;
	}
	.sub_title{
		font-size: 20px;
		margin-bottom: 10px;
	}
	.sec_eng_sub_title{
		display: block;
		font-size: 35px;
		line-height: 1.2em;
		font-family: 'Ubuntu', sans-serif;
		color: #000000;
		margin-bottom: 10px;
		overflow: hidden;
		word-break: break-all;
	}
	.swiper-button-next-features{
		position: absolute;
		right: 0;
	}
	.swiper-button-prev-features{
		position: absolute;
		right: 0;
	}
	.sec_features_num{
		font-size: 15px;
	}
	.sec_features_num span{
		font-size: 12px;
	}
	h3{
		font-size: 13px;
		margin-bottom: 10px;
	}
	.title_animation{
		transform: translate(0, 90px);
		-webkit-transform: translate(0, 90px);
	}
	.jp_sub_title{
		font-size: 10px;
		letter-spacing: 0.1em;
		text-align: left;
		margin-top: -15px;
		margin-bottom: 0;
	}
	.sec_features_title{
		font-size: 16px;
	}
	.swiper_features_slide{
		padding-bottom: 30px;
	}
	/*-------------------------------------------------------------------------
	NAVI
	------------------------------------------------------------------------*/
	/* ToggleBtnAnimation */
	#nav_btn_wrap{
		width: 30px;
		height: 60px;
		top: 10px;
		right: 30px;
		z-index: 30;
	}
	#nav_btn_wrap span:nth-child(1){
		height: 1px;
	}
	#nav_btn_wrap span:nth-child(2){
		height: 1px;
		top: 9px;
	}
	#nav_btn_wrap span:nth-child(3){
		height: 1px;
		top: 16px;
		right: 0;
	}
	@keyframes navBtn-top-out{
		0% {
			opacity: 0;
			width: 0;
		}
		100%{
			opacity: 1;
			width: 30px;
		}
	}
	@keyframes navBtn-middle-out{
		0% {
			opacity: 0;
			width: 0;
		}
		100%{
			opacity: 1;
			width: 30px;
		}
	}
	@keyframes navBtn-bottom-out{
		0% {
			opacity: 0;
			width: 0;
		}
		100%{
			opacity: 1;
			width: 30px;
		}
	}
	@keyframes navBtn-top{
		0% {
			top: 0;
			right: auto;
			left: 0;
			width: 0;
			transform: rotate(0);
		}
		60%{
			top: 0;
			left: 0;
			width: 0;
			-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
			transform: rotate(45deg);
		}
		100%{
			top: 0;
			left: 0;
			width: 36px;
			-webkit-transform: translateY(10px) translateX(-4px) rotate(45deg);
			-ms-transform: translateY(10px) translateX(-4px) rotate(45deg);
			transform: translateY(10px) translateX(-4px) rotate(45deg);
		}
	}
	@keyframes navBtn-middle{
		0% {
			width: 0;
		}
		30% {
			width: 0;
		}
		100% { 
			opacity: 0;
			width: 0;
		}
	}
	@keyframes navBtn-bottom{
		0% {
			top: 0;
			right: 0;
			width: 0;
			transform: rotate(0);
		}
		30% {
			top: 0;
			right: 0;
			width: 0;
			transform: rotate(0);
		}
		31%{
			top: 0;
			width: 0;
		}
		60%{
			top: 0;
			width: 0;
			-webkit-transform: rotate(-45deg);
			-ms-transform: rotate(-45deg);
			transform: rotate(-45deg);
		}
		100%{
			top: 0;
			width: 36px;
			-webkit-transform: translateY(10px) translateX(4px) rotate(-45deg);
			-ms-transform: translateY(10px) translateX(4px) rotate(-45deg);
			transform: translateY(10px) translateX(4px) rotate(-45deg);
		}
	}
	
	
	@-ms-keyframes navBtn-top-out{
		0% {
			opacity: 0;
			width: 0;
		}
		100%{
			opacity: 1;
			width: 30px;
		}
	}
	@-ms-keyframes navBtn-middle-out{
		0% {
			opacity: 0;
			width: 0;
		}
		100%{
			opacity: 1;
			width: 30px;
		}
	}
	@-ms-keyframes navBtn-bottom-out{
		0% {
			opacity: 0;
			width: 0;
		}
		100%{
			opacity: 1;
			width: 30px;
		}
	}
	@-ms-keyframes navBtn-top{
		0% {
			top: 0;
			right: 0;
			left: auto;
			width: 0;
			transform: rotate(0);
		}
		30% {
			top: 0;
			right: 0;
			left: auto;
			width: 0;
			transform: rotate(0);
		}
		31%{
			top: 0;
			left: 0;
			width: 0;
		}
		60%{
			top: 0;
			left: 0;
			width: 0;
			-webkit-transform: rotate(45deg);
			-ms-transform: rotate(45deg);
			transform: rotate(45deg);
		}
		100%{
			top: 0;
			left: 0;
			width: 36px;
			-webkit-transform: translateY(10px) translateX(-4px) rotate(45deg);
			-ms-transform: translateY(10px) translateX(-4px) rotate(45deg);
			transform: translateY(10px) translateX(-4px) rotate(45deg);
		}
	}
	@-ms-keyframes navBtn-middle{
		0% {
			width: 0;
		}
		30% {
			width: 0;
		}
		100% { 
			opacity: 0;
			width: 0;
		}
	}
	@-ms-keyframes navBtn-bottom{
		0% {
			top: 0;
			right: 0;
			width: 0;
			transform: rotate(0);
		}
		30% {
			top: 0;
			right: 0;
			width: 0;
			transform: rotate(0);
		}
		31%{
			top: 0;
			width: 0;
		}
		60%{
			top: 0;
			width: 0;
			-webkit-transform: rotate(-45deg);
			-ms-transform: rotate(-45deg);
			transform: rotate(-45deg);
		}
		100%{
			top: 0;
			width: 36px;
			-webkit-transform: translateY(10px) translateX(4px) rotate(-45deg);
			-ms-transform: translateY(10px) translateX(4px) rotate(-45deg);
			transform: translateY(10px) translateX(4px) rotate(-45deg);
		}
	}
	.fixed-header{
		height: 100%;
		width: 270px;
		padding: 30px 0 2% 3%;
	}
	nav ul li a{
		font-size: 15px;
	}
	nav ul li a span{	
		font-size: 11px;
	}
	.fixed-header ul li{
		margin-bottom: 15px;
	}
	.swiper_howto_footer{
		padding-bottom: 25px;
		font-size: 14px;
		line-height: 1.8em;
		letter-spacing: 0.1em;
	}
	#swiper_howto .swiper-slide{
		border: 1px solid #DDDDDD;
		padding: 10px;
		margin-bottom: 80px;
	}
	.swiper_howto_border{
		padding-bottom: 0;
	}
	.swiper_howto_footer{
		padding-bottom: 10px;
	}
	#swiper_howto .swiper-slide{
		width: 270px;
	}
	/* secFeatures */
	#swiper_features .swiper-slide{
		width: 270px;
	}
	.flow_step_title:after{
		left: 1.2em;
	}

}
.video_wrap{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}
#video{
	width: 100%;
	margin: 0 auto;
}