a:visited {color: #0066FF; text-decoration: none}
a:link {color: #0066FF; text-decoration: none}
a:hover {color: #00CCCC; text-decoration: underline}

/*  font-family設定しない font-family:"游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN",メイリオ,sans-serif; */
.std {font-size: 13px; line-height: 14px;}
.doc {font-size: 13px; line-height: 17px;}
.sfont {font-size: 11px;}
.lgfont {font-size: 14px; line-height: 22px;}

/* 白文字のリンク */
.white {font-size: 12px; color: #FFFFFF;}
.white a:visited {color: #FFFFFF; text-decoration: none}
.white a:link {color: #FFFFFF; text-decoration: none}
.white a:hover {color: #FFFFFF; text-decoration: underline}


/* テーブル標準 */
table.tbl-std {
	border-collapse: collapse;
}
table.tbl-std th {
	padding: 4px;
	font-weight: bold;
	border: 1px solid #999999;
}
table.tbl-std td {
	padding: 4px;
	border: 1px solid #999999;
}


/* 画像に文字を重ねる data/index2.html */
div.caption {width:160px; height:120px; position:relative;}
span.caption1 {position:absolute; bottom:0px; left:0px; color: #000000; font-size: 11px; line-height: 14px; background-color: #FFFFFF;}


/* サイトマップ、協賛ページ用（frame廃止→position:fixed;） */
#frm-main{
margin-left:180px;
}
#frm-sidebar{
width:180px;
position:fixed;
top:0;
margin-left:0px;
}
#frm-topbar{
position:fixed;
top:0;
margin-left:180px;
}


/*サムネイルアコーディオン表示*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
  cursor: pointer;
  border-radius: 5px 5px 5px 5px;
  padding: 3px;
  display: block;
  width: 150px;
  background-color: #dddddd;
  border: none;
  box-shadow: 3px 3px 4px black;
  font: 14px "Open Sans",
    "Calibri",
    sans-serif;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	left: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:10px 0 0 0;
	transition: all .4s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}


/*解説の折りたたみ*/
details {
  font:
    16px "Open Sans",
    "Calibri",
    sans-serif;
  width: 500px;
}

details > summary {
  cursor: pointer;
  margin-bottom: 8px;
  width: 15em;
}

details > p {
  border-radius: 5px 5px 5px 5px;
  border:1px solid #999999;
  padding: 8px;
  margin-bottom: 8px;

}


