@charset "utf-8";
/* CSS Document */
.cate1{
    background: #F6F6F6;
}
/* ===== FAQ（見本寄せ） ===== */
.green_title{
  width: 100%;
  background: #5BAE07;
  border-radius: 8px;
  box-sizing: border-box;
    margin-bottom: 20px;
}

.green_title h2{
  margin: 0; 
  padding: 14px 24px;
  color: #fff;

  font-size: 18px;
  font-weight: 600;
  letter-spacing: .05em;
}

.faq_d .box{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

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

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

/* Qアイコン */
.faq_d .q_icon{
  color: #5BAE07;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}
.faq_d .a_icon{
  color: #212121;
  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;
}

/* 右の黒丸ボタン */
.faq_d .box .qbox .icon{
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #111;
}

/* 中の記号（マイナス/プラス） */
.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: 12px;
  height: 2px;
}

/* 縦棒（閉じている時だけ表示＝プラス） */
.faq_d .box .qbox .icon::after{
  width: 2px;
  height: 12px;
  opacity: 1;
}

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

.faq_d .box .abox{
  padding: 0px 35px 22px;
  background: #fff;
}

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

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

/* SP微調整 */
@media screen and (max-width: 576px){
  .faq_d .box .qbox{
    padding: 18px 56px 18px 18px;
  }
  .faq_d .box .qbox .icon{
    right: 16px;
    width: 28px;
    height: 28px;
  }
  .faq_d .q_icon{
    font-size: 26px;
  }
  .faq_d .box .abox{
    padding: 16px 18px 18px;
  }
}



/* ---------- 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){
}

