.content .btns .inner {
  background: #fbf8f3;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

.content .btns .inner .c-btn {
  width: 190px;
  height: 40px;
}

.content .btns .inner .c-btn span {
  font-size: 14px;
  line-height: 1;
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
}

.content .btns .inner .c-btn svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.content .btns .inner .c-btn svg path {
  -webkit-transition: fill 0.4s ease;
  transition: fill 0.4s ease;
}

.content .btns .inner .c-btn:hover svg path {
  fill: #000000;
}

.content .qa .items {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.content .qa .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  border-bottom: 1px solid #707070;
  padding-bottom: 26px;
}

.content .qa .items .item .q,
.content .qa .items .item .a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}

.content .qa .items .item .q span,
.content .qa .items .item .a span {
  font-size: 25px;
}

.content .qa .items .item .q span {
  line-height: 33px;
}

.content .qa .items .item .q p {
  font-weight: bold;
  font-size: 16px;
  line-height: 33px;
}

.content .qa .items .item .a span {
  line-height: 25px;
}

.content .qa .items .item .a p {
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
}

@media screen and (max-width: 490px) {
  .content .btns .inner {
    gap: 10px 13px;
  }

  .content .btns .inner .c-btn {
    width: 150px;
  }

  .content .btns .inner .c-btn span {
    font-size: 11px;
  }

  .content .btns .inner .c-btn svg {
    right: 10px;
  }

  .content .qa .items {
    margin-top: 40px;
  }

  .content .qa .items .item .q p {
    font-size: 14px;
  }

  .content .qa .items .item .a p {
    font-size: 14px;
  }
}
/*# sourceMappingURL=page-faq.css.map */