﻿@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	/* font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro"; */
    font-family: 14px/2 "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
    font-weight: 500;
    line-height: 1.5;
	background: #FFF;
	text-align: justify;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
img {
	border: none;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}
div.imagebox {
   width: 180px; /* 横幅 */
   float: left; /* 左に配置 */
   padding-right: 0px;
}
p.image, p.caption {
   text-align: center; /* 3.中央寄せ */
   margin: -10px;        /* 4.余白・間隔 */
}
p.caption {
   font-size: 100%;  /* 5.文字サイズ */
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #5cd3ff;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 980px;
	margin: 0px auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*ブロックの幅*/
	height: 120px;	/*ブロックの高さ*/
	position: relative;
}

/*ロゴの設定*/
header #logo {
	position: absolute;
	left: 60px;	/*ヘッダーブロックに対して左から60pxの位置に配置*/
	top: 30px;	/*ヘッダーブロックに対して上から30pxの位置に配置*/
	z-index: 2;
}
/*ヘッダー装飾画像*/
#header-img {
	position: absolute;
	top: -50px;
	right: 30px;
}

/*メインメニュー*/

#nav {
  width: 900px;
  height: 40px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
}
#nav li {
  position: relative;
  list-style: none;
}
#nav li a {
  display: block;
  width: 120px;
  height: 40px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 2.8;
  background: #01AEF0;
  text-decoration: none;
  border-right: 1px solid #eee;
  
  box-sizing: border-box;
}
#nav > li:hover > a {/*layer-1*/
  color: white;
  background: #0072BB;
}
#nav > li li > a {
  width: 200px;
  height: 40px;
  color: white;
  background: #01AEF0
}
#nav > li li:hover > a {/*layer-2*/
  width: 200px;
  height: 40px;
  color: white;
  background: #0072BB;
}
#nav li ul {
  top: 40px;
  left: 10px;
  position: absolute;
}
#nav li ul li {
  overflow: hidden;
  height: 0;
}
#nav li ul li a {
  border-top: 1px solid #eee;
}
#nav li:hover > ul > li {
  overflow: visible;
  height: 40px;
}

/*コンテンツ（mainを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
	padding-top: 40px;
}
/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 85%;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
	margin: 0px auto;
}
/*mainコンテンツのh1タグの設定*/
#main h1 {
	width: 90%;
	color: #FFF;/*文字色*/
	padding: 0.5em;/*文字周りの余白*/
	display: inline-block;/*おまじない*/
	line-height: 1.3;/*行高*/
	background: #01AEF0;/*背景色*/
	vertical-align: middle;/*上下中央*/
	border-radius: 10px;/*左側の角を丸く*/
	margin: 1px 0px;
}
#main h1 a {
	color: #ffffff;
}

#main h1:before {
	/* content: '●'; */
	color: white;
	margin-right: 8px;
}

/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	width: 89%;
	background: #01AEF0;
	font-size: 100%;
	border-radius: 10px;	/*角丸のサイズ*/
	color: #FFF;			/*文字色*/
	margin: 1px 0px;
	padding: 8px 15px;	/*上下、左右への余白*/
}

#main h2 a {
	color: #ffffff;
}

/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	width: 89%;
	background: #FFF;
	font-size: 100%;
	border-radius: 10px;	/*角丸のサイズ*/
	padding: 4px 15px;
	margin: 1px 0px;
	border: 1px solid #CCC;
}
/*mainコンテンツの段落タグ設定*/
#main p {
	width: 89%;
	padding: 0.5em 30px 1em;	/*左から、上、左右、下への余白*/
}

#main ul {
	width: 89%;
	padding: 0.5em 30px 0.5em;	/*左から、上、左右、下への余白*/
}

/*研究室の研究トピック
---------------------------------------------------------------------------*/
#research h3 {font-size: 10em}	/* 16px */
.restopic {
	margin: 1.5em 1.0em;
	display: table;
	}
.resimgblock {
	display: table-cell;
	vertical-align: middle;
	vertical-align: top;
	width:250px;
/*	height:150px; */
	 }
.resimg {
	 display: block;
	 margin-left: auto;
	 margin-right: auto;
	 width:250px;
	 }
.restext {
	 padding: 0em 1.0em;
	 display: table-cell;
	 vertical-align: middle;
	    }
.clear {
	clear: both;
	margin-top: 10pt;
	margin-bottom: 10pt;
	}

/*トップページ内「新着情報」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#news {
	width: 100%;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
	margin: 0px auto;
}
#news ul {
  padding: 10px;
  position: relative;
}

#news ul li {
  color: #01AEF0;
  border-left: solid 6px #01AEF0;/*左側の線*/
  background: #f1f8ff;/*背景色*/
  margin-bottom: 3px;/*下のバーとの余白*/
  line-height: 1.5;
  padding: 0.5em;
  list-style-type: none!important;/*ポチ消す*/
}


/*---------------------------- スマートフォン向けのスタイル ----------------------------*/
@media only screen and (max-width: 480px) {


/*---------------------------- ページ全体の指定 ----------------------------*/

/*
body {
  width: 100%;
  font: 87.5% 'ヒラギノ角ゴ pro W3', "Hiragino KaKu Gothic Pro", "メイリオ", Meiryo, Osaka, sans-serif;
  color: #333333;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
}
*/

img {
  max-width: 100%;
  height: auto;
  border: 0;

}
/*メインメニュー*/

#nav {
  width: 96%;
  padding: 3px;

}
#nav li {
  width: 50%;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
  text-align: center;
}
#nav li a {
  display: block;
  width: 100%;
  font-size: 10px;
}

/*---------- メイン ----------*/

#main {
  background-color: #ffffff;
}


/*---------- ヘッダー ----------*/

#header {
  width: 96%;
  height: auto;
  padding: 0 0 1px 0;
  line-height: 0;
}


/*---------- メインコンテンツ ----------*/
/*
#main {
	width: 96%;	
	padding-bottom: 10px;
	margin: 0px auto;
}
*/
/*mainコンテンツのh1タグの設定*/
/*
#main h1{
	width: 95%;
	color: #FFF;
	padding: 0.5em;
	display: inline-block;
	line-height: 1;
	background: #01AEF0;
	vertical-align: middle;
	border-radius: 5px;
}
*/

#container {
	width: 100%;
	padding: 0;
}

/*研究室の研究トピック
---------------------------------------------------------------------------*/
#research h3 {font-size: 10em}	/* 16px */
.resimgblock {
	display: block;
	width:96%;
	 }
.resimg {
	 display: block;
	 width:96%;
	 }
.restext {
	 display: block;
	 vertical-align: top;
}

}

/* 活動紹介・コラム用 */
dt {
	float: left;
}

dd {
	margin-left: 100px;
}

.photo {
	width: 90%;
	margin: 25px auto;
}

.photo img {
	width: 40%;
	height: auto;
	margin: 0 1.5% 6px 0;
	display: inline-block;
	vertical-align: top;
}

.photo2 {
	width: 90%;
	margin: 25px auto;
}

.photo2 img {
	width: 20%;
	height: auto;
	margin: 0 1.5% 6px 0;
	display: inline-block;
	vertical-align: top;
}

/* 教員紹介 */

div {*zoom: 1;}

div:after {
	display: block;
	content: "";
	clear: both;
}

.js-tab {
	width: 79%;
	float: right;
	margin: 27px 0 0;
}

.js-tab > div {
	float: left;
	width: 24%;
	background: #fff;
	margin: 0 5px;
	text-align: center;
	padding: 5px 0 3px;
	cursor: pointer;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
	box-shadow: 2px 2px 4px #bbb;
}

.js-tab > div.active {
}

.js-tab > div:hover {
	opacity: .6;
}

.js-tab > div img {
	height: 35px;
}

.js-tab_content {
	display: none;
}

.js-tab_content.active {
	display: block;
}

h3.group {
	background: #0c53bb;
	color: #fff;
	margin-top: 30px;
}

.details_frame {
	margin: 20px auto 10px;
	border-left: 5px solid #01aef0;
	overflow: hidden;
	width: 97%;
}

.details_frame h4 {
	width: 90%;
	margin: 0;
	padding: 13px 5px 10px 15px;
	border: none;
	border-radius: 0 5px 5px 0;
	color: #000;
	background: #eee;
}

img.fl {
	width: 120px;
	margin: 15px 0 15px 15px;
	float: left;
}

.staffdetails {
	width: 74%;
	padding: 12px 15px 10px 0;
	margin: 0 0 0 5%;
	float: left;
}

.staffdetails h5 {
	margin: 12px 0 0px;
	padding: 0;
	font-size: 14px;
	line-height: 14px;
	font-weight: 600;
	text-align: left;
}

.staffdetails p {
	margin: 0 0 8px 3px;
	text-indent: 0;
	line-height: 1.2;
	padding: 0;
}

.staffdetails span.soran a {
	background: #0c53bb;
	color: #fff;
	padding: 5px 6px 3px;
	display: inline-block;
	border-radius: 3px;
	text-decoration: none;
	border: 1px solid #0c53bb;
}

.staffdetails span.soran a:hover {
	background: #fff;
	color: #0c53bb;
}

.staffdetails span.soran2 a {
	background: #ff8c00;
	color: #fff;
	padding: 5px 6px 3px;
	display: inline-block;
	border-radius: 3px;
	text-decoration: none;
	border: 1px solid #ff8c00;
}

.staffdetails span.soran2 a:hover {
	background: #fff;
	color: #ff8c00;
}

.staffdetails span.soran3 a {
	background: #006400;
	color: #fff;
	padding: 5px 6px 3px;
	display: inline-block;
	border-radius: 3px;
	text-decoration: none;
	border: 1px solid #006400;
}

.staffdetails span.soran3 a:hover {
	background: #fff;
	color: #006400;
}

.staffs {
	width: 80%;
	margin: 50px auto 10px;
	border-collapse: separate;
	border-spacing: 2px;
	font-size: 13px;
}

.staffs th {
	font-weight: 900;
	border-radius: 3px;
	border: none;
	background: #0c53bb;
	white-space: nowrap;
	color: #fff;
}

.staffs td {
	border-radius: 3px;
	border: 1px solid #EDEDED;
}

/* figure */

figure {
	margin: 10px 20px;
}

figure.center {
	margin: 10px auto;
}

figure.fr {
	float: right;
	margin: 0 20px 5px 15px;
}

figure.fl {
	float: left;
	margin: 0 15px 5px 15px;
}

figure img {
	margin: 3px 0;
	width: 100%;
}

figcaption {
	font-size: 0.85em;
	line-height: 1.1;
	padding: 0 5px;
	text-align: left;
}
