@charset "UTF-8";
/* CSS Document */

/*=========================================== 
スマホ向けのレイアウトの指定：～768px 
===========================================*/
@media only screen and (min-width: 0px) {

body{
	overflow-x: hidden;
}
	
#container{
	width:100%;
	margin:0 auto;
	overflow: hidden;
}

#wrapper{
	width:100%;
	margin:0 auto;
}

/*メインビジュアル*/
.mv{
	background: url(../images/sitemap_mv.jpg) no-repeat top center;
	background-size: cover;
}


/*コンテンツ*/
.sitemap{
	width: 90%;
	margin: 80px auto;
}

.sitemap ul.list-1{
	font-size: 0;
}

.sitemap ul.list-1 li{
	box-sizing: border-box;
	width: 46%;
	height: 60px;
	margin: 20px 2% 0;
	font-size: 16px;
	text-align: center;
	line-height: 60px;
	background: rgb(175,204,206);
	display: inline-block;
	vertical-align: top;
}

.sitemap ul.list-1 li a{
	color: rgb(255,255,255);
	display: block;
}

.sitemap ul.list-1 li:first-child{
	width: 100%;
	margin: 0;
	text-align: left;
	border: 1px solid rgb(240,240,240);
	border-left: 26px solid rgb(139,199,207);
	background: rgb(255,255,255);
	display: block;
}

.sitemap ul.list-1 li:first-child a{
	padding: 0 0 0 20px;
	color: rgb(50,50,50);
}

.sitemap ul.list-1 li:last-child{
	background: rgb(139,199,207);
}

i.fa-home{
	color: rgb(139,199,207);
}

.sitemap ul.list-2,
.sitemap ul.list-3{
	margin: 20px auto 0;
}

.sitemap ul.list-2 li,
.sitemap ul.list-3 li{
	box-sizing: border-box;
	height: 60px;
	font-size: 16px;
	border-bottom: 1px dashed rgb(200,200,200);
}

.sitemap ul.list-2 li.odd{
	background: rgb(240,240,240);
}

.sitemap ul.list-2 li.even{
	background: rgb(245,245,245);
}

.sitemap ul.list-3 li{
	background: rgb(250,250,250);
}

.sitemap ul.list-2 li a,
.sitemap ul.list-3 li a{
	padding:22px 20px;
	color: rgb(50,50,50);
	display: block;
}

.sitemap ul.list-2 li:last-child,
.sitemap ul.list-3 li:last-child{
	border: none;
}

i.fa-angle-right{
	margin: 0 8px 0 0;
	color: rgb(139,199,207);
}
}


/*=========================================== 
PC向けのレイアウトの指定：768px〜
===========================================*/
@media only screen and (min-width: 769px) {

#container{
	width:100vw;
}


/*コンテンツ*/
.sitemap{
	width: auto;
	max-width: 940px;
	padding: 10px;
}


.sitemap ul.list-1 li{
	box-sizing: border-box;
	width: 15.5%;
	max-width: 144px;
	margin: 0 2% 0 0;
}

.sitemap ul.list-1 li:first-child{
	width: 30%;	
	max-width: 288px;
	margin: 0 2% 0 0;
	display: inline-block;
}

.sitemap ul.list-1 li:last-child{
	margin: 0;
}

.sitemap ul li a:hover{
	opacity: 0.8; 
	filter:alpha(opacity=80); /* IE 6,7*/
	-ms-filter: "alpha(opacity=80)"; /* IE 8,9 */
	-moz-opacity:0.8; /* FF , Netscape */
	-khtml-opacity: 0.8; /* Safari 1.x */
	zoom:1; /*IE*/
}
}