@charset "UTF-8";
/* アコーディオン */
.accordion-btn {
  border-radius: 10px;
  background: #f9fcfe;
  padding: 30px 5%;
  -webkit-transition: height 0.1s ease-in-out, border-radius 0.3s ease-in-out;
  transition: height 0.1s ease-in-out, border-radius 0.3s ease-in-out;
  position: relative;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
}

.q-wrap {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 400;
  color: #444c55;
  line-height: 1.8;
}

.large-q {
  width: 60px;
  color: #155ea9;
  font-size: 32px;
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 834px) {
  .accordion-btn {
    padding: 3% 12% 3% 3%;
  }
  .accordion-btn .q-wrap {
    font-size: 15px;
    align-items: flex-start;
  }
  .accordion-btn .q-wrap .large-q {
    width: 40px;
    color: #155ea9;
    font-size: 22px;
    line-height: 1;
  }
}
@media (max-width: 499px) {
  .accordion-btn {
    padding: 6% 12% 3% 5%;
  }
  .accordion-btn .q-wrap {
    font-size: 16px;
    align-items: flex-start;
  }
  .accordion-btn .q-wrap .large-q {
    width: 40px;
    color: #155ea9;
    font-size: 22px;
    line-height: 1;
  }
}
.faq-item.accordion-open .accordion-btn {
  border-radius: 10px 10px 0 0;
}

.faq-item.accordion-open .accordion-btn + .faq-a::before {
  content: "";
  display: block;
  height: 4px;
  background-size: 4px 4px;
  width: calc(100% - 80px);
  margin: 0 auto;
  background-repeat: repeat;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
  transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
}

@media (max-width: 834px) {
  .faq-item.accordion-open .accordion-btn + .faq-a::before {
    width: calc(100% - 40px);
  }
}
/* アンサー */
.faq-a {
  border-radius: 0 0 10px 10px;
  background: #f9fcfe;
  position: relative;
  height: 0;
  overflow: hidden; /* 初期状態でアンサーを隠す */
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.faq-a::before {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
  transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
}

.faq-item + .faq-item {
  margin-top: 40px;
}

@media (max-width: 499px) {
  .faq-item + .faq-item {
    margin-top: 20px;
  }
}
@media (max-width: 834px) {
  .faq-item {
    margin-top: 20px;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
  }
}
/* A.内コンテンツ */
.faq-a-content {
  padding: 20px 10% 30px calc(5% + 60px);
}

.a-text {
  color: #155ea9;
  font-size: 18px;
  line-height: 2;
  display: flex;
  align-items: start;
}
.a-text .large-a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 26px;
  margin-right: 20px;
  line-height: 1;
}

.a-point {
  color: #3b9cff;
  font-size: 18px;
  margin-top: 20px;
}

.a-list {
  margin-top: 15px;
}
.a-list li {
  list-style-type: disc;
  font-size: 15px;
  line-height: 1.8;
  margin-left: 15px;
}

@media (max-width: 834px) {
  .faq-a-content {
    padding: 5% 3%;
  }
  .a-text {
    font-size: 15px;
    display: block;
  }
  .a-text .large-a {
    font-size: 18px;
    margin-right: 12px;
    margin-top: 4px;
  }
  .a-point {
    font-size: 14px;
    margin-top: 10px;
  }
  .a-list {
    margin-top: 8px;
  }
  .a-list li {
    font-size: 13px;
    margin-left: 17px;
  }
}
@media (max-width: 499px) {
  .faq-a-content {
    padding: 0 5% 5% 5%;
  }
}
/* 開閉ボタン */
.open-close-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 3px;
  height: 20px;
  background: #2c4198;
  -webkit-transition: all 0.2s 0s ease;
  transition: all 0.2s 0s ease;
}

@media (max-width: 834px) {
  .open-close-btn::before {
    right: 30px;
    width: 2px;
    height: 18px;
  }
}
.open-close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 20px;
  height: 3px;
  background: #2c4198;
  -webkit-transition: all 0.2s 0s ease;
  transition: all 0.2s 0s ease;
}

@media (max-width: 834px) {
  .open-close-btn::after {
    right: 30px;
    width: 18px;
    height: 2px;
  }
}
.faq-item.accordion-open .open-close-btn::before {
  opacity: 0;
  -webkit-transition: all 0.2s 0s ease;
  transition: all 0.2s 0s ease;
}

.faq-item.accordion-open .open-close-btn::after {
  content: "";
  -webkit-transform: translate(50%, -50%) rotate(180deg);
  transform: translate(50%, -50%) rotate(180deg);
  -webkit-transition: all 0.2s 0s ease;
  transition: all 0.2s 0s ease;
}/*# sourceMappingURL=faq.css.map */