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

/*==================
reset
====================*/
/*ベースの要素の設定をリセット*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,form,input,p,blockquote,th,td {
	margin:0;
	padding:0;
}

/*画像の枠線をクリアして位置の初期値の設定*/
img{
	border:0;
	vertical-align: top;
}

/*リンク時の枠の点線をなしにする*/
a{
	outline: none;
}

/*リスト要素の初期値をリセット*/
ul,ol{
	list-style: none;
}


/*フロート解除用のハック*/
/*clearfix*/
.clearfix:after{  
	visibility:hidden;
	height:0;
	display: block;
	font-size: 0;  
	content: " ";  
	clear: both;  

} 
* html .clearfix             { zoom: 1; } 
*:first-child+html .clearfix { zoom: 1; } 


/*==================
共通
====================*/

body{
	font-size: 62.5%;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳＰゴシック',sans-serif;
	line-height:1.6;
	color:#333;
	background:#fff;
	min-width: 960px;
}


#conteiner{
	position: relative;
	min-width:960px;
	width: 100%;
	height:100%;
}

a:link,
a:visited,
a:active{
	color:#333;
	text-decoration:none;
}

a:hover{
	color:#007fff;
	text-decoration:none;
}

/*==================
header
====================*/

#header{
	position: fixed;
	left: 0;
	top: 0;
	min-height: 100%;
	width: 180px;
	background-color: #fff;
	-webkit-box-shadow: 1px 0 7px #aaaaaa;
	box-shadow: 1px 0 7px #aaaaaa;
	z-index:20;
}

#header-top{
	display: block;
	width: 180px;
	padding-bottom:18px;
	margin-top: 20px;
}

#header-top img{
	display: block;
	margin: 0 auto;
}


/*==================
nav
====================*/
#gnav-wrap:before{
	content: ' ';
	display: block;
	height: 1px;
	background: #cccccc;
	position: absolute;
	left: 15px;
	right: 15px;
	margin-top: -20px;
}

#gnav-wrap{
	display: block;
	padding: 20px 0;
}

#gnav-wrap ul{
	margin: 0;
	padding: 0;
}

#gnav-wrap ul li{
	/*margin:0;
	padding:0;*/
	display:block;
	background: #fff;
	position: relative;
	/*text-decoration:none;*/
}

#gnav-wrap ul li a{
	font-size: 1.3em;
	display: block;
	color: #333;
	position: relative;
	padding: 11px 0px 9px 20px;
	text-decoration:none;
}

#gnav-wrap ul li ul{
	position: absolute;
	top: 0px;
	left: 180px;
	display: block;
	width: 180px;
}

#gnav-wrap ul li ul li {
	visibility: hidden;
	overflow: hidden;
	width: 0px;
	height: 0px;
	background: #e1eaff;
}

#gnav-wrap li a:after{
	border-right: 2px solid #333;
	border-top: 2px solid #333;
	content: "";
	margin: 0 0 0 10px;
	height: 6px;
	right: 25px;
	position: absolute;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	top: 17px;
	width: 6px;
}

#gnav-wrap li a:hover{
    background: #00238c;
    color: #fff;
}

#gnav-wrap li a:hover:after{
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    content: "";
    margin: 0 0 0 10px;
    height: 6px;
    right: 25px;
    position: absolute;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 17px;
    width: 6px;
}

#gnav-wrap ul li:hover ul li, #gnav-wrap ul li a:hover ul li{
    visibility: visible;
    height: 40px;/*サブメニューの高さ*/
	width:180px;
}

#gnav-wrap * {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

/*==================
address
====================*/

#address:before{
    content: ' ';
	display: block;
	height: 1px;
	background: #cccccc;
    position: absolute;
	left: 15px;
	right: 15px;
	margin-top: -20px;
}

#address{
	display: block;
	padding: 20px 0 20px 10px;
}

#address p{
	font-size: 1.3em;
	margin-bottom: 10px;
}

.button-contact{
	display: block;
	height: 38px;
	width: 158px;
	border: solid 1px #000;
}

a.button-contact{
	font-size: 1.3em;
	font-weight: bold;
	color: #fff;
	background:#000;
	text-align: center;
	line-height: 38px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

a.button-contact:hover{
	background:#fff;
	color: #000;
}


/*==================
link
====================*/

#link:before{
    content: ' ';
	display: block;
	height: 1px;
	background: #cccccc;
    position: absolute;
	left: 15px;
	right: 15px;
	margin-top: -20px;
}

#link{
	display: block;
	width: 180px;
	padding: 20px 0;
}

#link img{
	display: block;
	margin: 0 auto;
}

#link-menu{
	margin:15px 0 0 10px;
}

#link-menu li{
	margin-top:5px;
}

#link-menu a{
	font-size: 1.3em;
}

/*==================
contents　プロフィール内容はここから
====================*/
#main-wrap{
	margin-left: 180px;
	padding-top:50px;
	padding-bottom:50px;
	min-height: 600px;
	border-left: solid 1px #dddddd;
	background-color: #fafafa;
}

#contents{
	margin: 0 auto;
	width: 680px;
	padding: 20px 20px 30px 20px;
	border: solid 1px #ccc;
	box-shadow: 0 0 10px #aaa;
	background-color: #ffffff53;
}

.profile{
	padding-bottom:10px;
}

.profile-picture{
	width: 197px;
	height: 300px;
	float: left;
	margin: 0 30px 0 0;
}

.profile-name{
	margin-left: 210px;
}

h2.name{
	font-size: 2.0em;
	color: #000080;
	letter-spacing: 0.1em;
}
small.en {
	color:#0072bc;
  }
  
.profile-name dl{
	font-size: 1.4em;
}

.profile-name dt{
	float: left;
	font-weight: bold;
	width: 90px;
	padding: 3px 0 0 0;
}

.profile-name dd{
	padding: 3px 0 0 0;
}

.profile-contents{
	margin-top: 20px;
}

h3.profile-title{
	font-size: 1.5em;
  	color: #000080;
  	border-left: solid 5px #000080;
  	border-bottom: solid 1px #ccc;
  	padding: 1px 0 1px 10px;
  	margin-bottom: 15px;
}

p.profile-article{
	padding-left: 10px;
	font-size: 1.3em;
}

/*==================
一覧へ戻るボタン
====================*/
.to-member a{
	font-size: 1.3em;
	display: block;
	margin-top: 50px;
	margin-right: auto;
	margin-left: auto;
	width: 158px;
	color: #fff;
	background-color: #0085b2;
	position: relative;
	padding: 11px 0px 9px 20px;
	text-decoration:none;
	border: solid 1px #0085b2;
}

.to-member a:after{
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	content: "";
	margin: 0 0 0 10px;
	height: 6px;
	right: 25px;
	position: absolute;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	top: 17px;
	width: 6px;
}

.to-member a:hover{
    background: #fff;
    color: #0085b2;
}

.to-member a:hover:after{
    border-right: 2px solid #0085b2;
    border-top: 2px solid #0085b2;
    content: "";
    margin: 0 0 0 10px;
    height: 6px;
    right: 25px;
    position: absolute;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 17px;
    width: 6px;
}

.to-member * {
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

/*==================
footer
====================*/
#footer-wrap{
	margin-left: 180px;
	height: 52px;
	background-image: url(../../../../image/img_footer.png);
	background-repeat: repeat-x;
}

#copyright{
	width:720px;
	margin-left: 180px;
	color: #fff;
	line-height: 52px;
	text-align: right;
	margin: 0 auto;
}
