/*
	よくあるご質問
*/

/*----------------------------------------
	よくあるご質問
----------------------------------------*/

html {
  scroll-behavior: smooth;
}

.help_box {
  margin: 0 3%;
}

.help_cat_box {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.help_box dl {
  width: 100%;
}

.help_cat_box {
  background-color: #f5f7f9;
  padding: 20px;
}

.help_cat_box_list {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 100%;
  padding:14px;
}

.help_cat_box_list li:not(:first-child) {
  margin-left: 16px;
}

.help_cat_box_list_item {
  position: relative;
  font-size: 1.6rem;
  padding: 4px 4px 4px 20px;
}
.help_cat_box_list_item:first-child {
  font-weight: 700;
}
.help_cat_box_list_item::before {
  content: "";
  background: #44aeea;
  width: 7px;
  height: 20px;
  position: absolute;
  top: 5px;
  left: 0;
}
.help_cat_box_list_item:not(:first-child)::before {
  background: #095ca8;
}

.help_cat_box_list_item a {
  color: inherit;
  text-decoration: none;
}

.qa_item {
  padding-top: 80px;
}

.qa_q {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 3px solid #44aeea;
  padding-left: 30px;
}

.qa_q::before {
  content: "Q.";
  color: #095ca8;
  position: absolute;
  top: -8px;
  left: 0px;
  font-size: 2.4rem;
}

.qa_a {
  position: relative;
  margin-top: 20px;
  margin-left: 30px;
  font-size: 1.4rem;
  color: #707070;
}

.qa_a::before {
  content: "A.";
  position: absolute;
  top: -10px;
  left: -28px;
  font-size: 2.4rem;
  font-weight: bold;
}

.help_link {
  text-decoration: none;
  color: #095ca8;
}

@media screen and (min-width: 768px) {
  .help_cat_box_list_item {
    font-size: 2rem;
    padding: 0px 12px 6px;
  }
  .qa_item {
    padding-top: 100px;
    margin: -60px 0 20px 0;
  }

  .qa_q {
    font-size: 2rem;
    padding-left: 38px;
  }

  .qa_q::before {
    top: -8px;
    left: 0px;
    font-size: 2.8rem;
  }

  .qa_a {
    margin-left: 40px;
    font-size: 1.6rem;
  }

  .qa_a::before {
    top: -10px;
    left: -38px;
    font-size: 2.8rem;
  }
  .help_cat_box_list {
    flex-basis: 0;
    flex-grow: 1;
    padding: 14px;
  }
  .help_cat_box_list:not(:last-child) {
    margin-right: 15px;
  }
}