    html {
        /*
  height: 100vh;
  overflow: hidden;
  */
        font-family: sans-serif;
    }

    body {
        margin: 0;
        padding: 0;
        height: 100%;
    }

    main {
        margin: 0;
        padding: 0;
    }

    main .media {
        display: none;
    }
    /*
input, textarea, select, button, input:active, textarea:active, select:active, button:active, input:focus, textarea:focus, select:focus, button:focus {
    outline: 0;
-webkit-appearance: none;
border-radius: 0;
}
*/

    input[type='text'],
    input[type='number'],
    input[type='tel'],
    input[type='mail'],
    input[type='password'] {
        outline: 0;
        -webkit-appearance: none;
        border-radius: 0;
        width: 100%;
        font-size: 1.2rem;
        padding: 5px;
        border: 1px solid #999;
        border-radius: 2px;
        box-shadow: none;
        box-sizing: border-box;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    input[type="text"]:focus,
    input[type='number']:focus,
    input[type='tel']:focus,
    input[type='password']:focus,
    input[type='mail']:focus {
        border: 1px solid #4bafc7;
        outline: 0;
    }

    .main-sp {
        justify-content: center;
        align-items: stretch;
        display: flex;
        height: 100vh;
        z-index: 5;
        background: #FFF;
        padding-left: 35px;
        padding-right: 35px;
    }

    .main-inner {
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-top: 60px;
    }

    .main-inner-lg {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .logo-header {
        width: 80%;
        margin: 0 auto;
        max-width: 490px;
    }

    .logo_sub_text {
        font-size: 14px;
        width: 100%;
        margin: 0 auto;
    }

    .form_title {
        font-size: 16px;
    }

    .form {
        width: 100%;
        margin: 0 auto;
    }

    input.btn-plain {
        outline: 0;
        -webkit-appearance: none;
        border-radius: 0;
        width: 100%;
        cursor: pointer;
        display: inline-block;
        border-radius: 2px;
        text-align: center;
        font-size: 1rem;
        padding: 0.5rem 1rem;
        vertical-align: middle;
    }

    select {
        cursor: pointer;
        border-radius: 2px;
        text-align: center;
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    input.gray_btn {
        border: 1px solid #999;
        background: #999;
        color: #FFF;
    }

    input.orange_btn {
        border: 1px solid #4bafc7;
        background: #4bafc7;
        color: #FFF;
    }

    input.orange_btn_outline {
        border: 1px solid #4bafc7;
        background: #FFF;
        color: #4bafc7;
    }

    a.btn-plain {
        width: 100%;
        cursor: pointer;
        display: inline-block;
        border-radius: 2px;
        text-align: center;
        font-size: 1rem;
        padding: 0.5rem 1rem;
        vertical-align: middle;
        text-decoration: none;
        box-sizing: border-box;
        font-size: 14px;
    }

    a.btn-plain:hover {
        opacity: .7;
    }

    a.gray_btn {
        border: 1px solid #999;
        background: #999;
        color: #FFF;
        text-decoration: none;
    }

    a.orange_btn {
        border: 1px solid #4bafc7;
        background: #4bafc7;
        color: #FFF;
        text-decoration: none;
    }

    a.orange_btn_outline {
        border: 1px solid #4bafc7;
        background: #FFF;
        color: #4bafc7;
        text-decoration: none;
    }

    a.orange_btn_outline.active {
        background: #4bafc7;
        color: #FFF;
    }

    .fullsize_space {
        width: 100%;
    }

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

    .flex_spacer {
        width: 10px;
        min-width: 10px;
    }
    /*
1024px以上のPCレイアウト
*/

    @media screen and (min-width: 1024px) {}

    @media screen and (min-width: 1024px) {
        .logo-header {
            width: 340px;
            max-width: 340px;
        }
        .main-message {
            width: 480px;
            max-width: 480px;
        }
        .main-inner {
            margin-top: 60px;
        }
        body {
            margin: 0;
            padding: 0;
        }
        main {
            height: 100%;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: row;
            justify-content: space-around;
            overflow: auto;
        }
        .top-images {
            margin: 0vh;
            height: 60vh;
        }
        .top-images .logo {
            max-width: 340px;
            margin: 0 auto;
        }
        .top-images .logo img {
            object-fit: contain;
            height: 100%;
        }
        .top-images .hoshi {
            height: 23vh;
        }
        .top-images .hoshi img {
            object-fit: contain;
            height: 100%;
        }
        .top-images .login-text {
            margin-top: 3vh;
            height: 15vh;
        }
        main .media {
            display: block;
            width: 100%;
            background: #4bafc7;
            height: 100vh;
            position: relative;
            z-index: 0;
        }
        main .media:after {
            content: '';
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }
        main .main-sp {
            width: 100%;
        }
        video.movie {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
        }
    }