
/* -------------------------------------------
全画面共通
style.css
---------------------------------------------- */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap');
@import url(https://use.fontawesome.com/releases/v5.10.0/css/all.css); */

/* --------------------------------------------
html
----------------------------------------------- */
html{
    height: 100%;
}

/* --------------------------------------------
body
----------------------------------------------- */
body{
    font-family:'メイリオ', 'Meiryo', sans-serif;
    min-width: 1000px;
    color: #707070;
    background-color: #fff;

  }

/* --------------------------------------------
header
----------------------------------------------- */
/* header {
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 100%;
    position: fixed;
    z-index: 99;
    height: 55px;
    background-color: #1f9690;
} */
/* --------------------------------------------
footer
----------------------------------------------- */
footer p{
    text-align: center;
    font-size: 12px;
}

/* --------------------------------------------
共通:全体
----------------------------------------------- */
.max1000{
    max-width: 1000px;
    margin: 0 auto;
}
.contents_area{
    width: 80%;
    margin: 0 auto;
    padding: 5% 0;
}
.contents{
    margin-top: 50px;
}
/* --------------------------------------------
ログイン画面
----------------------------------------------- */
.login{
    background: url(../../image/bfh_login/background.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    backdrop-filter: blur(2px);
    min-height: 100%;
    min-width: 100%;

}

.login main{
    padding-top: 30px;
}

.login_table{
    background-color: #fff;
    /* opacity: 0.9; */
    width: 70%;
    margin: 0 auto;
    border-radius: 18px;
    height: 450px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.login_input{
    padding: 20px 20px 20px 20px;
    width: 80%;
    margin: 0 auto;
    opacity: 1;
}
.login_input table{
    width: 100%;
}
.login_input th, .login_input td{
    vertical-align: middle;
    text-align: left;
}
.login_input input[type="text"],
.login_input input[type="password"]{
    background-color: #d3d5e0;
    border-bottom: 1px solid #707070;
    padding: 0.7em 0.3em;
    width: 100% !important;
    margin: 10px 0;
    border-radius: 3px;
    color: #fff;
}
.login_input input[type="password"]:hover,.login_input input[type="password"]:focus,
.login_input input[type="text"]:hover,.login_input input[type="text"]:focus
{
    background-color: #7878c4;
    border-radius: 3px;
    color: #fff;
    transition-duration: 0.2s;
}
.login_input input::placeholder{
    color: #707070 !important;
}
.login_input input:hover::placeholder{
    color: #fff !important;
}
.login_btn{
    font-size: 20px;
    padding: 10px 50px;
    background-color: #239adf;
    border-bottom: 5px solid #0b6396;
    color: #fff;
    font-weight: bold;

  }

.btn_shadow_g{
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}
.login_btn:hover{
    margin-top: 3px;
    color: #fff;
    background: #56b3e9;
    border-bottom: 3px solid #0b6396;
}

.main_logo_area{
    text-align: center;

}
.main_logo_area img{
    width: 80px;
    padding: 30px 0 0 0 ;
    filter: drop-shadow(0px 7px 6px rgba(0,0,0,.5));
}

.login h1{
    line-height: 60px;
    text-align: center;
    font-weight: bold;
    background-color: #239adf;
    font-size: 20px;
    border-radius: 18px 18px 0 0;
    box-shadow: 2px 2px 4px;
    border-left: none;
    color: #fff;
    /* text-shadow: #FC0 1px 0 10px; */
}
/* --------------------------------------------
ボタン
----------------------------------------------- */
.btn_area{
    text-align: center;
    margin: 20px 0;
}

/* --------------------------------------------
インデックス
----------------------------------------------- */
.top_area{
    background-image: url(../../image/bfh_login/background.jpg);
    background-size: cover;
    background-position: left 40% bottom 14%;
    height: 150px;
    position: relative;
}
.top_area p{
    position: absolute;
    font-size: 36px;
    left: 50px;
    bottom: -19px;
    color: rgb(46, 45, 45);
    font-weight: bold;
    text-shadow: 3px 3px 1px rgba(22,9,9,0.3);
    background: #ffffffe1;
    padding: 15px 80px 10px 15px;
    -webkit-box-shadow: 5px 5px 0 #239adf;
    box-shadow: 5px 5px 0 #239adf;
}
.cnt_menu{
    font-size: 20px;
    border-left: 5px solid #239adf;
    font-weight: bold;
    padding: 6px 0;
    padding-left: 7px;
    margin-bottom: 20px;
}

.error_message{
	color: red;
    text-align: center;
}

.logout_area{
	width: 80%;
    text-align: right;
    margin: 0 auto;
}

.logout_area a{
	color: navy;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.9em;
}

.logout_area a:hover{
	color: crimson;
    text-decoration: underline;
}