﻿/* 共通のスタイル */
/******************************************************************************************/

body {
    margin: 0px;
    padding: 0px;
    font-family: "メイリオ";
}

/* 角が丸いボタン */
.RoundedButton {
    background-color: #376ca3;
    border-radius: 4px;
    border-style: none;
    color: #F9F9F9;
    font-family: "メイリオ";
    font-weight: normal;
    font-size: medium;
    width: 134px;
    height: 36px;
}


/* 全体のレイアウト枠 */
.MainTable {
    width: 100%;
    min-width: 940px;
    border-spacing: 0;
    border: 1px;
    border-collapse:collapse;
}
.MainTable_tr {
    padding: 0;
}
.MainTable_td {
    padding: 0;
}


/* 上部のヘッダー */
.Header_tr {
    height: 128px;
}
.Header_td {
    text-align: left;
    background-color: White;
    padding: 0;
    width: 100%;
    height: 128px;
}
.Header_table {
    margin-left: 50px;
    margin-right: 50px;
}

/* システムロゴ(バナー画像) */
.SystemBanner {
    position: absolute;
    top: 22px;
    left: 55px;
    width: 200px;
}
.SystemBanner_tr {
    height: 90px;
}
.SystemBanner_td {
    text-align: left;
    vertical-align: middle;
    padding: 0px;
}

/* 版数情報 */
.VerInfo_tr {
    height: 36px;
}
.LatestVer_td {
    vertical-align: top;
    min-width: 240px;
}
.LatestVer {
    font-size: 16px;
    color: #878787;
}
.LvUpInfo_td {
    vertical-align: top;
    white-space: nowrap;
    min-width: 450px;
    max-width: 450px;
}
.LvUpInfo {
    font-size: 16px;
    color: Red;
}

/*リンクをクリックしても反応しない場合のメッセージ*/
#Span_LinkButton_Msg {
position: absolute;
display: none;
z-index: 1;
}
.LinkButton_Msg {
    position: absolute;
    white-space: nowrap;
    color: #000000;
    background-color: #E6EBFF;
    padding: 20px;
    border: 2px solid #A4C6FF;
    border-radius: 5px;
    font-size:  12px; 
}
.LinkButton_Msg::after {
    position: absolute;
    content: '';
    top: 50%;
    left: -14px;
    width: 20px;
    height: 20px;
    background: inherit;
    transform: translateY(-50%) rotate(135deg) skew(30deg,30deg);
    border-right: inherit;
    border-bottom: inherit;
}
.LinkButton_Msg_Close {
    position: absolute;
    cursor: pointer;
    top: 2px;
    width: 10px;
    height: 10px;
    font-size:  14px; 
}