@charset "utf-8";
/* ---------------------------------------------------------------------------------
© 株式会社エーティーディー・ジャパン

HTML CSS Selectors faq

$Revision: 1.0 $
--------------------------------------------------------------------------------- */

/*---------------------------------------------------------------------------------
お問い合わせ
--------------------------------------------------------------------------------- */
.contact {
  padding: 65px 0 38px;
  background-color: #fff;
  border-radius: 24px;
  margin-bottom: 28px;
}
.contact__tel {
  margin-bottom: 24px;
  font-size: 42px;
  font-weight: 600;
  text-align: center;
}
.contact__info {
  margin-bottom: 35px;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  color: #627A86;
}
.contact__mail {
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

/*---------------------------------------------------------------------------------
Q&A
--------------------------------------------------------------------------------- */
.faq {
  margin-bottom: 120px;
}
.faq div {
  margin-bottom: 12px;
  counter-increment: faq;
}
.faq dt {
  padding: 37px 40px 25px 112px;
  background-color: #fff;
  border-radius: 24px 24px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
}
.faq dt::before {
  font-size: 40px;
  line-height: 1;
  color: #508AFF;
  position: absolute;
  top: 26px;
  left: 25px;
  content: "Q"counter(faq);
}
.faq dt::after {
  display: inline-block;
  margin-left: 18px;
  content:"∨";
}
.faq dt.selected::after {
  content:"∧";
}
.faq dd {
  padding: 0px 40px 25px 112px;
  background-color: #fff;
  border-radius: 0 0 24px 24px;
  font-size: 20px;
  line-height: 1.8;
}



