@charset "utf-8";

/* スタイルシート
作成者：Hatomi Inc.
作成日：R8.05.08
-------------------------------------------------------------------------------------*/


/*****************************

faq nav

*****************************/
.faqNav{
  padding: 3rem 0;
}

.faqNav__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem;
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .faqNav__list{
    gap: 0.8rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .faqNav__list{
    gap: 0.7rem;
  }
}


.faqNav__button{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0 3rem;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    #5D91D0 0%,
    #4C81BF 100%
  );
  text-decoration: none;
  transition: opacity .3s ease;
}

.faqNav__button:hover{
  opacity: .8;
}

@media screen and (min-width: 1001px){
  .faqNav__button{
    padding: 0 3.2rem;
  }
}

@media screen and (min-width: 901px) and (max-width: 1000px){
  .faqNav__button{
    padding: 0 2.5rem;
  }
}

@media screen and (min-width: 861px) and (max-width: 900px){
  .faqNav__button{
    padding: 0 2.4rem;
  }
}

@media screen and (min-width: 701px) and (max-width: 860px){
  .faqNav__button{
    padding: 0 3rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .faqNav__button{
    min-height: 3.2rem;
    padding: 0 2.8rem 0 1.6rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .faqNav__button{
    width: 100%;
    min-height: 3rem;
    padding: 0 2.8rem 0 1.4rem;
  }
}


.faqNav__button span{
  color: #FFF;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

@media screen and (min-width: 701px){
  .faqNav__button span{
    font-size: 0.95rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .faqNav__button span{
    font-size: 0.9rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .faqNav__button span{
    font-size: 0.85rem;
  }
}


.faqNav__button::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: translateY(-65%) rotate(45deg);
  transition: transform .3s ease;
}

.faqNav__button:hover::after{
  transform: translateY(-65%) rotate(-45deg);
}



/*****************************

faq block

*****************************/
.faqBlock{
  padding-top: 2rem;
}

.faqBlock:last-child{
  padding-bottom: 8rem;
}


.faqBlock__title{
  position: relative;
  padding-left: 1rem;

  color: #4C81BF;
  font-weight: 700;
  line-height: 1.4;
}

.faqBlock__title::before{
  content: "•";
  position: absolute;
  top: 0;
  left: 0;
}


@media screen and (min-width: 701px){
  .faqBlock__title{
    font-size: 1.2rem;
  }
}

/* TB */
@media screen and (min-width: 481px) and (max-width: 700px){
  .faqBlock__title{
    font-size: 1.15rem;
  }
}

/* SP */
@media screen and (max-width: 480px){
  .faqBlock__title{
    font-size: 1.1rem;
  }
}



/*****************************

faq

*****************************/
.faq-box{
  margin-top: 1rem;
  border-radius: 10px;
  background: #F3F0E8;
  overflow: hidden;
}

.faq-box:first-of-type{
  margin-top: 2rem;
}


.faq-box__button{
  width: 100%;
  padding: 1.3rem 1.5rem;
  border: none;
  background: transparent;
  cursor: pointer;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;

  text-align: left;
}

@media screen and (max-width: 700px){
  .faq-box__button{
    padding: 1.4rem;
    gap: 1rem;
  }
}


.faq-box__row{
  flex: 1;

  display: grid;
  grid-template-columns: 1rem 1fr;
  column-gap: 1rem;
  align-items: flex-start;
		position: relative;
}


.faq-box__label{
  font-size: 1.1rem;
  font-weight: 700;
}

@media screen and (max-width: 700px){
  .faq-box__label{
    font-size: 1rem;
  }
}


.faq-box__label--q{
  color: #4C81BF;
}


.faq-box__label--a{
  color: #FF7BAC;
}


.faq-box__question{
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.8;
}

@media screen and (max-width: 700px){
  .faq-box__question{
    font-size: 1rem;
    line-height: 1.7;
  }
}


.faq-box__answer{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height .45s ease,
    opacity .35s ease;
}


.faq-box.is-open .faq-box__answer{
  opacity: 1;
}


.faq-box__answerInner{
  display: grid;
  grid-template-columns: 1rem 1fr;
  column-gap: 1rem;

  padding: 0 1.5rem 2rem;
}

@media screen and (max-width: 700px){
  .faq-box__answerInner{
    padding: 0 1.5rem 1.4rem;
  }
}


.faq-box__answerText{
  font-size: 1rem;
  line-height: 2;
}

@media screen and (max-width: 700px){
  .faq-box__answerText{
    line-height: 1.8;
  }
}


.faq-box__answerText p{
  margin: 0;
}


.faq-box__icon{
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
}


.faq-box__icon::before,
.faq-box__icon::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #B5B5B5;
  transform: translate(-50%, -50%);
  transition: opacity .3s ease;
}


.faq-box__icon::before{
  width: 18px;
  height: 2px;
}


.faq-box__icon::after{
  width: 2px;
  height: 18px;
}


.faq-box.is-open .faq-box__icon::after{
  opacity: 0;
}


/*****************************

qualificationTable

*****************************/
.qualificationTableWrap{
  margin: 1rem 0;
  overflow-x: auto;
}

/* TB */
@media screen and (min-width:481px) and (max-width:700px){
  .qualificationTableWrap{
  }
}

/* SP */
@media screen and (max-width:480px){
  .qualificationTableWrap{
  }
}



.qualificationTable{
  width: 100%;
  border-collapse: collapse;
}

/* TB */
@media screen and (min-width:481px) and (max-width:700px){
  .qualificationTable{
  }
}

/* SP */
@media screen and (max-width:480px){
  .qualificationTable{
    /*min-width: 700px;*/
  }
}

.qualificationTable caption{
  margin-bottom: .5rem;
  font-weight: 600;
  text-align: left;
}

/* TB */
@media screen and (min-width:481px) and (max-width:700px){
  .qualificationTable caption{
  }
}

/* SP */
@media screen and (max-width:480px){
  .qualificationTable caption{
  }
}

.qualificationTable th,
.qualificationTable td{
  border: 1px solid #000;
}

/* TB */
@media screen and (min-width:481px) and (max-width:700px){
  .qualificationTable th,
  .qualificationTable td{
  }
}

/* SP */
@media screen and (max-width:480px){
  .qualificationTable th,
  .qualificationTable td{
  }
}

.qualificationTable th.qualificationTable__category,
.qualificationTable td{
  background: #FFF;
}

/* TB */
@media screen and (min-width:481px) and (max-width:700px){
  .qualificationTable th.qualificationTable__category,
  .qualificationTable td{
  }
}

/* SP */
@media screen and (max-width:480px){
  .qualificationTable th.qualificationTable__category,
  .qualificationTable td{
  }
}

.qualificationTable__headTitle{
  padding: 1rem;
  background: #EFEFEF;
  font-weight: 500;
  line-height: 1.4;
}

/* TB */
@media screen and (min-width:481px) and (max-width:700px){
  .qualificationTable__headTitle{
    padding: 1rem;
  }
}

/* SP */
@media screen and (max-width:480px){
  .qualificationTable__headTitle{
    padding: 1rem;
  }
}


.qualificationTable__head{
  padding: 1rem;
  background: #B9C7E3;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

/* TB */
@media screen and (min-width:481px) and (max-width:700px){
  .qualificationTable__head{
  }
}

/* SP */
@media screen and (max-width:480px){
  .qualificationTable__head{
    padding: 0.75rem;
  }
}



.qualificationTable__category{
  width: 26%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  vertical-align: middle;
}

/* TB */
@media screen and (min-width:481px) and (max-width:700px){
  .qualificationTable__category{
    width: 30%;
    padding: 1rem;
  }
}

/* SP */
@media screen and (max-width:480px){
  .qualificationTable__category{
    width: 32%;
    padding: 1rem;
  }
}

.qualificationTable__category br.sp__view{
	display: none;
}

@media screen and (max-width:480px){
  .qualificationTable__category br.sp__view{
    display: inline-block;
  }
}

.qualificationTable__category .nowrap{
}

@media screen and (max-width:480px){
  .qualificationTable__category .nowrap{
    white-space: nowrap;
  }
}







.qualificationTable__text{
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
  vertical-align: middle;
}

/* TB */
@media screen and (min-width:481px) and (max-width:700px){
  .qualificationTable__text{
    padding: 1rem;
  }
}

/* SP */
@media screen and (max-width:480px){
  .qualificationTable__text{
    padding: 1rem;
  }
}

/*****************************

faqDefinitionList

*****************************/
.faqDefinitionList{
  margin-top: 0.5rem;
}

.faqDefinitionList__title{
  margin-top: 1rem;
  font-weight: 700;
}


.faqDefinitionList__term{
  margin-top: 0.75rem;
}

.faqDefinitionList__term:first-child{
  margin-top: 0;
}

.faqDefinitionList__term::after{
  content: "：";
}


.faqDefinitionList__description{
  margin: 0.25rem 0 0 1em;
  line-height: 1.8;
}


/* PC */
@media screen and (min-width:701px){
  .faqDefinitionList{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .5rem 1rem;
  }

  .faqDefinitionList__term{
    margin-top: 0;
  }

  .faqDefinitionList__description{
    margin: 0;
  }
}


/* TB */
@media screen and (min-width:481px) and (max-width:700px){
}


/* SP */
@media screen and (max-width:480px){
  .faqDefinitionList__description{
    margin-left: 0;
  }
}
