
html {
    /*height: 100%;*/
    /*height: calc(var(--vh, 1vh) * 100);*/
    background-color: #000;
    min-height: 100%;

}

body {
    margin: 0 auto;
    background-color: #000;
    font-family: 'Noto Sans JP', "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
    font-weight: 400;
    /*font-size: 2.1vw;*/
    line-height: 2;
    overflow: hidden;
    /*height: calc(var(--vh, 1vh) * 100);*/
    height: 100vh;
    width: 100%;
    position: relative;
    color: #FFF;
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

a {
    color: #000;
    transition: opacity .5s;
}


img {
    max-width: 100%;
    max-height: 100%;
}


input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

#login {
    flex-direction: column;
}
#login form {
    margin-top: 0;
    padding: 26px 24px;
    margin-left: 0;
    font-weight: 400;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 3px rgb(0 0 0 / 4%);
    color: #444;
    font-size: 14px;
}

#login form .input, #login input[type=password], #login input[type=text] {
    font-size: 24px;
    line-height: 1.33333333;
    width: 100%;
    border-width: 0.0625rem;
    padding: 0.1875rem 0.3125rem;
    margin: 0 6px 16px 0;
    min-height: 40px;
    max-height: none;
    box-sizing: border-box;
}

#login form .input, #login form input[type=checkbox], #login input[type=text] {
    background: #fbfbfb;
}

#login form  input[type=password],#login form  input[type=text] {
    box-shadow: 0 0 0 transparent;
    border-radius: 4px;
    border: 1px solid #7e8993;
    background-color: #fff;
    color: #32373c;
}

#login .login-submit input[type=submit] {
    background: #007cba;
    border-color: #007cba;
    color: #fff;
    text-decoration: none;
    text-shadow: none;
    min-height: 32px;
    line-height: 2.30769231;
    padding: 0 12px;
    vertical-align: baseline;
    float: right;
    display: inline-block;
    font-size: 13px;
    margin: 0;
    cursor: pointer;
    border-width: 1px;
    border-style: solid;
    -webkit-appearance: none;
    border-radius: 3px;
    white-space: nowrap;
    box-sizing: border-box;
}