
/* ------------------- faq_contents ------------------- */

#faq_contents .common_inner {
  padding: 6rem 2.5rem 6rem;
}
#faq_contents .common_inner .subtitle01 {
  padding-bottom: 5px;
  margin-bottom: 20px;
  border-bottom: 1px solid #558D74;
}
#faq_contents .common_inner .list01 {
  margin-bottom: 6rem;
  line-height: 1.8rem;
}
#faq_contents .common_inner .list01 dt {
  padding: 10px 50px;
  margin-bottom: 10px;
  border-bottom: 1px solid #558D7455;
  position: relative;
  background: #fff;
}
#faq_contents .common_inner .list01 dd {
  padding: 10px 50px;
  margin-bottom: 30px;
  margin-left: 30px;
  position: relative;
  display: none;
  background: #fff;
  border-bottom: 1px solid #B3919255;
}
#faq_contents .common_inner .list01 .icon {
  padding: 0 8px;
  margin-right: 10px;
  margin-top: -14px;
  display: inline-block;
  background: #558D74;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 10px;
}
#faq_contents .common_inner .list01 dd .icon {
  background: #B39192;
}
/* 初期は回答を閉じる */
#faq_contents dd{
  display: none;
}

/* dtをクリックできるように */
#faq_contents dt{
  position: relative;
  cursor: pointer;
  padding-right: 52px; /* 右端の＋の分 */
}

/* 右端の＋ボタン（CSSで描画） */
#faq_contents dt .faq-toggle{
  position: absolute;
  right: 10px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}

/* 横線・縦線で＋を作る */
#faq_contents dt .faq-toggle::before,
#faq_contents dt .faq-toggle::after{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  background: #5c8f78; /* サイトのグリーンに合わせて調整 */
  transition: 0.25s ease;
}

/* 横棒 */
#faq_contents dt .faq-toggle::before{
  width: 18px;
  height: 2px;
  transform: translateY(-50%);
}

/* 縦棒 */
#faq_contents dt .faq-toggle::after{
  width: 2px;
  height: 18px;
  left: 8px;
  transform: translateY(-50%);
}

/* 開いたら「−」に（縦棒を消す） */
#faq_contents dt.is-open .faq-toggle::after{
  transform: translateY(-50%) scaleY(0);
}

@media screen and (max-width:767px) {
  #faq_contents .common_inner .title01 {
    padding-bottom: 0.8rem;
  }
  #faq_contents .common_inner {
    padding: 3rem 1.5rem 3rem;
  } 
  #faq_contents .common_inner .list01 {
    margin-bottom: 4rem;
  }
  #faq_contents .common_inner .list01 dd {
    margin-left: 20px;
  }
}


/* ------------------- voice_contents ------------------- */

#voice_contents .common_inner {
  padding: 6rem 2.5rem 6rem;
}
#voice_contents .common_inner .list01 {
  line-height: 1.8rem;
}
#voice_contents .common_inner .list01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
	justify-content: left;
  flex-direction: row;
}
#voice_contents .common_inner .list01 dt {
  width: 140px;
  padding-top: 150px;
  margin-bottom: 60px;
  background-image: url("../../assets/img/voice/voice_icon_01.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  text-align: center;
}
#voice_contents .common_inner .list01 dt:nth-child(3) {
  background-image: url("../../assets/img/voice/voice_icon_02.png");
}
#voice_contents .common_inner .list01 dt:nth-child(5) {
  background-image: url("../../assets/img/voice/voice_icon_03.png");
}
#voice_contents .common_inner .list01 dt:nth-child(7) {
  background-image: url("../../assets/img/voice/voice_icon_04.png");
}
#voice_contents .common_inner .list01 dt:nth-child(9) {
  background-image: url("../../assets/img/voice/voice_icon_05.png");
}
#voice_contents .common_inner .list01 dt:nth-child(11) {
  background-image: url("../../assets/img/voice/voice_icon_06.png");
}
#voice_contents .common_inner .list01 dt:nth-child(13) {
  background-image: url("../../assets/img/voice/voice_icon_07.png");
}
#voice_contents .common_inner .list01 dt:nth-child(15) {
  background-image: url("../../assets/img/voice/voice_icon_08.png");
}

#voice_contents .common_inner .list01 dd {
  width: calc(100% - 200px);
  padding: 15px 30px;
  margin-left: 60px;
  margin-bottom: 60px;
  border: 1px solid #558D74;
  border-radius: 5px;
  background: #fff;
  position: relative;
  box-sizing: border-box;
}
#voice_contents .common_inner .list01 dd::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  margin-top: -14px;

  border-style: solid;
  border-width: 14px 14px 14px 0;
  border-color: transparent #558D74 transparent transparent;
}
#voice_contents .common_inner .list01 dd::after {
  content: "";
  position: absolute;
  left: -13px;
  top: 50%;
  margin-top: -14px;

  border-style: solid;
  border-width: 14px 14px 14px 0;
  border-color: transparent #fff transparent transparent;
}

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

  #voice_contents .common_inner {
    padding: 3rem 1.5rem 0rem;
    margin-bottom: 0rem;
  }
  #voice_contents .common_inner .list01 dt {
    width: 100%;
    height: 25px;
    padding-top: 145px;
    margin-bottom: 1.2rem;
    background-image: url("../../assets/img/voice/voice_icon_01.png");
    background-repeat: no-repeat;
    background-size: 140px 140px;
    background-position: top center;
    text-align: center;
  }
  #voice_contents .common_inner .list01 dd {
    width: 100%;
    padding: 10px 20px;
    margin-left: 0;
    margin-bottom: 3rem;
  }
  #voice_contents .common_inner .list01 dd::before {
    display: none;
  }
  #voice_contents .common_inner .list01 dd::after {
    display: none;
  }

}

