@charset "UTF-8";
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */



html {
  font-family:'Noto Sans JP',sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  color: #555;
}


header{
    background-color:red;
    height: 80px;
}

a{
  text-decoration: none;
  color: #555;
}

img{
  max-width: 100%;
}


ul{
  padding-left:0;
}

li{
  list-style:none;
}

.pc{
  display: block;
}

.sp{
  display: none;
}

@media screen and (max-width: 450px) {

  .pc{
    display: none;
  }
  
  .sp{
    display: block;
  }

}


/* ヘッダー */
.header{
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 999;
  box-shadow: 0px 1px 10px -5px #676767;
}
.header-nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto; 
  padding: 14px 60px;
  max-width: 1100px;
}
.header-nav-list{
  display: flex;
  list-style-type:none;
  gap: 30px;
}
.header-nav-items{
  color: #555;
  font-family: "Noto Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  position: relative;
}

.header-nav-items a:hover{
  color: #FF7573;
}

.logo{
  height: fit-content;
  margin-top: 3px;
}
/* SPヘッダー */
.sp-logo{
  width: 105px;
  height: 57px;
}
.hamburger-menu{
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
  width: 50px;
  height: 50px;
  padding: 0;
  cursor: pointer;
  margin-right: 5px;
}
.hamburger-menu__bar{
  width: 100%;
  height: 5px;
  border-radius: 25px;
  background: linear-gradient(45deg, rgba(255, 147, 85) 0%, rgba(255, 101, 99) 100%);;
  position: relative;
  transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s;
}
.hamburger-menu__bar:first-child {
  top: -10px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 0px;
}
.hamburger-menu__bar:last-child {
  top: 10px;
}
.hamburger-menu--open .hamburger-menu__bar {
  top: 0%;
}
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(50%) rotate(45deg);
}
.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}
.fix-top{
  padding: 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  box-shadow: 0px 1px 10px #dddad9;
  height: 80px;
}
.SP-header-nav{
  z-index: 1000;
  display: none;
}
.navigation{
  list-style:none;
  display: none;
  z-index: 9999;
  width: 100%;
  padding: 0;
  height: 100vh;
  margin-top: 0;
  background-color: #fff;
}
.navigation__list a::before{
  content: url("../img/privacypolicy/sp-icon.png");
  position: absolute;
  left: -2.5em;
  bottom: -5px;
}
#navigation__top-bd{
  border-top:  2px dotted #FF9355;
}
.navigation__link:first-child{
  display: block;
  margin-top: 38px;
}
.navigation__list a{
  margin-left: 15%;
  position: relative;
  transition: .5s;
  margin-bottom: 76px;
}
@media screen and (max-width: 1024px) {
  .fix-top{
      box-shadow: none;
  }
  .w1024-br {
      display: none;
  }
  .header-nav {
    display: none;
  }
  .header-nav-items::after{
      border-bottom: 2px dotted #FF9355;
      content: "";
      position: absolute;
      bottom: -38px;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
  }
  .SP-header-nav{
      z-index: 1000;
      display: block;
  }
}


.fv{
  background-color: #FFF5EB;
  padding: 60px 20px;
  margin-top: 50px;
  overflow: hidden;
}

.fv .title{
  color: #FF6563;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 40px;
}

.fv .text{
  font-size: 16px;
  margin-bottom: 40px;
}

.fv .flex{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    
}

.fv .flex .content{
  margin-right: 60px;
}

.fv .dl_btn{
  display: flex;
}

.fv .dl_btn .left{
  margin-right: 20px;
}

.fv .deco1{
    position: absolute;
    transform: translateX(-50%);
    left: 30%;
    top: -550px;
}

.fv .deco2{
  position: absolute;
  transform: translateX(-50%);
    left: 20%;
    bottom: -580px;
}



@media screen and (max-width: 1024px) {

  .fv .title{
    font-size: 36px;
  }

}


@media screen and (max-width: 768px) {

  .fv .flex{
    flex-direction: column-reverse;
  }

  .fv .fv_img{
    width: 90%;
    z-index: 2;
  }

  .fv .title{
    margin-top: 40px;
  }

  .fv .flex .content{
    margin-right: 0;
  }

}

@media screen and (max-width: 450px) {

.fv{
  padding:50px 20px;
}

.fv .title{
    font-size: 24px;
    margin: 20px 0;
    text-align: center;
  }

  .fv .deco1{
    right: 10px;
    top: 0px;
    width: 10%;
  }
  
  .fv .deco2{
    transform: translateX(-30%) rotate(280deg);
    
    bottom: -380px;
    left: 0px;
  }
  
  

}

/*ピースサインライトについて*/

.about{
  margin-top: 100px;
  margin-bottom: 70px;
}

.about .inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.about .flex{
  display: flex;
  align-items: center;
}


.about .flex .left{
  width: 40%;
  margin-right: 80px;
}

.about .flex .right{
  width: 55%;
}

.about .flex .right .title{
 font-size: 36px;
 color: #FF6563;
 margin-bottom: 40px;
}

.about .flex .right .text{
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  .about .flex{
    flex-direction: column;
  }

  .about .flex .left{
    width: 100%;
    margin-right: 0px;
  }
  .about .flex .left img{
    display: block;
    margin: 0 auto;
  }

  .about .flex .right{
    width: 90%;
  }

  .about .flex .right .title{
    font-size: 30px;
    margin: 20px 0;
    text-align: center;
  }
  .about .flex .right .text{
    font-size: 16px;
  }
}



@media screen and (max-width: 450px) {



  .about .flex .left img{
    width: 80%;
    display: block;
    margin: 0 auto;
  }

  .about .flex .right .title{
    font-size: 24px;
    
  }

}


/*ピースサインライトの特長*/

.features{
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section .left_deco,.right_deco{
  position: absolute;
  height: auto;
  max-height: 100%;
  z-index: -2;
  pointer-events: none;
  
}

.section .left_deco{
  left: 0;
  transform: translateX(-55%);
  width: 600px;
  top: 0px;
}

.section .right_deco{
  right: 0;
  transform: translateX(45%);
  width: 600px;
  bottom: -200px;
}

@media screen and (max-width: 1024px) {
  .section .left_deco{
    left: 0;
    transform: translateX(-55%);
    width: 400px;
    top: 0px;
  }
  
  .section .right_deco{
    right: 0;
    transform: translateX(45%);
    width: 400px;
    bottom: -200px;
  }
}

.features .inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.features .title{
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  padding-top: 80px;
  z-index: 2;
  }

  .features .title span{
    color: #FF6563;
    opacity: 0.2;
    text-align: center;
    font-size: 96px;
    font-weight: bold;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .features .list{
      display: flex;
      justify-content: center;
      margin-top: 60px;
    }

    .features .list .items{
      width: 30%;
      
    }

    .features .list .items.items:not(:last-child){
      margin-right: 40px;
      
    }

    .features .list .items img{
      display: block;
      margin: 0 auto;
      
    }

    .features .list .items .sub_title{
      font-size: 20px;
      color: #FF6563;
      font-weight: bold;
      text-align: center;
      margin-top: 20px;
      
    }

    .features .list .items .text{
      font-size: 16px;
      margin-top: 10%;
      
    }

    @media screen and (max-width: 1024px) {
      .features .left_deco{
        left: 0;
        transform: translateX(-55%);
        width: 400px;
        top: -50px;
      }
      
      .features .right_deco{
        right: 0;
        transform: translateX(45%);
        width: 400px;
        bottom: -200px;
      }

    }

    @media screen and (max-width: 450px) {

      .features{
        padding: 40px 0;
      }

      .features .list{
        flex-direction: column;
        margin-top: 0;
      }
      
      .features .list .items{
        width: 100%;
        margin-top: 40px;
      }

      .features .list .items.items:not(:last-child){
        margin-right: 0;
      }

      .features .title{
        font-size: 24px;
        padding-top: 50px;
      }

      .features .title span{
        font-size: 48px;
      }

      .features .list .items .text{
        margin-top: 20px;
      }

      .features .left_deco{
        display: none;
      }
      
      .features .right_deco{
        display: none;
      }


    }



    /*できることエリア*/

.cando{
  background: linear-gradient(45deg,#FFAC7D,#FF7170);
  padding: 120px 0;
}

.cando .inner{
  max-width: 1000px;
  margin: 0 auto;
}

.cando .title{
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  padding-top: 80px;
  z-index: 2;
  color: #fff;
  }

  .cando .title span{
    color: #fff;
    opacity: 0.2;
    text-align: center;
    font-size: 96px;
    font-weight: bold;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .cando .main_img{
      background-color: #fff;
      padding: 30px;
      border-radius: 30px;
      margin: 40px 0;
      }

      .cando .list{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        }

      .cando .list .items{
        background-color: #fff;
        width: 48%;
        border-radius: 30px;
        padding: 20px;
        display: flex;
        position: relative;
        height: 230px;
        margin-top: 40px;
        align-items: center;
        font-weight: bold;
        }

        .cando .list .items img{
          
          position: absolute;
          top:-44px;
          }

          .cando .list .items .text{
            font-size: 26px;
            position: absolute;
            left: 220px;
            }

            .cando .list .items .text .pink{
              color: #FF7170;
              }

      .cando .list .items:nth-of-type(odd){
          margin-right: 20px;
          }

      .cando .list .items:nth-of-type(n+3){
            margin-top: 80px;
        }
  
        .cando_pc{
          display: block;
        }

        @media screen and (max-width: 1024px) {

          .cando .list .items .text{
            font-size: 20px;
          }
        }


        @media screen and (max-width: 768px) {
          .cando .inner{
            width: 90%;
          }

          .cando .list .items{
            height: 170px;
          }

          .cando .list .items img{
            width: 130px;
          }

          .cando .list .items .text{
            font-size: 20px;
            left:0;
            right: 0;
            margin: 0 auto;
            text-align: center;
          }

          .cando_pc{
            display: none;
          }

          .cando .list .items:nth-of-type(n+3){
            margin-top: 20px;
          }

        }


        @media screen and (max-width: 580px) {

          .cando{
            padding: 40px 0;
          }

          .cando .title{
            font-size: 24px;
            padding-top: 50px;
          }
    
          .cando .title span{
            font-size: 36px;
            top: 30%;
          }

          .cando .list{
            flex-wrap: wrap;
          }

          .cando .main_img{
            margin: 40px 0 10px 0;
          }


          .cando .list .items{
            width: 48%;
            margin-top: 0px;
            text-align: center;
          }

          .cando .list .items:nth-of-type(odd){
            margin-right: 10px;
          }

          .cando .list .items:nth-of-type(n+3){
            margin-top: 10px;
          }

          .cando .list .items .text{
            
            font-size: 16px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;


          }
          
        }

        @media screen and (max-width: 375px) {
          .cando .list .items{
            height: 120px;
          }

          .cando .list .items img{
            width: 100px;
          }

          .cando .list .items .text{
            font-size: 16px;
          }

          .cando .list .items:nth-of-type(n+3){
            margin-top: 60px;
          }

          .cando .list .items{
            margin-top: 60px;
          }

        }


/*ご利用開始までのSTEP*/

.step{
  padding: 120px 0;
background-color: #FFF5EB;
}

.step .inner{
  max-width: 1000px;
  margin: 0 auto;
}

.step .title{
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  padding-top: 80px;
  z-index: 2;
  color: #555;
  }

  .step .title span{
    color: #FF7573;
    opacity: 0.2;
    text-align: center;
    font-size: 96px;
    font-weight: bold;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .step .step_list{
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 80px;
    }

    .step .step_list .items{
      background: #fff;
      padding: 20px;
      width: 200px;
      border-radius: 10px;
      text-align: center;
      position: relative;
    }

    .step .step_list .items img{
      display: block;
      margin: 20px auto;
    }

    .step .step_list .items .text.pink{
      color: #FF7573;
      font-weight: bold;  
      font-size: 20px;
    }

    .step .step_list .items:not(:last-child){
      margin-right: 30px;
    }

    .step .step_list .items .sub_title{
      background: #FF9355;
      color: #fff;
      padding: 5px 10px;
      border-radius: 50px;
      text-align: center;
      position: absolute;
      display: block;
      width: 140px;
      top: -20px;
      right: 0;
      left: 0;
      margin: 0 auto;
    }


    .step .list {
      display: flex;
      justify-content: center;
      margin-top: 60px;

    }

    .step .list .items:not(:last-child){
      margin-right: 20px;
    }

    @media screen and (max-width: 900px) {
      .step .step_list .items{
        width: 45%;
      }
      .step .step_list .items:not(:last-child){
        margin-right: 0px;
      }

      .step .step_list .items:nth-child(odd){
        margin-right: 20px;
      }

      .step .step_list .items:nth-child(n+3){
        margin-top: 40px;
      }

    }


    @media screen and (max-width: 768px) {
      .step .inner{
        max-width: 1000px;
        margin: 0 auto;
        width: 90%;
      }
    
    }

      @media screen and (max-width: 450px) {

        .step{
          padding: 60px 0;
        }

        .step .title{
          font-size: 24px;
          padding-top: 50px;
        }
  
        .step .title span{
          font-size: 30px;
          top: 30%;
        }
  


        .step .list{
          flex-wrap: wrap;
        }

        .step .list .items{
          width: 46%;
          
        }

        .step .list .items img{
          display: block;
          margin: 0 auto;
        }

        .step .step_list .items{
          width: 90%;
        }

        .step .list .items:not(:last-child){
          margin-right: 0;
        }

        .step .list .items:first-child{
          margin-right: 10px;
        }

        .step .step_list .items:nth-child(odd){
          margin-right: 0;
        }

        .step .step_list .items:nth-child(n+3){
          margin-top: 0px;
        }

        .step .step_list .items:nth-child(n+2){
          margin-top: 40px;
        }

      }
     
/*ご利用方法エリア*/
    

.howto{
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.howto .inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.howto .title{
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  padding-top: 80px;
  z-index: 2;
  }

  .howto .title span{
    color: #FF6563;
    opacity: 0.2;
    text-align: center;
    font-size: 96px;
    font-weight: bold;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .howto .list .items{
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 40px;
      padding-bottom: 30px;
      border-bottom: 1px solid #555;
    }

    .howto .list .items .content{
      width: 65%;
    }

    .howto .list .items .content .sub_title{
      font-size: 24px;
      display: flex;
      align-items: center;
    }

    .howto .list .items .content .sub_title .deco{
      margin-right: 10px;
      display: block;
      width: 40px;
    }

    .howto .list .items .content .text{
      margin-top: 20px;
      
    }

    .howto .list .items .img{
      width: 30%;
    }

    @media screen and (max-width: 768px) {

      .howto .list .items{
        flex-direction: column;
      }

      .howto .list .items .content{
        width: 100%;
      }

      .howto .list .items .img{
        width: 100%;
        margin-top: 20px;
        text-align: center;
      }

      .howto .list .items .img img{
        display: block;
        margin: 0 auto;
      }
      .howto .title{
        font-size: 24px;
        padding-top: 50px;
      }
      .howto .title span{
        font-size: 48px;
      }

      .howto .title{
        font-size: 24px;
        padding-top: 50px;
      }

      .howto .title span{
        font-size: 48px;
      }

      .howto .list .items .content .sub_title{
        justify-content: center;
      }
  
      .howto .list .items .content .sub_title .deco{
        margin-right: 10px;
        display: block;
        width: 40px;
      }
  
      .howto .list .items .content .text{
        text-align: left;
        
      }
  
      .howto .list .items .img{
        width: 100%;
      }


    }

    @media screen and (max-width: 450px) {

      .howto{
        padding: 60px 0;
      }

      .howto .title{
        font-size: 30px;
        padding-top: 50px;
      }

      .howto .title span{
        font-size: 36px;
      }

      .howto .list .items .img img{
        margin: 10px auto;
      }

      .howto .list .items .content .sub_title{
        font-size: 20px;
      }

    }


/*お問い合わせCTAエリア*/


.contact_area{
  padding: 120px 0;
background-color: #FF6563;
}


.contact_area .content{
  max-width: 70%;
  background-color: #fff;
  border-radius: 20px;
  margin: 0 auto;
  padding: 40px;
  }

  .contact_area .content .title{
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    position: relative;
    padding-top: 80px;
    }

    .contact_area .content .title span{
      color: #FF6563;
      opacity: 0.2;
      text-align: center;
      font-size: 96px;
      font-weight: bold;
      position: absolute;
      z-index: 1;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      }


  .contact_area .content .img{
    text-align: center;
    margin: 60px auto;
    width: 800px;
    }

  .contact_area .content .cta_btn{
    width: 300px;
    text-align: center;
    background-color: #FF9355;
    color: #fff;
    border-radius: 50px;
    margin: 0px auto;
    padding: 15px 20px;
    display: block;
    font-weight: bold;
    transition: 0.5;
    }

    .contact_area .content .cta_btn:hover{
      opacity: 0.8;
      transition: 0.5;
      }

    @media screen and (max-width: 768px) {

      .contact_area .content{
        max-width: 90%;
      }

    }


    @media screen and (max-width: 450px) {

      .contact_area{
        padding: 20px 0;
      }

      .contact_area .content{
        padding: 20px;
      }

      .contact_area .content .title{
        font-size: 24px;
        padding-top: 50px;
      }

      .contact_area .content .title span{
        font-size: 48px;
      }

      .contact_area .content .img{
        margin: 30px auto;
      }

      .contact_area .content .cta_btn{
        margin-bottom: 20px;
      }

      .contact_area .content .cta_btn{
        width: 250px;
        }

    }    


/*ピースサインライトの取り組み*/

.initiatime{
  padding: 120px 0;
background-color: #FFF5EB;
}

.initiatime .inner{
  max-width: 1000px;
  margin: 0 auto;
}

.initiatime .title{
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  padding-top: 80px;
  z-index: 2;
  color: #555;
  }

  .initiatime .title span{
    color: #FF7573;
    opacity: 0.2;
    text-align: center;
    font-size: 96px;
    font-weight: bold;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .initiatime .content{
      
      margin-top: 40px;
      background-color: #fff;
      padding: 40px;
      border-radius: 10px;
      
    }

    .initiatime .content .flex{
      display: flex;
      align-items: center;
    }

    .initiatime .content .img{
      width: 300px;
    }

    .initiatime .content .text_box{
      margin-left: 40px;
      width: 60%;
    }

    .initiatime .content .text_box .sub_title{
      font-size: 24px;
    }

    .initiatime .content .text_box .sub_title .deco{
      font-size: 18px;
      background-color: #FF9355;
      color: #fff;
      padding: 5px 20px;
      border-radius: 50px;
      margin-right: 20px;
    }

    .initiatime .content .text_box .text{
      margin-top: 40px;
      font-size: 16px;
    }

    .initiatime .content .sub_text{
      margin-top: 20px;
      font-size: 13px;
      padding: 20px 0 0 0;
      border-top: 1px solid #e2e2e2;
    }

    @media screen and (max-width: 768px) {
      .initiatime .content{
        
        width: 90%;
        margin: 0 auto;
        margin-top: 20px;
      }

      .initiatime .content .flex{
        flex-direction: column;
       
      }

      .initiatime .content .text_box .sub_title{
        margin-top: 40px;
        text-align: center;
      }

      .initiatime .content .text_box{
        width: 100%;
        margin-left: 0;
      }
    }

    @media screen and (max-width: 425px) {

      .initiatime{
        padding: 60px 0;
      }


    .initiatime  .title{
      font-size: 24px;
      padding-top: 50px;
    }

    .initiatime  .title span{
      font-size: 48px;
      top: 30%;
    }

    .initiatime .content .text_box .sub_title .deco{
      margin-right: 0;
      margin-bottom: 10px;
      display: inline-block;
    }

    .initiatime .content .img{
      width: 250px;
    }

  }

/*faqエリア*/

.faq{
  padding: 120px 0;

}

.faq .inner{
  max-width: 1000px;
  margin: 0 auto;

}

.faq .flex{
  display: flex;
  align-items: center;
}

.faq .flex .left{
  width: 40%;

}

.faq .flex .left .title{
  
  font-size: 36px;
  font-weight: bold;
  position: relative;
  padding-top: 80px;
  z-index: 2;
  color: #555;

}

.faq .flex .left .title span{
  color: #FF7573;
    opacity: 0.2;
    
    font-size: 96px;
    font-weight: bold;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 32%;
    transform: translate(-50%, -50%);
}

.faq .flex .left .link_btn{
  width: 250px;
  margin: 0 auto;
  margin-top: 80px;
  color: #FF7573;
  background-color: #fff;
  border:2px solid #FF7573;
  border-radius: 50px;
  padding: 15px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
}

.faq .flex .left .link_btn:hover{
  color: #fff;
  background-color: #FF7573;
  transition: 0.5s;
}

.faq .flex .left .link_btn a{
  color: #FF7573;
}

.faq .flex .right{
  width: 60%;

}

.faq .flex .right .list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.faq .flex .right .list .items a{
  width: 250px;
  height: 200px;
  background-color:#FF7573;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.faq .flex .right .list .items a:hover{
  opacity: 0.8;
}

.faq .flex .right .list .items:nth-child(odd){
  margin-right: 10px;
}

.faq .flex .right .list .items:nth-child(n+3){
  margin-top: 10px;
}

.faq .flex .right .list .items .title{
  color: #fff;
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {


  .faq .flex{
    flex-direction: column;
    align-items: center;
  }

  .faq .flex .left{
    width: 90%;
    margin: 0 auto;
  }

  .faq .flex .left .title{
    text-align: center;
  }

  .faq .flex .left .title span{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

  }

  .faq .flex .left .link_btn{
    display: block;
    margin-top: 30px;
  }

  .faq .flex .right{
    width: 90%;
  }

  
  
}

@media screen and (max-width: 560px) {


  .faq{
    padding: 60px 0;
  }

  .faq .flex .right .list{
    margin-top: 30px;
  }


  .faq .flex .right .list .items a{
    width: 150px;
    height: 150px;
    padding: 20px;
  
    
  }

  .faq .flex .right .list .items img{
    width: 70%;
    display: block;
    margin: 0 auto;
    
  }

  .faq .flex .right .list .items:nth-child(odd){
    margin-right: 10px;
  }

  .faq .flex .right .list .items:nth-child(n+3){
    margin-top: 10px;
  }

  .faq .flex .right .list .items.items:not(:last-child){
    margin-bottom: 0;
  }

  .faq .flex .left .title span{
    font-size: 48px;
  }

}

@media screen and (max-width: 350px) {

  


  .faq .flex .right .list .items a{
    width: 130px;
    height: 130px;
    padding: 20px;
  
    
  }

}

/*NEWSエリア*/


.news{
  padding: 120px 0;
  position:relative ;
  overflow: hidden;
}

.news .inner{
  max-width: 900px;
  margin: 0 auto;
}

.news .title{
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  padding-top: 80px;
  z-index: 2;
  }

  .news .title span{
    color: #FF6563;
    opacity: 0.2;
    text-align: center;
    font-size: 96px;
    font-weight: bold;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .news .list{
      margin: 40px 0;
     }

 .news .list .items{
  padding-bottom: 10px;
  border-bottom: 1px dotted #555;
  margin-bottom: 20px;
 }

 .news .list .items .days{
  font-size: 14px;
  margin-bottom: 5px;
  display: inline-block;
 }

 .news .cta_btn{
  width: 300px;
  color: #FF7170;
  background-color: #fff;
  border: #FF7170 2px solid;
  border-radius: 30px;
  display: block;
  margin: 0 auto;
  margin-top: 60px;
  padding: 15px 20px;
  text-align: center;
  font-weight: bold;
  transition: 0.5s;
 }

 .news .cta_btn:hover{
  background-color: #FF7573;
  color: #fff;
  transition: 0.5s;
 }

 @media screen and (max-width: 768px) {
  .news .inner{
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
  }
 }

 @media screen and (max-width: 450px) {

  .news{
   padding: 40px 0; 
  }

  .news .title{
    font-size: 24px;
    padding-top: 50px;
  }

  .news .title span{
    font-size: 48px;
  }

  .news .cta_btn{
    margin-top: 40px;
  }


 }






/* フッターイラスト＆QRコード */
.app-cta-col{
  background: #FF7573;
  padding-top: 60px;
  padding-bottom: 60px;
}
.app-container{
  border-radius: 20px;
  background: #FFF;
  margin: 0 auto;
  max-width: 1030px;
  display: flex;
  justify-content: center;
  gap: 135px;
}
.app-cta{
  position: relative;
  height: fit-content;
}
.app-cta-txt{
  color: #FFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  width: 109px;
  height: 109px;
  background: linear-gradient(45deg, rgba(255, 147, 85) 0%, rgba(255, 101, 99) 100%);
  position: absolute;
}
.left-circle{
  left: -40px;
  top: 30px;
}
.right-circle{
  right: -60px;
  top: 90px;
}
.qrcode-container{
  display: flex;
  gap: 17px;
}
.app-cta img{
  margin-top: 30px;
}
.qrcode{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.download-ing{
  width: 257px;
  height: 93px;
}
.phon-info{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .app-container {
      flex-direction: column;
      align-items: center;
      gap: 30px;
      width: fit-content;
      padding: 45px 25px;
  }
}
@media screen and  (max-width: 768px)  {
  .qrcode-img{
      display: none;
  }
  .qrcode-container{
      margin-top: 35px;
  }
  .qrcode img{
      width: 150px;
  }
  .app-cta-txt{
      font-size: 16px;
      width: 90px;
      height: 90px;
  }
  .app-cta img {
      margin-top: 0px;
  }
  .right-circle {
      right: -20px;
      top: 60px;
  }
  .left-circle {
      left: -10px;
  }
}
@media screen and (max-width: 450px) {
  .qrcode img{
      width: 120px;
  }
  .qrcode-container{
      margin-top: 30px;
  }
  .app-container {
      margin: 0 3%;
  }
}
@media screen and (max-width: 350px) {
  .app-cta-txt {
      width: 80px;
      height: 80px;
  }
  .right-circle {
      right: -20px;
      top: 40px;
  }
  .left-circle {
      left: -15px;
      top: 0px;
  }
}


    footer{
      background-color: #FFF5EB;
      
    }
    
    footer .nav{
      
      padding: 5px 0;
      width: 90%;
      margin: 0 auto;
    }

    footer .list{
      display: flex;
      justify-content: center;
     
    }

    footer .list .items:not(:last-child){
      margin-right: 20px;
    }

  footer .list .items a:hover{
    color: #FF7573;
  }

    small{
      text-align: center;
      margin: 5px auto;
      display: block;
      background-color: #fff;
    }

    @media screen and (max-width: 450px) {

      footer{
        font-size: 16px;
      }

      footer .list{
        flex-direction: column;
      }


      footer .list .items:not(:last-child){
        margin-right: 0;
        margin-bottom: 10px;
      }

    }



/* 下層共通KV */
.page-kv{
  width: 100%;
  height: 300px;
  margin-top: 80px;
  margin-bottom: 100px;
  background: linear-gradient(65deg, rgba(255, 147, 85, 0.90) 0%, rgba(255, 101, 99, 0.90) 100%);
  position: relative;
  overflow: hidden;
}
.page-kv-circle{
  position: absolute;
  transform: rotate(0deg);
  left: calc(50% - 327px);
  top: -50%;
  opacity: 0.4;
  
}
.page-kv-word{
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  
  position: relative;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* タイトル（各ページごと下記に作成） */
#page-kv-privacy::after{
  position: absolute;
  content: "PRIVACYPOLICY";
  color: rgba(255, 255, 255, 0.4) ;
  font-size: 40px;
  top: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 0px;
}
#page-kv-terms::after{
  position: absolute;
  content: "TERMS";
  color: rgba(255, 255, 255, 0.4) ;
  font-size: 40px;
  top: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 0px;
}

#page-kv-faq::after{
  position: absolute;
  content: "FAQ";
  color: rgba(255, 255, 255, 0.4) ;
  font-size: 40px;
  top: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 0px;
}

#page-kv-transactions::after{
  position: absolute;
  content: "TRANSACTIONS";
  color: rgba(255, 255, 255, 0.4) ;
  font-size: 40px;
  top: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 0px;
}

#page-kv-account-data::after{
  position: absolute;
  content: "ACCOUNT DATA";
  color: rgba(255, 255, 255, 0.4) ;
  font-size: 40px;
  top: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 0px;
}

#page-kv-company::after{
  position: absolute;
  content: "COMPANY";
  color: rgba(255, 255, 255, 0.4) ;
  font-size: 40px;
  top: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
  bottom: 0px;
}

@media screen and  (max-width: 768px)  {
  .page-kv-word{
      font-size: 40px;
      
  }
  .page-kv {
      height: 250px;
  }
  .page-kv-word::after{
      font-size: 36px !important;
      
  }
  .page-kv-circle {
      left: calc(50% - 240px);
      top: -13%;
      width: 500px;
      height: 400px;
      opacity: 0.5;
  }
}
    
@media screen and  (max-width: 450px)  {

  .page-kv{
    height: 200px;
    margin-bottom: 50px;
  }

  .page-kv-word{
    font-size: 24px;
    
}

.page-kv-word::after{
  font-size: 20px !important;
  
}

}


/* プライバシーポリシー */
.perm-description,.perm-items,.perm-indent-2,.perm-hd,.perm-text,.perm-righttext,.perm-text-ind-2,.mb20,.perm-chapter,.table-ov,.perm-indent-5,.perm-list li,.perm-idt-1 p,.perm-last-txt {
  color: #555;
  font-size: 14px;
  font-weight: 400;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.mb20,.perm-description{
  margin-bottom: 20px;
}
.perm-container{
  padding: 0 0 40px 0;
  max-width: 820px;
  margin: 0 auto;
  display: block;
}
.perm-hd{
  font-size: 16px;
  padding: 0 0 3px 0;
  font-weight: bold;
  border-bottom: 1px solid #bbb;
  margin-bottom: 20px;
}
.perm-list{
  padding-left: 18px;
}
.perm-righttext{
  text-align: right;
}
.perm-items-idt-1{
  margin-left: 3.3em;
}
.perm-indent-2{
  text-indent: -1em;
  padding-left: 1em;
}
.perm-items-squarebracket{
  text-indent: -3.3em;
  padding-left: 3.3em;
}
.perm-items-list-circle li{
  margin-left: 1em;
  margin-bottom: 6px;
}
.perm-items-idt-3{
  text-indent: -2em;
  padding-left: 2em;
}
.perm-items-idt-4{
  text-indent: -3em;
  padding-left: 5em;
}
.perm-items_cookie li,.footer-nav-items{
  list-style:none;
}
.contents-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}
@media (min-width: 481px) and (max-width: 768px)  {
  .contents-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 10px;
      padding: 0 3vw;
  }
}







/* 約款 */
.perm-chapter {
  font-size: 18px;
  padding: 0 0 0.3rem 0;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 45px;
}
.table-ov {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto 40px;
}
.table-ov th,.table-ov td{
  padding: 13px;
  border: 1px solid #dddddd;
  text-align: left;
  width: 100%;
  display: block;
}
.ov-left-color th{
  background-color: #f4f4f4;;
  font-weight: bold;
}
.perm-indent-5 {
  text-indent: -1.5em;
  padding-left: 2.6em;
}
.perm-list li{
  margin-bottom: 15px;
}
.perm-idt-1{
      margin-left: 2.8em;
}
.perm-hd-20-contents{
  margin-bottom: 15px;
}

@media (min-width: 481px) {
  .table-ov th {
      width: 30%;
  }
  .table-ov th, .table-ov td {
      display: table-cell;
  }
}




.faq-txt,
.faq-txt-ulr
{
  font-size: 16px;
}
.pc-br{
  display: none;
}
.faq-read{
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}
.col-std#faq01,.col-std#faq02,.col-std#faq03,.col-std#faq04{
  margin: 60px 0 60px 0;  
  padding-top: 120px;
}
.inquiry-col{
  display: flex;
  justify-content: center;
  gap: 20px;
}
.inquiry-col-box{
  display: flex;
  gap: 20px;
}
.inquiry-col p{
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  margin-top: 14px;
}
.inquiry-col a{
  background-color: #FF7573;
  width: 200px;
  height: 150px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor:pointer
}
  
.inquiry-col img {
  margin: 0 auto;
}
.ttl-content01 {
  color: #555;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  font-size: 36px;
  letter-spacing: 1px;
}
.faq{
  border-top: 1px dotted #FF7573;
  
}
.faq-q-js,
.faq-list dd{
  padding: 20px 0 24px 10px;
  margin-bottom: 0;
  background-color: #FFF;
  align-items: center;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.faq-q-js{
  align-items: center;
}
.faq-list dd{  
  align-items: stretch;
}
.faq-q-js:hover{
  background-color: #ffebea;
  transition: 0.3s;
}
.faq-ico, .faq-q{
  background-color: #FF7573;
}
.faq-ico.faq-a {
  background-color: #FF9355 ;
}
.faq-q-word,
.faq-a-word{
  margin-bottom: 4px;
}
.faq-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.mt15{
  margin-top: 15px;
}
.faq-list-1{
  padding-left: 0.5em;
}
.faq-list-1 li{
  margin-top: 5px;
}
.faq-txt{
  margin-top: 5px;
  padding-right: 60px;
  width: calc(100% - 44px);
}
.faq-q-js::before,
.faq-q-js::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: 50px;
  width: 3px;
  height: 15px;
  border-radius: 9999px;
  background-color: #FF7573;
  transform-origin: 50% calc(100% - 1px);
}
.faq-txt a{
  position: relative;
  margin-left: 1.5em;
  color: #FF9355;
}
.faq-txt a::before,
.faq-txt a::after   {
  content: "";
  position: absolute;
  top: 7px;
  left: -10px;
  width: 1px;
  height: 8px;
  border-radius: 9999px;
  background-color: #FF9355;
  transform-origin: 50% calc(100% - 1px);
}

.faq-q-js::before{
  transform: rotate(45deg);
  transition:transform 0.3s;
}
.faq-q-js::after {
  transform: rotate(-45deg);
  transition:transform 0.3s;
}
.faq-txt a::before{
  transform: rotate(225deg);
}
.faq-txt a::after {
  transform: rotate(-45deg);
}
.faq-q-js:not(:first-child){
  border-top: 1px dotted #FF7573;
}


.faq-q-js.active::after{
  transform:rotate(225deg);
  top: calc(50% - 17px);
}
.faq-q-js.active::before{
  transform:rotate(135deg);
  top: calc(50% - 17px);
}


@media screen and (max-width: 1024px) {
  .inquiry-col a {
      width: 170px;
      gap: 15px;
  }
  .inquiry-col p{
      margin-top: 0;
  } 
  .inquiry-col,
  .inquiry-col-box{
      gap: 15px;
  }
}

@media screen and  (max-width: 768px)  {
  .inquiry-col{
    flex-direction: column;
    align-items: center;
  }
  .pc-br{
    display: block;
  }
  .faq-q-js::before,
  .faq-q-js::after {  
    right: 20px;
  }
  .ttl-content01{
    font-size: 25px;
  }
}


@media screen and  (max-width: 480px)  {

  .col-std#faq01,.col-std#faq02,.col-std#faq03,.col-std#faq04{
    margin: 60px 0 30px 0;  
  }

  .inquiry-col a {
    width: 140px;
    gap: 10px;
  }
  .inquiry-col-box img {
    height: 60px;
    width: auto;
  }
  .inquiry-col p {
    font-size: 16px;
  }
}

.transactions-table-first-th{
  background-color: #f3f3f3;
  text-align: center;
  padding:15px 0;
  border: 1px solid #dddddd;
  border-bottom: none;
  font-size: 14px;
  font-weight: bold;
}




/* アカウント削除説明ページ*/

.account-data .inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.account-data .main_title{
  
  font-size: 36px;
  text-align: center;
  
}

.account-data .main_text{
  font-size: 16px;
  margin-top: 20px;
}

.account-data .title{
  
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 120px;
  position: relative;
  padding: 10px 10px 10px 20px;
  border-left: solid 8px #FF7573;
  background-color: #fafafa;
}

.account-data .sub_title{
  font-size: 20px;
  margin-top: 60px;
  
}

.account-data .sub_text{
  margin-top: 40px;
  font-size: 16px;
  
}

.account-data .text_box .text{
  margin-top: 10px;
}

.account-data .about .text{
  margin-top: 60px;
  font-size: 16px;
  
}



.account-data .input_area{
  padding: 60px 0;
  background-color:#fafafa;
}

.account-data .input_area .title{
  margin: 0;
  text-align: center;
  padding: 0;
  border: none;
  color: #FF7573;
}

.account-data .flex{
  display: flex;
}


.account-data .input_area .text{
  margin-top: 40px;
  text-align: center;
}

.account-data .input_area .text a{
  color: #FF7573;
}

.acc-data-input{
display: block;
width: 100%;
padding: 20px 20px;
margin: 40px 0 30px 0;
border: 2px solid #aaa;
border-radius: 10px;

}

.btn-inactive{

  display: block;
  margin: 0 auto;
  background-color: #eee;
  padding: 10px 30px;
  border-radius: 30px;
  color:#fff;
  border: none;
  border: #eee 2px solid;

}

.btn-comfirm{
  display: block;
  margin: 0 auto;
  background-color: #FF7573;
  padding: 10px 30px;
  border-radius: 30px;
  color:#fff;
  border: none;
  border: #FF7573 2px solid;
}

.btn-comfirm:hover{
  display: block;
  margin: 0 auto;
  background-color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  color:#FF7573;
  border: #FF7573 2px solid;
}


.google_link{
  color: #FF9355;
  display: block;
  margin-top: 10px;
}

.validate{
  color: #FF9355;
  text-align: center;
  margin: 20px 0;
}

@media screen and  (max-width: 768px)  {

  .account-data .flex{
    flex-direction: column;
    align-items: center;
  }

}

@media screen and  (max-width: 450px)  {

  .account-data .main_title{
    font-size: 22px;
  }

  .account-data .title{
    font-size: 22px;
    margin-top: 60px;
  }

  .account-data .sub_title{
    margin-top: 40px;
  }

  .account-data .flex .img_box{
    margin-top: 20px;
  }

  .account-data .about .text{
    margin-top: 40px;
  }

  .acc-data-input{
    font-size: 14px;
  }

}

@media screen and  (max-width: 375px)  {

  .acc-data-input{
    font-size: 13px;
  }

  .acc-data-input{
    padding: 10px 10px;
    }

}


/* アカウント削除確認ページ*/

.account-data.confirmation{
  margin: 50px 0 100px 0;
}

.account-data.confirmation .text{

  text-align: center;
  font-size: 20px;
}

.account-data.confirmation .title{
 text-align: center;
 background-color:inherit;
 border: none;
 margin-top: 60px;
 color: #FF7573;
}


.account-data.confirmation .code-confirm{
  width: 100%;
  border: #FF7573 2px solid;
  padding:20px 10px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}


.account-data.confirmation .comfirm-action{
  
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.account-data.confirmation .btn-comfirm{
  display: block;
  margin: 0 auto;
  background-color: #FF7573;
  padding: 15px 30px;
  border-radius: 30px;
  color:#fff;
  border: none;
  width: 300px;
}

.account-data.confirmation .btn-back{
  display: block;
  margin: 0 auto;
  background-color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  color:#FF7573;
  border: none;
  width: 300px;
  border: 2px solid #FF7573;
  margin-right:20px ;
}

#errors{
  display: none;
}


@media screen and  (max-width: 450px)  {

  .account-data.confirmation .comfirm-action{
  
    flex-direction: column-reverse;
  }

  .account-data.confirmation .btn-back{
    margin: 0 auto;
    margin-top: 20px;
    
  }
  
}

/* アカウント削除完了ページ*/

.account-data.complete .main_title{
  font-size: 36px;
  text-align: center;
  margin: 40px 0;
}

.account-data.complete .sub_text{
  font-size: 16px;
  text-align: center;
  margin: 40px 0;
}

@media screen and  (max-width: 450px)  {

  .account-data.complete .main_title{
    font-size: 30px;
    text-align: center;
    margin: 40px 0;
  }
}



.page-kv.test{
  margin: 0 0 60px 0;
}


.test .flex{
  display: flex;
}

.test .title{
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: bold;
}

.test .flex{
  display: flex;
  margin: 60px 0 40px 0;
  align-items: center;
  justify-content: center;
}

.test .flex .left{
  
  margin-right: 30px;
}

.test .flex .left img{
  margin: 0 auto;
  max-width: 250px;
}

.test .flex .right{
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.test .flex .right img{
  max-width: 250px;
  display: block;
  margin: 0 auto;
}

.test .flex .right .text{
  font-weight: bold;
  margin: 0 auto;
  margin-bottom: 40px;
}

.test .english{
  max-width:900px ;
  margin: 0 auto;
  margin-bottom:40px;
}

.test .list{
  max-width:900px ;
}

.test .list li{
  margin-bottom: 10px;
}

@media screen and  (max-width: 450px)  {

  .test .flex{
    flex-direction: column;
  }

  .test .flex .right .text{
    margin-top: 40px;
  }

  .test .flex .left{
    margin: 0;
  }

}