/* CSS Document */
/*ページタイトル*/
.page_title h2::before{
  content: "Q＆A";
}
/*コンテンツ*/
.faq_wrap{
  background-color: #000;
  box-sizing: border-box;
  padding-top: var(--headerHeight);
}
body[wc-view-type="tb"] .faq_wrap{
  padding: var(--headerHeight) 5vw 0 5vw;
}
body[wc-view-type="tb-l"] .faq_wrap{
  padding: var(--headerHeight) 10vw 0 10vw;
}
body[wc-view-type="pc"] .faq_wrap{
  padding: var(--headerHeight) calc((100vw - 800px) / 2) 0 calc((100vw - 800px) / 2);
}
.faq_wrap *{
  color: #fff;
}
.faq_wrap > p{
  margin: 0 auto;
  line-height: 1.8rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
body[wc-view-type="sp"] .faq_wrap > p{
  width: 86vw;
  text-align: left;
}
.swipe_box > dt{
  display: flex;
  align-items: flex-start;
}
body:not([wc-view-type="sp"]) .swipe_box > dt{
  align-items: center;
}
.swipe_box > dd .answer,
.swipe_box > dt .question{
  font-size: 3rem;
  line-height: 1em;
  color: rgba(255,255,255,0.3);
  font-family: "Oswald";
  font-weight: 700;
  margin-right: 0.5rem;
  width: 25px;
  flex: none;
}
.swipe_box > dt > p{
  padding-left: 0.5rem;
  box-sizing: border-box;
}
/*
[wc-accordion] span.acdeco::after{
  background-color: #fff !important;
}*/
.swipe_box > dd{
  display: flex;
  padding-top: 1rem;
}
.swipe_box > dd .answer{
  color: rgba(225,105,5,0.5);
  padding-top: 1rem;
}
.swipe_box > dd .answer_text{
  border-top: 1px solid #fff;
  box-sizing: border-box;
  padding: 1rem 0.5rem;
	width: 100%;
	min-height: 80px;
}
.swipe_box > dd .answer_text .faq_list{
	list-style: none;
	list-style-position: outside;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
  margin-top: 0.75rem;
}
.swipe_box > dd .answer_text .faq_list li{
	display: flex;
	gap:0.5rem;
}
.swipe_box > dd .answer_text .faq_list li .fq_l_num{
	flex: none;
  width: 30px;
  height: 30px;
  border: solid 1px #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1em;
}
.swipe_box > dd .answer_text .fq_contact{
  box-sizing: border-box;
  border-left: 1px solid #fff;
  margin-top: 0.75rem;
}
.swipe_box > dd .answer_text .fq_contact > dt{
  font-weight: 700;
  width: fit-content;
  padding: 0.35rem 0.75rem 0.45rem 0.25rem;
  box-sizing: border-box;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 0 2rem 2rem 0;
  line-height: 1em;
  font-size: 0.9rem;
}
.swipe_box > dd .answer_text .fq_contact > dd{
  padding: 0.75rem;
  box-sizing: border-box;
}

.swipe_box > dd .answer_text .fq_contact > dd .f_tel{
  color: #fff;
  font-size: 1.35rem;
  text-decoration: none;
  font-family: "Oswald";
  line-height: 1em;
  display: flex;
  align-items: center;
  font-weight: 700;
}
body:not([wc-view-type="sp"]) .swipe_box > dd .answer_text .fq_contact > dd .f_tel{
  pointer-events: none;
}
.swipe_box > dd .answer_text .fq_contact > dd .f_tel::before{
  content: "";
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #fff;
  width: 2rem;
  height: 2rem;
}
.swipe_box > dd .answer_text .fq_contact > dd .btn{
  margin: 0.75rem 0 0 0;
}
.swipe_box > dd .answer_text .fq_contact > dd .btn a{
  padding: 0.35rem 1rem;
}