/*************************************************
 * 共通CSS／ログイン用（AXXXX）
 *************************************************/

/* ボディ */
body {
    font-size:16px;
    font-weight:400;
    line-height:27px;
    font-family:"Lucida Sans", "Yu Gothic", YuGothic;
}

/* リンク */
a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}
a:hover {
    color: #0056b3;
    text-decoration: underline;
}
a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
    color: inherit;
    text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
    outline: 0;
}

/* ダイアログ背景 */
.wrapper .hul-dialog-container {
    background-image : url("../images/hmcs/img-wall-paper.svg");
    background-size : cover;

    z-index:100;
    width:100%;
    top:0px;
    position:fixed;
    padding:40px;
    justify-content:center;
    left:0px;
    height:90vh; /* 100vh; */
    display:flex;
    align-items:center;
}
.hul-dialog-container--fade-in {
    animation:hulFadeIn 0.5s ease 0s 1 normal;
}
@keyframes hulFadeIn {
    0% { opacity:0; }    
    100% { opacity:1; }    
}    

/* ダイアログ */
.hul-dialog {
    background-color:#ffffff;
    border-radius:16px;
    box-shadow:0px 20px 40px 0px rgba(0,0,0,0.2);
    padding:32px;
    position:relative;
}

/* コンテンツ-ヘッダー */
.hul-dialog .hul-dialog__header {
    margin-bottom:8px;
    height:auto;
    display:flex;
    justify-content:center;
}
/* ロゴ */
.hul-logo-virtical {
    width:  216px;
    height: 100px;
    background-image : url("../images/hmcs/HMCS_logo_3Line.svg");
    background-repeat: no-repeat;
    background-color:#ffffff;

}
/* 画面タイトル */
h1.title  {
    font-size: 24px;
    font-weight: 700;
    line-height: 40.8px;
    align-items:center;
    margin-block-start: 0;
    margin-block-end: 0;
}

/* コンテンツ-ボディ */   
.hul-dialog .hul-dialog__body {
    padding-right:4px;
    /* overflow-y:auto; */
    max-height:300px;
    margin-bottom:0px;
    line-height:1.5em;
}

/* コンテンツ-フッタ */
.hul-dialog .hul-dialog__footer {
    margin-top:32px;
    width:100%;
}
/* パスワード */
.password-toggle{
    position: absolute;
    top: 10px;
    left: 90%;
    -webkit-user-drag: none;
}

/*ローディング*/
#loading {
    z-index:105;
}