@charset "utf-8";
/* CSS Document */

body {
    padding: 0 0 32px;
    line-height: 1.65;

}

h1,
h2 {
    font-family: 'Linux Libertine','Georgia','Times',serif;
}
h1,h2 {
    font-size: 1.7em;
    font-weight: 300;
}
h2 a {
    color: #202122;
}
main {
    padding: 0 20px;
}
a {
    color: #3366cc;
}
a:visited {
    color: #6b4ba1;
}
/* ======================= header ======================= */

/* ヘッダーナビ */
header.header-container {
    background-color: #eaecf0;
    border: 0;
    box-shadow: inset 0 -1px 3px rgba(0,0,0,0.08);
    padding: 3px 20px;
    height: 55px;
}
#nav-drawer {
    position: relative;
    vertical-align: middle;
/*    display: table-cell;*/
}
.nav-unshown {
    display: none;
}
#nav-open {
    display: inline-block;
}
/* ヘッダーナビ---- ハンバーガーアイコン ---- */
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 2px;/* 線の太さ */
    width: 20px;/* 線の長さ */
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
}
#nav-open span:before {
    bottom: -7px;
}
#nav-open span:after {
    bottom: -14px;
}
/* ヘッダーナビ---- カバー ---- */
#nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: 0.1s ease-in-out
        opacity 250ms ease-in-out,
        visibility 250ms ease-in-out,
        transform 250ms ease-in-out;
}
/* ヘッダーナビ---- 中身 ---- */
#nav-content {
    overflow: auto;
    position: fixed;
    top:0;
    left: 0;
    z-index: 9999;
    width: 55%;/*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px;/*最大幅（調整してください）*/
    height: 100%;
    background: #eaecf0;
    transition: 0.4s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);/*左に隠しておく*/
}
#nav-content ul li {
    background-color: #fff;
    position: relative;
    border-top: 1px solid #eaecf0;
}
#nav-content ul li a {
    display: block;
    max-width: 100%;
    padding: 12px 10px 12px 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    color: #54595d;
    font-weight: bold;
    white-space: nowrap;
}
/* ヘッダーナビ---- チェックが入ったら表示 ---- */
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: 0.3;
}
#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}


.page-heading .tagline {
    font-size: 0.85em;
    color: #54595d;
}
.page-heading_under_space {
/*    box-sizing: border-box;*/
    border-top: 1px solid #eaecf0;
    border-bottom: 1px solid #c8ccd1;
    margin-top: -1px;
    width: 100%;
    height: 50px;
}


/* ======================= main ======================= */

main div.page-heading {
    padding: 20px 0 0;
    position: relative;
    margin-bottom: 12px;
}
section#prof_content {
    margin-bottom: 2em;
}
section#prof_content p {
    margin: 0.5em 0 1em 0;
}
table.mainTable {
    text-align: left;
    font-size: 90%;
    position: relative;
    border: 1px solid #eaecf0;
    margin-bottom: 2em;
    background-color: #F8F9F8;
    flex: 1 1 100%;
    font-size: 14.4px;
    line-height: 1.7;
}
table.mainTable,
table.mainTable tbody {
    display: flex;
    flex-flow: column nowrap;
}
table.mainTable tbody > tr {
    min-width: 100%;
    display: flex;
    flex-flow: row wrap;
}
table.mainTable tbody > tr th,
table.mainTable tbody > tr td{
    width: 50%;
    vertical-align: top;
    border-bottom: 1px solid #eaecf0;
    padding: 7px 10px;
}
th#prof {
    text-align: center;
    font-size: 125%;
    font-weight: bold;
/*    padding-top: 0.1em;*/
    padding: 0.4em 0 0.7em 0;
    background-color: #ed8;
}
th#prof span {
    line-height: 25px;
}
th#prof,
td#profImg,
table.mainTable tbody tr.prof th,
table.mainTable tbody tr.prof td {
    width: 100%;
}
td#profImg {
    text-align: center;
}
td#profImg img {
    display: block;
    width: 250px;
    height: auto;
    margin: 10px auto 5px auto;
}
table.mainTable tbody tr td img.flag {
    width: 25px;
    height: auto;
    border: 1px solid #c8ccd1;
}
table.mainTable tbody tr.prof th,
table.mainTable tbody tr.prof td {
    text-align: center;
}
table.mainTable tbody tr th.title {
    font-weight: bold;
    padding: 0.4em 0;
    background-color: #ed8;
}
table.mainTable tbody tr.prof td {
    padding-top: 1em;
    padding-bottom: 1em;
}
table.mainTable tbody tr.prof ul,
section.accordion-content ul.list-style {
    padding: 0 1.5em;
}
table.mainTable tbody tr.prof ul li,
section.accordion-content ul.list-style li {
    list-style-type:disc;
    text-align: left;
}
table.mainTable tbody tr.prof td dl {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
table.mainTable tbody tr.prof td dl dt,
table.mainTable tbody tr.prof td dl dd {
    width: 48%;
    justify-content:center;
    text-align: left;
}
table.mainTable tbody tr.prof td dl dt {
    margin-right: 2%;
}

/* アコーディオンメニュー */
#accordion h2.article-title {
    text-align: left;
    padding-left: 25px;
    padding-bottom: 0.5em;
    margin-top: 1em;
    margin-bottom: 0.5em;
    border-bottom: 1px solid #eaecf0;
    position: relative;
}
/* アコーディオンメニュー 下矢印 */
#accordion h2.article-title:after {
    content: '';
    position: absolute;
    border-left: 2px solid #202122;
    border-bottom: 2px solid #202122;
    width: 0.3em;
    top: 0.35em;
    left: 0;
    height: 0.3em;
    transform: rotate(-45deg);
}
/* アコーディオンメニュー 上矢印 */
#accordion h2.article-title.ac:after {
    content: '';
    position: absolute;
    border-left: 2px solid #202122;
    border-bottom: 2px solid #202122;
    width: 0.3em;
    top: 0.5em;
    left: 0;
    height: 0.3em;
    transform: rotate(135deg);
}
/* アコーディオンメニュー 隠す本文 */
#accordion section.accordion-content {
    display: none;
}

#accordion section.accordion-content ul li {
    margin-bottom: 0.9em;
    font-weight: 300;
}
#accordion section.accordion-content ul li b {
    font-size: 1.2em;
    line-height: 2;
    padding-bottom: 1em;
}
#accordion section.accordion-content ul li b.long-txt {
/*    font-size: 1em;*/
/*    line-height: 1.3;*/
}

/* ======================= footer ======================= */

footer {
    text-align: center;
    font-size: 0.7em;
    font-weight: 200;
}