@charset "UTF-8";

/* =======================================
    共通パーツ
======================================= */
/* ------ Reset -------*/
* {
  padding: 0;
  margin: 0;
}
ul {
  list-style: none;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
html,body {
  -webkit-text-size-adjust: 100%;
}

/* ------ Responsive -------*/
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  img{
    width: 100%;
    height: auto;
  }
}

/* ------ box -------*/
body {
  background-color: #f6f6f6;
  min-width: 750px;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
}
#pageWrapper{
  background-color: #e6e6e6;
  margin: 0 auto;
  max-width: 750px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
section {
  box-sizing: border-box;
  margin: 0 auto 80px;
  position: relative;
  width: 100%;
}
.container {
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  width: 85%;
}
.case{
  position: relative
}
.bg_white{
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  section {
    margin-bottom: 13.333vw;
    /* margin-bottom: 50px; */
  }
  .container {
    width: 90%;
  }
}

/* ------ flex-box -------*/
.col2{
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
}

/* ------ text -------*/
html {
  font-size: 62.5%;
}
body{
  color: #000;
  font-family: "Noto Sans JP","Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: min(2.133vw ,1.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
main p{
  margin-bottom: 1.5em;
}
main p:last-child{
  margin-bottom: 0;
}
.txt_center{
  text-align: center;
}
.txt_red{
  color: #e60012;
}
@media screen and (max-width: 767px) {
  body{
    font-size: 3.733vw;
    /* font-size: 14px; */
  }
}

/* ------ title -------*/
.ttl_main{
  background-color: #fff100;
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.07em;
  padding: 15px;
  text-align: center;
}
.ttl_sub {
  background-color: #000;
  color: #fff;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.125em;
  padding: 15px;
  text-align: center;
}
.ttl_arch{
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 1.3em;
  text-align: center;
}
.ttl_arch span{
  background-color: #000;
  border-radius: 50px 50px 0 0;
  display: inline-block;
  padding: 10px 30px;
}
.ttl_topic {
  border-bottom: 1px solid;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 1.5em;
  padding-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ttl_main{
    font-size: 7.467vw;
    /* font-size: 2.8rem; */
  }
  .ttl_sub {
    font-size: 5.333vw;
    /* font-size: 2rem; */
    padding: 4vw 2.667vw;
    /* padding: 15px 10px; */
  }
  .ttl_arch{
    font-size: 5.333vw;
    /* font-size: 2rem; */
  }
  .ttl_arch span{
    padding: 1.867vw 6.667vw;
    /* padding: 7px 25px; */
  }
  .ttl_topic {
    font-size: 5.333vw;
    /* font-size: 2rem; */
    line-height: 1.4;
  }
}

/* ------ btn -------*/
.btn, a.btn {
  box-sizing: border-box;
  color: #fff;
  display: block;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  transition: 0.3s all;
  max-width: 392px;
}
@media screen and (min-width: 768px) {
  .btn:hover{
    text-decoration: none;
    transform:scale(0.95);
    transition: 0.3s all;
  }
}
.btn.none{
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .btn,a.btn{
    width: 74.667vw;
    /* width: 280px; */
  }
  .btn:last-child{
    margin-bottom: 0;
  }
}

/* a.link_txt */
a.link_txt{
  color: #000;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  a.link_txt:hover{
    text-decoration: none;
  }
}


/* ------ arrow -------*/
.arrow_r{
  display: inline-block;
  border-style: solid;
  border-width: 9px 0 9px 13px;
  border-color: transparent transparent transparent #fff;
  margin-right: 10px;
  margin-left: 5px;
}


/* ------ list_box -------*/
.list_box li{
  position: relative;
  line-height: 1.7;
  padding-left: 1.2em;
}
.list_box li::before{
  content: '●';
  position: absolute;
  left: 0;
}


/* ------ accordion -------*/
.accordion_btn{
  cursor: pointer;
}
.accordion_open {
  display: none;
}


/* =======================================
    以下、コンテンツ
======================================= */
/* ------ #mainvisual_box -------*/
#mainvisual_box{
  background-color: #000;
  margin-bottom: 0;
  width: 100%;
}
#mainvisual_box .mainvisual{
  display: block;
  height: auto;
  position: relative;
  z-index: 1;
}
#mainvisual_box .mainvisual_sub{
  display: block;
  height: auto;
  margin-top: max(-28vw, -210px);
  position: relative;
  z-index: 0;
}


/* ------ #products_box -------*/
#products_box{
  background-color: #000;
  margin-bottom: 0;
}
#products_box .container{
  position: relative;
  width: 90%;
}
#products_box .ttl_arch{
  margin-bottom: 0.5em;
}
#products_box .ttl_arch span{
  background-color: #fff100;
  color: #000;
}
#products_box .txt_note{
  color: #fff;
  font-size: 10px;
  position: absolute;
  top: 15px;
  right: calc(50% - 210px);
}
@media screen and (max-width: 767px) {
  #products_box .txt_note{
    top: 0.8vw;
    /* top: 3px; */
    right: 0;
    text-align: right;
    display: inline-block;
    line-height: 1.3;
  }
}

/* ---.products_list_box --- */
.products_list_box{
  border: 1px solid #fff;
  border-radius: 5px;
  margin-bottom: 40px;
}
.products_list_box:last-child{
  margin-bottom: 0;
}
.ttl_products{
  border-bottom: 1px solid;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 0.5em;
  letter-spacing: 0.08em;
  padding: 5px;
  text-align: center;
}
.ttl_products span{
  color: #fff100;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
}
.ttl_products span::before{
  content: '';
  display: inline-block;
  background-image: url(../img/icon_arrow_y.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 9px;
  height: 12px;
  padding: 0 1.2em;
}
.products_list_box ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 0 30px 20px;
}
.products_list_box li{
  box-sizing: border-box;
  color: #fff;
  padding: 10px ;
  text-align: center;
  width: 33.333%;
}
.products_list_box li > img{
  margin-bottom: 0.5em;
}
.products_list_box li p{
  margin-bottom: 1em;
  padding: 0 1.5em;
}
.products_list_box li span{
  display: block;
}
.products_list_box li .type{
  border-top: 1px solid;
  padding-top: 5px;
  margin-top: 5px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .ttl_products{
    font-size: 4.8vw;
    /* font-size: 1.8rem; */
  }
  .ttl_products span{
    font-size: 3.733vw;
    /* font-size: 1.4rem; */
  }
  .products_list_box{
    margin-bottom: 8vw;
    /* margin-bottom: 30px; */
  }
  .products_list_box ul{
    padding: 0 2.667vw 4vw;
    /* padding: 0 10px 15px; */
  }
  .products_list_box li{
    padding: 2.667vw;
    /* padding: 10px; */
    width: 50%;
  }
  .btn.btn_product_link {
    max-width: 100%;
    width: 100%;
  }
}


/* --- .product_link_box --- */
.product_link_box{
  background-image: url(../img/bg_matching-chart.png);
  background-size: 100% auto;
  background-position: bottom center;
  background-repeat: no-repeat;
  text-align: center;
  padding: 80px 0;
}
.txt_matching-chart{
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .product_link_box{
    padding: 13.333vw 5%;
    /* padding: 50px 5%; */
  }
  .txt_matching-chart{
    width: 80vw;
  }
}



/* ------ #about_box -------*/
#about_box{
  background-color: #fff100;
  border-bottom: #000 solid 40px;
  margin-bottom: 0;
}
#about_box .container{
  padding: 40px 0;
  width: 90%;
}
@media screen and (max-width: 767px) {
  #about_box .container{
    padding: 10.667vw 0;
    /* padding: 40px 0; */
  }
}

/* --- .period_box --- */
.period_box .case{
  margin-bottom: 1.5em;
}
.period_box .case:last-child{
  margin-bottom: 0;
}
.period_box p{
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
.period_box p.ttl_period{
  margin-bottom: 0.5em;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.025em;
}
.period_box p.ttl_period span{
  background: #fff;
  display: inline-block;
  padding: 2px 8px;
}
.period_box p.txt_period{
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-left: 0.5em;
}
.period_box .txt_period .txt_large{
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .period_box p{
    font-size: 3.733vw;
    /* font-size: 14px; */
  }
  .period_box p.ttl_period{
    font-size: 3.733vw;
    /* font-size: 14px; */
  }
  .period_box p.txt_period{
    font-size: 3.733vw;
    /* font-size: 14px; */
  }
  .period_box p.txt_period .txt_large{
    font-size: 9.067vw;
    /* font-size: 33px; */
  }
}


/* ------ #how-to-apply_box -------*/
#how-to-apply_box .container{
  padding-top: 60px;
}
#how-to-apply_box .case{
  margin-bottom: 60px;
}
#how-to-apply_box .case:last-child{
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #how-to-apply_box .container{
    padding-top: 5.333vw;
    /* padding-top: 20px; */
  }
  #how-to-apply_box .case{
    margin-bottom: 10.667vw;
    /* margin-bottom: 40px; */
  }
}

/* step_box */
#how-to-apply_box .step_box .box{
  border-bottom: 1px solid;
  margin-bottom: 30px;
  padding: 0 15px 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#how-to-apply_box .step_box .left_box{
  display: flex;
  align-items: center;
  margin-top: 20px;
}
#how-to-apply_box .step_box .icon_step{
  margin-right: 15px;
}
#how-to-apply_box .step_box .txt_step{
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  #how-to-apply_box .step_box .box{
    display: block;
    flex-direction: column;
    margin-bottom: 5.333vw;
    padding: 0 2.667vw 5.333vw;
    /* margin-bottom: 20px;
    padding: 0 10px 20px; */
  }
  #how-to-apply_box .step_box .left_box{
    margin-top: 0;
    margin-bottom: 1em;
    justify-content: center;
    width: 100%;
  }
  #how-to-apply_box .step_box .icon_step{
    width: 20%;
  }
  #how-to-apply_box .step_box .txt_step{
    font-size: 5.333vw;
    /* font-size: 2rem; */
  }
  #how-to-apply_box .step_box .img_step{
    display: block;
    margin: 0 auto;
    height: auto;
    width: 50%;
  }
}
#how-to-apply_box .step_box .step_02 .img_step2{
  margin-bottom: 1em;
}
#how-to-apply_box .step_box .step_02 .img_step2 img{
  margin: 0 10px;
  max-width: 100%;
}
#how-to-apply_box .step_box .step_02 .txt_step2{
  font-size: 2.3rem;
  text-align: center;
  margin: 0.5em auto;
}
#how-to-apply_box .step_box .step_02 .col2{
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5em;
  margin-left: 30px;
}
#how-to-apply_box .step_box .step_02 .col2 img{
  margin-right: 0.5em;
}
#how-to-apply_box .step_box .step_02 .col2 p{
  font-size: 2rem;
  line-height: 1.4;
}
#how-to-apply_box .step_box .step_02 sup,
#how-to-apply_box .step_box .step_02 .txt_small{
  font-size: 1.4rem;
  display: inline-block;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  #how-to-apply_box .step_box .step_02 .icon_step{
    margin: 0;
  }
  #how-to-apply_box .step_box .step_02 .img_step2{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
  #how-to-apply_box .step_box .step_02 .img_step2 img{
    margin: 0;
  }
  #how-to-apply_box .step_box .step_02 .img_step2 img:nth-last-child(1){
    width: 50%;
  }
  #how-to-apply_box .step_box .step_02 .img_step2 img:nth-last-child(2){
    width: 45%;
  }
  #how-to-apply_box .step_box .step_02 .txt_step2{
    font-size: 5.333vw;
    /* font-size: 2rem; */
  }
  #how-to-apply_box .step_box .step_02 .col2 img{
    width: 28%;
    margin-left: 4%;
  }
  #how-to-apply_box .step_box .step_02 .col2 p{
    font-size: 4vw;
    /* font-size: 1.5rem; */
  }
  #how-to-apply_box .step_box .step_02 sup,
  #how-to-apply_box .step_box .step_02 .txt_small{
    font-size: 2.933vw;
    /* font-size: 1.1rem; */
  }
  #how-to-apply_box .step_box .step_02 .txt_small{
    margin-top: 0.5em;
  }
}



.img_register{
  box-sizing: border-box;
  display: inline-block;
  padding: 0 10px 12px;
  width: 100%;
}

/* .caution_box */
#how-to-apply_box .caution_box{
  background-color: #fff;
}
#how-to-apply_box .caution_box .ttl_caution{
  background-color: #000;
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  padding: 5px;
  text-align: center;
}
#how-to-apply_box .caution_box ul{
  border: 5px solid #000;
  border-top: none;
  padding: 20px 15px;
}
@media screen and (min-width: 768px) {
  #how-to-apply_box .caution_box li{
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  #how-to-apply_box .caution_box .ttl_caution{
    font-size: 5.333vw;
    /* font-size: 2rem; */
  }
}


/* ------ #application-terms_box -------*/
#application-terms_box p{
  margin-bottom: 0;
}
#application-terms_box h3{
  font-weight: 500;
}
#application-terms_box h4{
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #application-terms_box p{
    margin-bottom: 1em;
  }
  #application-terms_box h3{
    margin-bottom: 1em;
    font-weight: bold;
  }
  #application-terms_box h4{
    font-weight: bold;
  }
  #application-terms_box .link_txt{
    line-height: 1.2;
    display: inline-block;
    margin-bottom: 1em;
    font-size: 99%;
  }
}


/* ------ #faq_box -------*/
/* accordion */
#faq_box .accordion {
  box-sizing: border-box;
  padding-top: 30px;
  margin-top: 30px;
  width: 100%;
}
#faq_box .accordion:nth-child(1){
  margin-top: 0;
}
#faq_box .question, #faq_box .answer{
  padding-left: 45px;
}
#faq_box .question {
  font-size: 1.9rem;
  position: relative;
}
#faq_box .answer {
  font-size: 1.5rem;
  margin-top: 30px;
  position: relative;
}
#faq_box .question::before{
  content: '';
  background-image: url(../img/icon_q.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 22px;
  width: 23.4px;
  position: absolute;
  top: 4px;
  left: 15px;
}
#faq_box .answer::before{
  content: '';
  background-image: url(../img/icon_arrow.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 12px;
  width: 8px;
  position: absolute;
  top: 4px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  #faq_box .ttl_topic{
    margin-bottom: 0.5em;
  }
  #faq_box .accordion {
    margin-top: 5.333vw;
    /* margin-top: 20px; */
    padding-top: 5.333vw;
    /* padding-top: 20px; */
  }
  #faq_box .question, #faq_box .answer {
    padding-left: 8vw;
    /* padding-left: 30px; */
  }
  #faq_box .question {
    font-size: 3.733vw; 
    /* font-size: 14px; */
  }
  #faq_box .answer {
    font-size: 3.467vw; 
    /* font-size: 13px; */
    margin-top: 5.333vw;
    /* margin-top: 20px; */
  }
  #faq_box .question::before{
    left: 0.8vw;
    /* left: 3px; */
    width: 5.6vw;
    height: 5.333vw;
    /* width: 21px;
    height: 20px; */
  }
  #faq_box .answer::before{
    top: 1.6vw;
    /* top: 6px; */
    left: 3.733vw;
    /* left: 14px; */
  }
}


/* ------ #contact_box -------*/
#contact_box p.txt_top{
  font-size: 3rem;
  margin-bottom: 1em;
}
#contact_box p{
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  #contact_box p{
    font-size: 3.467vw;
    /* font-size: 13px; */
    margin-bottom: 0.5em;
  }
  #contact_box p.txt_top{
    font-size: 4.267vw;
    /* font-size: 16px; */
  }
}


/* ------ coming soon -------*/
.comingsoon#pageWrapper::before{
  content: '';
  display: block;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.txt_comingsoon{
  display: none;
  font-size: 8rem;
  font-weight: bold;
  position: absolute;
  top: 338px;
  text-align: center;
  width: 100%;
  z-index: 2;
}
.comingsoon .txt_comingsoon{
  display: block;
}
@media screen and (max-width: 767px) {
  .txt_comingsoon{
    font-size: 5rem;
    top: 200px;
  }
}