@charset "utf-8";
html, body {
	height: 100%;
}
body {
	background: #fff;
	color: #152b3c;
	font: 16px/1.7 Arial, "游ゴシック", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ＭＳ ゴシック", "MS PGothic", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
#wrapper {
	overflow: hidden;
}
#HOME {
	display: flex;
	justify-content: center;
	align-items: center;
}
h1 {
	width: 100%;
	height: auto;
	font-size: 32px;
	letter-spacing: .1em;
	line-height: 1.3;
	text-align: center;
	margin: 0 auto;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0,171,169,0.8);
}
h1 span.eng {
	display: inline-block;
	width: 100%;
	font-size: 100px;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	letter-spacing: 0em;
	position: relative;
}
.eng span {
	display: inline-block;
	transition: all .5s;
}
.eng span {
	animation: moveTitle .3s ease-in-out both;
}
.eng span:first-child {
	animation: moveTitle2 .5s ease-in-out both;
	animation-delay: .1s;
}
.eng span:nth-child(2) {
	animation-delay: .3s;
}
.eng span:nth-child(3) {
	animation-delay: .35s;
}
.eng span:nth-child(4) {
	animation-delay: .4s;
}
.eng span:nth-child(5) {
	animation-delay: .45s;
}
.eng span:nth-child(6) {
	animation: moveTitle2 .5s ease-in-out both;
	animation-delay: .6s;
}
.eng span:nth-child(7) {
	animation-delay: .85s;
}
.eng span:nth-child(8) {
	animation-delay: .9s;
}
.eng span:nth-child(9) {
	animation-delay: .95s;
}
.eng span:nth-child(10) {
	animation-delay: 1s;
}
.eng span:nth-child(11) {
	animation-delay: 1.05s;
}
h1 span.ja {
	font-weight: bold;
	position: relative;
	animation: moveTitle .5s 1.2s ease-in-out both;
}
h1 span.ja:before, h1 span.ja:after {
	display: block;
	content: "";
	width: 60px;
	height: 2px;
	box-shadow: 0 1px 3px rgba(0,171,169,0.8);
	background: #fff;
	position: absolute;
	top: 18px;
}
h1 span.ja:before {
	left: -70px;
}
h1 span.ja:after {
	right: -70px;
}
 @keyframes moveTitle {
 0% {
 opacity:0;
}
 100% {
 opacity:1;
}
}
@keyframes moveTitle2 {
	0% {
		-webkit-transform:scale(1.2);
		transform:scale(1.2);
		opacity:0;
	}
	100% {
		-webkit-transform:scale(1);
		transform:scale(1);
		opacity:1;
	}
}
h2 {
	width: 95%;
	max-width: 1000px;
	font-weight: 300;
	font-size: 32px;
	font-family: 'Source Sans Pro', sans-serif;
	padding: 0 100px;
	margin: 0 auto;
	border: 1px solid rgba(0,0,0,0.3);
	box-sizing: border-box;
}
h3 {
	font-size: 200%;
	margin-bottom: 0.5em;
}
nav {
	font-family: 'Source Sans Pro', sans-serif;
	margin: 0 auto;
	width: 100%;
	background: #00ABA9;
	opacity: 0.9;
	position: relative;
	z-index: 99;
	overflow: hidden;
}
#menuBtn {
	display: none;
}
nav ul {
	width: 400px;
	margin-right: 50px;
	float: right;
}
nav li {
	list-style: none;
	float: left;
	width: 25%;
	text-align: center;
}
nav li a {
	display: block;
	text-decoration: none;
	color: #fff;
	height: 51px;
	line-height: 51px;
	text-align: center;
	border-bottom: 2px solid transparent;
	transition: all .5s ease;
	position: relative;
}
nav li a:hover {
	opacity: .6;
	border-color: #fff;
}
nav li a:hover:after {
	transform: scale(1);
}
nav.fixed {
	position: fixed;
	top: 0;
	left: 0;
	border-radius: 1px;
	box-shadow: 0 0px 8px rgba(0,0,0,0.5);
	z-index: 99;
}
p {
	margin-bottom: 1em;
}
.section {
	background: #fff;
	margin: 0 auto;
	padding-top: 72px;
	width: 100%;
	min-height: calc(100vh - 53px);
	text-align: center;
	position: relative;
}
#page-top {
	background: #fff;
	color: #fff;
	width: 40px;
	height: 40px;
	border: 3px solid #00ABA9;
	text-align: center;
	border-radius: 100%;
	box-shadow: 0 1px 5px rgba(0,0,0,0.1) inset, 0 7px 10px -3px rgba(0,0,0,0.2);
	position: fixed;
	bottom: 18px;
	right: 18px;
	z-index: 100;
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: all .3s cubic-bezier(.18, 0, .8, 1.78);
	overflow: hidden;
	cursor: pointer;
}
#page-top.show {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#page-top:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
#page-top::after {
	content: "";
	position: absolute;
	top: calc(50% - 5px);
	left: calc(50% - 7px);
	width: 10px;
	height: 10px;
	border-top: 3px solid #00ABA9;
	border-left: 3px solid #00ABA9;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#page-top a {
	display: block;
	width: 100%;
	height: auto;
	text-decoration: none;
	color: #fff;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.logo {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.logo img {
	position: fixed;
	top: 8px;
	left: 5%;
	width: 180px;
	z-index: 1000;
}
.page {
	padding: 64px 0 80px;
	margin: 0 auto;
}
#HOME {
	background: #88ffea;
	background: linear-gradient(150deg, #9bd6ee 30%, #88ffea 100%);
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 2;
}
.mouse {
	width: 40px;
	height: 56px;
	border-radius: 40px;
	border: 3px solid #fff;
	position: absolute;
	bottom: 30px;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	box-shadow: 0 1px 5px rgba(0,0,0,0.1) inset, 0 7px 10px -3px rgba(0,0,0,0.2);
	transition: all .3s ease-in-out;
}
.arrow {
	content: "";
	width: 10px;
	height: 10px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 15px;
	left: 12px;
	animation: bounce 2s ease-in-out infinite;
}
.mouse:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.page_arrow {
	width: 100px;
	height: 40px;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -50px;
}
.page_arrow::after {
	content: "";
	width: 10px;
	height: 10px;
	border-left: 3px solid #00ABA9;
	border-bottom: 3px solid #00ABA9;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -5px;
}
 @keyframes changeColor {
	0% {
		background-position:0% 50%;
	}
	50% {
		background-position:50% 100%;
	}
	100% {
		background-position:0% 50%;
	}
}
 @keyframes bounce {
	0% {
		-webkit-transform:translateY(-30px) rotate(-45deg);
		transform:translateY(-30px) rotate(-45deg);
	}
	50% {
		-webkit-transform:translateY(5px) rotate(-45deg);
		transform:translateY(5px) rotate(-45deg);
	}
	100% {
		-webkit-transform:translateY(35px) rotate(-45deg);
		transform:translateY(35px) rotate(-45deg);
	}
}
.page {
	opacity: 0;
	-webkit-transform: translate(0, 10px) scale(1.1);
	transform: translate(0, 10px) scale(1.1);
	transition: all .7s .2s ease;
}
.page.show {
	visibility: visible !important;
	opacity: 1;
	-webkit-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1);
}
.aboutInner {
	width: 95%;
	max-width: 1000px;
	margin: 0 auto;
}
#about {
	background: url(../images/power.png) center center / cover no-repeat fixed;
}
#SERVICES {
	background: #fff;
}
#ACCESS {
	background: #efefef;
}
.p_iphone {
	max-width: 647px;
	margin: 0 auto;
	text-align: center;
}
.p_iphone img {
	width: 95%;
	height: auto;
}
#ACCESS .page {
	padding-bottom: 40px;
}
#ACCESS.section {
	min-height: calc(100vh - 103px);
}
#page_map {
	position: relative;
	padding-bottom: 40%;
	height: 0;
	overflow: hidden;
}
#page_map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
#mapCanvas {
	width: 100%;
	height: 500px;
}
.copy {
	width: 900px;
	margin: 0 auto;
	display: block;
	bottom: 0;
}
li {
	list-style: none;
}
dl {
	text-align: left;
	line-height: 30px;
	border-top: 1px solid #ababab;
	padding-top: 15px;
}
dl:last-child {
	border-bottom: 1px solid #ababab;
}
dt {
	float: left;
	width: 20%;
	padding-left: 50px;
}
dd {
	float: left;
	width: 80%;
	padding-left: 50px;
	margin-bottom: .8em;
}
footer {
	height: 50px;
	line-height: 50px;
	background: #efefef;
	text-align: center;
	position: relative;
}
 @media screen and (max-width: 799px) {
nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	transition: all .3s cubic-bezier(.15, -0.03, .25, 1.37);
}
nav.opend {
	height: calc(40vh + 70px);
}
nav ul {
	margin: 0;
}
nav li a {
	border: none;
}
nav li a:after {
	display: none;
}
#overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 120vh;
	visibility: hidden;
	background: rgba(0,0,0,0.5);
	cursor: default;
	z-index: 2;
	transition: all .3s cubic-bezier(.15, -0.03, .25, 1.37);
}
#overlay.opend {
	visibility: visible;
}
nav ul {
	display: none;
}
nav.opend ul {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 40vh;
}
nav.opend li {
	width: 100%;
	height: 25%;
	float: none;
}
nav.opend li a {
	width: 100%;
	height: 100%;
	padding: 0;
	line-height: 10vh;
}
#menuBtn {
	display: block;
	width: 100%;
	height: 70px;
}
#menuBtn span {
	display: block;
	width: 36px;
	height: 0;
	padding-top: 2px;
	white-space: nowrap;
	overflow: hidden;
	background: #fff;
	position: absolute;
	top: 22px;
	right: 2.5%;
	z-index: 1000;
	transition: all .3s ease;
}
#menuBtn:before, #menuBtn:after {
	display: block;
	content: "";
	width: 36px;
	height: 2px;
	background: #fff;
	position: absolute;
	right: 2.5%;
	z-index: 1000;
	transition: all .3s ease;
}
#menuBtn:before {
	top: 33px;
}
#menuBtn:after {
	top: 44px;
}
.opend #menuBtn:before {
	opacity: 0;
}
.opend #menuBtn span {
	-webkit-transform: translateY(11px) rotate(45deg);
	transform: translateY(11px) rotate(45deg);
}
.opend #menuBtn:after {
	-webkit-transform: translateY(-11px) rotate(135deg);
	transform: translateY(-11px) rotate(135deg);
}
.logo img {
	top: 10px;
	left: 2.5%;
	margin-left: 0;
	width: 100px;
	height: auto;
}
h1 {
	font-size: 24px;
}
h1 span.eng {
	font-size: 72px;
}
h1 span.ja:before, h1 span.ja:after {
	width: 60px;
	top: 12px;
}
h1 span.ja:before {
	left: -70px;
}
h1 span.ja:after {
	right: -70px;
}
.mouse {
	bottom: 5%;
}
.section {
	min-height: calc(100vh - 70px);
	padding-top: 56px;
}
h2 {
	width: 95%;
	padding: 0;
}
.page {
	padding: 40px 0 72px;
}
#about {
	background: url(../images/power_sp.png) top center;
	background-size: cover;
}
.aboutInner {
	max-width: 95%;
	width: 95%;
}
dl {
	line-height: 2;
}
dt, dd {
	float: none;
	width: 100%;
	padding:0 5%;
}
#ACCESS.section {
	min-height: calc(100vh - 120px);
}
.page-map {
	position: relative;
	padding: 0;
	height: 0;
	overflow: hidden;
}
#page_map {
	padding-bottom: 80%;
}
#page_map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}
}
 @media screen and (max-width: 599px) {
h1 {
	font-size: 18px;
}
h1 span.eng {
	font-size: 42px;
}
h1 span.ja:before, h1 span.ja:after {
	width: 28px;
	top: 8px;
}
h1 span.ja:before {
	left: -34px;
}
h1 span.ja:after {
	right: -34px;
}
.section {
	padding-top: 40px;
}
#ACCESS.section {
	min-height: calc(100vh - 170px);
}
footer {
	height: 100px;
	padding-bottom: 50px;
}
#page-top, #page-top.show {
	position: relative;
	bottom: 0;
	right: 0;
	width: 100%;
}
#page-top {
	font-size: 10px;
	background: #00ABA9;
	height: 50px;
	padding-top: 5px;
	opacity: 1;
	border-radius: 0;
	overflow: visible;
}
#page-top:hover {
	-webkit-transform: scale(1);
	transform: scale(1);
}
#page-top::after {
	top: 10px;
	border-color: #fff;
}
}
