@charset "UTF-8";
body {
  font-family: 'Didact Gothic', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",'San Francisco', sans-serif;
  font-weight: 500;
  color: #212325;
  font-size: 14px;
  margin: 0;
  -webkit-touch-callout: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

[v-cloak] {
  display: none;
}

.primaryBtn {
  background: #449CBD;
  color: #fff;
  border-radius: 2em;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.accentBtn {
  background: #F6661C;
  color: #fff;
  border-radius: 2em;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.alertBtn {
  background: #E65050;
  color: #fff;
  border-radius: 2em;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.whiteBtn {
  background: #FFF;
  color: #449CBD;
  border-radius: 2em;
  border: solid 1px #449CBD;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  font-size: 14px;
}

.redBtn {
  background: #E84E6D;
  color: #fff;
  border-radius: 2em;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.offBtn {
  background: #B5B5B6;
  color: #fff;
  border-radius: 2em;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  font-size: 14px;
}

/*モーダル表示*/
.modalcontent {
  z-index: 10;
  width: 80%;
  max-width: 400px;
  /*padding: 1em;*/
  background: transparent;
  position: relative;
}

.overlay {
  /* 要素を重ねた時の順番 */
  z-index: 10;
  /* 画面全体を覆う設定 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 画面の中央に要素を表示させる設定 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: default;
}

.closeBtn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  padding: 0;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  background-image: url("../img/icon_close_w.png");
  background-size: cover;
  cursor: pointer;
}

.closeBtn_g {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  padding: 0;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  background-image: url("../img/icon_close_g.png");
  background-size: cover;
  cursor: pointer;
}

.service_footer {
  margin: 1em auto;
  text-align: center;
}

.service_footer .logo {
  width: 50%;
  margin: auto;
}

.service_footer .lab {
  margin: 0 auto;
  font-weight: bold;
  font-size: 11px;
}

.service_footer .lisence {
  font-size: 10px;
}
/*# sourceMappingURL=common.css.map */