@charset "UTF-8";
/* Scss Document */
div {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  div {
    font-size: 20px;
  }
}
div dl {
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
div dl + dl {
  margin-top: 0.5em;
}
@media screen and (max-width: 480px) {
  div dl {
    display: block;
  }
}
div dl dt {
  width: 7em;
}
div dl dd {
  width: calc(100% - 7.5em);
}
@media screen and (max-width: 480px) {
  div dl dd {
    width: 100%;
  }
}
div dl dd a {
  color: #2ea6ff;
  text-decoration: underline;
}
