@charset "utf-8";
.mainvisual{
  margin: 0 auto;
  padding-bottom: 30px;
}
.mainvisual h1{
  width: fit-content;
  font-size: 130%;
  letter-spacing: 1px;
  line-height: 1.7;
  font-weight: normal;
  color: #fff;
  padding: 20px 10px;
  position: relative;
  z-index: 0;
}
.mainvisual h1::before{
  content: '';
  width: 120%;
  height: 100%;
  background: var(--page_color);
  position: absolute;
  top: 0%;
  right: 100%;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}
.mainvisual.active h1::before{
  right: -10%;
}
.mainvisual .img-box{
  height: 30vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mainvisual .img-box img{
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq{
  width: 95%;
  margin: 20px auto 60px;
}
.faq h2{
  color: #fff;
  font-weight: normal;
  padding: 10px 0;
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}
.faq h2::before{
  content: '';
  background: var(--accent_pink);
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0%;
  right: 100%;
  z-index: -1;
  transition: 0.3s;
}
.faq.active h2::before{
  right: 0%;
}
.faq .faq-item{
  margin-bottom: 35px;
}
.faq h3{
  font-size: 116%;
  font-weight: normal;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--page_color);
  padding: 0 5px 10px;
  margin-bottom: 10px;
  position: relative;
}
.faq h3::before{
  content: '';
  width: 10px;
  height: 3px;
  background: var(--page_color);
  position: absolute;
  bottom: -2px;
  right: 0;
}
.faq .faq-item div{
  margin: 0 5px;
}
.faq p{
  letter-spacing: 1px;
  line-height: 1.7;
}

.customer-voice{
  background: #f7f7f7;
  padding:60px 0 60px;
}
.customer-voice .inner{
  width: 95%;
  max-width: 800px;
  margin: 0 auto;
}
.customer-voice h2{
  display: block;
  color: #fff;
  font-weight: normal;
  padding: 5px 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}
.customer-voice h2::before{
  content: '';
  background: var(--page_color);
  width: 100vw;
  height: 120%;
  position: absolute;
  top: -10%;
  right: 100%;
  z-index: -1;
  transition: 0.3s;
}
.customer-voice.active h2::before{
  right: 0%;
}
.customer-voice .voice-item{
  width: 95%;
  margin: 0 auto 30px;
}
.customer-voice .voice-item h3{
  font-size: 116%;
  font-weight: normal;
  border-bottom: 1px solid var(--page_color);
  padding: 0 5px 5px;
  margin-bottom: 5px;
  position: relative;
}
.customer-voice h3::before{
  content: '';
  width: 10px;
  height: 3px;
  background: var(--page_color);
  position: absolute;
  bottom: -2px;
  right: 0;
}
.customer-voice .voice-item p{
  padding: 0 5px;
}
.customer-voice .review-author{
  text-align: right;
  font-size: 90%;
}
.customer-voice .review-author span{
  display: block;
  text-align: right;
}
