@charset "UTF-8";
* {
  color: #5F5F5F;
}

.bg_gray {
  background: #F4F4F4;
}

.noto-sans-jp-medium {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: medium;
  font-style: normal;
}

.noto-sans-jp-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: medium;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-medium {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* よくある質問
=========================================== */
#faq {
  /*タブのスタイル*/
  /*よくある質問 アコーディオン*/
}
#faq .tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#faq .tab_item {
  width: calc((100% - 8px) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #D4D4D4;
  border-radius: 6px;
  font-size: 1.3rem;
  line-height: 1.4;
  padding: 10px 16px;
  font-weight: 600;
  margin-bottom: 8px;
  cursor: pointer;
  text-align: center;
}
#faq input[name=tab_item] {
  display: none;
}
#faq .tab_content {
  display: none;
  clear: both;
  margin-top: 40px;
  width: 100%;
}
#faq #faq01:checked ~ #faq01_content,
#faq #faq02:checked ~ #faq02_content,
#faq #faq03:checked ~ #faq03_content,
#faq #faq04:checked ~ #faq04_content,
#faq #faq05:checked ~ #faq05_content,
#faq #faq06:checked ~ #faq06_content {
  display: block;
}
#faq .tabs input:checked + .tab_item {
  background-color: #00A67E;
  border: solid 1px #00A67E;
  color: #fff;
}
#faq .faq_item_block {
  padding: 16px;
  margin-bottom: 16px;
}
#faq .faq_item_block:last-child {
  margin-bottom: 0;
}
#faq .faq_item_block .faq_item_title .q_item {
  padding-left: 30px;
  position: relative;
}
@media(max-width:1150px){
  #faq .faq_item_block .faq_item_title .q_item {
    display: flex;
    min-height: 60px;
    align-items: center;
  }
}
#faq .faq_item_block .faq_item_title .q_item:before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #00A67E;
  font-family: "Lato", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}
#faq .faq_item_block .faq_item_content {
  margin-top: 16px;
}
#faq .faq_item_block .faq_item_content .a_item {
  padding-left: 30px;
  position: relative;
}
#faq .faq_item_block .faq_item_content .a_item:before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  color: #FF9544;
  font-family: "Lato", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

/*# sourceMappingURL=faq.css.map*/