@charset "UTF-8";

.faq {
  display: none;
}

.faq_wrap {
  position: relative;
  margin-bottom: 1em;
}

.question,
.content {
  transform: translateZ(0);
  transition: all 0.3s;
}

.question {
  position: relative;
  padding: 15px 50px 15px 50px;
  margin: 20px 0 10px;
  background-color: #E9FAD8;
  display: block;
  font-weight: 500;
}

.question::after,
.question::before {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 7px);
  width: 2px;
  height: 14px;
  background-color: #B4B4B4;
  transition: all 0.3s;
}

.question::after {
  transform: rotate(-90deg);
}

.content {
  max-height: 0;
  overflow: hidden;
  margin-top: 10px;
}

.content p {
  position: relative;
  margin: 0;
  padding: 15px 15px 15px 50px;
  align-items: center;
}

.faq:checked+.question+.content {
  max-height: 500px;
  transition: all 1.5s;
}

.faq:checked+.question::before {
  transform: rotate(-90deg) !important;
}

.question span,
.content span {
  position: absolute;
  left: 0;
  top: calc(50% - 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  text-align: center;
  line-height: 3.7rem;
  font-weight: 700;
}

.question span {
  color: #5CB531;
  background-color: #FFFFFF;
}

.content span {
  color: #fff;
  background-color: #5CB531;
  top: 15px;
}

.content a {
  text-decoration: underline;
}



h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 100px 0 60px 0;
  background-color: #5CB531;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  line-height: 1.5;
}