@charset "UTF-8";

/* PC表示設定 */
@media screen and (min-width: 960px) {

/* コンテンツここから */

/* KV */

#kv {
  width: 90%;
  max-width: 1080px;
  margin: 100px auto;
}

#kv h1 {
  font-size: 40px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 1.6px;
}

.kv_cap {
  width: 100%;
  height: 50px;
  background-color: #fff;
  border-radius: 50px 50px 0 0;
}


/* コンテンツ */

#content {
  width: 100%;
  background-color: #fff;
  padding: 50px 0 0;
}

#content .content_inner {
  width: 90%;
  max-width: 1080px;
  margin: auto;
}

#content .content_inner h2 {
  font-size: 30px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 1.2px;
  margin-bottom: 50px;
}

#content .content_inner ul {
  margin-bottom: 50px;
}

#content .content_inner ul li {
  padding: 20px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #BEC5D0;
}

#content .content_inner ul li .question_title {
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  padding-left: 30px;
  position: relative;
}

#content .content_inner ul li .question_title::before {
  content: "Q";
  color: #BEC5D0;
  font-family: Poppins;
  font-size: 26px;
  font-weight: 300;
  margin-right: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -20px;
}

#content .content_inner ul li .answer {
  font-size: 14px;
  font-family: "Noto Sans JP";
  font-weight: 300;
  border-top: 1px solid #BEC5D0;
  margin-top: 20px;
  padding-top: 20px;
  padding-left: 50px;
  position: relative;
}

#content .content_inner ul li .answer::before {
  content: "A";
  color: #BEC5D0;
  font-family: Poppins;
  font-size: 26px;
  font-weight: 300;
  margin-right: 14px;
  padding-top: 5px;
  position: absolute;
  top: 50%;
  left: 23px;
  margin-top: -15px;
}



  /* コンテンツここまで */

}