@charset "UTF-8";
/* CSSリセット */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

input {
  padding: 10px;
}

input[type="submit"] {
  -webkit-appearance: none;
  background: #29abe2;
  border: 0;
  color: #fff;
  padding: 10px 30px;
  display: block;
  border-radius: 20px;
  margin: 60px auto 0;
}

body {
  font-size: 16px;
  font-family: sans-serif;
  font-style: normal;
}

h2 {
  font-size: 20px;
}

p {
  line-height: 1.7em;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  opacity: 0.9;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 16px;
  }
}

header .login_kv {
  margin: 100px 0 60px;
}

header .page_kv {
  width: 100%;
  margin: 60px 0 100px;
}

header img {
  display: table;
  margin: 0 auto;
}

header h1 {
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
}

header .logined {
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-radius: 30px;
  text-align: center;
  width: 90%;
  box-sizing: border-box;
  margin: 40px auto 100px;
}

header .page_title {
  padding: 30px 0;
  text-align: center;
  color: #fff;
}

header .check_bg {
  background: #76CA87;
}

header .result_bg {
  background: #6DC5CC;
}

main section {
  width: 100%;
  padding: 0 5%;
  box-sizing: border-box;
}

main section .input_box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
}

main section .input_box div {
  width: 6em;
}

main .self_check_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

main .self_check_main a {
  border-radius: 16px;
  padding: 70px 0;
  color: #fff;
  text-align: center;
}

main .self_check_main .check_start {
  width: 100%;
  background: #76CA87;
  margin-bottom: 10px;
}

main .self_check_main .check_watch {
  width: 48%;
  background: #6DC5CC;
}

main .self_check_main .logout_btn {
  width: 48%;
  background: #6DC5CC;
}

main .question {
  margin-bottom: 100px;
}

main .question h2 {
  text-align: center;
  padding-top: 100px;
  margin-bottom: 50px;
  position: relative;
}

main .question h2:before {
  content: "";
  position: absolute;
  background-image: url(../image/input_icon.svg);
  background-repeat: no-repeat;
  width: 44px;
  height: 59px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

main .question h2:after {
  content: "step1";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

main .question .question_single dl {
  display: flex;
  margin-bottom: 1em;
}

main .question .question_single dl dt {
  width: 3em;
}

main .question .question_single dl dd {
  width: calc(100% - 3em);
}

main .question .question_single ul {
  list-style: none;
  padding-left: 3em;
}

main .question .question_single ul li {
  margin-bottom: 1em;
  display: flex;
  align-items: baseline;
}

main .check {
  background: #d3f1f3;
  padding-top: 50px;
  padding-bottom: 50px;
}

main .check h2 {
  text-align: center;
  padding-top: 100px;
  margin-bottom: 50px;
  position: relative;
}

main .check h2:before {
  content: "";
  position: absolute;
  background-image: url(../image/input_icon.svg);
  background-repeat: no-repeat;
  width: 44px;
  height: 59px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

main .check h2:after {
  content: "step2";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

main .check .check_single {
  margin-bottom: 50px;
}

main .check .check_single dl {
  display: flex;
  margin-bottom: 1em;
}

main .check .check_single dl dt {
  width: 2em;
}

main .check .check_single dl dd {
  width: calc(100% - 2em);
}

main .check .check_single dl dd span {
  display: block;
  font-size: 15px;
}

main .check .check_single .check_read {
  padding: 20px;
  background: #f1f1f1;
  margin-bottom: 20px;
}

main .check .check_single img {
  width: 100%;
  margin-bottom: 20px;
}

main .check .check_single ul {
  list-style: none;
}

main .check .check_single ul li {
  margin-bottom: 1em;
}

main .entry {
  background: #c66;
  color: #fff;
  margin-bottom: 100px;
  text-align: center;
  padding: 20px 0;
}

main .entry button {
  width: fit-content;
  padding: 20px 40px;
  background: #ffffff;
  color: #c66;
  margin: 30px auto 0;
  border-radius: 50px;
  border: 0;
}

main .back {
  display: table;
  margin: 0 auto 100px;
  padding: 10px 40px;
  background: #6DC5CC;
  color: #fff;
  border-radius: 20px;
}

main .result h2 {
  text-align: center;
  padding-top: 100px;
  margin-bottom: 50px;
  position: relative;
}

main .result h2:before {
  content: "";
  position: absolute;
  background-image: url(../image/result_icon.svg);
  background-repeat: no-repeat;
  width: 44px;
  height: 59px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

main .result h2:after {
  content: "最新の結果";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}

main .result .result_text {
  margin-bottom: 100px;
}

main .result .result_text img {
  display: table;
  margin: 0 auto 50px;
}

main .result .nodata {
    text-align: center;
    margin-bottom: 70px;

}
main .result .nodata a {
    display: table;
    margin: 20px auto 100px;
    padding: 10px 40px;
    background: #76CA87;
    color: #fff;
    border-radius: 20px;
}

#myChart{
  max-width: 90%;
  width: 600px;
  height: 600px;
  
  margin: 0 auto 20px;
}






/*# sourceMappingURL=style.css.map */