/*Base*/
/* CSS Document */
.accordion {
  width: 100%;
  margin: 0 auto 5.3%;
  padding-bottom: 3.5%;
}

.js-accordion__btn {
  position: relative;
  cursor: pointer;
  user-select: none;
  background: #FFF;
  z-index: 1;
}

.js-accordion__btn picture, .js-accordion__btn img {
  cursor: pointer;
}

.icon {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 5.6%;
  background-color: #fff;
  border-radius: 50%;
  max-width: 35px;
  max-height: 35px;
  width: 4.66667vw;
  height: 4.66667vw;
}

.icon::before, .icon::after {
  content: '';
  display: block;
  position: absolute;
  max-width: 20px;
  width: 4.3vw;
  max-height: 3px;
  height: 1px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-color: #b8ada4;
}

.icon::after {
  transform: rotate(90deg);
  transition: .3s all;
}

.is-active .icon::after {
  transform: rotate(0);
}

.js-accordion__btn::before, .js-accordion__btn::after {
  content: '';
  display: block;
  position: absolute;
  max-width: 30px;
  width: 4.3vw;
  max-height: 2px;
  height: 1px;
  top: 0;
  bottom: 0;
  right: 4.4%;
  margin: auto;
  background-color: #231815;
}

.js-accordion__btn::after {
  transform: rotate(90deg);
  transition: .3s all;
}

.js-accordion__btn.is-active::after {
  transform: rotate(0);
}

.js-accordion__content {
  overflow: hidden;
  transition-duration: .3s;
  background: #FFF;
}

.js-accordion__contentInner {
  position: relative;
}

.js-accordion__contentInner::before {
  position: absolute;
  content: "";
  display: block;
  width: 94%;
  top: 1%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.js-accordion__content.is-close {
  height: 0;
  opacity: 0;
}

.js-accordion__content.is-open {
  opacity: 1;
}

.faq {
  background: #EEEADC;
}

.faq__item {
  position: relative;
  width: 92%;
  margin: 0 auto;
  z-index: 1;
  margin-bottom: 3.6%;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .faq__item {
    border-radius: 5px;
  }
}

.faq__line {
  position: absolute;
  width: 94%;
  top: 1%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
/*# sourceMappingURL=accordion.css.map */