<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*
画面固有のスタイルを定義する
*/

/*======================================================
 * Pky001（ログイン画面）
 */

html {
    background: #eeeeee;
    /*background: url(../../../../images/bg.png) #eeeeee;*/
}

#login {
    display: table;
    overflow: hidden;
    margin: 50px auto 0 auto;
    max-width: 1400px;
    min-width: 960px;
    width: 90%;
}

/* ログインエリア */
.loginMain {
    display: table-cell;
    vertical-align: top;
    width: 340px;
}

/*
.loginLogo {
    background: url(../../../../images/upLogoLogin.png) no-repeat bottom center;
    background-size: 65%;
    box-sizing: border-box;
    height: 65px;
    margin-bottom: 15px;
}
*/

.loginLogoArea {
    box-sizing: border-box;
    height: 65px;
    margin-bottom: 15px;
    position: relative;
}

.loginLogoArea img {
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
}

.loginForm {
    background: rgba(238,238,238,0.5);
    border: solid 1px #777777;
    border-radius: 6px;
    color: #ffffff;
    padding: 25px;
    text-align: left;
}

.loginForm p {
    margin-bottom: 12px;
}

.loginForm p:last-child {
    margin-bottom: 0;
}

.loginForm input {
    /*background: rgb(250, 255, 189);*/
    /*border: solid 1px #eeeeee;*/
    box-shadow: none !important;
    /*font-size: 16px !important;*/
    width: 93%;
}

.btnLogin {
    background: #005882;
    border: none;
    box-shadow: none;
    color: #ffffff;
    /*font-size: 1.1em !important;*/
    letter-spacing: 2px;
    margin-bottom: 10px;
    /*padding: 3px 20px !important;*/
    text-indent: 2px !important;
}

.dottedLine {
    display:block;
    width: 100%;
    height: 1px;
    border: 0;
    border-top: dotted 1px #777777;
}

/* お知らせエリア */
.infoMain {
    display: table-cell;
    padding-right: 80px;
    margin-top: 50px;
}

/*
.universityLogo {
    background: url(../../../../images/univLogo.png) no-repeat center left;
    background-size: contain;
    box-sizing: border-box;
    height: 50px;
    margin-bottom: 30px;
}
*/

.universityLogo {
    box-sizing: border-box;
    height: 50px;
    margin-bottom: 30px;
    overflow: hidden;
    width: 540px;
}

/* オーバーレイ */
#loginForm .ui-widget-overlay {
    background: #fefefe;
    opacity: .30;
    filter: Alpha(Opacity=30);
}

/* お知らせ */
.information {
    background: rgba(255,255,255,0.95);
    border-radius: 6px;
    max-width: 800px;
    min-height: 50px;
    padding: 5px 15px;
    vertical-align: top;
}

.information &gt; table {
    width: 100%;
}

.information &gt; table &gt; tbody &gt; tr {
    border-bottom: dotted 1px #aaaaaa;
}

.information &gt; table &gt; tbody &gt; tr:last-child {
    border: 0;
}

.information &gt; table &gt; tbody &gt; tr &gt; td {
    padding: 10px;
}

.tableFixed {
    table-layout: fixed;
}

.tableFixed .fr-box {
    overflow-wrap: break-word;
}
</pre></body></html>