@charset "utf-8";
/* ========================================
    リセットcss
========================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-style:normal;
    font-weight: normal;
    font-size: 100%;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: ''; content: none;}
input, textarea,{margin: 0; padding: 0;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;}
caption, th{text-align: left;}
a:focus {outline:none;}



/* ========================================
    header
========================================= */
header {
	  width: 966px;
    height: 88px;
    margin: 10px auto;
    background-color: #fff;
    position: relative;
    z-index: 999;
}

/* ========================================
    footer
========================================= */
footer {
  overflow: hidden;
  width: 100%;
  height: 50px;
  margin-top: 30px;
  background-color: #5e5e5e;
  font-size: 12px;
  line-height: 50px;
  text-align: center;
  color: #e0dddd;
}
/* ========================================
    研究室名のところ
========================================= */
#head {
    width: 966px;
}

#logo img {
    width: 346px;
    height: 28px;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* ========================================
    旧サイトとEnglishにとぶところ
========================================= */
h2 {
    color: #000;
    font-size: 14px;
}

#reference {
    overflow: hidden;
    width: 620px;
    height: 28px;
    float: right;
    overflow: hidden;
}

#reference li a {
    width: 70px;
    height: 14px;
    text-align: center;
    line-height: 14px;
    margin-top: 14px;
    float: right;
    text-decoration: none;
    color: #000;
}

#reference li a:hover {
    color: #a0a0a0;
    text-decoration: underline;
}

/* ========================================
    メニューバーの部分
========================================= */
#dropmenu{
  float: left;
  list-style-type: none;
  width: 966px;
  height: 50px;
  margin: 0px auto 1px;
  padding: 0;
  z-index: 999;
  background: #91d6e5; /*メニューバーの背景色*/
}
#dropmenu li{
  position: relative;
  width: 138px;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}
#dropmenu li a{
  display: block;
  margin: 0;
  padding: 18px 0px;
  color: #fff; /*マウスoffのメニュー文字色*/
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  text-decoration: none;
}
#dropmenu li ul{
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  border-radius: 0 0 3px 3px;
}

#dropmenu li ul li{
  overflow: hidden;
  width: 100%;
  height: 0;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}

#dropmenu li ul li a{
  color: #aeaeae; /*サブメニューの文字色*/
  padding: 13px 15px;
  background: #d3f1f7; /*サブメニューの背景色*/
  text-align: left;
  font-size: 12px;
  font-weight: normal;
}
#dropmenu li:hover > a{
  background: #d3f1f7; /*メニューのマウスon時の背景色*/
  color: #606060; /*メニューのマウスon時の文字色*/
  font-weight: bold; /*メニューのマウスon時の文字の太さの変更*/
}
#dropmenu > li:hover > a{
  border-radius: 3px 3px 0 0;
}
#dropmenu li:hover ul li{
  overflow: visible;
  height: 38px;
  border-top: 1px solid #d3f1f7; /*これと次のは、サブメニューのボーダー部分の色*/
  border-bottom: 1px solid #d3f1f7;
}
#dropmenu li:hover ul li:first-child{
  border-top: 0;
}
#dropmenu li:hover ul li:last-child{
  border-bottom: 0;
}
#dropmenu li:hover ul li:last-child a{
  border-radius: 0 0 3px 3px;
}
/* ========================================
    Home/メイン写真:写真固定バージョン
========================================= */
/*固定にしたいときは「/*のペア」を消す
#content {
  width: 966px;
  margin: 0 auto;
} 
*/

/* =============================================================
    Home/メイン写真:写真移動バージョン CSSは５枚までの写真移動に対応
    変更箇所は主に「/**」だけにすること！
============================================================= */

/*全体のコンテナー*/
#stage {
  position: relative;
  width: 966px; /*写真１枚の大きさ*/
  height: 360px;
  margin: 0 auto;
  overflow:hidden;
  z-index: 1;
}
/*全てのラジオボタンを非表示に*/
#back1,#back2,#back3,#back4,#back5,#next1,#next2,#next3,#next4,#next5{
  display: none;
}
/*全ての写真を水平一列に格納したdiv、#photosにtransitionを設定*/
#photos {
  position:absolute;
  top:0;
        width:4830px; /*写真の枚数×写真１枚の幅,今は5枚分になってる*/
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; /**移動スピード**/
}
/*各写真の並び位置を設定*/
.photo1 {
  position:relative;
  float:left;
}
/*ボタン領域の設定*/
.cover_left, .cover_right {
  position:absolute;
  top:0;
  width:966px;
  height:360px;
  display:none;
  cursor:pointer;
  z-index:101;
}
.cover_left {
  left:0;
}
.cover_right {
  left:755px;
}
/*ボタン領域内のボタン文字（＜、＞）の設定*/
.cover_left span, .cover_right span {
  position: absolute;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 40px;
  font-weight: bold;
  opacity:0;
  top: 140px;
}
.cover_left span {
  left: 10px; 
}
.cover_right span {
  left: 160px
}
/*ボタン領域hover時文字の設定*/
.cover_right:hover > span,.cover_left:hover > span {
  opacity:1;
  color:#EEE;
}
#right1,#right2,#right3,#right4,#left2,#left3,#left4,#left5 {
  display:none;
}
/*各ボタン領域がクリックされた時の#photosの行き先位置の設定*/
#back2:checked ~ #photos { left:0; }
#back3:checked ~ #photos,#next1:checked ~ #photos { left:-966px; }
#back4:checked ~ #photos,#next2:checked ~ #photos { left:-1932px; }
#back5:checked ~ #photos,#next3:checked ~ #photos { left:-2898px; }
#next4:checked ~ #photos { left:-3864px; }
/*ボタン領域クリック時に前表示域を消し切り替え後の表示域を表示*/
#back2:checked ~ #n_btn label #right1 { display:block; }
#back3:checked ~ #b_btn label #left2,#back3:checked ~ #n_btn label #right2 { display:block; }
#back4:checked ~ #b_btn label #left3,#back4:checked ~ #n_btn label #right3 { display:block; }
#back5:checked ~ #b_btn label #left4,#back5:checked ~ #n_btn label #right4 { display:block; }
#next1:checked ~ #b_btn label #left2,#next1:checked ~ #n_btn label #right2 { display:block; }
#next2:checked ~ #b_btn label #left3,#next2:checked ~ #n_btn label #right3 { display:block; }
#next3:checked ~ #b_btn label #left4,#next3:checked ~ #n_btn label #right4 { display:block; }
#next4:checked ~ #b_btn label #left5 { display:block; }

/* ========================================
    Home/学生募集
========================================= */
#student {
  overflow: hidden;
  width: 966px;
  height: 100px;
  margin: 2px auto;
  line-height: 40px;
  background-color: #f4d7fd;
}

#student h2 {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
}

#student h2 a {
  color: #545454;
  font-weight: normal;
  text-decoration: none;
}

#student h2 a:hover {
    text-decoration: underline;
}

#student h1 {
  font-size: 32px;
  font-weight: normal;
  text-align: center;
}

/* ========================================
    Home/写真以下の部分、共通部分
========================================= */
#main_wrapper {
    width: 966px;
    height: 360px;
    margin: 30px auto;
    overflow: hidden;
}

h3 {
    font-size: 18px;
    font-weight: bold;
}

/* ========================================
    Home/ニュース
========================================= */
#news {
    width: 420px;
    float: left;
}

#news_list {
    padding: 10px;
    background-color: #fff;
    border: 1px solid #c8bdba;
    overflow: scroll;
    height: 352px;
}
#news_list li {
    padding-bottom: 12px;
}
#news_list li span {
    font-size: 12px;
}

#news_list li h4 {
    font-size: 12px;
}

.news_day {
  text-decoration: underline;
}

.paper_title {
  font-style: italic;
}

.journal {
  font-weight: bold;
}
/* ========================================
    Home/Research Overview
========================================= */
#research_overview {
    
    width: 521px;
    margin: 0px 0px 0px 25px;
    float: left;
}

#research_overview_content{
    width: 521px;
    height: 352px;
}

#research_overview_content p {
    font-size: 14px;
    padding-top: 20px;
}
.inner {
    width: 376px;
    background-color: rgba(255,255,255,0.7);
    float: left;
}

#inner_image {
    width: 145px;
    float: left;
}

/* ========================================
    Member/共通部分
========================================= */
.person_2 h3{
    font-weight: lighter;
    font-size: 16px;
    margin-bottom: 38px;
}
.person_2 h2{
    font-size: 20px;
    margin-bottom: 20px;
}
.person_2 h4{
    font-size: 12px;
}
.person_2_staff h3{
    font-weight: lighter;
    font-size: 16px;
    margin-bottom: 38px;
}
.person_2_staff h2{
    font-size: 20px;
    margin-bottom: 20px;
}
.person_2_staff h4{
    font-size: 12px;
}
.person_2_student h3{
    font-weight: lighter;
    font-size: 16px;
    margin-bottom: 38px;
}
.person_2_student h2{
    font-size: 20px;
    margin-bottom: 20px;
}
.person_2_student h4{
    font-size: 12px;
}
.member_co h2{
    font-size: 20px;
    margin-bottom: 20px;
}

/* ========================================
    Member/ id=person1 教授
========================================= */
#person1 {
    overflow: hidden;
    width: 900px;
    height: 150px;
    margin: 0 auto;
    margin-top: 35px;
/*  margin-bottom: 0px; */ 
    overflow: hidden;
}

#person1_1 {
    width: 150px;
    height: 150px;
    float: left;
    margin-right: 20px;
    overflow: hidden;
}

#person1_2 {
    border-left: 5px solid #5cbf35;
    overflow: hidden;
    width: 630px;
    height: 150px;
    padding-left: 10px;
}

#goto a {
    font-size: 20px;
    margin-bottom: 20px;
    color: #000;
    text-decoration: underline;
}
#goto a:hover {
    color: #a0a0a0;
}

/* ========================================
    Member/講師以下のwrapper
========================================= */
#member_wrapper {
    width: 900px;
    margin: 0px auto;
    margin-bottom:35px;
    border-bottom:5px solid #0E4627;
}

/* ========================================
    Member/講師以下
========================================= */
.person {
    overflow: hidden;
    width: 450px;
    height: 150px;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 35px;
    float: left;
    overflow: hidden;
}

.person_1 {
    width: 150px;
    height: 150px;
    float: left;
    margin-right: 20px;
    overflow: hidden;
}

.person_2_staff {
    overflow: hidden;
    width: 265px;
    height: 150px;
    border-left: 5px solid #f2d47a;
    padding-left: 10px;
    overflow: hidden;
}

.person_2_student {
    overflow: hidden;
    width: 265px;
    height: 150px;
    border-left: 5px solid #f79273;
    padding-left: 10px;
    overflow: hidden;
}

#person_desu {
    overflow: hidden;
    width: 265px;
    height: 10px;
    padding-left: 10px;
    overflow: hidden;
}

/* ========================================
   Member/蛋白質研究所客員フェロー
========================================= */
#member_co_wrapper {
    width: 900px;
    margin: 35px auto;
    border-top:5px solid #0E4627;
}

#member_co_wrapper h4 {
	margin-top: 20px;
    font-size: 20px;
    text-decoration: bold;
    margin-bottom: 10px;
}

.member_co {
    width: 900px;
    height: 30px;
    overflow: hidden;
}

.co_university {
    width: 300px;
    float: left;
}

.co_name {
    width: 600px;
    float: right;
}


/* ========================================
   Member/国際共同研究
========================================= */
#member_co_wrapper {
    width: 900px;
    margin: 35px auto;
/*  border-top:5px solid #0E4627; */
}

#member_co_wrapper h4 {
	margin-top: 20px;
    font-size: 20px;
    text-decoration: bold;
    margin-bottom: 10px;
}

.member_co {
    width: 900px;
    height: 30px;
    overflow: hidden;
}

.co_university {
    width: 300px;
    float: left;
}

.co_name {
    width: 600px;
    float: right;
}


/* ========================================
   Member/共同研究員
========================================= */
#member_co_wrapper {
    width: 900px;
    margin: 35px auto;
    border-top:5px solid #0E4627;
}

#member_co_wrapper h4 {
	margin-top: 20px;
    font-size: 20px;
    text-decoration: bold;
    margin-bottom: 10px;
}

.member_co {
    width: 900px;
    height: 30px;
    overflow: hidden;
}

.co_university {
    width: 300px;
    float: left;
}

.co_name {
    width: 600px;
    float: right;
}


/* ========================================
    Research/Life/全体
========================================= */
#research_all_wrapper {
    width: 966px;
    margin: 20px auto;
}

/* ========================================
    Research/上部
========================================= */
#research_main_wrapper {
    width: 966px;
    overflow: hidden;
}

#research_main {
    width: 517px;
    height: 320px;
    float: left;
    overflow: hidden;
}

#research_main_content h4 {
    color: #000;
    font-size: 14px;
    font-weight: normal;
}

#research_main_content {
    width: 435px;
    height: 320px;
    float: right;
    overflow: hidden;
}

/* ========================================
    Research/中部
========================================= */
#research_h4 {
    overflow: hidden;
    width: 966px;
    height: 80px;
}

#research_h4 h4 {
    color: #000;
    font-size: 14px;
    line-height: 80px;
    font-weight: normal;
    margin: auto;
    text-align: center;
}

#research_h4 span {
    font-weight: bold;
}
/* ========================================
    Research/下部 & Life/全体を通して
========================================= */
.research_wrapper {
    width: 966px;
    height: 220px;
    margin-top: 0px;
    margin-bottom: 50px;
    overflow: hidden;
}

.research_photo {
    width: 300px;
    height: 200px;
    float: left;
}

.research_sub_wrapper {
    margin-left: 30px;
    width: 636px;
    height: 200px;
    float: right;

}

.research_sub_wrapper h3 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
    text-decoration: underline;
}

.research_sub_wrapper h4 {
    font-size: 14px;
    font-weight: normal;
    color: #000;
}


/* ========================================
    Life/<span>について
========================================= */
#life_top h4 span {
  font-weight: bold;
}

#life_top h4 {
  margin-bottom: 10px;
}
/* ========================================
    Life/中部
========================================= */
#life_h4 {
    overflow: hidden;
    width: 966px;
    height: 50px;
    background-color: #b8eccc;
    margin-bottom: 10px;
}

#life_h4 h4 {
    color: #000;
    font-size: 14px;
    line-height: 50px;
    font-weight: normal;
    margin: auto;
    text-align: center;
}

/* ========================================
    Access
========================================= */
#access_wrapper {
    width: 966px;
    height: 500px;
    margin: 20px auto;
    overflow: hidden;
}

#access {
    width: 480px;
    float: left;
}

#access_map {
    border: 1px solid #ccc;
    padding: 10px;
    width: 480px;
    height: 300px;
    background-color: #fff;
}

#access_map p {
    font-size: 12px;
    margin-top: 5px;
}

#access_intro {
    width: 450px;
    float:right;
}

#access_intro h4 {
    font-size: 14px;
    margin-bottom: 12px;
}

/* ========================================
    Prof/全体
========================================= */
#prof_wrapper {
  width: 966px;
  height: 500px;
  margin: 70px auto;
  overflow: hidden;
}

/* ========================================
    Prof/左側
========================================= */
#goto_prof_photo {
  width: 300px;
  margin-left: 114px;
  margin-right: 36px;
  float: left;
}

/* ========================================
    Prof/右側
========================================= */
#prof_content_wrapper {
  width: 516px;
  float: right;
}

#goto_name{
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 18px;
}

.prof_content {
  width: 516px;
  margin-bottom: 18px;
  overflow: hidden;
}

.prof_content h3 {
  font-size: 18px;
  font-weight: normal;
}
.prof_title {
  width: 36px;
  float: left;
  margin-right: 18px;
}

.prof_detail {
  width: 462px;
  float: right;
  overflow: hidden;
}

/* ========================================
    recruitment
========================================= */
#recruit_wrapper {
  width: 694px;
  margin: 0 auto;
}

#recruit_image {
  width: 694px;
  height: 300px;
  margin-top: 30px;
  margin-bottom: 30px;
}

#recruit_content h3 {
  font-size: 16px;
  font-weight: normal;
  color: #000;
  margin-top: 10px;
}

#recruit_content h4 {
  font-size: 14px;
  font-weight: normal;
  color: #000;
  margin-top: 5px;
}

#recruit_content ul {
  margin-bottom: 20px;
  margin-top: 20px;
  padding-left: 20px;
}

#recruit_content ul li {
  font-size: 16px;
  font-weight: normal;
  color: #090f44;
}

#recruit_content ul li a {
  text-decoration: underline;
}


/* ========================================
    garelly
========================================= */
#garelly_whole_wrapper {
  width: 820px;
  margin: 50px auto;
}

.garelly_wrapper {
  width: 800px;
  margin-bottom: 20px;
  border-left: 10px solid #eea9c8;
  padding-left: 10px;
}

.garelly_content {
  width: 800px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.garelly_content h3 {
  margin-bottom: 8px;
}


/* ========================================
    Publication
========================================= */
#publication_wrapper {
  width: 966px;
  margin: 20px auto;
}

#publication_wrapper h2 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 10px;
}

#publication_wrapper h3 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 20px;
}

.pub_journal {
  font-style: italic;
}

.pub_No {
  font-weight: bold;
}

/* ========================================
    Album
========================================= */
#album_wrapper {
  width: 966px;
  margin: 40px auto;
}

.album {
  margin-bottom: 50px;
  overflow: hidden;
}

.album h2 {
  width: 966px;
  font-size: 16px;
  font-weight: bold;
}

.album h3 {
  width: 966px;
  font-size: 16px;
  font-weight: normal;
}

.album_photo img {
  width: 300px;
  margin-right: 33px;
  margin-top: 10px;
  float: left;
}

.album_photo_last img {
  width: 300px;
  margin-right: 0;
  margin-top: 10px;
  float: left;
}

/* ========================================
    Seminer
========================================= */
#seminer_wrapper {
  width: 800px;
  margin: 40px auto;
}

.seminer {
  margin-bottom: 40px;
}
.seminer h2 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 10px;
}

.seminer h3 {
  padding-left: 20px;
  font-size: 16px;
  font-weight: normal;
}

.seminer h3 span {
  font-size: 16px;
  font-weight: bold;
}

.seminer h4 {
  font-size: 16px;
  padding-left: 20px;
  text-decoration: underline;
}

/* ========================================
    australia
========================================= */
#australia_wrapper {
  width: 966px;
  margin: 20px auto;
}

#australia_wrapper h2 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 10px;
}

#australia_wrapper h3 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 20px;
}

/* ========================================
    リンクバナー
========================================= */
#link {
	width:966px;
    margin: 10px auto;
    padding:50px 100px;
    text-align:center;
   
}


dt.link {
	margin-top:20px;
    font-weight:bold;
    font-size:16px;
    color:#008ff5; 
}

dt.link a {
    font-weight:bold;
    font-size:16px;
    color:#008ff5; 
    text-decoration:none;
    
}

dd.link a {
    text-decoration:none;
    
}













