@charset "UTF-8";
.inner {
  width: 94%;
  max-width: 90%;
  margin: 0 auto;
}

/* FAQ */
.c-faq__item {
  border: 2px solid #3f7fed;
}

.c-faq__title {
  position: relative;
}

.c-faq__trigger {
  display: flex;
  gap: 15px;
  width: 100%;
  background: transparent;
  border: none;
  padding-right: 30px;
  text-align: left;
  cursor: pointer;
  background-color: #3f7fed;
  color: #fff;
  padding: 10px;
  line-height: 1.5;
}

.c-faq__title::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 2px;
  background-color: #fff;
  display: block;
}

.c-faq__title::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 15px;
  height: 2px;
  background-color: #fff;
  display: block;
  transition: all 0.3s ease;
}

.c-faq__title.is-open::before {
  transform: translateY(-50%) rotate(0deg);
}

.c-faq__title-q {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  transform: translateY(-3px);
}

.c-faq__title-text {
  width: calc(100% - 45px);
  font-size: 1.6rem;
  font-weight: bold;
}

.c-faq__content {
  display: block;
}

.js .c-faq__content {
  transition: height 0.5s ease;
  height: 0;
  overflow: hidden;
}

.c-faq__inner {
  display: flex;
  gap: 15px;
  padding: 0 13px 20px;
}

.c-faq__content-text {
  font-size: 1.3rem;
}

/* .c-faq__content.is-open{
  transition: all 0.5s ease;
} */
.c-faq__content-a {
  display: flex;
  justify-content: center;
  font-weight: bold;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 2.8rem;
  color: #3f7fed;
  line-height: 1;
  margin-top: 15px;
  font-weight: 400;
}

.c-faq__content-block {
  width: calc(100% - 55px);
  margin-top: 15px;
}

/* =========================================
   fadeUp（JSあり前提）
========================================= */
.js .js-fadeUp {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .js-fadeUp.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   no-js fallback（JSが動かない環境）
   → 最初から表示
========================================= */
.js-fadeUp {
  opacity: 1;
  transform: none;
}/*# sourceMappingURL=component.css.map */