.v-questions {
  background: #eaf1f9;
  padding: 50px 0 100px;
}
.v-questions__nav {
  display: flex;
  justify-content: space-between;
}
.v-questions__box {
  margin: 20px 0;
  background: white;
  padding: 1px;
}
.v-questions__box > .v-question {
  display: flex;
  position: relative;
  padding: 30px 60px 30px 30px;
  cursor: pointer;
}
.v-questions__box > .v-question .v-arrowbutton {
  position: absolute;
  top: calc(30px + .5em);
  right: 30px;
  width: auto;
}
.v-questions__box > .v-question > p {
  font-size: 16px;
  line-height: 1.6;
  margin-left: 15px;
}
.v-questions__box > .v-question .v-q {
  font-size: 24px;
  color: #004ea2;
  font-weight: bold;
}
.v-questions__box .v-content {
  display: none;
  padding: 0 30px 30px;
}
.v-questions__box .v-content > hr {
  background: #ccc;
  height: 1px;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  margin: 0 0 30px;
}
.v-questions__box .v-content > .v-answer {
  display: flex;
  flex-wrap: wrap;
}
.v-questions__box .v-content > .v-answer > p {
  width: 840px;
  font-size: 16px;
  line-height: 1.6;
  margin-left: 15px;
}
.v-questions__box .v-content > .v-answer .v-a {
  width: 27px;
  font-size: 24px;
  color: #00b9f2;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .v-questions {
    padding: 25px 0 50px;
  }
  .v-questions__nav {
    display: block;
  }
  .v-questions__nav .c-button {
    display: block;
    padding: 15px 0;
    width: 100%;
    font-size: 14px;
  }
  .v-questions__nav .c-button + .c-button {
    margin-top: 10px;
  }
  .v-questions__box {
    margin: 10px 0;
  }
  .v-questions__box > .v-question {
    padding: 10px 30px 10px 10px;
  }
  .v-questions__box > .v-question .v-arrowbutton {
    top: 15px;
    right: 5px;
  }
  .v-questions__box > .v-question > p {
    font-size: 14px;
    margin-left: 5px;
  }
  .v-questions__box > .v-question .v-q {
    margin-top: -.2em;
    font-size: 20px;
  }
  .v-questions__box .v-content {
    padding: 0 10px 10px;
  }
  .v-questions__box .v-content > hr {
    margin-bottom: 10px;
  }
  .v-questions__box .v-content > .v-answer > p {
    width: 78vw;
    font-size: 14px;
    margin-left: 5px;
  }
  .v-questions__box .v-content > .v-answer .v-a {
    width: 6.5vw;
    margin-top: -.2em;
    font-size: 20px;
  }
}
.v-questions .link-blue {
  text-decoration: underline;
  color: #004ea1;
}
