@charset "UTF-8";
.faq-accordion-item {
  border: 1px solid #808080;
  border-radius: 0 !important;
  overflow: hidden;
  margin-bottom: 28px;
}

/* Bootstrap の border-top: 0 を打ち消して上辺欠けを防止 */
.faq-accordion .accordion-item:not(:first-of-type) {
  border-top: 1px solid #808080;
}

.faq-accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #d9f1e2;
  box-shadow: none;
  color: #333333;
  font-size: 20px;
  line-height: 1.4;
  border-radius: 0 !important;
}

.faq-accordion-button:not(.collapsed) {
  background: #d9f1e2;
  color: #333333;
  box-shadow: none;
}

.faq-accordion-button::after {
  display: none;
}

.faq-label-q,
.faq-label-a {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #00a040 !important;
  white-space: nowrap;
}

.faq-label-q {
  color: #00a040 !important;
}

.faq-label-a {
  color: #f15a24 !important;
  margin-top: 6px;
}

.faq-question-text {
  flex: 1;
}

.faq-toggle-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1932a0;
  color: #ffffff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}

.faq-accordion-button .faq-toggle-icon::before {
  content: "ー";
  font-weight: normal;
}

.faq-accordion-button.collapsed .faq-toggle-icon::before {
  content: "＋";
  font-weight: 700;
}

.faq-accordion-body {
  padding: 28px 18px 20px;
  font-size: 20px;
  line-height: 1.8;
  color: #333333;
}

.faq-answer-text {
  font-size: 20px;
}

.faq-answer-text-lg {
  font-size: 22px;
}

.faq-notice-list-small li {
  font-size: 16px !important;
  line-height: 1.8rem;
}

.faq-blue-heading {
  margin: 0;
  padding: 10px 18px;
  background: #1932a0;
  font-size: 22px;
  line-height: 1.5;
}

.faq-requirement-list {
  margin: 0;
  padding: 18px 22px;
  border: 3px solid #00a040;
  counter-reset: requirement;
}
.faq-requirement-list > li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 68px;
  font-size: 20px;
  line-height: 2rem;
}
.faq-requirement-list > li:last-child {
  margin-bottom: 0;
}
.faq-requirement-list > li::before {
  counter-increment: requirement;
  content: "要件" counter(requirement) ". ";
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.faq-table {
  border: 1px solid #4d4d4d;
}

.faq-table thead th {
  background: #ebebeb;
}

.faq-row-text {
  font-size: 18px;
  line-height: 2rem;
}

ul.faq-disc li {
  font-size: 20px;
}

.faq-contact-title {
  font-size: 24px;
  line-height: 1.25;
  color: #4d4d4d;
}

.faq-contact-text-main {
  font-size: 20px;
  text-align: center;
}

.faq-contact-text-sub {
  font-size: 21px;
  text-align: center;
}

.faq-contact-phone {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  font-size: 32px;
  line-height: 1.2;
  color: #4d4d4d;
}

.faq-contact-phone-label,
.faq-contact-phone-time {
  font-size: 24px;
}

.faq-contact-phone-number {
  color: #1932a0 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 991px) {
  .faq-accordion-item {
    margin-bottom: 20px;
  }
  .faq-accordion-button {
    gap: 8px;
    padding: 10px 12px;
    font-size: 15px;
  }
  .faq-label-q,
  .faq-label-a {
    font-size: 16px;
  }
  .faq-toggle-icon {
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .faq-accordion-body {
    padding: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
  .faq-answer-text {
    font-size: 14px;
  }
  .faq-answer-text-lg {
    font-size: 15px;
  }
  .faq-notice-list-small li {
    font-size: 11px !important;
    line-height: 1.3rem;
  }
  .faq-blue-heading {
    padding: 8px;
    font-size: 12px;
  }
  .faq-requirement-list {
    padding: 12px 10px;
    border-width: 2px;
  }
  .faq-requirement-list > li {
    font-size: 14px;
    line-height: 1.6rem;
    padding-left: 48px;
    margin-bottom: 4px;
  }
  .faq-row-text {
    font-size: 14px;
    line-height: 1.6rem;
  }
  ul.faq-disc li {
    font-size: 14px;
  }
  .faq-contact-title {
    font-size: 17px;
  }
  .faq-contact-text-main,
  .faq-contact-text-sub {
    font-size: 16px;
    text-align: left;
  }
  .faq-contact-text-sub {
    text-align: left;
  }
  .faq-contact-phone {
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 24px;
  }
  .faq-contact-phone-label {
    font-size: 17px;
  }
  .faq-contact-phone-time {
    font-size: 16px;
  }
}