@charset "UTF-8";

body,header,main,p{
  margin: 0;
  padding: 0;
}
body{
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  line-height: 1.5;
  word-spacing: 0;
}
img {
  max-width:100%;
  height: auto;
}
a {
  color: #006ebd;
  display: inline-block;
  text-decoration:none;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgba(243,10,73,11) 50%);
  background-position: 0 0;
  background-size: 200% auto;
  transition: .5s;
}
a:hover{
  background-position: -100% 0;
  color: #fff;
}
.dl_btn a:hover{
  background: none;
}
ul{
  margin:10px;
}
li{
  margin-bottom:0.5em;
}
.pconly{
  display: inline-block;
}
.pconly_block{
  display: block;
}
.sponly,.sponly_block{
  display: none;
}
.pc_nolink{
  cursor:default;
  pointer-events: none;
}

/* effect
-------------------------------------*/
/* キラン ---------------*/
.animationbox.kiran {
  opacity: 1;
  overflow: hidden;
  position: relative;
/*  cursor: pointer;*/
}
.animationbox.kiran::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}
.animationbox.kiran:hover::before {
  animation: kiran 0.5s linear 1;
}
 
@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* フェードアップ ---------------*/
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定 */
.fadeup_trigger{
    opacity: 0;
}

/*メイン
-------------------------------------*/
.container{
  background: #fff;
  margin: 0 auto;
  max-width: 750px;
}
main{
  background: #fff;
}

/*ヘッダー
-------------------------------------*/
header, h1{
  margin: 0;
  padding: 0;
  background: #10a8b3;
}

/*メインコンテンツ
-------------------------------------*/
section {
}
h2{
  font-size: 1.8rem;
  background: #10a8b3;
  color:#fff;
  padding: 10px;
  text-align: center;
  font-weight: normal;
  margin-top: 4rem;
}
.center {
  text-align: center;
}
.catch{
  margin: 2rem;
}
.catch p{
  line-height: 2.4rem;
  font-size: 1.4rem;
}
.catch2 p{
  margin: 0 2rem;
  line-height: 2rem;
}

/* フロー
-------------------------------------*/
.flow {
  margin-bottom: 3rem;
  margin-top: 1rem;
  display: flex;
}
.flow_step_head{
  background: #f30a49;
  border-radius: 7px;
  color: #fff;
  text-align: center;
  min-width: 160px;
  height: 40px;
  letter-spacing: 3px;
  font-weight: 700;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2em;
  margin-right: 30px;
}
.flow_step_txt{
  width: auto;
  font-size: 1.3em;
  min-height: 30px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-top: -5px;
}
.flow_step_line{
  margin: 30px 0;
}
.frame{
  border-radius: 10px;
  border:4px solid #f05a27;
  padding: 10px 10px;
}
p.flow_allow{
  text-align: center;
  margin: 20px; 
}
p.flow_allow img{
  width:100px;
}
.dl_btn{
  margin:2rem 0 1rem;
  display: flex;
  justify-content: space-around;
}
.dl_btn p{
  align-content: center;
}
.dl_btn p.applestore{
  margin-left: 3rem;
}
.dl_btn_img{
}
.dl_btn_area {
  display: none;
  padding: 10px;
  margin-bottom:10px;;
  text-align:center;
  color:#333;
}
.dl_btn_area p{
  display:inline;
  background:linear-gradient(transparent 80%, #fffca0 80%);
}


/*フッター
-------------------------------------*/
footer {
  background-color: #fff;
  padding: 1rem 0 0;
  margin-top: 4rem;
}
.copyright {
  text-align: center;
  padding: 1rem 0;
  background-color: #d80c18;
  color: #fff;
}


/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop{
  width: 70px;
  height: 70px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #10a8b5;
  opacity: 1;
  border-radius: 50%;
  border:3px solid #fff;
}
#pagetop a{
  width: 70px;
  height: 70px;
  position: relative;
  display: block;
  text-decoration: none;
  text-align: center;
  border-radius: 50%;
}
#pagetop a:hover{
  background-position: 0 0;
  background: #f30a49;
  color: #fff;
}
#pagetop a::before{
  font-family: "Font Awesome 5 Free";
  content: '\f106';
  font-weight: 900;
  font-size: 50px;
  color: #fff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: -4px;
  left: 15px;
  margin: auto;
}

/* 幅667px以下の表示
-------------------------------------*/
@media screen and (min-width: 667px){


}
/* 幅550px以下の表示
-------------------------------------*/
@media screen and (max-width: 550px){
  body{
    font-size: 1.2rem;
  }
  .pconly,.pconly_block{
    display: none;
  }
  .sponly{
    display: inline-block;
  }
  .sponly_block{
    display: block;
  }
  a {
    color: #006ebd;
    display: inline-block;
    text-decoration:none;
    background: none;
  }
  a:hover{
    background: none;
    color:#10a8b5;
  }
  h2{
    font-size: 1.5rem;
  }
  .catch{
    margin: 20px;
  }
  .catch p{
    font-size: 1.1rem;
    line-height: 1.5em;
  }
  .catch2 p{
    margin: 20px;
    line-height: 1.7em;
    font-size: 1rem;
  }
  .flow_step_head{
    min-width: 110px;
    height: 40px;
    margin-left: 5px;
    margin-right: 10px;
  } 
  .flow_step_txt{
    width: auto;
    font-size: 1em;
    min-height: 30px;
    font-weight: bold;
  }
  .dl_btn{
    margin:2rem 10px;
    display: block;
  }
  .dl_btn div{
    text-align: center;
  }
  .dl_btn p{
    margin:10px;
  }
	.dl_btn p.applestore {
     margin-left: 0;
	}
  .dl_btn div img{
    max-height:70px;
  }

  
  .copyright {
    font-size: 0.9rem;
  }

}