@charset "utf-8";
/* CSS Document */
.faq_d .box{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
}

.faq_d .box:not(:last-of-type){
  margin-bottom: 22px;
}

/* Q行 */
.faq_d .box .qbox{
  cursor: pointer;
  position: relative;
  padding: 34px 90px 26px 30px;
  background: #fff;
  gap: 14px;
}

/* Qアイコン */
.faq_d .q_icon{
  color: #33CBBB;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.faq_d .a_icon{
  color: #333;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 14px;
}

/* 質問文 */
.faq_d .box .qbox h3{
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
  color: #222;
}

/* 右の丸ボタン */
.faq_d .box .qbox .icon{
  position: absolute;
  right: 30px;
  top: 38px;
  transform: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #33CBBB;
}

/* 中の記号（マイナス/プラス） */
.faq_d .box .qbox .icon::before,
.faq_d .box .qbox .icon::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  transition: .25s ease;
}

/* 横棒 */
.faq_d .box .qbox .icon::before{
  width: 10px;
  height: 2px;
}

/* 縦棒 */
.faq_d .box .qbox .icon::after{
  width: 2px;
  height: 10px;
  opacity: 1;
}

/* 開いている時はマイナス */
.faq_d .box .qbox.active .icon::after{
  opacity: 0;
}

.faq_d .box .abox{
  padding: 0 30px 28px;
  background: #fff;
}

.faq_d .box .abox::before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #d9d9d9;
  margin-bottom: 22px;
}

.faq_d .box .abox p:last-child{
  margin: 0;
  line-height: 2;
  color: #333;
}

/* body.on が付いてる時は閉じる */
body.on .faq_d .box .abox{
  display: none;
}

@media screen and (max-width: 576px){
  .faq_d .box{
    border-radius: 14px;
  }

  .faq_d .box .qbox{
    padding: 22px 52px 18px 18px;
    gap: 10px;
  }

  .faq_d .box .qbox .icon{
    right: 16px;
    top: 24px;
    width: 22px;
    height: 22px;
  }

  .faq_d .q_icon,
  .faq_d .a_icon{
    font-size: 26px;
  }

  .faq_d .box .abox{
    padding: 0 18px 18px;
  }

  .faq_d .box .abox::before{
    margin-bottom: 16px;
  }

  .faq_d .box .abox p:last-child{
    line-height: 1.9;
  }
}

.whitewrap .boxwrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(60px, 4vw, 100px) clamp(24px, 5vw, 40px);
  background: #fff;
  border-radius: 24px;
  text-align: center;
  box-sizing: border-box;
}
.contact_cta{
}

.contact_cta .contact_cta_inner{
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255,255,255,0.62);
  border-radius: 14px;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 5vw, 52px);
}



.contact_cta .contact_cta_btns{
  margin-top: clamp(22px, 3vw, 34px);
  flex-wrap: wrap;
    justify-content: flex-start;
}


.contact_cta .contact_cta_note{
  margin: clamp(24px, 3vw, 34px) 0 0;
  color: #222;
  line-height: 2;
}

.contact_cta .contact_cta_tel_wrap{
  margin-top: clamp(22px, 3vw, 30px);
  flex-wrap: wrap;
}

.contact_cta .contact_cta_tel_label{
  margin: 0;
  color: #33CBBB;
  font-weight: 700;
  line-height: 1.6;
}

.contact_cta .contact_cta_tel_label p{
  margin: 0;
  color: #33CBBB;
}

.contact_cta .contact_cta_tel_icon{
  width: 18px;
  height: auto;
  display: block;
  object-fit: contain;
}

.contact_cta .contact_cta_tel_btn a{
  display: block;
  border: 1px solid #33CBBB;
  border-radius: 999px;
  background: transparent;
}

.contact_cta .contact_cta_tel_btn .flex{
  min-height: 54px;
  padding: 0 22px;
  gap: 14px;
}

.contact_cta .contact_cta_tel_btn p{
  color: #33CBBB;
}

.contact_cta .contact_cta_tel_btn .arrow_icon{
  border-color: #33CBBB;
}

.contact_cta .contact_cta_tel_btn .arrow_icon::before,
.contact_cta .contact_cta_tel_btn .arrow_icon::after{
  background-color: #33CBBB;
}

@media screen and (max-width: 768px){
  .contact_cta{
  }

  .contact_cta .contact_cta_inner{
    padding: 24px 18px;
    border-radius: 12px;
  }

  .contact_cta .contact_cta_btns{
    gap: 12px;
  }


  .contact_cta .contact_cta_tel_wrap{
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media screen and (max-width: 576px){

  .contact_cta .contact_cta_tel_btn{
    width: 100%;
  }

  .contact_cta .contact_cta_tel_btn .flex{
    width: 100%;
    justify-content: space-between;
  }
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

