/* --------------------------------------------- */
/* ▼モバイルファースト (全環境に共通のデザイン) */
/* --------------------------------------------- */
/* faq */
.contents {
  padding: 3em 0 3em;
  margin: auto;
  width: 85%;
  max-width: 1200px;
}
.sidenav {
  text-align: left;
  width: 220px;
  margin: 0 auto 3em;
}
.sidenavi_list {}
.sidenavi_list li {
  position: relative;
  font-weight: 500;
  padding: 1em 0 1em 0rem;
  border-bottom: 0.5px solid #000;
  list-style-type: none !important;
}
.sidenavi_list li::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 0px;
  transform: translate(0%, -50%);
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("/img/common/arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
  transition: ease .2s;
}
.sidenavi_list li:hover::before {
  right: -5px;
}
.sidenavi_list li a {
  display: block;
}
.contents_main {}
.faq_contents {
  text-align: left;
  margin: 3em auto 0;
}
.faq_contents > p {
  font-weight: 500;
  font-size: 1.8rem;
  border-bottom: 0.5px solid #000;
  padding: 0 0 0.5em;
}
.faq_area {
  list-style: none;
}
.faq_area section {
  position: relative;
  border-bottom: 0.5px solid #000;
}
.faq_area section::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: 'Q';
  font-family: "itc-avant-garde-gothic-pro", sans-serif;
  font-weight: 700;
  color: #FFEB04;
  font-size: 3rem;
  line-height: 1;
}
.faq_title {
  position: relative;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 500;
  font-weight: normal;
  padding: 14px 25px 14px 40px;
  transition: all .5s ease;
}
.faq_title::before, .faq_title::after {
  position: absolute;
  content: '';
  width: 18px;
  height: 3px;
  background-color: #FFEB04;
}
.faq_title::before {
  top: 48%;
  right: 0px;
  transform: rotate(0deg);
}
.faq_title::after {
  top: 48%;
  right: 0px;
  transform: rotate(90deg);
}
.faq_title.close::before {
  transform: rotate(45deg);
}
.faq_title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.faq_box {
  display: none;
  padding: 0 0 17px 40px;
}
/* plan */
/* ------------------------------------ */
/* ▼PC用デザインとして付け足すデザイン */
/* ------------------------------------ */
@media all and (min-width: 768px) {
  /* faq */
  .contents {
    width: 90%;
    max-width: 1200px;
    padding: 5em 0 5em;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0em auto 0em;
    justify-content: center;
  }
  .sidenav_stickey {
    /*stickyで固定*/
    position: -webkit-sticky; /*Safari*/
    position: sticky;
    /*固定したい位置*/
    top: 160px;
  }
  .sidenav {
    width: 20%;
    padding: 0;
    margin: 0
  }
  .sidenavi_list {}
  .sidenavi_list li {
    letter-spacing: 2px;
    padding: 0.8em 0rem;
  }
  .contents_main {
    width: 73%;
    margin: 0 0em 0 7%;
  }
  .faq_contents.mgn0 {
    margin: 0 auto;
  }
  .faq_contents {
    margin: 4em auto 0;
  }
  .faq_contents > p {
    font-size: 3rem;
    padding: 0 0 0.5em;
  }
  .faq_area section::before {
    top: 15px;
    font-size: 4rem;
  }
  .faq_title {
    font-size: 1.8rem;
    padding: 20px 25px 20px 50px;
  }
  .faq_title::before, .faq_title::after {
    width: 25px;
  }
  .faq_box {
    padding: 0 0 25px 50px;
  }
  /* plan */
}