.faqPage .faqMain {
  color: #444;
}

.faqPage .articleHeader {
  margin-bottom: 18px;
}

.faqPage .faqResponsive {
  max-width: 760px;
  margin: 0 auto 34px;
}

.faqPage .faqLead {
  margin-bottom: 20px;
  padding: 24px;
  border: 3px solid #f5d88b;
  border-radius: 8px;
  background: #fffdf6;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .06);
}

.faqPage .faqLead h2 {
  margin: 0 0 12px;
  padding: 0 0 10px;
  border-bottom: 3px dotted #9ac56c;
  color: #444;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
}

.faqPage .faqLead p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
}

.faqPage .faqAnchorNav {
  margin: 0 0 22px;
}

.faqPage .faqAnchorNav ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faqPage .faqAnchorNav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f2a91f;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.faqPage .faqAnchorNav a:hover {
  opacity: .86;
  text-decoration: none;
}

.faqPage .faqSec {
  margin: 0 0 26px;
  padding: 22px;
  border: 3px solid #d9edf7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, .05);
}

.faqPage .faqSec:nth-of-type(odd) {
  border-color: #cdebb5;
}

.faqPage .faqSecTitle {
  position: relative;
  margin: 0 0 18px;
  padding: 12px 16px 12px 46px;
  border-radius: 8px;
  background: #53bce2;
  color: #fff;
  font-size: 23px;
  font-weight: bold;
  line-height: 1.45;
}

.faqPage .faqSec:nth-of-type(odd) .faqSecTitle {
  background: #7ac516;
}

.faqPage .faqSecTitle::before {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  content: "Q";
}

.faqPage .faqList {
  margin: 0;
}

.faqPage .faqList dt {
  position: relative;
  margin: 18px 0 0;
  padding: 14px 16px 14px 52px;
  border: 2px solid #f5d88b;
  border-radius: 8px 8px 0 0;
  background: #fffdf6;
  color: #444;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.55;
}

.faqPage .faqList dt:first-child {
  margin-top: 0;
}

.faqPage .faqList dt::before {
  position: absolute;
  top: 13px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f2a91f;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
  content: "Q";
}

.faqPage .faqList dd {
  position: relative;
  margin: 0;
  padding: 16px 18px 18px 52px;
  border: 2px solid #f5d88b;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
  font-size: 16px;
  line-height: 1.9;
}

.faqPage .faqList dd::before {
  position: absolute;
  top: 18px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #53bce2;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
  content: "A";
}

.faqPage .faqAnswer > :first-child {
  margin-top: 0;
}

.faqPage .faqAnswer > :last-child {
  margin-bottom: 0;
}

.faqPage .faqLink {
  margin: 20px 0 0;
  text-align: center;
}

.faqPage .faqLink a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 48px;
  padding: 10px 22px;
  border: 3px solid #00a2cb;
  border-radius: 999px;
  background: #fff;
  color: #008fc0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.45;
  text-decoration: none;
}

.faqPage .faqLink a::after {
  margin-left: 8px;
  content: ">";
}

.faqPage .faqLink a:hover {
  background: #eefaff;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .faqPage .faqResponsive {
    width: auto;
    margin: 0 12px 28px;
  }

  .faqPage .articleHeader {
    margin-bottom: 14px;
  }

  .faqPage .faqLead {
    padding: 18px 14px;
    border-width: 2px;
  }

  .faqPage .faqLead h2 {
    font-size: 23px;
  }

  .faqPage .faqLead p {
    font-size: 16px;
    line-height: 1.8;
  }

  .faqPage .faqAnchorNav ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .faqPage .faqAnchorNav a {
    min-height: 44px;
    font-size: 14px;
  }

  .faqPage .faqSec {
    margin-bottom: 20px;
    padding: 16px 12px;
    border-width: 2px;
  }

  .faqPage .faqSecTitle {
    padding: 10px 12px 10px 40px;
    font-size: 19px;
  }

  .faqPage .faqSecTitle::before {
    left: 13px;
    font-size: 21px;
  }

  .faqPage .faqList dt {
    margin-top: 14px;
    padding: 12px 12px 12px 46px;
    font-size: 16px;
    line-height: 1.55;
  }

  .faqPage .faqList dt::before {
    top: 12px;
    left: 12px;
    width: 25px;
    height: 25px;
    font-size: 15px;
  }

  .faqPage .faqList dd {
    padding: 13px 12px 14px 46px;
    font-size: 15px;
    line-height: 1.8;
  }

  .faqPage .faqList dd::before {
    top: 14px;
    left: 12px;
    width: 25px;
    height: 25px;
    font-size: 15px;
  }

  .faqPage .faqLink a {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    font-size: 15px;
  }
}
