@charset "utf-8";

/* IE11でスクロールが重なるバグ対策 */
@-ms-viewport {
    width: auto;
}

/* スタイル調整 */

/* 日本語フォント追加 */
html, body {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, Meiryo, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", "Helvetica Neue",Helvetica,Arial,sans-serif,'Glyphicons Halflings';
    font-feature-settings: "palt";/* 文字間を狭くする */
    font-size: 16px;
}

/* MSIEは游ゴを使うと勝手に余白が入る。IEだけMeiryoを先に読ませるか、個別に余白調整が必要 */
@media all and (-ms-high-contrast:none) {
    html, body {
        font-family: -apple-system,BlinkMacSystemFont, Roboto, Meiryo, Yu Gothic Medium, "游ゴシック Medium", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", "Helvetica Neue",Helvetica,Arial,sans-serif,'Glyphicons Halflings';
    }
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 900;/* もっと太くする */
}


html,
body {
    height: 100%;
}

body#login_body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
}

body#member_body {
    padding-top: 70px;
    padding-bottom: 40px;
    height: 100%;
}

/*ログイン**********************/
.form-signin {
    width: 100%;
    max-width: 330px;
    padding: 15px;
    margin: auto;
}
.form-signin .checkbox {
    font-weight: 400;
}
.form-signin .form-control {
    position: relative;
    box-sizing: border-box;
    height: auto;
    padding: 10px;
    font-size: 16px;
}
.form-signin .form-control:focus {
    z-index: 2;
}
.form-signin input[type="email"] {
    margin-bottom: -1px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
    margin-bottom: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
#login_box {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #28385E;
    background: white;
    border-top: solid 5px #28385E;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}

/* ログイン後共通 **********************/
/* サイトのテーマカラー（文字色） */
.base_font_color {
    color: #28385E;
}

/* ナビゲーション上部のライン */
#topnav {
    border-top: solid 5px #28385E;
    background-color: white;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1);
}

/*メンバー**********************/
/* ニュースと募集要項欄 */
ul.msr_newslist03 {
    border: #28385E;
    list-style-type: none;
    padding-inline-start: 0;
    height: 200px;
    overflow: auto;
}
.msr_newslist03 {
    width: 100%;
}
.msr_newslist03 li {
    background-color: #F8F8F8;
    box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 2px 2px rgba(0,0,0,0.2);
    font-size: 88%;
    margin-bottom: 2px;
}
.msr_newslist03 li a {
    box-sizing: border-box;
    color: #000000;
    display: table;
    padding: 15px;
    text-decoration: none;
    transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -webkit-transition: 0.2s ease-in-out;
    width: 100%;
}
.msr_newslist03 li a:hover {
    background: #FFFFFF;
    text-decoration: none;
}
.msr_newslist03 li div {
    display: table-cell;
    width: 94px;
}
.msr_newslist03 li p {
    display: table-cell;
    padding-left: 10px;
    vertical-align: middle;
}

/* 時間の設定 */
.msr_newslist03 li time {
    color: #1B73BA;
    display: table-cell;
    vertical-align: top;
    width: 90px;
}

/* フォームの設定 */
.form-control::placeholder{
    color: #cccccc;
}
