@charset "UTF-8";

/* FAQ page only */
.l-faq {
  margin-top: 0;
  margin-bottom: 120px;
}

.p-faq__lead {
  margin-top: 32px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
  color: #333;
}

.p-faq__items {
  max-width: 960px;
  margin: 56px auto 0;
}

.p-faq__item {
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.p-faq__item + .p-faq__item {
  margin-top: 18px;
}

.p-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 24px 72px 24px 28px;
  border: 0;
  background: #fff;
  color: #222;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.p-faq__question-label,
.p-faq__answer-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-right: 18px;
  border-radius: 50%;
  font-weight: 700;
  line-height: 1;
}

.p-faq__question-label {
  background: #0b4f8a;
  color: #fff;
}

.p-faq__answer-label {
  background: #e8f1f8;
  color: #0b4f8a;
}

.p-faq__question-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.p-faq__question-icon {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
}

.p-faq__question-icon::before,
.p-faq__question-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: #0b4f8a;
  transform: translate(-50%, -50%);
  transition: transform .25s ease, opacity .25s ease;
}

.p-faq__question-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq__question.is-open .p-faq__question-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.p-faq__answer {
  display: none;
  border-top: 1px solid #e8e8e8;
  background: #f7f9fb;
}

.p-faq__answer-inner {
  display: flex;
  align-items: flex-start;
  padding: 24px 28px 28px;
}

.p-faq__answer-inner p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #333;
}

@media screen and (max-width: 768px) {
  .l-faq {
    margin-top: 0;
    margin-bottom: 80px;
  }

  .p-faq__lead {
    margin-top: 24px;
    font-size: 15px;
    text-align: left;
  }

  .p-faq__items {
    margin-top: 36px;
  }

  .p-faq__question {
    padding: 18px 54px 18px 18px;
  }

  .p-faq__question-label,
  .p-faq__answer-label {
    width: 30px;
    height: 30px;
    margin-right: 12px;
    font-size: 14px;
  }

  .p-faq__question-text {
    font-size: 16px;
  }

  .p-faq__question-icon {
    right: 18px;
    width: 18px;
    height: 18px;
  }

  .p-faq__question-icon::before,
  .p-faq__question-icon::after {
    width: 18px;
  }

  .p-faq__answer-inner {
    padding: 18px;
  }

  .p-faq__answer-inner p {
    font-size: 15px;
    line-height: 1.9;
  }
}
