@charset "utf-8";
/* ========================================================
	history.css => 沿革用CSS
======================================================== */



/* table
============================================================================================================ */

.histroy_table {
	width: 100%;
}
.histroy_table th,
.histroy_table td {
	padding: 20px 30px;
	vertical-align: top;
}
.histroy_table th {
	font-weight: bold;
	text-align: center;
	color: #048ebf;
	border-bottom: solid 2px #048ebf;
	width: 160px;
}
.histroy_table td {
	border-bottom: solid 1px #dddddd;
}
.histroy_table tr:last-child th,
.histroy_table tr:last-child td {
	border-bottom: 0;
}

.histroy_table td dl {
	zoom: 1;
}
.histroy_table td dl:after {
	content: ""; display: table; clear: both;
}
.histroy_table td dt  {
    float: left;
    width: 60px;
    text-align: right;
	font-weight: bold;
}
.histroy_table td dd  {
    float: left;
    padding-left: 30px;
    overflow: hidden;
}


@media screen and (max-width: 768px) {
	.histroy_table th,
	.histroy_table td {
		padding: 10px 15px;
	}
    .histroy_table th   {
    width: 90px;
    }
    .histroy_table td dt    {
    width: 20%;
    }
    .histroy_table td dd    {
    width: 75%;
    }
}

