@charset "UTF-8";
/*------------------------------------------------------------------
********************************************************************
 * ▼構成
 * ・ベースとなるCSS
 * ・スマホ用（@media screen and (max-width: 767px) {} ）
********************************************************************
--------------------------------------------------------------------*/

.sitemap_box{
	max-width: 1280px;
	width: 90%;
	margin: 100px auto 0;
	padding-bottom: 120px;
	border-bottom: #bcc1ca 1px solid;
}
@media screen and (max-width: 767px) {
	.sitemap_box{
		margin-top: 30px;
		padding-bottom: 0;
		border-bottom: none;
	}
}

.sitemap_box .list{
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.sitemap_box .list a{
	display: block;
	padding: 24px 0;
	background: url(../imgs/other/arrow_navy.png) no-repeat right 15px center/ 20px;
	border-bottom: #0f1f3f 1px solid;
	font-size: 16px;
}
@media screen and (max-width: 767px) {
	.sitemap_box .list a{
		font-size: 3.99vw;
	}
}

.sitemap_box .list a:hover{
	background-position: right 0px center;
}

