@charset "UTF-8";

.voice-bg > li:nth-child(2n) {
  /* 偶数番目(2,4,6……番目)だけに適用されるCSS */
  background: #dde3e7;
}
.voice-bg > li:nth-child(2n+1) {
  /* 奇数番目(1,3,5……番目)だけに適用されるCSS */
  background: #e6ebef;
}

.bg03 {
  background: #dde3e7;
}
.bg04 {
  background: #e6ebef;
}
.maru {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  background: #0e3781;
  color: #fff;
  border-radius: 40px;
  text-align: center;
  padding-top: 15px;
  line-height: 1rem;
}
.faq-box {
  background: #fff;
  border-radius: 8px;
  border: solid 2px #0e3781;
}

.vm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  width: 100%;
}

/*PCのみ*/
@media (min-width: 768px) {

}

@media (max-width: 768px) {
  .vm {
    position: unset;
    margin-bottom: 8px;
    transform: none;
  }
}



