﻿/* 画面の中央揃え */
.div-back {
    /* 水平・垂直方向の中央揃え */
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ログイン用テーブル */
.tbl-login {
    border-spacing: 0 40px;
}

/* 行3 */
.row3{
    display:flex;
    flex-direction:row;
}

/* 親ラベル */
.parent-label {
    display: flex;
    justify-content:center;
    align-items:center;
}

/* 子ラベル */
.child-label {
    display: inline-block;
}

/* ログインボタンデザイン */
#btn-login {
    /* 背景色 */
    background: #61AED1;
    /* ボタンの角 */
    border-radius: 10px;
    /* ボタンの影 */
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.35);
    /* フォントの表示位置 */
    text-align: center;
    /* フォントの色 */
    color: white;
    /* 罫線の幅 */
    border-width: 1px;
    /* 幅 */
    width: 200px;
    /* 高さ */
    height: 50px;
    /* フォントサイズ */
    font-size: 15px;
}

/* 入力コントロール */
.input-width {
    width: 400px;
    outline: none;
}

/* ラベルコントロール */
.label-width {
    width: 100px;
    margin-right: 20px;
    display: flex;
    justify-content: right;
    align-items: center;
}

/* 中央揃え */
.center{
    text-align:center;
}

/* パスワード囲み */
.password-wrapper {
    height: 52px;
    width: 402px;
    padding: 0px;
    flex-shrink: 0;
    border: 1px solid #9E9E9E;
    background: #FFF;
    border-radius: 10px;
}

/* パスワードテキスト */
.txt-password {
    border: none;
    width: 340px;
}

/* パスワードアイ */
.btn-pass-eye {
    vertical-align: top;
    width: 50px;
    height: 50px;
    border: none;
    background: url(../../img/view.png) no-repeat center center;
    background-size: 50% auto;
    cursor: pointer;
    box-shadow: none;
}
    .btn-pass-eye.is-visible {
        width: 50px;
        height: 50px;
        border: none;
        background: url(../../img/hide.png) no-repeat center center;
        background-size: 50% auto;
        cursor: pointer;
        display: inline;
        top: 0px;
    }
    .btn-pass-eye:active{
        display:inline;
        top: 0px;
    }

/* 6inc 横 */
@media screen and (max-width:920px) and (orientation: landscape) {
    /* ログイン用テーブル */
    .tbl-login {
        border-spacing: 0 20px;
    }
}
/* 6inc 縦 */
@media screen and (max-width:430px) and (orientation: portrait) {
    /* 入力コントロール */
    .input-width {
        width: 300px;
    }
    /* パスワード囲み */
    .password-wrapper {
        width: 302px;
    }
    /* パスワードテキスト */
    .txt-password {
        width: 240px;
    }
    /* ラベルコントロール */
    .label-width {
        display: block;
        justify-content: normal;
        align-items: normal;
        margin-bottom: 10px;
    }
    /* 親ラベル */
    .parent-label {
        display: flex;
        justify-content: left;
        align-items: center;
    }
    /* 子ラベル */
    .child-label {
        display: flex;
        flex-direction:column;
    }
    /* 行3 */
    .row3 {
        display: flex;
        flex-direction: column;
    }
    .tbl-login th {
        width: 100%;
        display: block;
        border-bottom: none;
    }

    .tbl-login td {
        width: 100%;
        display: block;
        border-bottom: none;
    }
}
/* 11inc 横 */
@media screen and (min-width:921px) and (max-width:1300px) and (orientation: landscape) {

}
/* 11inc 縦 */
@media screen and (min-width:431px) and (max-width:840px) and (orientation: portrait) {

}
/* pc */
@media screen and (min-width:1301px) and (orientation: landscape) {
}