@charset "utf-8";

main {
  font-family: fot-tsukubrdgothic-std, sans-serif;
  font-weight: bold;
  font-size: 17px;

}

/* ページ内リンク */
.faq-link {
  margin-top: 40px;

}

.faq-link ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-link ul li {
  padding: 12px 0;
  text-align: center;
  border: var(--rec-sub-color) 2px solid;
}

.faq-link ul li a {
  font-weight: bold;
  color: var(--rec-sub-color);
}

@media screen and (min-width:992px) {

  .faq-link {
    margin-top: 120px;
  }

  .faq-link ul {
    flex-direction: row;
    gap: 16px;
  }

  .faq-link ul li {
    flex: 1;
  }
}

section {
  margin-top: 60px;
}

h2 {
  font-size: 24px;
  font-weight: bold;
  color: var(--rec-sub-color);
  text-align: center;
  margin-bottom: 24px;
}

.faq-content dt {
  cursor: pointer;
  padding: 16px 17px 16px 25px;
  border-bottom: var(--font-color) 1px solid;
  position: relative;
}

.faq-content dt.active {
  border: none;
}

.faq-content dt:before {
  content: 'Q.';
  position: absolute;
  left: 0;
}

.faq-content dt:after {
  content: '＋';
  color: var(--rec-sub-color);
  position: absolute;
  right: 0;
  top: 16px;
}

.faq-content dt.active:after {
  content: '－';
}

.faq-content dd {
  height: 0;
  overflow: hidden;
  margin: 0;

}

.dd-inner {
  padding-bottom: 16px;
  border-bottom: var(--font-color) 1px solid;
  padding-left: 25px;
  position: relative;
}

.dd-inner:before {
  content: 'A.';
  color: var(--rec-sub-color);
  position: absolute;
  left: 0;
}

.faq-content dd a {
  color: var(--rec-sub-color);
}

.detail {
  margin-top: 40px;
}

.detail h3,
.detail h4,
.detail h5 {
  font-size: 17px;
  font-weight: bold;
  margin: 20px 0;
}

.detail h3 span {
  color: var(--rec-sub-color);
}