@charset "utf-8";
/* index */

#main{
	width: 100%;
}

#main .head{
	max-width: 1900px;
	height: 120px;
	position: relative;
	padding: 0 10px;
}
#main .head img{
	position: absolute;
	bottom: 0;
	left: 1250px;
}
#main .head h1{
	width: 460px;
	text-align: center;
	margin: 0 auto;
	font-size: 32px;
	border-bottom: 3px dotted #1F5CAA;

	display: block;
	position: absolute;	
	bottom: 0;
	left: 50%;
    -webkit-transform: translateY(0%) translateX(-50%);
    transform: translateY(0%) translateX(-50%);
}
#main .contents {
	width: calc( 100% - 20px );
	padding: 0 10px;
}
#main .contents table{
	max-width: 950px;
	text-align: left;
	margin: 20px auto 40px;
	border-collapse: collapse;
	line-height: 150%;
}

#main .contents table th{
	width: 130px;
	color: #1F5CAA;
	font-size: 18px;
	font-weight: bold;
	border-bottom: 1px solid #1F5CAA;
	vertical-align: top;
	padding: 10px;
}
#main .contents table td{
	width: calc( 100% - 170px );
	font-size: 16px;
	border-bottom: 1px solid #1F5CAA;
	vertical-align: top;
	padding: 10px;
}
#main .contents table td .branch{
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 16px;
	font-weight: bold;
	line-height: 180%;
	display: block;
}
#main .contents table td .branch.top{
	margin: 0;	
}
#main .contents table tr:last-child th,
#main .contents table tr:last-child td{
	border-bottom: none;
}


@media screen and (max-width: 1750px) {
	#main .head img {
		display: none;		
	}
}
@media screen and (max-width: 480px) {
	#main .head h1{
		width: calc( 100% - 20px );
	}
	#main .contents table th,
	#main .contents table td{
		width: calc( 100% - 20px );
		display: block;
	}
	#main .contents table th{
		border-bottom: none;
	}
}