@charset "UTF-8";
/* カラー */
:root {
  --color_main: #3cb035;
  --color_yellow: #f0ae2d;
  --color_blue: #2e9fd8;
  --color_black: #444;
  --color_DarkGreen: #006934;
  --color_text: #222;
  --color_link: #006934;
  --color_bg-gray: #f5f6f4;
  --color_bg-black: #3b4043;
  --color_gray: #c1c2c2;
  --color_white: #ffffff;
}

.f_faq .heading-box {
  max-width: 1200px;
  margin-inline: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
}

.f_faq .section-lead {
  text-align: left;
  max-width: 832px;
  margin-inline: auto;
}

.faq_section-conts {
  text-align: left;
  max-width: 832px;
  margin-inline: auto;
}

.pb4 {
  padding-bottom: 4rem;
}



/* アコーディオン */
  .accordion {
  margin: 3em auto;
  }
  .toggle {
  display: none;
  }
  .option {
  position: relative;
  margin-bottom: 1em;
  }
  .title,
  .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
  }
  .title {
  display: block;
  font-weight: bold;
  background-color: #f5f6f4;
  }

  .title dl {
    display: flex;
  }
  .content dl {
    display:flex;
  }
  .accordion .question {
    background-color: #3cb035;
    padding:2rem;
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    width: 8%;
    text-align: center;
  }
  .accordion .answer {
    background-color: #f0ae2d;
    padding:2rem;
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    width: 8%;
    text-align: center;
  }
  .accordion .paragraph {
    padding:2rem;
    width: 80%;
  }

  .title::after,
  .title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: black;
  transition: all 0.3s;
  }
  .title::after {
  transform: rotate(90deg);
  }
  .content {
  max-height: 0;
  overflow: hidden;
  background-color: #f7f8da;
  }
  .toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
  }
  .toggle:checked + .title::before {
  transform: rotate(90deg) !important;
  }



@media screen and (max-width: 785px) {
  .f_faq .heading-box {
    background-image:none;
  }

  .accordion .paragraph {
    width: 70%;
    padding:1rem;
  }
  .accordion .question {
    width: 20%;
  }
  .accordion .answer {
    width: 20%;
  }

}




