@charset "UTF-8";

*{
  margin:0;
  padding: 0;
}

html {
    scroll-behavior: smooth;
}

body{
  font-family: 'M PLUS 1p', sans-serif;
  color: #595959;
  font-size: 1.5em;
}

header{
  height:130px;
  width: 100%;
  padding: 20px;
  position: fixed;
  top:0;
  display: flex;
  justify-content: space-between;
  z-index: 2;

}

header a img{
  display: block;
  width: 30%;
  padding: 10px;
}

header img{
  width: 100%;

}

.cta_btn{
  display: block;
  background: linear-gradient(90deg, rgba(138, 146, 255, 1) 0%, rgba(170, 0, 128, 1) 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  padding: 15px 20px;
  width: fit-content;
  text-align: right;
  border-radius: 4px;
  box-shadow: 4px 4px 7px 0px rgba(242,242,242,0.3) ;
  transition: 0.3s ease-in-out ;
  text-align: center;
  font-size: 1.1rem;
}

.cta_btn:hover{
  box-shadow: none;
	transform: translate(4px, 4px) ;
}

.cta_txt{
  font-size: 1.5rem;
}
.wrapper{
  width: 65%;
  margin: 300px auto 0;

}

.logo_area{
  height: 100vh;
  position: relative;
}

.logo_area img{
  width: 55%;
  display: block;
  margin: 0 auto 20px;

}


/*スクロールダウン全体の場所*/
.scrolldown{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
bottom:40%;
left:50%;
}

/*Scrollテキストの描写*/
.scrolldown span{
  /*描画位置*/
position: absolute;
left:10px;
bottom:10px;
  /*テキストの形状*/
color: #595959;
font-size: 1rem;
letter-spacing: 0.05em;
/*縦書き設定*/
-ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom:0;
  left:-4px;
  /*丸の形状*/
width:10px;
height:10px;
border-radius: 50%;
background:#595959;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
animation:
  circlemove 1.6s ease-in-out infinite,
  cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
    0%{bottom:75px;}
   100%{bottom:-5px;}
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
    0%{opacity:0}
   50%{opacity:1;}
  80%{opacity:0.9;}
100%{opacity:0;}
}

/* 線の描写 */
.scrolldown:after{
content:"";
  /*描画位置*/
position: absolute;
bottom:0;
left:0;
  /*線の形状*/
width:2px;
height: 80px;
background:#595959;
}



.txt{
  text-align: center;
  margin-top: 30px;
  color: #333;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.note{
  display: block;
  color: #fff;
  font-size: 0.8em;
  font-weight: bold;
  width: 65%;
  text-align: center;
  margin: 0 auto;
}

h1{
  display: inline-block;
  background: linear-gradient(90deg, rgba(138, 146, 255, 1) 0%, rgba(170, 0, 128, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  font-size: 1.8em;
  letter-spacing: 0.25em;
  font-weight: 700;
}

section{
  margin-bottom: 250px;
}


#about{
  display: flex;
  gap: 85px;
  align-items: center;
}

.about_right img{
  width: 100%;
}

h2{
  margin-bottom: 10px;
  font-size: 2.6em;
  display: inline-block;
  background: linear-gradient(90deg, rgba(138, 146, 255, 1) 0%, rgba(170, 0, 128, 1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Paytone One', sans-serif;
  letter-spacing: 0.07em;
}

h3{
  margin-bottom: 50px;
  font-size: 1.3em;
  letter-spacing: 0.07em;
}

.about_left p{
  letter-spacing: 0.15em;
  line-height: 1.8em;
}


.about_left{
  flex: 5;
}

.about_right{
  flex:3;
}

#structure{
  text-align: center;
}

#structure img{
  width: 100%;
  margin-top: 50px;
}

#feature{
  text-align: center;
}

.three_ftr{
  display: flex;
  justify-content: space-between;
}

.ftr_inner{
  background: linear-gradient(90deg, rgba(138, 146, 255, 1) 0%, rgba(170, 0, 128, 1) 100%);
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1em;
  margin-top: 50px;
}

.ftr_inner img{
  width: 25%;
  margin: 25px 0 20px;
}


.form_area{
  background: linear-gradient(90deg, rgba(138, 146, 255, 1) 0%, rgba(170, 0, 128, 1) 100%);
  padding: 100px 0;
  height: fit-content;
}

iframe{
  display: block;
  width: 70%;
  margin: 0 auto;
  overflow-x: hidden;
}

.form_inner{
  width: 65%;
  margin: 0 auto;
}

#form h2{
  background: initial;
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #fff;
  display: block;
  text-align: center;
  font-family: 'M PLUS 1p', sans-serif;
}

#form h3{
  color: #fff;
  text-align: center;
}


.no{
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  margin-right: 5px;
}



#footer{
  text-align: center;
  padding: 30px 0;
}

#footer a{
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.2em;

}

#privacy{
  width: 55%;
  margin:0 auto;
  padding:100px 0
}

#privacy h2{
  text-align: center;
  padding: 50px 0;
  background: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  font-size: 2em;
  display: block;
  text-align: center;
}

.set_date{
  padding: 30px 0;

}

.bold{
  font-weight: 700;
}

.back_btn{
  background: linear-gradient(90deg, rgba(138, 146, 255, 1) 0%, rgba(170, 0, 128, 1) 100%);
  color: #ffffff;
  font-weight: bold;
  border:none;
  font-size: 1.2em;
  padding: 5px 50px ;
  border-radius: 4px ;
  box-shadow: 4px 4px 5px 0px #f2f2f2 ;
  transition: 0.3s ease-in-out ;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin: 0 auto 100px;

}

.back_btn:hover{
  box-shadow: none;
	transform: translate(4px, 4px) ;
}

.desc{
  display: block;
  width: 90%;
  text-align: left;
  margin: 0 auto;
  color: #fff;
  line-height: 1.8em;
}

.finish_desc{
  display: block;
  width: 65%;
  text-align: center;
  margin: 0 auto;
  color: #595959;
  line-height: 1.8em;
  }


.desc_inner{
  display: block;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
}

.finish_wrapper{
  text-align: center;
  margin-top: 200px;
  position: relative;
  box-sizing: border-box;
  min-height: 100vh;
  
}

.finish_wrapper .desc{
  width: 50%;
  text-align: center;
}


.finish_wrapper #footer{
  position: absolute;
  bottom: 50px;
  width: 100%;
}

.finish_wrapper a{
  display: block;
}

.link_cpsite{
  background: linear-gradient(90deg, rgba(138, 146, 255, 1) 0%, rgba(170, 0, 128, 1) 100%);
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 4px 4px 5px 0px #f2f2f2;
  transition: 0.3s ease-in-out;
  margin-top: 20px;
}

.link_cpsite:hover{
  box-shadow: none;
	transform: translate(4px, 4px) ;
}

.sp_only{
  display: none;
}

.cut{
  display: block;
  width: 3%;
  margin: 0 auto 5px;
}

#recommend{
  text-align: center;
}

#recommend img{
  width: 100%;
}

#recommend ul{
  position: relative;
  text-align: left;
  width: fit-content;
  margin: 0 auto;

}

#recommend ul li{
  list-style-type: none;
  line-height: 2.5em;
  background-image:url(../img/check.png);
  background-position: top 50% left;
  background-size: 20px auto;
  padding-left: 40px;
}




.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:0.9s;
  animation-fill-mode:forwards;
  opacity:0;
  animation-delay: 0.4s;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }

  .top_delay{
    animation-delay: 1s;
  }

  /* 左から */

.fadeLeft{
  animation-name:fadeLeftAnime;
  animation-duration:0.9s;
  animation-fill-mode:forwards;
  opacity:0;
  animation-delay: 0.4s;
  }
  
  @keyframes fadeLeftAnime{
    from {
      opacity: 0;
    transform: translateX(-100px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }
  
  /* 右から */
  
  .fadeRight{
  animation-name:fadeRightAnime;
  animation-duration:0.9s;
  animation-fill-mode:forwards;
  opacity:0;
  animation-delay: 0.4s;
  }
  
  @keyframes fadeRightAnime{
    from {
      opacity: 0;
    transform: translateX(100px);
    }
  
    to {
      opacity: 1;
    transform: translateX(0);
    }
  }

  .fadeUpTrigger{
    opacity: 0;
  }

  .fadeRightTrigger{
    opacity: 0;
  }

  .fadeLeftTrigger{
    opacity: 0;
  }


  /* 文字アニメーション */
/* Loading画像中央配置　*/
/* #splash_logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
} */

/* Loading アイコンの大きさ設定　*/
/* #splash_logo svg{
width:300px;
}

/*========= SVG操作手書き風にするためのCSS ===============*/

/* #mask .st0{
  fill:none;
  stroke:#fff;
  stroke-width:90;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-miterlimit:10;
  stroke-dasharray: 1500;
  stroke-dashoffset:1500;
} */





/*メディアクエリ*/
/*================================================
Tablet 
==================================================*/
@media screen and (max-width: 1024px) {

  .wrapper{
    display: block;
    width: 80%;
  }

  .header a img{
    width: 25%;
  }
  .logo_area{
    margin: 150px 0 50px;
    height: 100vh;
  }

  .scrolldown{
    bottom: 10%;
  }

  .cta_btn{
    width: 25%;
  }

  .logo_area img{
    width: 70%;
  }

  h1{
    font-size: 1.8em;
  }

  .cta_txt{
    font-size: 1.3rem;
  }
  
  .cta_btm{
    font-size: 0.8em;
  }

  #about{
    display: block;
  }

  .about_right img{
    width: 65%;
    display: block;
    margin: 50px auto 0;
  }

  .ftr_inner{
    width: 14rem;
    height: 14rem;
    font-size: 0.8em;
  }

  .ftr_inner img{
    margin-bottom: 13px;
  }

  .form_area{
    margin-bottom: 50px;
  }

  .form_inner{
    width: 80%;
  }

  .desc{
    width: 100%;
  }
  .sp_only{
    display: none;
  }


  #privacy{
    width: 85%;
  }

  iframe{
    width: 100%;
  }
  
}

@media screen and (max-width: 830px) {
  .ftr_inner{
    width: 12rem;
    height: 12rem;
    font-size: 0.7em;
  }
}


/*================================================
Smartphone :  画面の横幅が640pxまで
=================================================*/
@media screen and (max-width: 599px) {

  body{
    font-size: 1.1em;
  }

  .logo_area{
    height: 100vh;
  }
  .logo_area img{
    width: 100%;
  }

  .wrapper{
    width: 95%;
    margin-top: 150px;
  }

  .logo_area img{
    width: 90%;
  }

  .cta_btn{
    width: 60%;
    margin: 30px auto;
  }

  h1{
    font-size: 1.2em;
  }

  h2{
    text-align: center;
  }

  h3{
    text-align: center;
    font-size: 1.2em;
  }

  .txt{
    width: 100%;
  }

  .cut{
    width: 5%;
  }

  header a img{
    display: none;
  }

header{
  justify-content: center;
  position: initial;
}

.scrolldown{
  bottom: 40%;
}

  .sp_only{
    display: block;
  }

  .three_ftr{
    margin-top: 50px;
    display: block;
  }
  
  .ftr_inner{
    margin: 0 auto 30px;
    font-size: 1em;
  }

  #privacy{
    width: 85%;
  }

  .finish_wrapper .desc{
    width: 85%;
  }

  .pc_only{
    display: none;
  }

  .form_inner{
    width: 95%;
  }

  #form h2{
    font-size: 2em;
  }

  .desc_inner{
    padding: initial;
  }




  #recommend ul li{
    line-height: 1.5em;
    margin-bottom: 20px;
  }

  iframe{
    width: 100%;
  }

  header{
    display: none;
  }

  .finish_desc{
    width: 90%;
  }
  }

