@charset "UTF-8";

/* CSS Document */

body {
    font: 100%/1.4 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
    background-color: #DDD;
    background-image: url(../res/bg/bg_outer.png);
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    color: #000;
}


/* --------------------コンテナ-------------------- */

.container {
    width: 1000px;
    max-width: 1280px;
    min-width: 900px;
    background-color: #FFF;
    margin: 0px auto 30px auto;
    border: 2px solid #AAA;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}


/* ヘッダー */

.header {
    width: 1000px;
    margin: 20px auto 10px auto;
    background-color: #A5A5A5;
    background-image: url(../res/header.png);
    background-size: cover;
    border-radius: 10px;
    border: 2px solid #A5A5A5;
    position: relative;
}


/* フッター */

.footer {
    height: 30px;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0px 1px #FFF, 0px -1px #A5A5A5;
    position: relative;
    /* IE6 に、適切にクリアするための hasLayout を指定します。 */
}

.clr {
    clear: both;
    /* この clear プロパティにより .container は、カラムの範囲がどこまでかを認識してその範囲を含めるようになります。 */
}


/* --------------------レイアウト-------------------- */

.sidebar {
    float: left;
    width: 27%;
    min-height: 700px;
    /*background-color: #F2F4FF;*/
    background-color: #F2F4FF;
    padding-top: 10px;
    padding-bottom: 10000px;
    margin-bottom: -10000px;
    position: relative;
}

.mainUpdated {
    position: absolute;
    left: 10px;
    top: 0;
    padding: 0px 5px 0px 5px;
    border-radius: 10px;
    background-color: #F66;
    border: 2px solid #FFF;
    font-size: 11px;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-animation: blink 0.5s ease-in-out infinite alternate;
    -moz-animation: blink 0.5s ease-in-out infinite alternate;
    animation: blink 0.5s ease-in-out infinite alternate;
}

.updated {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -9px;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background-color: #F66;
    border: 2px solid #FFF;
    -webkit-animation: blink 0.5s ease-in-out infinite alternate;
    -moz-animation: blink 0.5s ease-in-out infinite alternate;
    animation: blink 0.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.content {
    width: 73%;
    float: right;
    min-height: 00px;
    padding-top: 30px;
    padding-bottom: 20px;
    position: relative;
}

.sectionTitle {
    padding: 25px 0px 5px 70px;
    margin: 0px 10px 10px 10px;
    background-image: url(../res/bg/bg_sectionTitle.png);
    background-repeat: no-repeat;
    background-position: left bottom;
}

.subsectionTitle {
    background-image: url(../res/system/system_arrow_right.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    padding: 5px 0px 5px 35px;
    margin-bottom: 5px;
}

.subsectionTitle_all {
    background-image: url(../res/system/system_arrow_right.png);
    background-repeat: repeat;
    background-position: left center;
    background-size: contain;
    padding: 5px 0px 5px 35px;
    margin-bottom: 5px;
}

.section {
    /*background-color:#F2F4FF;*/
    margin: 0 20px 0 20px;
    padding: 10px;
}


/* --------------------エレメント-------------------- */

ul,
ol,
dl {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
    padding-right: 15px;
    padding-left: 15px;
}

.jpText {
    text-indent: 1em;
}

a img {
    border: none;
}

.link {
    padding-left: 50px;
}

input[type="image"] {
    outline: 0;
}

input[type="image"]::-moz-focus-inner {
    border: 0px;
}

.imageButton {
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    border: 2px solid #666;
    background-color: #FFF;
}

.imageButton:hover {
    border: 2px solid #09F;
    background-color: #F7FEFF;
}

.imageButtonDisabled {
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    border: 2px solid #666;
    background-color: #FFF;
    opacity: 0.3;
}

.imageButtonRed {
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    border: 2px solid #666;
    background-color: #FFF;
}

.imageButtonRed:hover {
    border: 2px solid #F00;
    background-color: #FFF7F7;
}

.btnBackToTop {
    border: 2px solid #666;
    border-radius: 25px;
    position: fixed;
    top: -170px;
    left: 20px;
}

.btnBackToTop:hover {
    border: 2px solid #09F;
}


/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */

a:link {
    color: #414958;
    text-decoration: underline;
}

a:visited {
    color: #4E5869;
    text-decoration: underline;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
}

table {
    height: 50 px;
    width: 600 px;
    overflow: scroll;
    border-width: 0px;
}

tbody {
    overflow-x: hidden;
    overflow-y: scroll;
}

td.date {
    width: 30%;
    color: #FFF;
    text-align: center;
    background-color: #5898D8;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-width: 0px;
}

td.detail {
    width: 70%;
    text-align: left;
    background-color: #F2F4FF;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-width: 0px;
}

td.detailMid {
    width: 25%;
    text-align: left;
    background-color: #F2F4FF;
    border-width: 0px;
}

td.name {
    width: 30%;
    color: #FFF;
    text-align: center;
    background-color: #5898D8;
    border-top-left-radius: 10px;
    border-width: 0px;
}

td.name2 {
    width: 60%;
    color: #FFF;
    text-align: center;
    background-color: #5898D8;
    border-top-left-radius: 10px;
    border-width: 0px;
}

td.affiliation {
    width: 70%;
    text-align: center;
    color: #FFF;
    background-color: #5898D8;
    border-top-right-radius: 10px;
    border-width: 0px;
}

td.lab {
    color: #FFF;
    text-align: center;
    background-color: #5898D8;
    border-radius: 10px;
    border-width: 0px;
}

td.title {
    padding: 5px 10px;
    text-align: left;
    background-color: #F2F4FF;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-width: 0px;
}


/* ~~ ナビゲーションリストのスタイル付け (Spry などの事前作成済みのフライアウトメニューを使用する場合は削除できます) ~~ */

ul.nav {
    position: absolute;
    top: 20px;
    left: 0px;
    right: 0;
    list-style: none;
}

ul.nav a,
ul.nav a:visited {
    padding: 13px 0px 0px 60px;
    margin-bottom: 10px;
    margin-left: 20px;
    height: 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: block;
    color: #000;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    border: 2px solid #92BEFC;
    border-right: 0px;
    background-color: #E5ECFF;
    background-repeat: no-repeat;
}

ul.nav a:hover,
ul.nav a:active,
ul.nav a:focus {
    margin-left: 15px;
    background-color: #F7FEFF;
    border-color: #B2DEFF;
    color: #00F;
}

ul.nav ul {
    position: relative;
}

ul.navVisited a {
    margin-left: 20px;
    background-color: #FFF;
    border-color: #92BEFC;
    color: #000;
}

ul.navVisited a:hover {
    margin-left: 20px;
    background-color: #FFF;
    border-color: #92BEFC;
    color: #000;
}

ul.navVisited ol {
    position: relative;
}

ul.navVisited ol a {
    margin-left: 40px;
    font-weight: normal;
    margin-top: -7px;
    height: 15px;
    padding: 5px 0px 10px 35px;
    background-image: url(../res/system/system_arrow_right.png);
    background-size: contain;
    background-color: #E5ECFF;
    background-position: 5px;
}

ul.navVisited ol a:hover,
ul.navVisited ol a:active,
ul.navVisited ol a:focus {
    margin-left: 35px;
    background-color: #F7FEFF;
    border-color: #B2DEFF;
    color: #00F;
    cursor: pointer;
}


/* ~~ その他の float/clear クラス ~~ */

.fltrt {
    /* このクラスを使用すると、ページ内でエレメントを右にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
    float: right;
    margin-left: 8px;
}

.fltlft {
    /* このクラスを使用すると、ページ内でエレメントを左にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
    float: left;
    margin-right: 8px;
}

.clearfloat {
    /* このクラスは、#footer が #container から削除されているか取り出されている場合に、<br /> または空の div で、フローティングさせる最後の div に続く最後のエレメントとして (#container 内に) 配置できます。 */
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}

.center {
    text-align: center;
}

.center table,
.center div,
.center p {
    margin-right: auto;
    margin-left: auto;
}