@charset "UTF-8";
/*------------------------------------------------
共通
------------------------------------------------*/
/* 

下記のように記述すると
769px～1300pxの間でのみ適用されるスタイルを記述できる
@include pc {
    @include pc_small {
        //スタイル
    }
}
*/
/* 汎用スタイル */
.left_line_title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  padding-left: 20px;
  position: relative;
  margin-bottom: 25px;
}
.left_line_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 20px;
  background-color: var(--color-main);
}

.left_arrow_link a {
  display: block;
  color: var(--color-main);
  font-weight: 500;
  letter-spacing: 0.025em;
  padding-left: 20px;
  text-decoration: underline;
  position: relative;
}
.left_arrow_link a:hover {
  text-decoration: none;
}
.left_arrow_link a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px var(--color-main);
  border-right: solid 2px var(--color-main);
  transform: rotate(45deg);
  position: absolute;
  top: 0.7em;
  left: 0;
  margin: auto;
}

/* よくある質問ページ */
#faq .sec_title {
  margin-bottom: 10px;
}

#faq .side_menu.faq {
  display: block;
}

.side_menu_box .side_menu_item.active a {
  background-color: transparent;
  color: #fff;
  font-weight: 400;
}
.side_menu_box .side_menu_item.active a::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.side_menu_box .side_menu_item a:hover {
  background-color: var(--color-l-blue);
  color: var(--color-main);
  font-weight: 700;
}
.side_menu_box .side_menu_item a:hover::before {
  border-top: solid 2px var(--color-main);
  border-right: solid 2px var(--color-main);
}

.faq_list {
  line-height: 1.75;
  border-bottom: 1px solid #bbb;
}
.faq_list .accordion_wrap.acco_open .acco_button_wrap .icon {
  background-color: #fef1d9;
}
.faq_list .accordion_wrap.acco_open .acco_button_wrap .icon::after {
  content: none;
}
.faq_list .accordion_wrap + .accordion_wrap {
  border-top: 1px solid #bbb;
}
.faq_list .faq_item_details {
  padding: 30px 0;
}
.faq_list .acco_button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-right: 45px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .faq_list .acco_button {
    padding-right: 40px;
  }
}
.faq_list .acco_button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .faq_list .acco_button:hover {
    opacity: 1;
  }
}
.faq_list .acco_button_wrap {
  padding: 30px 0;
}
.faq_list .acco_button_wrap .icon {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  margin: auto;
  background-color: var(--color-l-blue);
  border: 1px solid var(--color-main);
  border-radius: 50%;
  z-index: 1;
}
.faq_list .acco_button_wrap .icon::before {
  position: absolute;
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--color-main);
  z-index: 2;
  transition: 0.5s;
}
.faq_list .acco_button_wrap .icon::after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 16px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--color-main);
  opacity: 1;
  transition-duration: 0.1s;
  z-index: 3;
  transition: 0.5s;
}
.faq_list .text_wrap {
  display: flex;
  align-items: center;
}
.faq_list .text_wrap .icon_qa {
  flex-shrink: 0;
  max-width: 30px;
  margin-right: 10px;
}
.faq_list .text_wrap .text_q {
  color: var(--color-main);
  font-size: 1.8rem;
  font-weight: 700;
}
.faq_list .accordion_inner {
  display: none;
  padding-bottom: 30px;
}
.faq_list .a_wrap {
  border-top: 1px dashed #bbb;
  padding-top: 20px;
}
.faq_list .a_wrap .text_wrap + .topic_box {
  margin-top: 20px;
}
.faq_list .a_wrap .topic_box {
  padding: 30px 20px;
}
