@charset "UTF-8";
/* =====================
	よくあるご質問
 ======================= */
.faq {
  margin: 0;
}

.faq .faq-dt {
  background: var(--c_blue);
  color: var(--c_wht);
  font-family: var(--font_title);
  font-size: 150%;
  font-weight: 800;
  position: relative;
  padding: 0.7em 0.67em 0.7em 3.4em;
  margin-top: 1.25em;
}

.faq .faq-dt:before {
  content: "Q";
  color: var(--c_blue);
  background: var(--c_wht);
  border-radius: 50%;
  width: 2.2em;
  height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0.67em;
  top: 0;
  bottom: 0;
  margin: auto;
}

.faq .faq-dd {
  background: #FFFFEA;
  position: relative;
  padding: 2.2em 3.9em 2.2em 5.1em;
}

.faq .faq-dd:before {
  content: "A";
  color: var(--c_blue);
  background: var(--c_wht);
  border-radius: 50%;
  font-family: var(--font_title);
  font-size: 150%;
  font-weight: 800;
  border: 3px solid currentColor;
  width: 2.2em;
  height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0.67em;
  top: 0.73em;
}

.faq .faq-dd a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/** -------------------- タブレット -------------------- **/
@media (max-width: 1280px) {
}

/** -------------------- スマホ -------------------- **/
@media (max-width: 699px) {
  .faq .faq-dt {
    font-size: 20px;
    line-height: 1.3;
    padding: 12px 12px 12px 60px;
    margin-top: 20px;
  }
  .faq .faq-dt:before {
    width: 36px;
    height: 36px;
    left: 12px;
  }
  .faq .faq-dd {
    padding: 16px 12px 16px 60px;
  }
  .faq .faq-dd:before {
    font-size: 20px;
    width: 36px;
    height: 36px;
    left: 12px;
    border-width: 2px;
  }
}