@charset "UTF-8";
/* ------------------------------
- sec
------------------------------ */
.sec {
  padding: 100px 0;
}
.secBlock + .secBlock {
  padding-top: 50px;
}
@media only screen and (max-width: 750px) {
  .sec {
    padding: 50px 0;
  }
  .secBlock + .secBlock {
    padding-top: 40px;
  }
}

/* ------------------------------
- ancNav
------------------------------ */
.ancNav__list {
  display: flex;
  flex-wrap: wrap;
}
.ancNav__anc {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #000;
  font-weight: bold;
  height: 48px;
}
.ancNav__anc::after {
  content: "";
  background: url(../images/icon_arrow.svg) center/100% no-repeat;
  min-width: 18px;
  height: 18px;
  margin-left: 8px;
}
@media only screen and (min-width: 751px) {
  .ancNav {
    padding-top: 50px;
  }
  .ancNav__list {
    gap: 20px;
  }
  .ancNav__item {
    width: calc(25% - 15px);
  }
  .ancNav__anc {
    font-size: 13px;
    padding: 0 16px;
  }
}
@media only screen and (max-width: 750px) {
  .ancNav {
    padding-top: 30px;
  }
  .ancNav__list {
    gap: 10px;
  }
  .ancNav__item {
    width: calc(50% - 5px);
  }
  .ancNav__anc {
    font-size: 12px;
    padding: 0 10px;
  }
}
/* ------------------------------
- faq
------------------------------ */
.faqBlock + .faqBlock {
  margin-top: 60px;
}
.faqBlock__ttl {
  border-left: 4px solid #000;
  padding-left: 10px;
  font-size: 22px;
  margin-bottom: 30px;
}
.faqBlock__desc {
  margin-bottom: 16px;
}
.faqBlock__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.faqBlock__table th,
.faqBlock__table td {
  border: 1px solid #000333;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: normal;
  text-align: left;
}
.faqBlock__table th {
  background: #f2f2f2;
}
.faqBlock__table th.ttl {
  font-weight: bold;
  font-size: 16px;
  background: #ddd;
}
.faqList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faqItem {
  border: 1px solid #ddebcc;
  background: #ddebcc;
  transition: 0.2s all;
  font-size: 15px;
}
.faqItem.-active {
  border: 1px solid #a1cb39;
  background: #fff;
}
.faqItem__Qbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 15px 20px;
}
.faqItem__Q {
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: baseline;
  &::before {
    content: "Q";
    color: #8bc400;
    margin-right: 5px;
  }
}
.faqItem__Qbtn {
  content: "";
  position: relative;
  margin-left: 10px;
  min-width: 14px;
  height: 14px;
}
.-active .faqItem__Qbtn::after {
  transform: translate(-50%, -50%) rotate(0);
}
.faqItem__Qbtn::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #8bc400;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faqItem__Qbtn::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #8bc400;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.2s all;
}
.faqItem__Abox {
  display: none;
  padding: 0 20px 15px;
}
.faqItem__A {
  line-height: 1.8;
  display: flex;
  align-items: baseline;
  &::before {
    content: "A";
    font-weight: bold;
    margin-right: 5px;
  }
}
.faqItem__A a {
  text-decoration: underline;
  word-break: break-all;
}
.faqItem__A a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 750px) {
  .faqBlock__table th,
  .faqBlock__table td {
    padding: 10px 15px;
    font-size: 13px;
  }
  .faqBlock__table th {
    width: 35%;
  }
  .faqBlock + .faqBlock {
    margin-top: 30px;
  }
  .faqBlock__ttl {
    border-left: 2px solid #000;
    font-size: 15px;
    margin-bottom: 20px;
  }
}
