@charset "utf-8";

/*----------------------------------------------------------
	Reset
-----------------------------------------------------------*/
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;}
del,ins{text-decoration:none;}
table{border-collapse:collapse;border-spacing:0}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:500;}
q:before,q:after{content:'';}
abbr,acronym{border:0;font-variant:normal;}
sup{vertical-align:super;}
sub{vertical-align:baseline;}
a:focus{outline:none;}
input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;vertical-align:middle;}
input,button,textarea,select{*font-size:100%;}
img{vertical-align:bottom;}
/*----------------------------------------------------------
	Common
-----------------------------------------------------------*/

.pc{
	display:none!important;
}

:focus {
	outline: 0;
}

a{
	text-decoration:none;
}

html {
	overflow-y:scroll;
	font-size:62.5%;
	margin:0;
	padding:0;
	font-family:sans-serif;
	text-align:left;
	width:100%;
	height:100%;
	color:#333;
}

img{
	max-width:100%;
	height:auto;
}

body {
	font-size:1.2rem;
	line-height:2em;
	padding-top:47px;
	width:100%;
	height:100%;
	-webkit-text-size-adjust: 100%;
	word-wrap:break-word;
	box-sizing:border-box;
}

input[type="text"],input[type="email"],input[type="password"],input[type="button"],input[type="submit"], button, textarea, select {
	-webkit-appearance: none;
	border-radius: 0;
	vertical-align:middle;
}

strong{font-weight:600;}

.hide{
	opacity: 0;
	transition: opacity .5s ease-out;
}

.show{
	opacity: 1;
}

.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

header{
	width:100%;
	position:fixed;
	top:0;
	background:rgba(255,255,255,.85);
	z-index:100;
}

header .innerBox{
	width:100%;
	padding:10px 15px;
	box-sizing:border-box;
	margin:auto;
	display: -webkit-flex; /* Safari */
	display: flex;
	vertical-align:middle;
	-webkit-align-items: center; /* Safari */
	align-items:         center;
}

header h1{
	width:112px;
}

header nav{
	width:30px;
	height:23px;
	position:fixed;
	top:14px;
	right:16px;
	z-index:1000;
}

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .3s;
	box-sizing: border-box;
}

.menu-trigger {
	position: relative;
	width: 23px;
	height: 19px;
	z-index:1000;
}

.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #6699cc;
}

.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 8px;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(45deg);
	transform: translateY(8px) rotate(45deg);
	height: 3px;
	background-color: #fff;
}

.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(-45deg);
	transform: translateY(-8px) rotate(-45deg);
	height: 3px;
	background-color: #fff;
}

.menuList{
	width:75%;
	height:100%;
	background:rgba(80,120,161,.90);
	position:fixed;
	top:0;
	left:100%;
	text-align:center;
}

.menuList ul{
	display:block;
	text-align:center;
	margin-top:17%;
	margin-left:15%;
}

.menuList ul li{
	text-align:left;
	font-size:1.6rem;
	margin-top:19px;
	position:relative;
}

.menuList ul li:first-chid{
	margin-top:0;
}

.menuList ul li span,
.menuList ul li a {
	position: relative;
	display: inline-block;
	transition: .3s;
	color:#fff;
}

.menuList ul ul{
	display: none;
	margin-top:0;
	margin-left:10px;
}

.menuList ul  ul li{
	margin-top:0px;
}

header nav li.app span,
header nav li.lang span{
	background:url(../images/nav_arrow_w.png) no-repeat right center;
	background-size:10px 7px;
	padding-right:15px;
}

header nav li.app ul a,
header nav li.lang ul a{
	background-image:none;
	padding-right:0;
	color:#fff;
	font-size:1.1rem;
	line-height:1.3em;
}

header .accountBtn{
	position:fixed;
	bottom:6%;
	width:70%;
	padding-left:5%;
	box-sizing:border-box;
	opacity:0;
}

header .accountBtn a{
	display:inline-block;
	padding:11px 0 8px;
	background:#99cc33;
	border-radius: 5px;
	line-height:1em;
	font-size:1.4rem;
	color:#fff;
	box-shadow:0px 2px 0px 0px #749d22;
	-moz-box-shadow:0px 2px 0px 0px #749d22;
	-webkit-box-shadow:0px 2px 0px 0px #749d22;
	width:100%;
	box-sizing:border-box;
	text-align:center;
	vertical-align:middle;
	transition: background-color .3s,box-shadow .3s;
}

#hero{
	width:100%;
}

#hero .innerBox{
	position:relative;
}

/*slick*/

.slick-prev,
.slick-next{
	display:none;
}

.slick-dots{
	position: absolute;
	bottom: 8px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.slick-dots li{
	position: relative;
	display: inline-block;
	width: 13px;
	height: 13px;
	margin: 0 10px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button{
	font-size: 0;
	line-height: 0;
	display: block;
	width: 13px;
	height: 13px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background:url(../images/hero_dot.png) no-repeat left top;
	background-size:13px;
	opacity:.5;
}

.slick-dots li button:hover,
.slick-dots li.slick-active button{
	opacity:1;
}
/*//slick*/

#app{
	background:url(../images/section_line.gif) repeat-x left top;
}

#app .appList > li{
	padding:35px 0;
	position:relative;
	overflow:hidden;
}

#app .appList > li::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 150%;
	height: 100%;
	margin: 30% -25% 0;
	background: #eef6fd;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(8deg);
	-ms-transform: rotate(8deg);
	transform: rotate(8deg);
	z-index: -1;
}

#app .appList > li:nth-child(even)::before{
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: rotate(-8deg);
	-ms-transform: rotate(-8deg);
	transform: rotate(-8deg);
}

#app .innerBox{
	padding:0 15px;
	margin:auto;
}

#app .innerBox .txtBox{
	width:100%;
}

#app .innerBox .capBox{
	width:100%;
}

#app .innerBox .txtBox h2{
	color:#344d65;
	font-size:1.8rem;
	padding-left:55px;
}

#app .thanks h2{
	background:url(../images/thanks_icon.png) no-repeat left center;
	background-size:45px;
	line-height:45px;
}

#app .daily h2{
	background:url(../images/daily_icon.png) no-repeat left center;
	background-size:45px;
	line-height:45px;
}

#app .message h2{
	background:url(../images/message_icon.png) no-repeat left center;
	background-size:45px;
	line-height:45px;
	line-height:1.5em;
}

#app .work h2{
	background:url(../images/work_icon.png) no-repeat left center;
	background-size:45px;
	line-height:45px;
	line-height:1.5em;
}

#app .innerBox .txtBox .comingsoon{
	margin-top:20px;
	text-align:center;
	background-color:#ccc;
	width:100%;
	color:#fff;
}

#app .innerBox .txtBox .forApp{
	margin-top:20px;
	display: -webkit-flex; /* Safari */
	display: flex;
}

#app .innerBox .txtBox .forApp li.apple{
	width:50%;
	text-align:right;
	padding-right:10px;
	box-sizing:border-box;
}

#app .innerBox .txtBox .forApp li.google{
	width:50%;
	text-align:left;
	padding-left:10px;
	box-sizing:border-box;
}

#app .innerBox .txtBox .forApp img{
	max-height:50px;
	height:auto;
	width:auto;
}

#app .innerBox .txtBox .forApp a{
	margin-right:10px;
}

#app .innerBox .txtBox .txt{
	margin-top:20px;
}

#app .innerBox .capBox ul{
	font-size:0;
	margin-top:30px;
}

#app .innerBox .capBox li{
	display:inline-block;
	width:50%;
	text-align:center;
	padding:0 10px;
	box-sizing:border-box;
}

#app .innerBox .capBox .detailBtn{
	margin-top:30px;
}

#app .innerBox .capBox .detailBtn a{
	display:inline-block;
	padding:15px 0 12px;
	background:#6699cc;
	border-radius: 5px;
	font-size:1.1rem;
	line-height:1em;
	color:#fff;
	box-shadow:0px 2px 0px 0px #5078a1;
	-moz-box-shadow:0px 2px 0px 0px #5078a1;
	-webkit-box-shadow:0px 2px 0px 0px #5078a1;
	width:100%;
	box-sizing:border-box;
	text-align:center;
	vertical-align:middle;
	margin-bottom:2px;
	transition: background-color .3s,box-shadow .3s;
}
/*
#app .innerBox .capBox .detailBtn a:hover{
	background:#5078a1;
	box-shadow:none;
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	margin-top:2px;
	margin-bottom:0;
}*/
#aboutFukuri{
	background:url(../images/section_line.gif) repeat-x left top;
}

#aboutFukuri .aboutList > li{
	padding:35px 0;
	position:relative;
	overflow:hidden;
}

#aboutFukuri .aboutList > li::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 150%;
	height: 100%;
	margin: 30% -25% 0;
	background: #eef6fd;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(8deg);
	-ms-transform: rotate(8deg);
	transform: rotate(8deg);
	z-index: -1;
}

#aboutFukuri .aboutList > li.function{
	padding:35px 0 25px;
}

#aboutFukuri .aboutList > li.function::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 150%;
	height: 100%;
	margin: 30% -25% 0;
	background: #eef6fd;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(8deg);
	-ms-transform: rotate(8deg);
	transform: rotate(8deg);
	z-index: -1;
}

#aboutFukuri .aboutList > li:nth-child(even)::before{
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: rotate(-8deg);
	-ms-transform: rotate(-8deg);
	transform: rotate(-8deg);
}

#aboutFukuri .aboutList > li{
	padding:35px 0;
	position:relative;
	overflow:hidden;
}

#aboutFukuri .innerBox{
	padding:0 15px;
	margin:auto;
}

#aboutFukuri .innerBox .txtBox h2{
	color:#344d65;
	font-size:2rem;
	line-height:1em;
	padding-left:30px;
	background:url(../images/about_icon.png) no-repeat left center;
	background-size:20px 18px;
}

#aboutFukuri .innerBox .txtBox h2 span{
	font-size:1.4rem;
	display:inline-block;
	margin-left:20px;
}

#aboutFukuri .innerBox .txtBox{
	width:100%;
	box-sizing:border-box;
}

#aboutFukuri .innerBox .txtBox .txt{
	margin-top:20px;
}

#aboutFukuri .innerBox .txtBox .accountBtn{
	margin-top:30px;
}

#aboutFukuri .innerBox .txtBox .accountBtn a{
	display:inline-block;
	padding:11px 0 8px;
	background:#99cc33;
	border-radius: 5px;
	line-height:1em;
	font-size:1.6rem;
	color:#fff;
	box-shadow:0px 2px 0px 0px #749d22;
	-moz-box-shadow:0px 2px 0px 0px #749d22;
	-webkit-box-shadow:0px 2px 0px 0px #749d22;
	width:100%;
	box-sizing:border-box;
	text-align:center;
	vertical-align:middle;
	transition: background-color .3s,box-shadow .3s;
}

#aboutFukuri .innerBox .functionBox{
	width:100%;
	margin-top:30px;
}

#aboutFukuri .innerBox .functionBox ul{
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:         wrap;
}

#aboutFukuri .innerBox .functionBox ul li{
	width:30%;
	margin-right:5%;
	margin-bottom:15px;
	color:#344d65;
	font-size:1rem;
	line-height:1.5em;
}

#aboutFukuri .innerBox .functionBox ul li:nth-child(3n){
	margin-right:0;
}

#aboutFukuri .innerBox .functionBox ul li .txt{
	margin-top:10px;
}

#aboutFukuri .innerBox .flowBox{
	width:100%;
	margin-top:30px;
}

#aboutFukuri .innerBox .flowBox ul{
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content:         space-between;
}

#aboutFukuri .innerBox .flowBox ul li{
	padding-right:5px;
}

#aboutFukuri .innerBox .flowBox ul li:last-child{
	padding-right:0;
}

#aboutFukuri .innerBox .flowBox ul li .txt{
	margin-top:10px;
	color:#344d65;
	font-size:1rem;
	line-height:1.5em;
	text-align:center;
}

#aboutFukuri .innerBox .priceBox{
	width:100%;
	margin-top:30px;
}

#aboutFukuri .innerBox .priceBox ul{
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-justify-content: space-between; /* Safari */
	justify-content:         space-between;
}

#aboutFukuri .innerBox .priceBox ul li{
	margin-right:10px;
}

#aboutFukuri .innerBox .priceBox ul li:last-child{
	margin-right:0;
}

#contact{
	background:url(../images/section_line.gif) repeat-x left top;
	padding:35px 0;
}

#contact .innerBox{
	padding:0 15px;
	margin:auto;
}

#contact .innerBox .txtBox{
	width:100%;
	box-sizing:border-box;
}

#contact .innerBox .txtBox h2{
	color:#344d65;
	font-size:2rem;
	line-height:1em;
	padding-left:30px;
	background:url(../images/about_icon.png) no-repeat left center;
	background-size:20px 18px;
}

#contact .innerBox .contactBox{
	width:100%;
	margin-top:20px;
}

#contact .innerBox .contactBox dt{
	width:100%;
	color:#344d65;
}

#contact .innerBox .contactBox dd{
	width:100%;
	margin-bottom:15px;
}

#contact .innerBox .contactBox dd input,
#contact .innerBox .contactBox dd textarea{
	border:2px solid #c6d6e6;
	box-sizing:border-box;
	width:100%;
	padding:7px 4px;
	font-size:1.6rem;
}

#contact .innerBox .contactBox dd textarea{
	height:100px;
}

#contact .innerBox .contactBox .contactBtn input{
	display:inline-block;
	padding:11px 0 8px;
	background:#6b6b6b;
	border-radius: 5px;
	border:0;
	line-height:1em;
	font-size:1.6rem;
	color:#fff;
	box-shadow:0px 2px 0px 0px #464646;
	-moz-box-shadow:0px 2px 0px 0px #464646;
	-webkit-box-shadow:0px 2px 0px 0px #464646;
	width:100%;
	box-sizing:border-box;
	text-align:center;
	vertical-align:middle;
	cursor:pointer;
	transition: background-color .3s,box-shadow .3s;
	margin-bottom:2px;
}
/*
#contact .innerBox .contactBox .contactBtn input:hover{
	background:#464646;
	box-shadow:none;
	-moz-box-shadow:none;
	-webkit-box-shadow:none;
	margin-top:2px;
	margin-bottom:0;
}*/

footer{
	background:#6699cc;
	padding:35px 0;
	font-size:1rem;
	color:#fff;
}

footer .innerBox{
	width:100%;
	margin:auto;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	padding:0 15px;
	box-sizing:border-box;
}

footer .footerId{
	-webkit-box-ordinal-group:0;
	-ms-flex-order:0;
	-webkit-order:0;
	order:0;
	width:100%;
}

footer .footerId{
	-webkit-box-ordinal-group:1;
	-ms-flex-order:1;
	-webkit-order:1;
	order:1;
	width:100%;
	margin-top:20px;
	text-align:center;
}

footer .footerId img{
	width:100px;
}

footer nav{
	-webkit-box-ordinal-group:0;
	-ms-flex-order:0;
	-webkit-order:0;
	order:0;
}

footer .innerBox .copyright{
	color:#fff;
	margin-top:5px;
}

footer nav{
	display: -webkit-flex; /* Safari */
	display: flex;
	width:100%;
}

footer nav ul{
	width:50%;
}

footer nav ul li{
	line-height:1.3em;
	margin-bottom:0.8em;
}

footer a:link{
	color:#fff;
	text-decoration:none;
}

footer a:visited{
	color:#fff;
	text-decoration:none;
}

footer a:hover{
	color:#fff;
	text-decoration:underline;
}

footer a:active{
	color:#fff;
	text-decoration:underline;
}