@charset "UTF-8";


img{
  width: 100%;
}

a{
  color: inherit;
  transition: opacity 0.3s;
}

a:hover{
  opacity: 0.8;
}

body{
  font-size: 14px;
  color: #2A3831;
  font-family: 'Noto Sans JP', 'Open Sans', sans-serif, 'Raleway';
  letter-spacing: 2px;
  line-height: 2em;
}

/*----------------パソコン版----------------------------*/

/* header */
header{
  width: 100%;
  position: absolute;
  z-index: 1;
}



/* ------------------------- */


.btn_nav{
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.btn_nav span{
  position: absolute;
  width: 100%;
  height: 4px;
  background: #F6EDE0;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.btn_nav span:nth-child(1) {
  top: 0;
}

.btn_nav span:nth-child(2) {
  top: 10px;
}

.btn_nav span:nth-child(3) {
  top: 20px;
}

.btn_nav.open span:nth-child(1) {
  background-color: #F6EDE0;
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.btn_nav.open span:nth-child(2),
.btn_nav.open span:nth-child(3) {
  top: 6px;
  background-color: #F6EDE0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* ----------------------- */
.header{
  position: fixed;
  background-color: #87B2C3;
}

.header_tit{
  width: 253px;
  height: 60px; 
}

.header_container{
  width: 1200px;
  height: 70px;
  margin: 0 auto;
  align-items: center;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0;
  font-family: 'Raleway';
}

.header_nav_list{
  display: flex;
  color: #F6EDE0;
  font-size: 24px;
}

.header_nav_list_item{
  margin-right: 40px;
  line-height: 50px;
}

.header_nav_list_item:last-child{
  margin-right: 0;
}




/* main */

main{
  width: 100%;
}

.top_tit{
  font-size: 70px;
  line-height: 1em;
  font-family: 'Raleway';
  color: #FFFFFF;
  text-shadow: 3px 3px 0 #ED8F9F,
  -3px 3px 0 #ED8F9F,
  3px -3px 0 #ED8F9F,
  -3px -3px 0 #ED8F9F;
}

.top_link{
  width: 280px;
  height: 70px;
  margin: 80px auto 0;
  background-color: #F6EDE0;
  border-radius: 0 25px;
  font-family: 'Raleway';
  font-size: 30px;
  color: #707070;
  line-height: 70px;
  text-align: center;
}

/* じわっ */
@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  }

  to {
  filter: blur(0);
  transform: scale(1);
  }
}

/* fv */

.top_fv{
  width: 100%;
  height: 800px;
  background: transparent linear-gradient(180deg, var(--unnamed-color-87b2c3) 0%, var(--unnamed-color-ffffff) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #87B2C3 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  opacity: 1;
}

.top_fv_container{
  position: relative;
  width: 1200px;
  margin: 0 auto;
  z-index: 0;

  /* ぼかしから出現 */
  animation-name:blurAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
}

.top_fv_img{
  position: absolute;
  top: 100px;
  left: 0;
  width: 600px;
  z-index: 1;
}

.top_chara{
  position: absolute;
  top: 70px;
  right: -100px;
  width: 780px;
}



/* about */

.top_about{
  position: absolute;
  top: 900px;
  width: 100%;
  background-image: url(../img/pass_1.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}

.top_about_container{
  width: 900px;
  margin: 0 auto 200px;
}

.top_about_tit{
  margin-bottom: 80px;
  padding-top: 80px;
}

.top_about_list_box_1, .top_about_list_box_2{
  display: flex;
  justify-content: space-between;
}

.top_about_list_box_2{
  flex-direction: row-reverse;
}

.top_about_list_text{
  width: 350px;
  margin: auto;
}

.top_about_list_img{
  width: 450px;
}



/* works */

.top_works{
  position: absolute;
  top: 2000px;
  width: 100%;
  background-image: url(../img/pass_2.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.top_works_container{
  width: 900px;
  margin: 0 auto 150px;
}

.top_works_tit{
  margin-bottom: 80px;
  padding-top: 120px;
}

.works_img_box{
  display: flex;
  margin-bottom: 60px;
}

.works_img{
  width: 225px;
}

.top_works_list_img{
  width: 450px;
}



/* members */

.top_members{
  position: absolute;
  top: 2950px;
  width: 100%;
  background-image: url(../img/pass_3.png);
  background-repeat: no-repeat;
  background-size: 100%;
  transform: scale(-1, 1);
}

.top_members_container{
  width: 900px;
  margin: 0 auto 250px;
  transform: scale(-1, 1);
}

.top_members_tit{
  margin-bottom: 80px;
  padding-top: 250px;
}

.members_img_box{
  display: flex;
}

.members_img{
  width: 500px;
}

.top_members_text{
  width: 350px;
  margin: auto;
}



/* contact */

.top_contact{
  position: absolute;
  top: 4255px;
  width: 100%;
  background: transparent linear-gradient(180deg, var(--unnamed-color-ffffff) 0%, var(--unnamed-color-87b2c3) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #FFFFFF 0%, #87B2C3 100%) 0% 0% no-repeat padding-box;
}

.top_contact_incontainer{
  width: 100%;
  background-image: url(../img/pass_4.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.top_contact_container{
  width: 900px;
  margin: 0 auto 250px;
}

.top_contact_tit{
  padding-top: 100px;
}

.top_contact_box{
  border-radius: 0 20px;
  background: transparent linear-gradient(180deg, var(--unnamed-color-f6ede0) 0%, #FFFDFA 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #F6EDE0 0%, #FFFDFA 100%) 0% 0% no-repeat padding-box;
  opacity: 0.9;
  position: relative;
  width: 720px;
  height: 200px;
  padding: 50px;
  margin-top: 70px;
}

.top_contact_text{
  text-align: center;
}

.icon_box{
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.top_contact_twitter_icon{
  width: 100px;
}

.top_contact_fb_icon{
  width: 100px;
  margin-left: 60px;
}

.top_contact_chara{
  position: absolute;
  width: 250px;
  top: 150px;
  right: -100px;
}

.top_contact_bubble_container{
  position: absolute;
  top: 50px;
  right: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_contact_bubble{
  width: 250px;
  position: absolute;
  transform: scale(-1, 1);
}

.bubble_text{
  position: absolute;
  font-size: 24px;
  font-family: 'Raleway';
  color: #707070;
  white-space: nowrap;
  top: -20px;
}

/* footer */

footer{
  top: 4950px;
  position: absolute;
  background-color: #707070;
  width: 100%;
  height: 300px;
  color: #F6EDE0;
}

.footer_tit{
  width: 230px;
  margin: 80px auto 0;
}

.footer_cr{
  font-family: 'Raleway';
  text-align: center;
}


/*----------------------タブレット版----------------------------*/

@media ((min-width: 501px) and (max-width: 1140px)) {

  body{
    font-size: 14px;
    line-height: 1.5em;
  }

  /* header */

  
  .header_container{
    width: 500px;
    justify-content: center;
  }
  
  
  /* ----------------------- */
  .btn_nav{
    display: block;
  }
  
  .header_nav{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(227, 164, 175, 0.8);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 3;
    padding-top: 50px;
    transition: 0.3s;
  }
  
  .header_nav.open {
    right: 0;
  }
  
  .header_nav .header_nav_list{
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
  }
  
  .header_nav .header_nav_list_item{
    width: 86%;
    padding: 15px;
    border-bottom: #F6EDE0 2px solid;
  }
  
  
  /* --------------------- */
  
  

  /* main */
  .top_tit{
    font-size: 60px;
  }

  .top_link{
    width: 150px;
    height: 50px;
    margin: 60px auto 0;
    background-color: #F6EDE0;
    border-radius: 0 15px;
    font-size: 20px;
    color: #707070;
    line-height: 50px;
  }

  /* fv */

  .top_fv_container{
    width: 500px;
  }

  .top_fv_img{
    top: 10px;
    left: -120px;
    width: 500px;
    z-index: 1;
  }
  
  .top_chara{
    top: 300px;
    right: -130px;
    width: 600px;
  }

  /* about */

  .top_about{
    top: 1050px;
  }

  .top_about_container{
    width: 500px;
    margin-bottom: 100px;
  }

  .top_about_tit{
    padding-top: 70px;
  }

  .top_about_list_text{
    width: 200px;
    margin: auto;
  }

  .top_about_list_img{
    width: 250px;
  }

  /* works */

  .top_works{
    top: 1810px;
  }
  
  .top_works_container{
    width: 500px;
    margin-bottom: 50px;
  }

  .top_works_tit{
    padding-top: 50px;
  }

  .works_img_box{
    flex-wrap: wrap;
  }

  .works_img{
    width: 250px;
  }


  
  /* members */

  .top_members{
    top: 2850px;
  }

  .top_members_container{
    width: 500px;
    margin-bottom: 100px;
  }

  .top_members_tit{
    padding-top: 130px;
  }

  .members_img_box{
    display: block;
  }

  .top_members_text{
    width: 500px;
    margin-top: 40px;
  }

  /* contact */

  .top_contact{
    top: 3900px;
  }

  .top_contact_container{
    width: 500px;
    margin-bottom: 150px;
  }
  
  .top_contact_tit{
    padding-top: 50px;
  }

  .top_contact_box{
    width: 350px;
    height: 150px;
  }

  .top_contact_twitter_icon{
    width: 60px;
  }

  .top_contact_fb_icon{
    width: 60px;
    margin-left: 30px;
  }

  /* footer */
  footer{
    top: 4480px;
  }
}



/*-----------------------スマホ版-------------------------------*/

@media (max-width: 500px) {

  body{
    font-size: 14px;
  }

  /* header */
  
  .header_tit{
    width: 200px;
  }
  
  .header_container{
    width: 350px;
    height: 60px;
    justify-content: center;
  }
  

  
  /* ----------------------- */
  .btn_nav{
    display: block;
  }
  
  .header_nav{
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(227, 164, 175, 0.8);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 3;
    padding-top: 50px;
    transition: 0.3s;
  }
  
  .header_nav.open {
    right: 0;
  }
  
  .header_nav .header_nav_list{
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
  }
  
  .header_nav .header_nav_list_item{
    width: 86%;
    padding: 15px;
    border-bottom: #F6EDE0 2px solid;
  }
  
  
  /* --------------------- */
  
  

  /* main */
  
  .top_tit{
    text-align: center;
    font-size: 50px;
  }
  
  .top_link{
    width: 150px;
    height: 60px;
    margin: 60px auto 0;
    background-color: #F6EDE0;
    border-radius: 0 15px;
    font-size: 20px;
    color: #707070;
    line-height: 60px;
  }

  /* fv */

  .top_fv{
    height: 700px;
  }

  .top_fv_container{
    width: 350px;
  }
  
  .top_fv_img{
    position: absolute;
    top: 30px;
    left: 0;
    width: 300px;
  }
  
  .top_chara{
    position: absolute;
    top: 250px;
    right: -10px;
    width: 380px;
  }

  /* about */

  .top_about{
    top: 700px;
    background-image: url(../img/pass_p_1.png);
  }

  .top_about_container{
    width: 350px;
  }

  .top_about_list_box_1, .top_about_list_box_2{
    display: block;
  }

  .top_about_list_img{
    width: 100%;
  }

  .top_about_list_text{
    margin: 30px 0 50px;
  }

  /* works */
  
  .top_works{
    top: 1900px;
    background-image: url(../img/pass_p_2.png);
  }

  .top_works_tit{
    padding-top: 50px;
  }

  .top_works_container{
    width: 350px;
  }

  .works_img{
    width: 175px;
  }

  .works_img_box{
    flex-wrap: wrap;
  }
  
  /* members */

  .top_members{
    top: 2970px;
    background-image: url(../img/pass_3.png);
    background-size: cover;
  }

  .top_members_container{
    width: 350px;
    margin-bottom: 200px;
  }

  .top_members_tit{
    padding-top: 60px;
  }

  .members_img{
    width: 100%;
  }

  .members_img_box{
    display: block;
  }

  .top_members_text{
    margin-top: 40px;
  }

  /* contact */

  .top_contact{
    top: 4040px;
  }

  .top_contact_container{
    width: 350px;
    margin-bottom: 150px;
  }

  .top_contact_incontainer{
    background-image: url(../img/pass_p_4.png);
    background-repeat: no-repeat;
  }

  .top_contact_tit{
    padding-top: 60px;
  }

  .top_contact_box{
    width: 230px;
    height: 350px;
    margin: 50px auto 0;
  }

  .top_contact_chara{
    width: 150px;
    position: static;
    margin-top: 80px;
  }

  .top_contact_bubble_container{
    margin-top: 50px;
    position: relative;
  }

  .top_contact_bubble{
    width: 150px;
  }
  
  .bubble_text{
    font-size: 18px;
    top: -20px;
  }

  .top_contact_twitter_icon{
    width: 80px;
  }
  
  .top_contact_fb_icon{
    width: 80px;
    margin-left: 30px;
  }

  
  /* footer */
  footer{
    top: 4800px;
  }
}