@charset "utf-8";

* {
    margin: 0;
    padding: 0;
}

body,
html {
    font-family: メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, sans-serif;
    word-wrap: break-word;
    font-size: 16px;
    line-height: 1.5;
    color: #5a4f4a;
    background: #fafffa;
    text-align: justify;
    text-justify: inter-ideograph;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 50%;
    height: auto;
}

hr {
    border: none;
    border-bottom: 1px dotted #999;
    margin-top: 15px;
    margin-bottom: 15px;
}

#wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
}

header {
    position: relative;
}

#main {
    width: 100%;
    height: auto;
    background: #fafffa;
}

#toparea {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0px 9px 3px -3px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0px 9px 3px -3px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 9px 3px -3px rgba(0, 0, 0, 0.6);
    z-index: 100;
    position: absolute;
    left: 0;
    top: 0;

}

#topareatop {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#title {
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 15px;
}

#title h1 {
    margin-left: -15px;
}

#title h1.sm {
    display: none;
}

#title img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

#language {
    margin-left: auto;
    margin-right: 30px;
}

#language img {
    width: 100%;
    height: auto;
}

#drawernav {
    width: 100%;
    height: auto;
}

#menuarea {
    width: 100%;
    height: 50px;
    background: #ffffff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0px 6px 3px -3px rgba(10, 10, 10, 0.4);
    box-shadow: 0px 6px 3px -3px rgba(10, 10, 10, 0.4);
    z-index: 100;
    opacity: 0.5;
}

#menuarea nav {
    max-width: 800px;
    height: auto;
    margin: 0 auto;
}

#mainnavigation {
    padding-left: 0;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

#mainnavigation li {
    width: 100%;
    height: auto;
    list-style: none;
    text-align: center;
}

#mainnavigation li a {
    font-size: 18px;
    text-decoration: none;
    font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: bold;
    color: #080c0d;
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: .9em 0;
}

#mainnavigation li a:hover {
    color: blue;
}

#mainnavigation li.current a {
    color: blue;
}


/* サブメニューをabsoluteにするため、親メニューをrelativeに */
.menu-item-has-children {
    position: relative;
}

/* 親メニューにマウスオーバーしたときにカーソルを変更 */
.menu-item-has-children:hover {
    cursor: pointer;
}

/* 子を持つ親メニューにマウスオーバーしたときサブメニューを表示 */
.menu-item-has-children:hover .sub-menu {
    display: block;
}

/* サブメニューをabsoluteにして親メニューの下に配置。スタイルは適宜調整してください */
.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 170px;
    background: white;
    -webkit-box-shadow: 3px 3px 1px 1px rgba(10, 10, 10, 0.4);
    box-shadow: 3px 3px 1px 1px rgba(10, 10, 10, 0.4);
    padding: 0;
}

/* サブメニューの境目をわかりやすくするため、一番下の項目以外下線を引いた */
.sub-menu > .menu-item:not(:last-child) {
    border-bottom: 1px dotted #333333;
}

/* サブニューのリンクタグをmenu-itemの大きさと合わせ、クリックしやすいようにした */
.sub-menu > .menu-item a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: .5em 0;
}

/* サブメニューにマウスオーバーしたときリンクの背景色とテキストカラーを変更 */
.sub-menu > .menu-item a:hover {
    background: black;
    color: white;
}

#humberger {
    display: none;
}

.visualarea {
    width: 100%;
    height: auto;
}

.visualarea img {
    width: 100%;
    height: auto;
}

.mainvisualwide {
    width: 100%;
    height: auto;
}

.mainvisualwide img {
    width: 100%;
    height: auto;
}

#midashi2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 700px;
    height: auto;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

#main {
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#mainall {
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 15px;
}

#main article {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 95%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 2.5%;
    margin-right: 2.5%;
}

#main aside {
    display: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 0%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 0%;
    margin-right: 0%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

#main article.publicaiton {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 70%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 2.5%;
    margin-right: 2.5%;
}

#main aside.publication {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 20%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 2.5%;
    margin-right: 2.5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

#main aside #side {
    width: 100%;
    height: auto;
}

#main article img {
    max-width: 100%;
    height: auto;
}

#main article #information {
    width: 100%;
    height: 500px;
    overflow-y: scroll;
}

#main article #information li {
    margin-right: 1em;
}


#main article figure img {
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;

}

#main article figcaption {
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

#main article .right {
    text-align: right;
}

#p404 article {
    width: 95%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 2.5%;
    margin-right: 2.5%;
}

#main aside #side {
    width: 100%;
    height: auto;
}

#main article p {
    margin-bottom: 15px;
}

#main article #equipment p {
    margin-bottom: 5px;
}

p.about {
    font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background: #ffffff;
    color: #5a4f4a;
    font-weight: bold;
    padding: 15px 30px;
    line-height: 2.0
}

#main article #equipment {
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "メイリオ", "ＭＳ Ｐ明朝", "MS PMincho", Meiryo, serif;
    font-size: 16px;
}

#main article table {
    border-collapse: collapse;
    width: 100%;
    height: auto;
    border: 1px solid #5a4f4a;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 30px;
}

#main article table th,
td {
    border: 1px solid #5a4f4a;
    padding: 0.5em;
}

#main ul,
ol {
    padding-left: 1.5em;
    margin-bottom: 15px;
}

#main ol ul {
    list-style-type: disc;
}

#main #list ul {
    padding-left: 0px;
    margin-bottom: 30px;
}

#main #list li {
    list-style: none;
    border-bottom: 1px dotted #999;
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
}

#main #list li:first-child {
    border-top: 1px dotted #999;
}

#main #member {
    margin-left: 10%;
    margin-right: 10%;
    width: 80%;
    height: auto;
}

#main #member dl {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}



#main #member li {
    list-style: none;
    border-bottom: 1px dotted #999;
    padding-top: 10px;
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#main #member li:first-child {
    border-top: 1px dotted #999;
}

#main #member li dd {
    width: 280px;
    height: auto;
    font-weight: bold;
    text-align: left;
}

#main #member li dt {
    text-align: left;
}

#main #member dl.faculty dl.career {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
}

#main #member dl.faculty h5 {
    width: 100%;
    height: auto;
    text-align: left;
    margin-top: 15px;
}

#main #member dl.faculty li dl.career dd {
    width: 280px;
    height: auto;
    text-align: left;
}

#main #member dl.faculty li dl.career dt {
    width: 632px;
    height: auto;
    text-align: left;
}

#main #member dl.student li dd {
    text-align: center;
}


#main article .gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#main article .gallery img {
    width: 30.333%;
    height: auto;
    margin-left: 1.5%;
    margin-right: 1.5%;
    margin-bottom: 15px;
}

#main li a {
    text-decoration: none;
    color: #4169e1;
}

#main li a:hover {
    text-decoration: none;
    color: #00a3db;
}

#main a {
    text-decoration: none;
    color: #4169e1;
}

#main a:hover {
    text-decoration: none;
    color: #00a3db;
}

#main article p.under {
    text-decoration: underline;
    font-weight: bold;
}

#main article #map {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #a18b75;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

#main article #map iframe {
    width: 100%;
    height: 350px;
}

#main article #campusmap {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 30px;
    margin-bottom: 30px;
}

#main article #campusmap img {
    width: 45%;
    height: 100%;
    margin-left: 2.5%;
    margin-right: 2.5%;
}

address {
    font-size: 16px;
    font-style: normal;
}

p.large {
    font-size: 18px;
    font-weight: bold;
}

#banner {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 80px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#banner a {
    width: 15%;
    height: auto;
    margin-left: 2.5%;
}

#banner a img {
    width: 100%;
    height: auto;
}

#link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

#main article #year {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

#main article #year a {
    text-align: center;
    margin-bottom: 5px;
    width: 12.5%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#main article #year a:before {
    content: '\f138';
    display: inline-block;
    font-family: 'FontAwesome';
    margin-right: 5px;
}

h2 {
    font-weight: bold;
    color: #ffffff;
    background: #80c79d;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-left: 28px solid #e5ddb1;
    padding-left: 10px;
    font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

h3 {
    font-weight: bold;
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-left: 5px solid #80c79d;
    padding-left: 15px;
}

h4 {
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: left;
}

#research h4 {
    font-size: 16px;
    text-align: left;
    margin-bottom: 5px;
}

#midashi {
    text-align: left;
    margin-top: 5px;
}

#main article #midashi p {
    margin-bottom: 5px;
}

h5 {
    font-weight: bold;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.br-sp {
    display: none;
}

.br-tb {
    display: none;
}

footer {
    margin-top: 80px;
    background: #80c79d;
    color: #ffffff;
    font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

footer .lar2 {
    font-size: 22px;
    font-weight: bold;
}

footer .lar {
    font-size: 18px;
    font-weight: bold;
}

#footerarea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 30px;
    width: 100%;
    height: auto;
    max-width: 1100px;
    margin: 0 auto;
}

#footerleft {
    width: 60%;
    height: auto;
}

#footerright {
    width: 40%;
    height: auto;
}

#footerright iframe {
    width: 100%;
    height: 250px;
}

footer address {
    font-style: normal;
    text-align: left;
}

footer address.en {
    margin-top: 30px;
}

#copy {
    font-size: 12px;
    width: 100%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
}

#gototop {
    position: fixed;
    bottom: 3px;
    right: 10px;
}

#gototop img {
    width: 50px;
    height: 50px;
}
