@charset "utf-8";
/*------------------------------------------------------------------

  よくある質問

------------------------------------------------------------------*/

/* PC以下共通サイズ------------------------------- */
.cta_area {
  margin-top: -240px;
}
.content {
  padding-bottom: 0;
}
.tab_menu {
  display: flex;
  gap: 0 50px;
}
.tab_menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  flex: 1;
  background: #cecece;
  color: #fff;
  font-family: var(--ff-maru);
  font-size: 20px;
  font-weight: var(--fw-bold);
  border-radius: 30px 30px 0 0;
  padding: 22px 0;
  cursor: pointer;
  transition: 0.3s;
}
.tab_menu li:after {
  font-family: var(--ff-icon);
  content: "\f078";
}
.tab_menu li.active {
  background: var(--c-blue);
}
.tab_menu li:nth-child(2).active {
  background: var(--c-orange);
}
@media (hover: hover) and (pointer: fine) {
  .tab_menu li:hover {
    background: var(--c-blue);
  }
  .tab_menu li:nth-child(2):hover {
    background: var(--c-orange);
  }
}
.tab_box > div {
  display: none;
  background: var(--c-lightblue);
  border-radius: 120px 120px 0 0;
  padding: 160px 0 400px;
}
.tab_box > div.active {
  display: block;
}
.tab_box .inner + .inner {
  margin-top: 130px;
}
.tab_box .inner_menu {
  max-width: 840px;
  display: flex;
  gap: 12px 3%;
  margin: 0 auto 130px;
}
.tab_box .inner_menu a {
  flex: 1;
  display: flex;
  align-items: center;
  background: #fff;
  border: solid 1px var(--c-gray);
  font-size: 16px;
  font-family: var(--ff-maru);
  padding: 16px 25px;
  border-radius: 40px;
}
.tab_box .inner_menu a:after {
  font-family: var(--ff-icon);
  content: "\f063";
  width: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s;
}
.tab_box .inner_menu a span {
  flex: 1;
  text-align: center;
}
@media (hover: hover) and (pointer: fine) {
  .tab_box .inner_menu a:hover {
    background: var(--c-orange);
    color: #fff;
  }
  .tab_box .inner_menu a:hover:after {
    background: #fff;
    color: var(--c-orange);
  }
}
.faq_list {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.faq_list dl {
  background: #fff;
  border-radius: 20px;
}
.faq_list .accordion_open {
  font-size: 18px;
  font-weight: var(--fw-mid);
  line-height: 1.7;
  padding: 30px 10% 30px 5%;
  display: flex;
  gap: 0 25px;
  cursor: pointer;
  position: relative;
}
.faq_list .accordion_open p {
  flex: 1;
}
.faq_list .accordion_open:before,
.faq_list dd div:before {
  content: "Q";
  font-family: var(--ff-en);
  font-weight: 700;
  color: var(--c-blue);
  font-size: 30px;
  line-height: 1;
}
.faq_list .accordion_open:after {
  font-family: var(--ff-icon);
  content: "\f055";
  color: var(--c-blue);
  font-size: 35px;
  line-height: 1;
  position: absolute;
  top: 50%;
  margin-top: -17px;
  right: 5%;
}
.faq_list .accordion_close:after {
  content: "\f056";
}
.faq_list dd {
  display: none;
  padding: 25px 0 30px;
  margin: 0 5%;
  border-top: dashed 2px #e7e7e7;
}
.faq_list dd div {
  display: flex;
  gap: 0 25px;
}
.faq_list dd div:before {
  content: "A";
  color: var(--c-orange);
}
.faq_list dd .txt_small {
  margin-top: 8px;
}
.orange.active {
  background: #fffaee;
}
.orange .ttl2 {
  color: #ff9000;
}
.orange .ttl2:before,
.orange .faq_list .accordion_open:before,
.orange .faq_list .accordion_open:after {
  color: var(--c-orange);
}
.orange .faq_list dd div:before {
  color: var(--c-blue);
}

/* PCのみサイズ------------------------------- */
@media screen and (min-width: 1051px) {
}

/* タブレット（iPad Pro）以下サイズ------------------------------- */
@media screen and (max-width: 1250px) {
  .tab_box > div {
    border-radius: 0;
  }
}

/* タブレット（iPad Pro）以下サイズ------------------------------- */
@media screen and (max-width: 1050px) {
}

/* タブレット（iPad）以下サイズ------------------------------- */
@media screen and (max-width: 1023px) {
  .tab_box > div {
    padding: 80px 0 350px;
  }
  .tab_box .inner_menu {
    margin-bottom: 80px;
  }
  .tab_box .inner + .inner {
    margin-top: 80px;
  }
  .tab_menu {
    gap: 0 3%;
  }
}

/* スマホサイズ------------------------------- */
@media screen and (max-width: 767px) {
  .cta_area {
    margin-top: -110px;
  }
  .tab_menu li {
    font-size: 17px;
    padding: 18px 0;
    border-radius: 25px 25px 0 0;
  }
  .tab_box > div {
    padding: 55px 0 220px;
  }
  .tab_box .inner_menu + .inner {
    margin-top: 55px;
  }
  .tab_box .inner_menu {
    margin-bottom: 55px;
    flex-wrap: wrap;
  }
  .tab_box .inner_menu a {
    flex: 0 0 48.5%;
    font-size: 12px;
    padding: 12px 15px;
  }
  .tab_box .inner_menu a:after {
    width: 18px;
    line-height: 18px;
    font-size: 10px;
  }
  .faq_list {
    gap: 15px 0;
  }
  .faq_list .accordion_open {
    font-size: 15px;
    line-height: 1.6;
    padding: 20px 15% 20px 5%;
    gap: 0 12px;
  }
  .faq_list .accordion_open:before,
  .faq_list dd div:before {
    font-size: 22px;
  }
  .faq_list .accordion_open:after {
    font-size: 25px;
    margin-top: -12px;
  }
  .faq_list dd {
    padding: 15px 0 20px;
    margin: -5px 20px 0;
  }
  .faq_list dd div {
    gap: 0 15px;
  }
}
