@charset "utf-8";
/* ===================================================================

 file name  :sitemap.css
 style info : サイトマップ

=================================================================== */

/* =============================

	overwrite

=============================== */
#pageHeader{
	background: url(../images/sitemap/img_page.jpg) no-repeat 50% 50% / cover;
}

/* =================================== */
#main .list-wrap{
	display: flex;
	justify-content: space-between;
}
#main .list-wrap .list{
	width: 50%;
	overflow: hidden;
}
#main .list-wrap .list > ul > li{
	margin: 0 0 70px;
}
#main .list-wrap .list > ul > li > a{
	display: block;
	padding: 0 0 0 55px;
}
#main .list-wrap .list > ul > li > a:hover{
	padding: 0 0 0 30px;
}
#main .list-wrap .list h2{
	line-height: 1;
}
#main .list-wrap .list h2 .en{
	display: block;
	margin: 0 0 10px;
	font-size: 2.4rem;
	text-indent: -55px
}
#main .list-wrap .list h2 .en::before{
	content: "";
	display:inline-block;
	width: 40px;
	height: 1px;
	margin: 0 15px 0 0;
	background: #c1c1c1;
	vertical-align: middle;
	transition: all ease 0.4s;
}
#main .list-wrap .list h2 .ja{
	display: block;
	font-size: 1.3rem;
}

#main .list-wrap .list ul ul{
	margin: 24px 0 0;
}
#main .list-wrap .list ul ul li a{
	display: block;
	padding: 0 0 0 55px;
	transition: all ease 0.4s;
}
#main .list-wrap .list ul ul li a:hover{
	padding: 0 0 0 40px;
}
#main .list-wrap .list ul ul li a::before{
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 10px 0 0;
	background: #111;
	border-radius: 50%;
	vertical-align: middle;
	transition: all ease 0.4s;
}
#main .list-wrap .list ul ul li a:hover::before{
	width: 8px;
	height: 2px;
	border-radius: 0;
}


@media screen and (max-width: 767px){
	#main .list-wrap{
		display: block;
	}
	#main .list-wrap .list{
		width: 100%;
	}
	#main .list-wrap .list > ul > li{
		margin: 0 0 30px;
	}
	#main .list-wrap .list > ul > li > a{
		display: inline-block;
		padding: 0 0 0 30px;
		white-space: nowrap;
	}
	#main .list-wrap .list > ul > li > a:hover{
		padding: 0 0 0 30px;
	}
	#main .list-wrap .list h2 .en{
		margin: 0 0 5px;
		font-size: 2rem;
		text-indent: -30px
	}
	#main .list-wrap .list h2 .en::before{
		width: 20px;
		margin: 0 10px 0 0;
	}
	#main .list-wrap .list h2 .ja{
		font-size: 1.2rem;
	}
	
	#main .list-wrap .list ul ul{
		margin: 10px 0 0;
	}
	#main .list-wrap .list ul ul li a{
		padding: 0 0 0 30px;
	}
	#main .list-wrap .list ul ul li a:hover{
		padding: 0 0 0 30px;
	}
	#main .list-wrap .list ul ul li a::before{
		width: 6px;
		height: 6px;
		margin: 0 5px 0 0;
	}
	#main .list-wrap .list ul ul li a:hover::before{
		width: 6px;
		height: 6px;
	}
}


