@charset "UTF-8";
/*////////////////////// common //////////////////////*/
html{
    font-size: 62.5%;
}
body{
    font-size:1.4rem;/* 14px*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 2;
	color:#333;
	text-align:justify;
	letter-spacing: 0.02em;
	background:#d60000;
	}
@media screen and (max-width: 640px) {/* 640px以下*/
    body{
    line-height: 1.6;
    }
}
/*-----  box-sizing -----*/
*, *: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;
	}

/*----- img -----*/
img{ width:100%; vertical-align:bottom; }

/*----- margin -----*/
.mb20{ margin-bottom:20px; }

/*----- contents -----*/
.contents{
	width:100%;
	overflow:hidden;
    -webkit-overflow-scrolling: touch;
	max-width:650px;
	margin:0 auto;
	}

.animated01 {
  animation: move-y 0.5s infinite alternate ease-in-out;
  display: inline-block;
}
@keyframes move-y {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
.animated02 {
  animation: move-z 0.5s infinite alternate ease-in-out;
  display: inline-block;
}
@keyframes move-z {
 from {
    transform: scale(0.9,0.9);
  }
 to {
    transform: scale(1,1);
}
}
.btn{
	width:60%; 
	margin:20px 20% 0 !important;
}
.arw{ 
margin:0 auto 20px;
}
footer{
	margin-top:35px;
	}
address{
	font-size:8px;
	font-weight:900;
	color:#FFF;
	text-align:center;
	padding:2px;
	background:#F00;
	}