/*=================================================================*/
/*                                                                 */
/* PC版 */
/*                                                                 */


/*===================================*/
/*                                   */
/* ログイン画面アニメーション */
/* 姫野聖花のアニメーション、 */
/* 背景のアニメーションを管理する */
/*                                   */
/*===================================*/

/*姫野聖花フェードアウトアニメーション（透過＋移動）*/
@keyframes hs_fadeout{
    0%{
    }
    100%{
        opacity: 0;
        transform: translate(300%,0);
    }
}

/*姫野聖花フェードアウトアニメーション（拡縮）*/
@keyframes hs_fo_scale{
    0%{
    }
    100%{
        transform: scale(0.0);
    }
}


/*姫野聖花ステッキ回転*/
@keyframes hs_stick_rotate{
    0%{
    }
    10%{
        transform: rotate(-15deg);
    }
    100%{
        transform: rotate(720deg);
    }
}

/*花畑フェードイン*/
@keyframes fadein_flower{
    0%{
    }
    100%{
        opacity: 1;
    }
}

/*===================================*/
/*                                   */
/* 姫野聖花 */
/*                                   */
/*===================================*/

/* 姫野聖花全体 */
#himeno_seika{
    animation-name: hs_fadeout;
    animation-delay: 3.3s;
    animation-duration: 5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

    position:absolute;

    width:300px;
    height:520px;

    top:40px;
    /*right: calc( 100vw / 2 + 200 px );*/
    /*right:25%;*/
}

/* 姫野聖花_拡縮部分管理 */
#himeno_seika_scaler{
    animation-name: hs_fo_scale;
    animation-delay: 3.3s;
    animation-duration: 5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

    transform: scale(0.5);
    transform-origin: center;

    position:absolute;

    width:300px;
    height:520px;
}

/* 姫野聖花共通部分 */
.hs_child{
    position: absolute;
}

/* 姫野聖花ステッキ部分 */
#hs_stick{
    top:-127px;
    left:-76px;
    transform-origin:319px 163px;
    animation-name: hs_stick_rotate;
    animation-delay: 1.8s;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
}


/*===================================*/
/*                                   */
/* 背景 */
/*                                   */
/*===================================*/

/* 背景全体の描画領域 */
#canvas{
    width: 100%;
    height: 100%;    
    position: fixed;
    top:0px;
    left:0px;
}

/* 青空 */
#sky{
    position: absolute;
    top: 0px;
    left:0px;
}

#sky-img{
    min-height: 1080px;
    min-width: 1920px;
    width: 100%;
    height: auto;    
}

#flower{
    position: absolute;
    width: 100%;
    height: 100%;
    left:0px;
    bottom:72px; 
}

#flower_left{
    position: absolute;
    width: 100%;
    height: 100%;
    left:0px;
    bottom:72px; 
}

#flower_right{
    position: absolute;
    width: 100%;
    height: 100%;
    right:0px;
    bottom:72px; 
}

.flower{
    position: absolute;
}

.flower-img{
    min-width: 1530px;
    width: 75%;
    height: auto;
}

/* 花畑左前面 */
#flower_l_front{
    opacity: 0;
    left:0px;
    bottom:0px;

    transform-origin:left bottom;
    animation-name: fadein_flower;
    animation-delay: 3.5s;
    animation-duration: 2.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

    text-align: left;
}

/* 花畑左背面 */
#flower_l_rear{
    opacity: 0;

    left:0px;
    bottom:0px;

    transform-origin:left bottom;
    animation-name: fadein_flower;
    animation-delay: 3.7s;
    animation-duration: 2.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

    text-align: left;
}

/* 花畑右前面 */
#flower_r_front{
    opacity: 0;
    right:0px;
    bottom:0px;

    transform-origin:right bottom;
    animation-name: fadein_flower;
    animation-delay: 3.9s;
    animation-duration: 2.6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

    text-align: right;
}

/* 花畑右背面 */
#flower_r_rear{
    opacity: 0;

    right:0px;
    bottom:0px;

    transform-origin:right bottom;
    animation-name: fadein_flower;
    animation-delay: 4.3s;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

    text-align: right;
}

/*===================================*/
/*                                   */
/* トップ画面UI */
/*                                   */
/*===================================*/

.inputtext{
    width:256px;
    line-height: 30px;
}

.clearfix{
    width:256px;
    height: 158px;
    text-align: -webkit-center;
}

#input_userid_img{
    text-align: left;
}

#input_password_img{
    text-align: left;
}

.login_input{
    position: relative;
    left: -3px;
    padding-top: 0px;
    padding-bottom: 10px;
}

#login_button{
    margin-top: 30px;
    margin-bottom: 30px;
}

#login{
    width: 100vw;
    height: 850px;
    position: absolute;
    text-align: center;
    top:80px;
    left:0px;
    text-align: -webkit-center;
}

#smartphone{
    margin: 24px;
}

/* リンク パスワードを忘れた場合 */
#HyperLink1{
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    align-items: center;
    text-align: center;
    text-decoration-line: underline;
    color: #ED6D34;
}

/* トピックス */
#topics{
    width: 600px;
}

#topics2{
    width: 100%;
    height:100%;
}

.ttl{
    text-align: left;
}

.inner{
    text-align: left;
    padding: 10px;
    height:184px;
    background-size: 600px 204px;
}

/*===================================*/
/*                                   */
/* フッター */
/*                                   */
/*===================================*/


/* コピーライト */
#Copyright{
    width: 100%;
    height:48px;
    background-color: #007F6B;
    bottom:0px;
    left:0px;
    position: fixed;
    padding: 8px 0px;
}

#copyright_text{
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    flex: none;
    order: 0;
    flex-grow: 0;
}