/*---------------------------------------------
    common
---------------------------------------------*/
/*---------------------------------------------
    main img
  ---------------------------------------------*/
.mv {
  align-items: center;
  background: url(../images/mv_sub.jpg) no-repeat;
  background-size: cover;
  display: flex;
  height: 400px;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .mv {
    height: 180px;
  }
}
.mv .page-title {
  color: #13ae67;
  display: inline-block;
  font-size: 3.6rem;
  padding: 2px 50px 0;
  text-shadow: 1px 1px 4px #fff;
}
@media screen and (max-width: 820px) {
  .mv .page-title {
    font-size: 2.4rem;
  }
}

.section-ttl {
  background: #13ae67;
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0px 32px 2px;
}

/*---------------------------------------------
    main
---------------------------------------------*/
/*---------------------------------------------
    qa
---------------------------------------------*/
.qa {
  margin: 0 auto;
  padding-bottom: 16px;
  padding-top: 40px;
  width: 86%;
}
.qa .section-ttl {
  margin-bottom: 16px;
}
.qa .inner {
  margin: 0 auto;
}
.qa .inner dl {
  margin-bottom: 24px;
}
.qa .inner dl dt {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}
.qa .inner dl dt .num {
  background: #13ae67;
  border-radius: 50%;
  color: #fff;
  display: block;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
}
.qa .inner dl dt .ttl {
  color: #13ae67;
  display: block;
  line-height: 1.4;
  width: calc(100% - 56px);
}
.qa .inner dl dd {
  background: #fff;
  border-radius: 6px;
  color: #13ae67;
  padding: 8px 16px;
  text-align: justify;
}