@charset "utf-8";
/* --------------------------------------------------
/* CSS Document by Rakus
/* for only faq page.
/* --------------------------------------------------*/

/* =================================================
* faq index
* ================================================*/
.faq-wrapper {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid #fff0e1;
  transition: all ease-in-out 0.15s;
  overflow: hidden;
}
.faq-wrapper-question {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all ease-in-out 0.15s;
  padding: 15px 20px;
  position: relative;
}
.faq-wrapper-question__icon {
  font-size: 130%;
  width: 40px;
  height: 40px;
  background: #f39800;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding-bottom: 3px;
}
.faq-wrapper-question__text {
  font-size: 150%;
  font-weight: bold;
}
.faq-wrapper-question::before,
.faq-wrapper-question::after {
  position: absolute;
  content: "";
  display: block;
  transition: all ease-in-out 0.25s;
  background: #434343;
  right: 15px;
  top: 50%;
  width: 15px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-wrapper-question::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.active .faq-wrapper-question::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-wrapper-question:hover,
.active .faq-wrapper-question {
  color: #f39800;
}
.faq-wrapper-answer {
  padding: 30px 40px;
}
.faq-wrapper-answer__inner {
  line-height: 1.5;
  width: 100%;
}
.faq-wrapper-answer__title {
  font-weight: bold;
  font-size: 150%;
  margin-bottom: 15px;
  color: #d35923;
}
.faq-wrapper-answer__text {
  font-size: 120%;
  margin-bottom: 15px;
}
.faq-wrapper-answer__title:last-child,
.faq-wrapper-answer__text:last-child {
  margin-bottom: 0;
}
.faq-wrapper-answer__link {
  color: #f39800;
  text-decoration: underline;
  font-weight: bold;
}
.faq-wrapper-answer__text-point {
  font-weight: bold;
  font-size: 105%;
  color: #d35923;
}
/* faq-tab-panel */

.faq-panel.open {
  opacity: 1;
  transform: translateY(0);
}
.faq-panel__inner{
  padding-top: 50px;
  max-width: 1000px;
  margin-inline: auto;
}

/* =================================================
 * relation フッターリンク
 * ================================================*/

@media (max-width: 768px) {
  /*--------------------
  common style
  --------------------*/
  /* =================================================
  * faq index
  * ================================================*/
  .faq-wrapper-question {
    padding: 10px 20px 10px 10px;
  }
  .faq-wrapper-question__icon {
    font-size: 100%;
    width: 30px;
    height: 30px;
    padding-bottom: 2px;
  }
  .faq-wrapper-question__text {
    font-size: 110%;
    line-height: 1.1;
    width: calc(100% - 40px);
  }
  .faq-wrapper-question::before,
  .faq-wrapper-question::after {
    right: 5px;
    width: 10px;
  }
  .faq-wrapper-answer {
    padding: 20px 15px;
  }
  .faq-wrapper-answer__inner {
    line-height: 1.5;
    width: 100%;
  }
  .faq-wrapper-answer__title {
    font-size: 110%;
    margin-bottom: 10px;
  }
  .faq-wrapper-answer__text {
    font-size: 100%;
    margin-bottom: 10px;
  }
  .faq-wrapper-answer__title:last-child,
  .faq-wrapper-answer__text:last-child {
    margin-bottom: 0;
  }
}
