@charset "utf-8";
/* CSS Document */
/*<!--
水色00A0E9
紺004098
orangeEA5504
-->*/

*{box-sizing: border-box;}
body{
	font-family: "";
	background-color: #00A0E9;
	letter-spacing: .01em;
	line-height: 1.5;
}
img{width: 100%;}
a{
	color: #000;
	text-decoration: none;
	display: block;
}
a:hover{opacity: .8;}
.pc{display: block;}
.sp{display: none;}
.kome{font-size: 0.857em}
@media screen and (max-width: 768px) {
	.pc{display: none;}
	.sp{display: block;}
}
/*===============================

main content

===============================*/
.body{
	
	width: 100%;
	max-width: 384px;
	margin: 0 auto;
	
	
  font-family: "Roboto", "Noto Sans JP",sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

 }
.mv{
	border-right: 1px solid #5CC5F2;
	border-left: 1px solid #5CC5F2;
	position: relative;
}
.mv_ttl{
	position: absolute;
    top: 20%;
}
.logo{position: absolute;
    top: 20px;
    left: 5%;
	width: 75px;
}
.main{background-color: #fff;}
.sec01{
	padding: 40px 5%;
	margin: 0 auto 40px;
	background-color: #efefd2;text-align: center;
}
.sec01>div{
	padding: 30px 5%;
	border-radius: 10px;
	background-color: #fff;
	position: relative;
}
.sec01>div::before{
	content: "";
	background: url("../img/comingsoon.png") no-repeat center / cover;
	width: 65px;
	height: 65px;
	display: block;
	position: absolute;
	top: -20px;
	left: -2.5%;
}
h2{
	color: #00A0E9;
	font-size: 1.5em;
	margin-bottom: 10px;
}
footer{
	padding: 0 5% 20px;
	font-size: 0.875em;
}
footer em{
	display: block;
	font-weight: 600;
	margin-bottom: 15px;
}
footer p{
	margin-bottom: 20px;
}
footer>div{margin: 0 auto 50px;}
footer>span{
	display: block;
	margin-bottom: 20px;
}
.logo_f{
	width: 150px;
	margin: 0 auto 40px;
}
.textlink{
	color: #004098;
	text-decoration: underline;
	margin-bottom: 20px;
}
.btn{
	background-color: #EA5504;
	padding: 15px 40px 15px 25px;
	margin: 10px auto 0;
	text-align: center;
	font-weight: 600;
	color: #fff;
	border-radius: 30px;
}
@media screen and (max-width: 768px) {
	.btn{max-width: 320px;}
}
@media screen and (max-width: 500px) {.body{max-width: 100%;}}



.balloon{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
}
@media screen and (max-width: 500px) {
  body > img[src*="balloon"] {
    display: none !important;
  }
}
.animate-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease; 
}

.animate-zoom.is-show {
	animation: zoomIn 0.6s ease forwards;
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale(0.8);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}