@charset "utf-8";

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

  faq style

***************************************************************************** */
/* faq-box */
.faq-box{
  padding-left: 6rem;
  padding-right: 6rem;
}
.faq-box > .-inner{
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (max-width: 1000px){
  /* result-block */
  .faq-box{
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media print, screen and (max-width: 760px){
  /* result-block */
  .faq-box{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* faq-list-box" */
.faq-list-box{
  background-color: #ede9e0;
  margin-top: 2rem;
}
.faq-list.-navy .faq-list-box{
  background-color: #d9dce5;
}
.faq-list-box:nth-child(1){
  margin-top: 0;
}

/* faq-list */
.faq-list-heading{
  padding: 3.5rem 9rem 3rem 3rem;
}
.faq-list-heading{
  cursor: pointer;
  display: block;
  position: relative;
}
.faq-question{
  display: flex;
  justify-content: space-between;
}
.faq-question-text{
  flex: 1;
}
.faq-question-mark{
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 1;
  color: #000000;
  width: 1.5em;
}
.faq-question-text > p{
  font-size: 1.8rem;
  line-height: 1.5556;
  font-weight: 700;
}
.faq-list-mark{
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 4.3rem;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.faq-list-mark::before,
.faq-list-mark::after{
  position: absolute;
  background-color: #000000;
  content: '';
}
.faq-list-mark::before{
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}
.faq-list-open .faq-list-mark::before{
  -webkit-ransform: scaleY(0);
  transform: scaleY(0);
}
.faq-list-mark::after{
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}
.faq-list-main{
  cursor: pointer;
  padding-left: 3rem;
  padding-right: 9rem;
  padding-bottom: 3rem;
  display: none;
}
.faq-answer{
  display: flex;
  justify-content: space-between;
}
.faq-answer-mark{
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  line-height: 1;
  color: #eb6001;
  width: 1.5em;
  padding-top: 0.2rem;
}
.faq-list.-navy .faq-answer-mark{
  color: #1d3166;
}
.faq-answer-text{
  flex: 1;
}
.faq-answer-text > p{
  font-size: 1.8rem;
  line-height: 1.5556;
  font-weight: 700;
  color: #eb6001;
  margin-top: 1.5em;
}
.faq-list.-navy .faq-answer-text > p{
  color: #1d3166;  
}
.faq-answer-text > p:nth-child(1){
  margin-top: 0;
}
.faq-answer-text > p.note{
  margin-top: 0;
  margin-left: 1em;
  display: block;
}
.faq-answer-text > p.note::before{
  content: '※';
  margin-left: -1em;
}

@media screen and (max-width: 1000px){
  /* faq-list */
  .faq-list-mark{
    right: 4rem;
  }
}

@media screen and (max-width: 760px){
  /* faq-list */
  .faq-list-heading{
    padding-left: 2rem;
    padding-right: 7rem;
  }
  .faq-list-mark{
    right: 2.5rem;
  }
  .faq-list-main{
    padding-left: 2rem;
    padding-right: 3rem;
  }
}
