@charset "utf-8";

/****************************************
	　　　　　よく使うCSS
*****************************************/
.clear{ clear: both; line-height: 0}

/* Clearfix */  
.clearfix:after {  
    content: ".";   
    display: block;   
    height: 0;   
    clear: both;   
    visibility: hidden;  
    font-size: 0.1em;  
    line-height: 0;  
}  
.clearfix {  
    display: inline-block;  
    min-height: 1%;  
}  
/* Hides from IE-mac \*/  
* html .clearfix {  
    height: 1%;  
}  
.clearfix {  
    display: block;  
}  
/* End hide from IE-Mac */


/****************************************
	　　　　その他
*****************************************/
/* 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%;
}
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: 1em Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
}
table td {
	padding: 5px;
	border: 0;
	border-top: 1px solid #999;
	border-left: 1px solid #999;	
}


/* Ordinary List */
.box_main ol li {
    margin-bottom: 10px;
}


/* ボタン */
.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("https://public.fukubo.org/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;
}
.btn_entry.btn_disable {
	background-color: #eee;
	cursor: not-allowed;
}
.btn_entry.btn_disable a {
	color: #AAA;
	cursor: not-allowed;
	pointer-events: none;
}
