@charset "utf-8";

/* 全体
------------------------------------------------------------*/
body{
	width:900px;
	margin:auto;
}



/* ヘッダー
------------------------------------------------------------*/
header{
	margin-top:20px;
}

header .h1{
	background-color:#060638;
	border:#dedcdc solid 5px;
	margin-top:5px;
	padding:20px;
}

h1{
	color:ghostwhite;
	font-size:160%;
	font-family:Lucida Sans;
}

h1 span{
	font-size:65%;
}

header nav{
	margin:10px 0 0 0;
	padding:0;
	width:200px;
	float:left;
}

header nav ul{
	list-style:none;
	margin:0;
	padding:0;
	font-family:Lucida Sans;
	font-size:90%;
}

header nav li{
	border-bottom:#b2aeae 1px dotted;
	padding:10px 0px 10px 10px;
}

header nav div{
	text-align:center;
}

header nav span{
	font-size:90%;
}


.sillr_en{
	margin-left:550px;
	
}


/* header navのアクション設定
------------------------------------------------------------*/
.button {
	display: inline-block;
	width: 200px;
	text-decoration: none;
	outline: none;
}

.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}

.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.button{
	background-color:#fff;
	color:#060638;
}

.button:hover{
	background-color:#59b1eb;
}

.button a{
	text-decoration:none;
	color:#060638;
}

.button_on{
	background-color:#59b1eb;
	color:ghostwhite;
	font-weight:800;
}

.button_ons{
	background-color:#59b1eb;
	color:ghostwhite;
	font-weight:800;
}

.button_ons a{
	border:none;
	color:ghostwhite;
	text-decoration:none;
}



/* コンテンツ
------------------------------------------------------------*/
article{
	width:680px;
	float:left;
	margin-left:10px;
}

section{
	font-family:Levenim MT,Myriad Web Pro;
	font-size:95%;
	margin-bottom:30px;
}

h2{
	font-family:Lucida Sans;
	font-size:140%;
	border-left:#060638 solid 5px;
	padding-left:10px;
}

dl{
	margin:0;
}

dt{
	float:left;
	padding-top:5px;
}

dd{
	margin:0 0 5px 0;
	padding:5px 0px 5px 9em;
	background:url("../images/bg_dotline.gif") 0 100% repeat-x;
}

.section_02 .alignleft{
	float:left;
	clear:left;
	margin:3px 5px 10px 1px;
}

.section_02 .alignright{
	float:right;
	clear:right;
	margin:3px 1px 10px 5px;
}

.section_02{
	margin:auto;
}

.section_03{
	clear:both;
	padding-top:20px;
}

.section_03 div{
	margin-bottom:20px;
}

.notes{
	text-align:right;
}

.center{
	text-align:center;
}

.youtubelink{
	color:#000000;
}

address{
	font-style:normal;
}

hr{
	clear:both;
}

.att{
	color:red;
}

/* テーブル
------------------------------------------------------------*/
caption{
	text-align:left;
}

caption span{
	margin-left:20px;
}

table.table{
	border-collapse:collapse;
	width:100%;
	margin:10px auto;
}

table.table th,table.table td{
	padding: 5px;
	border: 1px solid #ddd;
}

table.table th{
	font-weight:bold;
	letter-spacing:1px;
	white-space:nowrap;
	background:#eee;
	text-align:left;
	
}

table.table th span{
	font-size:90%;
	font-weight:lighter;
}

td.time{
	width:90px;
}

td.sp01{
	width:250px;
}



/* フッター
------------------------------------------------------------*/
footer{
	font-family:Lucida Sans;
	text-align:center;
}

footer nav li{
	font-size:70%;
	list-style:none;
	display:inline;
	padding:5px;
}

.copy{
	text-align:center;
	font-family:Lucida Sans;
	font-size:80%;
	margin-top:30px;
	padding:20px;
}



/* フッターnavのアクション設定
------------------------------------------------------------*/
/* 表示文字の装飾 */
li.tooltip1{
	color: #555;
	display: inline-block;    /* インライン要素化 */
}

li.tooltip1 a{
	text-decoration:none;
	color:#060638;
}

/* ツールチップ部分を隠す */
li.tooltip1 span {
	display:none;
}

/* マウスオーバー */
li.tooltip1:hover {
	position:relative;
	color:#060638;
	text-decoration:underline;
}

/* マウスオーバー時にツールチップを表示 */
li.tooltip1:hover span {
	display:block;                  /* ボックス要素にする */
	position:absolute;            /* relativeからの絶対位置 */
	top:-30px;
	color:ghostwhite;
	font-weight:800;
	background-color:#59b1eb;
	width:150px;
	padding:5px;
	border-radius:3px;
	z-index:100;
}

/* フキダシ部分を作成 */
li.tooltip1 span:before{
	content:''; 
	display:block; 
	position:absolute;                         /* relativeからの絶対位置 */
	height:0; 
	width:0; 
	top:14px; 
	left:15px;
	border:13px transparent solid; 
	border-right-width:0; 
	border-left-color:#59b1eb;
	transform:rotate(90deg);            /* 傾きをつける */
	-webkit-transform:rotate(90deg);
	-o-transform:rotate(90deg);
	z-index:100;
}

