@charset "UTF-8";
/*=========================================
googleフォント読み込み

font-family: 'M PLUS 1p', sans-serif;

=========================================*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@300;400;500;700&display=swap');
/*=========================================

共通

=========================================*/
html{
    font-size: 10px;
    height: 100vh;
    height: 100dvh;
}
.islock{
    position: fixed;
}
body{
    background-color: #303030;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    font-family: 'M PLUS 1p', sans-serif;
    color: #fff;
    position: relative;

}
.modal-active{
    height: 100vh;
}
.wrap{
    max-width: 600px;
    padding: 0 10px 25px;
    box-sizing: border-box;
    margin: 0 auto;
    display: block;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 25px 10px;
}
header h1{
    max-width: 78px;
}
header h1 img{
    width: 100%;
    height: auto;
}
.btn-modal{
    width: 30px;
    position: relative;
    height: 19px;
}
.btn-modal.close{
    z-index: 1000000;
}
.btn-modal span{
    display: block;
    background-color: #fff;
    width: 100%;
    height: 3px;
    position: absolute;
    transition: all 0.3s 0s ease;
    
}
.btn-modal span:nth-child(1){
    top: 0;
}
.btn-modal span:nth-child(2){
    top: 8px;
}
.btn-modal span:nth-child(3){
    bottom: 0;
}
.btn-modal.close span:nth-child(1){
    top: 8px;
    transform: rotate(45deg);
}
.btn-modal.close span:nth-child(2){
    opacity: 0;
    visibility: hidden;
}
.btn-modal.close span:nth-child(3){
    bottom: 8px;
    transform: rotate(-45deg)
}
.modal{
    background-color: rgba(11,11,11,0.9);
    overflow-y: scroll;
    visibility: hidden;
    padding: 0 1vw;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 10000;
}
.modal.modal-active{
    opacity: 1;
    visibility: visible;
    z-index: 10000;
}
.hbg-modal-container{
    max-width: 303px;
    margin: 0 auto;
    padding-top: 15vh;
}
.hbg-modal-name{
    text-align: center;
    line-height: 1.6;
}
.hbg-modal-name .id{
    font-size: 2rem;
}
.hbg-modal-name .name{
    font-size: 4.1rem;
}
.hbg-modal-btns{
    margin-top: 50px;
}
.hbg-modal.modal-active{
    visibility: visible;
    opacity: 1;
    transition-duration: 0.2s;
    overflow-y: scroll;
}

.text-input{
    background-color: #fff;
    color: #333;
    border: 1px solid #BABABA;
    border-radius: 1rem;
    display: block;
    padding: 10px 2rem;
}
.text-input + .text-input{
    margin-top: 24px;
}
.text-input::placeholder{
    color: #aaa;
}
.btn{
    display: block;
    width: 100%;
    padding: 2rem 0;
    font-size: 2.2rem;
    background-color: #969696;
    text-align: center;
    font-weight: 300;
    margin: 0 auto;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}
.btn + .btn{
    margin-top: 27px;
}
.bg-blue{
    background-color: #3867B5;
}
.bg-green{
    background-color: #2F8B4F;
}
.bg_orange{
    background-color: #C76356;
}
.link{
    display: inline-block;
    font-size: 1.8rem;
    line-height: 1.6;
    border-bottom: 1px solid #fff;
    text-align: center;
    margin: 0 auto;   
}
.checkbox-input{
    display: none;
}
.news{
    width: 100%;
    font-weight: 500;
    background-color: #CECECE;
    font-size: 1.6rem;
    text-align: center;
    color: #0C652F;
    padding: 10px;
    box-shadow: 0 3 6 rgba(0,0,0,0.2);
    box-sizing: border-box;
}
.error-message-area{
    width: 100%;
    padding: 1.8rem;
    color: #F02E36;
    background-color: #FFCECE;
    font-size: 1.6rem;
    font-weight: 500;
    text-align: left;
    border: solid 3px #F02E36;
    margin-bottom: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.error-message-area::before{
    content: "";
    display: block;
    width: 23px;
    height: 20px;
    background-image: url("../images/icon-error.svg");
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.error-message-area p{
    margin: 0 1rem;
    text-align: left;
}
.error-message{
    color: #F02E36;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 20px;
}
.error-message-area.update-complete{
    background-color: #A6EDCA;
    border: solid 3px #028D6C;
    color: #028D6C;
}
.error-message-area.update-complete::before{
    content: "";
    display: inline-block;
    background-image: none;
    width: 16px;
    height: 12px;
    border-bottom: 5px solid #028D6C;
    border-left: 5px solid #028D6C;
    transform: translateY(-3px) rotate(-45deg);
    margin-right: 0.5rem;
}
.checkbox-visual{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: #BEBEBE solid 2px;
    border-radius: 4px;
}

/*=========================================

ログインページ

=========================================*/
.login{
    min-height: 100vh;
}
.login-wrap{
    width: 100%;
    max-height: 100%;
    padding-bottom: 0;
    padding-top: 15vh;
}
.login h1{
    width: 100%;
    max-width: 209px;
    display: block;
    margin: 0 auto;
}
.login h1 a{
    width: 100%;
}
.login h1 img{
    width: 100%;
    height: auto;
}
.login .news-list{
    margin-top: 38px;
}
.login-input{
    margin-top: 48px;
}

.login-input .text-input{
    font-size: 2.1rem;
    width: 100%;
}
.login-btns{
    margin-top: 59px;
    text-align: center;
}
.login-btns .link{
    margin: 3.2rem 0;
}
@media screen and (max-width: 320px){

    .login-input{
        margin-top: 35px;
    }
    .login-btns{
        margin-top: 35px;
    }
    .login-btns .link{
        margin-top: 2rem;
    }
}
/*=========================================

入力ページ

=========================================*/
.check{
}
.check-wrap{
}
.check .news-list{
    margin-bottom: 20px;
}
.check-item{
    text-align: center;
}
.check-item + .check-item{
    margin-top: 53px;
}
.check-item h2{
    display: inline-block;
    font-size: 4.8rem;
    text-align: center;
    line-height: 1.4;
    border-bottom: 10px solid #c21500;
    border-image: linear-gradient(to right, #F05F33 0%, #D63378 100%);
    border-image-slice: 1;
    margin-bottom: 43px;
}
.gender-list{
    display: flex;
    justify-content: center;
}
.gender-checkbox{
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #999B9E;
    border-radius: 20px;
    color: #999B9E;
    font-size: 5.8rem;
}
.gender-list li:last-child .gender-checkbox{
    margin-left: 34px;
}

.checkbox-input:checked ~ .gender-checkbox{
    background: linear-gradient(135deg,#F05F33,#D63378);
    color: #fff;
    border: none;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}
.age{
    
}
.age-input{
    display: flex;
    justify-content: center;
    align-items: center;
}
.age-input input{
    font-size: 4.6rem;
    line-height: 1.2;
    width: 3em;
}
.age-input p{
    font-size: 5.7rem;
    margin-left: 1.4rem;
}
.observation{
    
}
.observation-list li + li{
    margin-top: 34px;
}
.observation-checkbox{
    width: 100%;
    background-color: #28323B;
    border: #BEBEBE solid 1px;
    border-radius: 8px;
    color: #fff;
    font-size: 22px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 31px 0;
    text-align: left;
    line-height: 1.2;
}
.observation .checkbox-visual{
    margin: 0 26px;
}
.checkbox-visual::before{
    content: "";
    display: inline-block;
    width: 16px;
    height: 12px;
    border-bottom: 5px solid rgba(0,0,0,0);
    border-left: 5px solid rgba(0,0,0,0);
    transform: translateY(-3px) rotate(-45deg);
}
.checkbox-input:checked ~ .observation-checkbox{
    background: linear-gradient(to right,#F05F33,#D63378);
    color: #fff;
    border-color: rgba(0,0,0,0);
    box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}
.checkbox-input:checked ~ .observation-checkbox .checkbox-visual{
    border-color: #fff;
    background-color: #fff; 
}
.checkbox-input:checked ~ .observation-checkbox .checkbox-visual::before{
    border-color: #E5562B;
}
.check-btns{
    margin-top: 42px;
}
@media screen and (max-width: 320px){
    .gender-checkbox{
        width: 140px;
        height: 140px;
        font-size: 4rem;
    }
    .gender-list li:last-child .gender-checkbox{
        margin-left: 20px;
    }
    .observation-checkbox{
        font-size: 1.8rem;
    }
    .checkbox-visual{
        margin: 0 20px;
    }
}
/*=========================================

結果ページ

=========================================*/
.result{
    text-align: center;
}
.result h2{
    font-size: 2.4rem;
    text-align: center;
}
.result aside{
    font-size: 1.2rem;
    line-height: 2;
    margin-top: 20px;
    color: #777;
}
.result-content{
    background-color: #303030;
    border-radius: 19px;
    padding: 10px 10px 20px;
    margin-top: 8px;
}
.probability{
    
}
.result h3{
    font-size: 2rem;
}
.probability_value{
    font-size: 5.2rem;
    border-bottom: 1px solid #fff;
    display: inline-block;
}
#chart{
    margin: 5px auto;
    width: 100%;
    height: 80vw;
    max-width: 500px;
    max-height: 450px;
}
#my_dataviz{
    width: 100%;
}
.data{
    margin-top: 5px;
}
.data li{
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 500;
    max-width: 375px;
    margin: 0 auto;
    text-align: left;
}
.data li + li{
    margin-top: 15px;
}
.category_collor{
    width: 2.3rem;
    height: 2.3rem;   
}
.data li span{
    margin-left: auto;
}
.data li p{
    margin-left: 7px;
}
.data-value{
    width: 3em;
    text-align: right;
}
.record{
    background-color: #555;
    border-radius: 10px;
    padding: 20px 10px;
    margin-top: 40px;
}
.record::before{
    content: "";
    display: none;
    width: 50px;
    height: 5px;
    background-color: #fff;
    margin: 50px 0;
    
}
.record_block{
    display: flex;
    justify-content: center;
    padding: 3px 0;
    background-color: #386DB4;
    max-width: 200px;
    font-size: 2rem;
    border-radius: 14px;
    margin: 23px auto 0;
}
.symptom{
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    font-size: 2rem;
    width: 100%;
    gap: 20px;
    max-width: 470px;
    margin: 30px auto 10px;
}
.symptom li{
    opacity: 0.25;

}
.symptom li.check{
    opacity: 1;
}

.symptom li::before{
    content: "";
    display: inline-block;
    width: 16px;
    height: 12px;
    border-bottom: 5px solid rgba(0,0,0,0);
    border-left: 5px solid rgba(0,0,0,0);
    transform: translateY(-3px) rotate(-45deg);
    margin-right: 0.5rem;
}
.symptom li.check::before{
    border-color: #E64E4E;
    
}
.result_foot{
    font-size: 2rem;
    text-align: right;
    margin-top: 63px;
    font-weight: 300;
    padding: 0 6px;
}
.result-btns{
    margin-top: 37px;
}
.result-btns .btn.remove{
    display: none;
}

.transport-select-container{
    max-width: 483px;
    margin: 5vh auto;
    margin: 5dvh auto;
    max-height: 90vh;
    max-height: 90dvh;
    display: flex;
    flex-flow: column;
    height: 98vh;
    height: 98dvh;
}
.transport-select-header{
    background-color: #3F4B55;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 19px;
    flex-shrink: 0;
    width: 100%;
    position: relative;
}
.transport-select-header h2{
    font-size: 2.2rem;
}
.transport-select-header .close{
    position: absolute;
    top: 21px;
    right: 19px;
}
.transport-select-list{
    background-color: #383838;
    padding: 10px;
    flex-shrink: 1;
    height: 100%;
    overflow: scroll;
}
.transport-select-list li + li{
    margin-top: 19px;
}
.transport-select-list::-webkit-scrollbar {
    width: 0;
    height: 0;
}
.transport-select-checkbox{
    text-align: left;
    line-height: 1.8;
    display: flex;
    width: 100%;
}
.transport-select-checkbox-left{
    background-color: #9D9D9D;
    padding: 0 19px;
    height: auto;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
}
.transport-select .checkbox-visual{
    border-color: #fff;
    margin: 0;
}
.checkbox-input:checked ~ .transport-select-checkbox .transport-select-checkbox-left{
    background: linear-gradient(135deg,#F05F33,#D63378);
}
.checkbox-input:checked ~ .transport-select-checkbox .checkbox-visual::before{
    border-color: #fff;
}
.transport-select-checkbox-right{
    background-color: #fff;
    padding: 10px 27px 16px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
}
.hospital-name{
    font-size: 2.2rem;
    color: #2E2E2E;
    border-bottom: 1px solid #2E2E2E;   
    margin-bottom: 10px;
}
.hospital-mail,
.hospital-address{
    font-size: 1.6rem;
    line-height: 1.6;
    color: #A3A3A3;
}
.sk-fading-circle {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
          animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); 
}
.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); 
}
.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; 
}
.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; 
}
.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; 
}
.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; 
}
.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; 
}
.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; 
}
.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; 
}
.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; } 
}
.transport-select-footer{
    background-color: #3F4B55;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 23px 0;
    flex-shrink: 0;
}
.transport-btns{
    max-width: 303px;
    margin: 0 auto;
}
.send-complete-container,
.send-failed-container{
    background-color: #3F4B55;
    position: relative;
    border-radius: 10px;
    width: 100%;
    max-width: 483px;
    min-height: 600px;
    max-height: 720px;
    margin: 5vh auto;
    padding: 96px 0;
}
.send-complete-container .close,
.send-failed-container .close{
    position: absolute;
    top: 26px;
    right: 38px;
}
.send-complete-container img,
.send-failed-container img{
    max-width: 212px;
}
.send-complete-container h3,
.send-failed-container h3{
    font-size: 4.9rem;
    margin-top: 43px;
}
.send-complete-container p,
.send-failed-container p{
    font-size: 2rem;
    margin-top: 10px;
}
.send-complete-container .link,
.send-failed-container .link{
    margin-top: 104px;
}
@media screen and (max-width: 320px){

}
/*=========================================

パスワード再設定

=========================================*/
.passreset{
    padding-bottom: 10vh;
}
.passreset h2{
    font-size: 3.5rem;
    padding-left: 1.4rem;
    border-left: 1.7rem solid #fff;
    margin-top: 72px;
}
.discription {
    font-size: 1.8rem;
    margin-top: 19px;
    line-height: 1.6;
}
.deadline{
    color: #F5ED27;
}
.discription p + p{
    margin-top: 1em;
}
.passreset-input input{
    font-size: 2.1rem;
    width: 100%;
}
.passreset-input{
    margin-top: 52px;
}
.passreset .btn{
    margin-top: 28px;
}
.passreset-btns{
    text-align: center;
}
.passreset-btns .link{
    margin-top: 112px;
}
@media screen and (max-width: 320px){
    .passreset h2{
        margin-top: 30px;
    }
}
/*=========================================

エラーページ

=========================================*/
.error h2{
    font-size: 2.8rem;
    color: #DD5151;
    margin-top: 6vh;
}
