@charset "utf-8";

/* ============================== */
/*
	Title: Minimal Landing Page Template
*/
/* ============================== */



/* ---------------------------------------------------------------------- */
/*	Import styles
/* ---------------------------------------------------------------------- */

/*Google Fonts: Open Sans*/
@import url("http://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600,300");

/* Fancybox Lightbox */
@import url("fancybox/jquery.fancybox.css");

/* CSS Animations */
@import url("animations/animate.css");





/* General -----------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, img, small, strong, ol, ul, li, form, label, table, caption, tr, td, footer, header {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

.youtuber{

}

@media screen and (max-width: 600px){
.youtuber {display:none}
}

footer, header, menu, nav, section {
	display: block;
}

* {
	font-family: 'Noto Sans JP';
}

body {
	line-height: 1;
	text-rendering: optimizeLegibility;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	background-color: #fff;
	font-size: 62.5%;	
	color: #818b92;
}

p {
	line-height: 1.6em;
}

ol, ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}
a:focus {
	outline: 0;
	text-decoration: none;
}
a {
	outline: 0;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
	color: #23313a;
	font-weight: bold;
	margin: 0.9em 0;
}

h2{
	font-size: 1.8em;
	color: #23313a;
}

h3{
	color: #222222;
}

[class^="icon-"], [class*=" icon-"] {
	background: none;
}

.no, hr {
	display: none !important;
}

section.generic {
	padding: 40px 0 0px 0;
}

nav a:hover,
nav a:focus {
	outline: none;
}

.title h1{
	text-transform: uppercase;
	color: #23313a;
	margin: 26px 0 20px 0;
}

.title p {
	margin: 0 0 60px 0;
}

.wrapp{
	margin: 0 auto 100px auto;
	width: 80%;
}

.divider {
	background: transparent url("../img/title-icon.png") center center no-repeat;
	width: 100%;
	display: block;
	height: 50px;
}



/* フォントサイズの変更------------------------------------------------------------------------------ */

/* ▼▼▼テキスト基本サイズ▼▼▼ */
p {
	font-size: 18px;
}

/* ▼▼▼各セクションのタイトル▼▼▼ */
.title h1 {
	font-size: 29px;
}

/* ▼▼▼informationセクションの中のコンテンツの見出し▼▼▼ */
.information h3 {
	font-size: 23px;
}

/* ▼▼▼囲い文字▼▼▼ */
.pricing_text_wapper p {
	font-size: 21px;
}

/* ▼▼▼ページ最下部お問い合わせボタン▼▼▼ */
.contact_btn a {
  font-size: 33px;
}

/* ▼▼▼お問い合わせボタンのフォントサイズを変更したあとマウスホバー時のテキストの位置がズレた場合はここを調整する▼▼▼ */
.contact_btn a:hover .btn_text {
	transform: translateX(-20px);
}

/* ▼▼▼お問い合わせボタンのフォントサイズを変更したあとボタンの大きさを変えたい場合はここを調整する▼▼▼ */
.contact_btn a {
	width: 300px;
	height: 60px;
}


/* ▼▼▼フッター内コピーライト▼▼▼ */
.footer p {
	font-size: 14px;
        background-color: #1d1e22;
}

/* フォントサイズの変更------------------------------------------------------------------------------ */




/* Main Menu ---------------------------*/
nav .navbar-inner{
	background: #1fb4da;
	border: none;
	padding: 20px 0;
}

.navbar .nav > li > a {
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	margin: 0 6px;
	outline: none;
	text-decoration: none;
	letter-spacing: 2px;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	padding: 0 15px;
	height: 45px;
	line-height: 45px;

}

.navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus {
	background: #1fb4da;
	box-shadow: none;
	color: #fff!important;
}


/* Effect: border switch */
.nav li a::before,
.nav li a::after {
	position: absolute;
	width: 45px;
	height: 2px;
	background: #fff;
	content: '';
	opacity: 0.2;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	pointer-events: none;
}

.nav li a::before {
	top: 0;
	left: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	transform-origin: 0 0;
}

.nav li a::after {
	right: 0;
	bottom: 0;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.nav li a:hover::before,
.nav li a:hover::after,
.nav li a:focus::before,
.nav li a:focus::after {
	opacity: 1;
}

.nav li a:hover::before,
.nav li a:focus::before {
	left: 50%;
	-webkit-transform: rotate(0deg) translateX(-50%);
	-moz-transform: rotate(0deg) translateX(-50%);
	transform: rotate(0deg) translateX(-50%);
}

.nav li a:hover::after,
.nav li a:focus::after {
	right: 50%;
	-webkit-transform: rotate(0deg) translateX(50%);
	-moz-transform: rotate(0deg) translateX(50%);
	transform: rotate(0deg) translateX(50%);
}
.navbar .nav > li > a:focus, .navbar .nav > li > a:hover {
	color: #fff;
}


/* Modal ------------------------------*/
.modal {
	width: 50%;
	margin: 10% auto 0 auto!important;
	left: 0;
	right: 0;
	float: none;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
}

.modal-header h3 {
	font-size: 2em;
}

.modal input, .modal textarea {
	width: 96%;
	font-family: 'Open Sans', sans-serif;
	padding: 15px 10px;
}

.modal .send {
	-webkit-border-radius: 2px; /* Safari & Chrome */
	-moz-border-radius: 2px; /* Firefox */
	-ms-border-radius: 2px; /* Internet Explorer */
	-o-border-radius: 2px; /* Opera */
	border-radius: 2px; /* W3C */	
	height: 35px;
	line-height: 20px;
	color: #fff;
	width: 20%;
	border: none;
	background:#1fb4da;
	padding: 6px 15px 12px 15px;
	font-weight: bold;
	line-height: 1;
	font-size: 1.6em;
}




/* Header ------------------------------*/
header {
	display: block;
	background: #1fb4da url("../img/slider-bg.png") bottom center repeat;
	padding:  130px 0 0 0;
	color: #fff;
}

header .logo {
	padding: 0 0 72px 0;
}

header .bigfigure img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: bottom;
}

header .video {
    margin:60px 20px 60px 0;
}

header h1 {
	font-size: 4.5em;
	line-height: 1.22em;
	color: #fff;
	font-weight: 200;
	margin: 50px 0 20px 10px;
}

header h3 {
	color: #fff;
	font-size: 1.8em;
	font-weight: 600;
        text-shadow: 0px 0px 3px #222222;
	line-height: 1.55em;
	margin-left: 10px;
}

header a.btn {
	color: #fff;
	border: 3px solid #8fdaed;
	background: #1fb4da;
	box-shadow: none;
	font-size: 1.7em;
	border-top-left-radius: 50px 50px;
	border-bottom-left-radius: 50px 50px;
	border-top-right-radius: 50px 50px;
	border-bottom-right-radius: 50px 50px;
	padding: 15px 32px; 
	margin: 5px 20px 5px 10px;
	text-shadow: none;
}

header .btn:hover, header .btn:focus {
	color: #fff;
	background: #1fb4da;
	border: 3px solid #8fdaed;
}
/* Vertical Background Animation */	
.BeanBGAnimate {
	-webkit-animation:BeanBGAnimate 10s infinite linear;
	   -moz-animation:BeanBGAnimate 10s infinite linear;
	    -ms-animation:BeanBGAnimate 10s infinite linear;
	     -o-animation:BeanBGAnimate 10s infinite linear;
	        animation:BeanBGAnimate 10s infinite linear;
}

@-webkit-keyframes BeanBGAnimate {
 	from 	{background-position:top center;}
 	to 		{background-position:bottom center;}
 	}
@-moz-keyframes BeanBGAnimate {
 	from 	{background-position:top center;}
 	to 		{background-position:bottom center;}
 	}
@-ms-keyframes BeanBGAnimate {
 	from 	{background-position:top center;}
 	to 		{background-position:bottom center;}
 	}
@-o-keyframes BeanBGAnimate {
 	from 	{background-position:top center;}
 	to 		{background-position:bottom center;}
 	}
@keyframes BeanBeanBGAnimate {
 	from 	{background-position:top center;}
 	to 		{background-position:bottom center;}
 	} 
 	
 	


/* Features ----------------------------*/
.features img {
	margin-right: 20px;
}

.features h2 {
	overflow: hidden;
	width: 100%;
	line-height: 100px;
}

.features .divider {
	background-position: center top;
}

.features .item {
	margin-bottom: 60px;
}



/* Extra -------------------------------*/
.extra{
	background: rgb(86,187,191);
	padding-bottom: 0!important;
}

.extra img{
	vertical-align: bottom;
}

.extra .accordion-heading {
	margin-top: 30px;
}

.extra .accordion-heading img{
	margin: 0 5px 0 0;
	vertical-align: -4px;
}

.extra .accordion-group {
	border: 0;
}

.extra .accordion-toggle {
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	padding: 0;	
}

.extra .accordion-inner {
	border:0;
	background: transparent url("../img/bottom-line.png") left bottom no-repeat;
	padding: 10px 0 15px 0;
}

.extra .accordion-inner p {
	color: #fff;
}


/* Information -------------------------*/
.information {
	padding: 70px 0 130px 0;
}
.information .divider {
	background-position: center -132px;
}

.information h3 {
	font-weight: 400;
	background: transparent url("../img/color-line.png") left bottom no-repeat;
	padding: 0 0 17px 0;
	margin-top: 0;
}

.information .box {
	margin-bottom: 80px;
}

.information img {
	-webkit-border-radius: 2px; /* Safari & Chrome */
	-moz-border-radius: 2px; /* Firefox */
	-ms-border-radius: 2px; /* Internet Explorer */
	-o-border-radius: 2px; /* Opera */
	border-radius: 2px; /* W3C */
}

.information .carousel-indicators {
	cursor: pointer;
}

.information a.btn {
	color: #1fb4da;
	border: 3px solid #1fb4da;
	font-weight: bold;
	font-size: 1.6em;
	background: transparent;
	box-shadow: none;
	text-shadow:none;
	border-top-left-radius: 50px 50px;
	border-bottom-left-radius: 50px 50px;
	border-top-right-radius: 50px 50px;
	border-bottom-right-radius: 50px 50px;
	padding: 15px 32px; 
	margin: 20px 0;
	
}

.information a.btn img {
	vertical-align: middle;
}



/* Testimonials ------------------------*/
.testimonials {
	background: #fff url("../img/testimonials-bg.jpg") repeat-x 0 0;
	color: #fff;
}

.testimonials .title h1 {
	color: #fff;
	margin: 85px 0 30px 0;
}

/* HORIZONTAL BACKGROUND ANIMATION */	
.BeanBGAnimateHori {
	-webkit-animation:BeanBGAnimateHori 25s infinite linear;
	   -moz-animation:BeanBGAnimateHori 25s infinite linear;
	    -ms-animation:BeanBGAnimateHori 25s infinite linear;
	     -o-animation:BeanBGAnimateHori 25s infinite linear;
	        animation:BeanBGAnimateHori 25s infinite linear;	
}

@-webkit-keyframes BeanBGAnimateHori {
 	from 	{background-position:0 0;}
 	to 		{background-position:100% 0;}
 	}
@-moz-keyframes BeanBGAnimateHori {
 	from 	{background-position:0 0;}
 	to 		{background-position:100% 0;}
 	}
@-ms-keyframes BeanBGAnimateHori {
 	from 	{background-position:0 0;}
 	to 		{background-position:100% 0;}
 	}
@-o-keyframes BeanBGAnimateHori {
 	from 	{background-position:0 0;}
 	to 		{background-position:100% 0;}
 	}
@keyframes BeanBGAnimateHori {
 	from 	{background-position:0 0;}
 	to 		{background-position:100% 0;}
 	} 

.testimonials blockquote {
	margin: 0px;
	padding: 20px;
	text-align: center;
	color: #fff;
	font-size: 1.4em;
	line-height: 2em;
	font-weight: normal;
	border: 0;
}

.testimonials blockquote cite {
	display: block;
	font-size: 18px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	margin: 15px 0 15px 0;
	text-transform: uppercase;
}

.testimonials .carousel-indicators {
	right: 48%;
	top:43%;
	cursor: pointer;
}

.testimonials img {
	border: 7px solid #fff;
	margin: 50px auto 0 auto;
}


/* Pricing Tables ----------------------*/

.pricing-img {
	width: 100%;
	margin: 0 auto;
}

.pricing-img img {
	width: 100%;
	margin-bottom: 56px;
}

.pricing-img {
	width: 100%;
	margin: 0 auto;
}

.pricing .divider {
	background-position: center -63px;
}

.three-tables {
	width: 33.10%;
	float: left;
	margin: 1px 0 0 -1px;
	position: relative;
}

.pricing_text_wapper {
	/*border: #1fb4da solid 1.5px;*/
        background-color: #EEFFEE;
	border-radius: 3px;
	padding: 16px;
	margin-top: 8px;
}





/* Logos -------------------------------*/
.logos {
	margin-top: 0;
}

.logos ul li img {
	background:#f5f5f6;
	border: 0;
	width: 100%;
	margin: 0 auto 10px auto;
}



/* Newsletter --------------------------*/
.newsletter {
	background:#1fb4da url("../img/newsletter-bg.png") center bottom no-repeat;
	color: #fff;
	text-align: center;
	padding: 20px 0 40px 0;
}

.newsletter .title h1 {
	color: #fff;
	margin: 50px 0 30px 0;
}

.newsletter .no {
	display: none;
}

.newsletter input {
	-webkit-border-radius: 2px; /* Safari & Chrome */
	-moz-border-radius: 2px; /* Firefox */
	-ms-border-radius: 2px; /* Internet Explorer */
	-o-border-radius: 2px; /* Opera */
	border-radius: 2px; /* W3C */	
	width: 25%;
	margin: 0 auto 30px auto;
	border: 0;
	padding: 10px 10px;

}

.newsletter .btn[type="submit"] {
	border: 3px solid #fff;
	border-top-left-radius: 50px 50px;
	border-bottom-left-radius: 50px 50px;
	border-top-right-radius: 50px 50px;
	border-bottom-right-radius: 50px 50px;
	color: #fff;
	font-weight: bold;
	font-size: 1.6em;
	margin: 20px auto;
	background: #1fb4da;
	text-shadow: none;
	display: block;
	padding: 12px 32px; 

}

.newsletter h4 {
	font-size: 1.3em;
	font-weight: 300;
	color: #fff;
}



/* Contact ---------------------------*/
.contact {
	background: rgb(33,33,33);
}

.contact_btn {
	padding: 80px 0px 80px 0px;
}

/* お問い合わせボタンのアニメーション早さ */
.contact_btn a,
.contact_btn a img,
.contact_btn a .btn_text {
	transition-duration: 0.3s;
}

.contact_btn a {
	color: #56BBBF;
	text-align: center;
	background: #fff;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.contact_btn a img {
	width: 40px;
	vertical-align: bottom;
	margin-right: 8px;
}

.contact_btn a:hover {
	background: #000;
}

.contact_btn a:hover img {
	transform: translateX(-20px);
	opacity: 0;
}

/* Footer ---------------------------*/
.footer {
	background: #1fb4da;
}

.footer p {
	text-align: center;
	color: #fff;
	padding: 32px 0 32px 0;
}









/* Go to top ------------------------------------*/
.scrollup {
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 80px;
	right: 30px;
	display: none;
	background: transparent url("../img/to-top.png") center center no-repeat;
}

.scrollup i {
	color: #fff;
	text-align: center;
	display: block;
	line-height: 48px;
	font-size: 20px;
}

.scrollup:hover { 
	opacity: 0.7;
}





img.appstore  {
     margin : 5px ;
     padding : 5px ;
} 




ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: #9ca3af;
  text-decoration: none;
}

a:hover {
  color: #fff;
}

.flex {
  display: flex;
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #35363b;
}

.footer {
  padding: 2rem;
  font-size: 15px;
  color: #9ca3af;
  background: #1d1e22;
}

.footer__navi {
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__navi li {
  display: inline-block;
}

.footer__navi li:not(:last-child) {
  margin-right: 16px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }

  .md-justify-between {
    justify-content: space-between;
  }

  .copyright {
    text-align: left;
  }
}

okinawa{
text-align: center;
}

strong{
font-weight:bold
}


p.pokinawa{
line-height: 0.8em !important;
}
