@charset "utf-8";

/* ==========================================================================
   リセット・基本設定
   ========================================================================== */

/* リセットCSS */
html, body, address, h1, h2, h3, h4, h5, h6, dl, dt, dd, ol, ul, li, div, p, pre, blockquote, hr, bdo, span, a, small, b, i, em, strong, br, del, ins, abbr, dfn, sub, sup, q, cite, code, var, kbd, samp, map, area, iframe, img, table, tr, th, td, caption, thead, tfoot, tbody, colgroup, col, form, label, fieldset, legend, input, textarea, select, option, optgroup, button, command, details, menu, summary, article, aside, header, footer, nav, section, figcaption, figure, main, mark, rp, rt, ruby, time, wbr, audio, canvas, embed, object, param, source, video, datalist, keygen, meter, output, progress {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}

html {
    overflow-y: scroll; /* Firefox用縦スクロールバー */
    height: 100%;
}

body {
    height: 100%;
    line-height: 1.2;
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    color: #000;
    background: #fff;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a, a:link, a:visited {
    color: #333;
    text-decoration: none;
}

a:hover, a:active {
    color: #777;
}

a:focus {
    outline: none;
}

article, aside, canvas, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
}

/* ==========================================================================
   基本レイアウト
   ========================================================================== */

/* コンテナ */
#container, #wrapper {
    text-align: left;
    padding: 0;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.2em;
}

/* ヘッダー */
#header, header {
    margin: 0 0 20px 0;
    padding: 10px;
    text-align: center;
    line-height: 1.3em;
}

#header p {
    margin: 0;
    padding: 20px 0px;
}

/* メインコンテンツ */
#contents, main {
    margin: 20px 0;
    padding: 0;
    text-align: center;
}

/* フッター */
#footer, footer {
    text-align: center;
    margin: 0;
    padding: 5px 0;
}

#footer p, footer p {
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   見出し
   ========================================================================== */

/* ページタイトル */
h1 {
    font-size: 150%;
    margin: 0;
    padding: 10px 0 10px 20px;
    font-weight: bold;
}

/* セクション見出し */
h2 {
    color: #ffffff;
    background: #6c8ffc;
    font-size: 14pt;
    line-height: 1;
    margin: 10px 0;
    padding: 10px 5px;
    box-shadow: 1px 3px 7px 0 #666666;
    border-top: 3px solid #FFD412;
    border-radius: 5px;
}

h2#2 {
    background: #549A62;
}

/* サブセクション見出し */
h3 {
    color: #2c2521;
    font-size: 1.2em;
    margin-bottom: 1.5em;
    padding: 5px 0 5px 5px;
    border-left: 10px solid #000000;
    border-bottom: 1px solid #000000;
    line-height: 1.2em;
	}

h4 {
    color: #2c2521;
    font-size: 1em;
    margin-bottom: 1.5em;
    padding: 5px 0 5px 5px;
}

/* 装飾見出し */
h5 {
    position: relative;
    margin: 0 0 1.5em;
    padding: 0.8em 0 0.8em 1.5em;
    border: 2px solid #4b64b0;
    font-size: 1em;
    font-weight: bold;
}

h5:before {
    content: "";
    position: absolute;
    background: #4b64b0;
    top: 50%;
    left: 0.5em;
    margin-top: -15px;
    height: 30px;
    width: 8px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}

h6 {
    position: relative;
    margin: 0 0 1.5em;
    padding: 0.8em 0 0.8em 1.5em;
    border: 2px solid #549A62;
    font-size: 1em;
    font-weight: bold;
}

h6:before {
    content: "";
    position: absolute;
    background: #549A62;
    top: 50%;
    left: 0.5em;
    margin-top: -15px;
    height: 30px;
    width: 8px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
}

/* ==========================================================================
   テキスト要素
   ========================================================================== */

p {
    color: #666666;
    margin: 0 0 1em 0;
    padding: 0;
    line-height: 1.3;
}

p2 {
    color: #666666;
    font-size: 0.95em;
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

/* ==========================================================================
   テーブル
   ========================================================================== */

/* 基本テーブル */
table.t1 {
    width: 90%;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-spacing: 0;
    margin: 0 auto;
    font-size: 0.9em;
}

table.t1 tr th, table.t1 tr td {
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
    padding: 4px;
}

table.t1 tr th {
    background: #F6BF00;
    color: #3F3F3F;
}

table.t1 caption {
    font-size: 120%;
    font-weight: bold;
    width: 100%;
    border-bottom: 1px dotted #000000;
    margin-bottom: 5px;
    text-align: left;
    color: #595959;
    line-height: 1.3em;
}

/* スケジュールテーブル */
table.t2 {
    width: 90%;
    border-spacing: 0;
    font-size: 0.9em;
    margin: 0 auto 20px;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
}

table.t2 tr th, table.t2 tr td {
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
    padding: 4px;
    text-align: center;
}

table.t2 tr th {
    background: #6AB475;
    color: #3F3F3F;
    width: 20%;
    table-layout: fixed;
}

table.t2 caption {
    font-size: 120%;
    font-weight: bold;
    width: 100%;
    border-bottom: 1px dotted #000000;
    margin-bottom: 5px;
    text-align: left;
    color: #595959;
    line-height: 1.3em;
}

/* プレゼンテーションテーブル */
table.t3 {
    width: 100%;
    border-spacing: 0;
    font-size: 95%;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    margin: 0 auto;
}

table.t3 tr th, table.t3 tr td {
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
    padding: 10px 4px;
}

table.t3 tr th {
    color: #FFFFFF;
    background-color: #4B64B0;
}

table.t3 caption {
    font-size: 100%;
    font-weight: bold;
    width: 100%;
    border-bottom: 1px dotted #000000;
    margin-bottom: 5px;
    text-align: left;
    color: #595959;
}

/* 改行なし設定 */
table.t3 tr td:nth-child(2) {
    white-space: nowrap;
}

table.t3 tr td:nth-child(4) {
    white-space: nowrap;
}

/* ポスタープレゼンテーションテーブル */
table.t4 {
    width: 100%;
    border-spacing: 0;
    font-size: 95%;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    margin: 0 auto;
}

table.t4 tr th, table.t4 tr td {
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
    padding: 10px 4px;
}

table.t4 tr th {
    color: #FFFFFF;
    background-color: #549A62;
}

table.t4 caption {
    font-size: 100%;
    font-weight: bold;
    width: 100%;
    border-bottom: 1px dotted #000000;
    margin-bottom: 5px;
    text-align: left;
    color: #595959;
}

table.t4 tr td:nth-child(3) {
    white-space: nowrap;
}

/* ==========================================================================
   ボックス要素
   ========================================================================== */

/* セッション番号ボックス */
.box08 {
    font-size: 1.2em;
    background: #FFFFFF;
}

.box08 dt {
    color: #FFD412;
    background: #4b64b0;
    font-weight: bold;
    text-align: center;
    padding: 6px;
    border-radius: 4px;
}

.box02 {
    width: 80px;
    font-size: 14px;
    background: #FFFFFF;
}

.box02 dt {
    width: 4em;
    color: #FFD412;
    background: #4b64b0;
    font-weight: bold;
    text-align: center;
    border-radius: 2px;
}

.box01 {
    width: 70px;
    height: 20px;
    font-size: 18px;
    background: #FFFFFF;
}

.box01 dt {
    width: 4em;
    color: #FFFFFF;
    background: #999999;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
}

/* ==========================================================================
   テキストエリア
   ========================================================================== */

#contents #txt_area {
    width: 90%;
    margin: 0 auto;
    text-align: left;
    font-size: 90%;
    padding: 20px 0;
    line-height: 1.3em;
}

#contents #txt_area dl p {
    font-size: 1.2em;
    margin-top: 20px;
    font-weight: bold;
}

#contents #txt_area dt {
    font-weight: bold;
    padding-top: 10px;
}

#contents #txt_area dd {
    margin-left: 2em;
}

/* ==========================================================================
   ナビゲーション
   ========================================================================== */

div.nav {
    width: 95%;
    margin: 0 auto;
    background: #4b64b0;
    border-top: 2px #84aed2 solid;
    border-bottom: 2px #2c5170 solid;
    font-size: 80%;
}

div.nav ul.nl {
    width: 775px;
    margin: 0 auto;
    padding: 0;
    background: #4b64b0;
    border-left: 1px #2c5170 solid;
    border-right: 1px #84aed2 solid;
    list-style-type: none;
    text-align: center;
}

div.nav ul.nl li {
    width: 9%;
    float: left;
}

div.nav ul.nl li a {
    display: block;
    position: relative;
    padding: 7px 2px 4px;
    border-left: 1px #84aed2 solid;
    border-right: 1px #2c5170 solid;
    text-decoration: none;
    font-weight: bold;
    color: #ffffff;
    line-height: 100%;
}

div.nav ul.nl li a span.en {
    display: block;
    margin-top: 2px;
    font-size: 85%;
    font-weight: normal;
    color: #eee8aa;
}

div.nav ul.nl li a:hover {
    background: #5e91bd;
    color: #FFD412;
}

div.nav ul.nl li a:hover span.en {
    color: #fde337;
}

/* ==========================================================================
   リンク
   ========================================================================== */

a {
    font-size: 100%;
    color: #6e83bf;
    text-decoration: none
}

a:hover {
    color: #F8A900;
    text-decoration: underline;
    font-style: italic;
}

P#top a {
    font-size: 100%;
    color: #FFFFFF;
    text-decoration: none;
}

P#top a:hover {
    color: #000000;
    background: #FFFFFF;
}

a#poster {
    font-size: 100%;
    color: #549A62;
    text-decoration: none;
}

a#poster:hover {
    color: #F8A900;
    text-decoration: underline;
    font-style: italic;
}

/* ==========================================================================
   リスト
   ========================================================================== */

ul#sample-square li {
    list-style: square;
    padding: 0 0 0.2em 2px;
}

/* セッション用リスト */
.organizers {
    margin: 15px 0;
    padding-left: 20px;
}

.organizers li {
    list-style: square;
    margin-bottom: 5px;
    color: #666;
}

.organizers a {
    color: #4b64b0;
    text-decoration: none;
}

.organizers a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   ユーティリティクラス
   ========================================================================== */

/* clearfix */
.clearFix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearFix {
    min-height: 1px;
}

/* スタイルクラス */
.style7 {
    font-size: 90%;
}

.style8 {
    color: #FF6600;
    font-weight: bold;
}

.red {
    font-weight: bold;
    color: #F00;
}

.style2 {
    color: #4b64b0;
    text-decoration: none;
}

.style2:hover {
    text-decoration: underline;
}

/* TOPリンク */
.top-link {
    text-align: right;
    margin-top: 20px;
}

.top-link a {
    font-size: 0.9rem;
    text-decoration: none;
}

.top-link a:hover {
    text-decoration: underline;
}

/* スコープ */
.scope {
    color: #666;
    margin: 15px 0;
    line-height: 1.6;
}

/* セッションタイトル */
.session-title {
    display: block;
    font-weight: bold;
    margin-top: 10px;
}

/* プレゼンテーション注記 */
.presentation-notes {
    margin: 10px 0;
    font-size: 0.9rem;
    color: #666;
	text-align: right;

}

/* 区切り線 */
.section-divider {
    border: none;
    border-top: 3px solid #ccc;
    margin: 30px 0;
}

.content-divider {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 20px 0;
}

/* ナビゲーション */
.navigation {
    text-align: right;
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.navigation img {
    vertical-align: middle;
    margin-right: 5px;
}

/* セッション要素 */
.session-item {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
    text-align: left;
}

.session-item:last-child {
    border-bottom: none;
    text-align: left;
}

.session-number {
    width: 200px;
    margin-bottom: 15px;
}

.session-number span {
    display: inline-block;
    width: 4em;
    color: #FFD412;
    background: #4b64b0;
    font-weight: bold;
    font-size: 1.25rem;
    text-align: center;
    padding: 8px 0;
    border-radius: 4px;
}

.session-overview, .oral-presentations, .poster-presentations {
    margin: 30px 0;
}

/* ==========================================================================
   レスポンシブデザイン
   ========================================================================== */

/* タブレット */
@media screen and (max-width: 768px) {
    #container, #wrapper {
        width: 95%;
    }
    
    #header, #contents, header, main {
        padding: 15px 5px;
    }
    
    h1 {
        font-size: 130%;
        padding: 8px 0 8px 15px;
    }
    
    h2 {
        font-size: 12pt;
        padding: 8px 4px;
    }
    
    h3 {
        font-size: 1.1em;
        padding: 4px 0 4px 4px;
        border-left-width: 6px;
    }
    
    table.t1, table.t2, table.t3, table.t4 {
        width: 100%;
        font-size: 0.8em;
    }
    
    table.t1 tr th, table.t1 tr td,
    table.t2 tr th, table.t2 tr td,
    table.t3 tr th, table.t3 tr td,
    table.t4 tr th, table.t4 tr td {
        padding: 3px;
    }
    
    .session-number {
        width: 150px;
    }
    
    .session-number span {
        font-size: 1.1rem;
        padding: 6px 0;
    }
    
    div.nav ul.nl {
        width: 100%;
    }
    
    div.nav ul.nl li {
        width: 11%;
    }
}

/* スマートフォン */
@media screen and (max-width: 480px) {
    #container, #wrapper {
        width: 100%;
    }
    
    #header, #contents, header, main {
        padding: 10px 3px;
    }
    
    h1 {
        font-size: 120%;
        padding: 6px 0 6px 10px;
    }
    
    h2 {
        font-size: 11pt;
        padding: 6px 3px;
        margin: 8px 0;
    }
    
    h3 {
        font-size: 1rem;
        padding: 3px 0 3px 3px;
        border-left-width: 5px;
    }
    
    table.t1, table.t2, table.t3, table.t4 {
        font-size: 0.75em;
    }
    
    table.t1 tr th, table.t1 tr td,
    table.t2 tr th, table.t2 tr td,
    table.t3 tr th, table.t3 tr td,
    table.t4 tr th, table.t4 tr td {
        padding: 2px;
    }
    
    .session-number {
        width: 120px;
    }
    
    .session-number span {
        font-size: 1rem;
        padding: 5px 0;
    }
    
    .box02 dt, .box08 dt {
        font-size: 1rem;
        padding: 5px 0;
        width: 3.5em;
    }
    
    #contents #txt_area {
        width: 95%;
        font-size: 85%;
        padding: 15px 0;
    }
    
    div.nav {
        width: 100%;
        font-size: 75%;
    }
    
    div.nav ul.nl li {
        width: 20%;
    }
    
    div.nav ul.nl li a {
        padding: 5px 1px 3px;
    }
    
    /* モバイルでテーブルを縦積みレイアウトに */
    .presentation-table,
    .presentation-table thead,
    .presentation-table tbody,
    .presentation-table th,
    .presentation-table td,
    .presentation-table tr {
        display: block;
    }
    
    .presentation-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .presentation-table tr {
        border: 1px solid #ccc;
        margin-bottom: 10px;
        padding: 10px;
    }
    
    .presentation-table td {
        border: none;
        position: relative;
        padding-left: 25%;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    
    .presentation-table td:before {
        content: attr(data-label) ": ";
        position: absolute;
        left: 6px;
        width: 20%;
        font-weight: bold;
        color: #4b64b0;
    }
}

/* 極小画面 */
@media screen and (max-width: 320px) {
    h1 {
        font-size: 110%;
    }
    
    h2 {
        font-size: 10pt;
    }
    
    .session-number span {
        font-size: 0.9rem;
    }
    
    .box02 dt, .box08 dt {
        font-size: 0.9rem;
        width: 3em;
    }
    
    table.t1, table.t2, table.t3, table.t4 {
        font-size: 0.7em;
    }
}

/* ==========================================================================
   印刷用スタイル
   ========================================================================== */

@media print {
    .navigation,
    .top-link {
        display: none;
    }
    
    table.t1, table.t2, table.t3, table.t4 {
        font-size: 10px;
    }
    
    table.t1 tr th, table.t1 tr td,
    table.t2 tr th, table.t2 tr td,
    table.t3 tr th, table.t3 tr td,
    table.t4 tr th, table.t4 tr td {
        padding: 2px;
    }
    
    a {
        color: #000 !important;
        text-decoration: none !important;
    }
    
    .session-number span,
    .box02 dt,
    .box08 dt {
        background: #f0f0f0 !important;
        color: #000 !important;
    }
}

.txtwhite {
    color: #FFFFFF;
}
