@charset "UTF-8";
/*--- コンテンツ ---*/
.top_green .pages_title {
  color: #fff;
  font-size: 50px;
  letter-spacing: 0.13em;
  text-align: center;
  font-weight: 300;
}
@media screen and (max-width: 420px) {
  .top_green .pages_title {
    font-size: 8.5vw;
  }
}

.content_main .bg_white {
  background-color: rgba(255, 255, 255, 0.9);
}

#faq_main .bg_white {
  margin-top: 90px;
  padding-top: 75px;
  padding-bottom: 95px;
}
@media screen and (max-width: 768px) {
  #faq_main .bg_white {
    margin-top: 12vw;
    padding-top: 9vw;
    padding-bottom: 12vw;
  }
}
#faq_main .faq_category_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 15px;
  list-style: none;
  margin: 0 0 80px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #faq_main .faq_category_list {
    gap: 3vw;
    margin-bottom: 6vw;
  }
}
#faq_main .faq_category_list .faq_category_item {
  display: inline-block;
  font-size: 14px;
  padding: 0.5em 1.2em;
  background: #fff;
  border: 1px solid #000;
  border-radius: 3px;
  text-decoration: none;
  color: #000;
  transition: background, color 0.2s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #faq_main .faq_category_list .faq_category_item {
    font-size: 3vw;
  }
}
#faq_main .faq_category_list .faq_category_item:hover {
  background: #e0e0e0;
  color: #000;
}
#faq_main .faq_category_list .faq_category_item.is-active {
  background: #000;
  color: #fff;
}
#faq_main .faq_list {
  max-width: 850px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
  padding: 0;
}
#faq_main .faq_list .faq_item {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
  padding: 1.5em 3em 1.6em;
  background-color: #f5f7f7;
  border-bottom: 1px solid #808080;
  text-align: center;
  text-decoration: none;
  color: #000;
  transition: opacity 0.2s;
  text-align: center;
  position: relative;
  background-image: url(../img/faq/arrow_r.svg);
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 8px auto;
}
@media screen and (max-width: 768px) {
  #faq_main .faq_list .faq_item {
    font-size: 3.2vw;
    text-align: left;
    background-position: right 3vw center;
    background-size: 2vw auto;
  }
}
#faq_main .faq_list .faq_item::before {
  content: "Q";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #faq_main .faq_list .faq_item::before {
    left: 3vw;
    font-size: 4.2vw;
  }
}
#faq_main .faq_list .faq_item:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style_faq.css.map */