@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;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}


body {
  background: #eaeaea;
  font-family: sans-serif;
}
main {
  width: 70%;
  margin: 0 auto;
  font-size: 16px;
}
.logo_image {
  width: 200px;
  display: block;
  height: 100px;
  object-fit: cover;
  margin: 50px auto;
}
h1 {
  font-size: 23px;
  padding-left: 20px;
  border-left: 1px solid #0333;
  margin: 10vh 0 10px;
  line-height: 1.5em;
  color: #333;
}
.dokodemo {
  font-size: 12px;
  padding-left: 20px;
  position: relative;
  top: -7px;
}
h2 {
  padding: 10px 40px;
  width: fit-content;
  margin: 50px 0;
  background: #777;
  color: #eee;
  /* border-radius: 20px; */
}
.check_point {
  padding: 20px 30px;
  border: 1px dotted #777;
  margin-bottom: 50px;
}
  .check_point .point_title {
    padding: 10px 20px;
    background: #777;
    width: fit-content;
    color: #f7f7f7;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5em;
  }
    .check_point .point_title small {
      font-size: 14px;
    }

  .check_point .form_style {
    padding: 0.5em 10px;
    display: inline-block;
    margin-bottom: 20px;
    border: none;
    font-size: 18px;
    width: 5em;
  }
  .check_point span {
    padding-left: 0.5em;
  }
  .check_point .button_style {
    font-size: 18px;
    padding: 30px;
    border: none;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
    /* position: fixed; */
    /* bottom: 20px; */
    background: #777;
    color: #eee;
    width: 100%;
  }
  .check_time_block p {
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 30px 22px;
    background: #00BCD4;
    color: #eee;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.4);
    font-size: 15px;
    border-radius: 80px;
  }
  #information {
    width: calc(100vw - 60px);
    height: calc(100vh - 60px);
    background: #000;
    opacity: 0.9;
    position: fixed;
    top: 0;
    left: -100vw;
    transition: 0.5s;
    color: #fff;
    padding: 30px;
  }
  #information + p {
    margin-top: 150px;
  }

    #information .information_block {

    }
      #information .information_block h2 {
        background: #00BCD4;
        display: block;
        margin: 30px auto;
        text-align: center;
        line-height: 1.5em;
      }
      #information .information_block ul {
        line-height: 1em;
        border: 1px solid;
        padding: 20px;
      }
      #information .information_block li {
        font-size: 18px;
        margin-bottom: 1em;
      }
  .readme {
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.5em;
    padding: 10px;
    background: #f7f7f7;
    text-align: justify;
  }
  .readme p {
    margin-bottom: 1em;
  }
