/****************************************
	　　　　　基本
*****************************************/
body {
	font: 16px/1.5 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}



**************************************
	　　　　　よく使うCSS
*****************************************/
.clear{ clear: both; line-height: 0}

/* clearfix */
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix {
    display: inline-block;
}
/* Hides from IE-mac */
* html .clearfix {
    height: 1%;
}
.clearfix {
    display: block;
}


/****************************************
	　　　　その他
*****************************************/
/* table */
table {
	border: 0;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	font-size: inherit;
	border-collapse: separate;
	border-spacing: 0;
	margin-left:10px;
	width:95%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
table th {
	color: #313131;
	margin: 0;
	padding: 0.5em;
	border: 0;
	border-top: 1px solid #999;
	border-left: 1px solid #999;
	font-style: normal;
	text-align: center;
	background-color: #E6E6E6;
	font-weight: bold;
}
table td {
	padding: 5px;
	border: 0;
	border-top: 1px solid #999;
	border-left: 1px solid #999;	
}


/* ボタン */
.btn_entry{
	width: 80%;
	line-height:26px;
	text-align: center;
	margin: 20px auto;	
    display: block;
    zoom: 1;
    padding: 5px 10px;
    cursor: pointer;
    border: 1px solid #bbb;
    overflow: visible;
	font-weight: bold;
    text-decoration: none;
    color: #444;
    background-color: #ddd;
    background-image: linear-gradient(top, rgba(255,255,255,1),
                                rgba(255,255,255,0)),
                                url("http://gifu.shinrokuden.irides.tohoku.ac.jp/ecom/css/data:image/png;base64,iVBORw0KGg[...]QmCC");
    transition: background-color .2s ease-out;
    background-clip: padding-box; /* Fix bleeding */
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .3),
                            0 2px 2px -1px rgba(0, 0, 0, .5),
                            0 1px 0 rgba(255, 255, 255, .3) inset;
    text-shadow: 0 1px 0 rgba(255,255,255, .9);
}
.btn_entry a:visited, .btn_entry a, .btn_entry a:link  {
	color: #444;
	line-height:26px;
	display: block;
	}
.btn_entry:hover{
    background-color: #eee;
}
.btn_entry a:hover {text-decoration:none;}
 
.btn_entry:active{
    background: #e9e9e9;
    position: relative;
    top: 1px;
    text-shadow: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
    outline: none;
}



