@charset "UTF-8";

/*------ sitemapList ------*/
.sitemapList {
	max-width: 900px;
	width: 85%;
	margin:0 auto 0 ;
	}

.sitemapList li {
	border-bottom: 1px solid #ccc;
	}

.sitemapList li a {
	width: 100%;
	display: block;
	position: relative;
	padding: 30px 0;
	}

.sitemapList li a:before {
	content: "";
	background: url(/anniversary/images/common/arrow.svg) center / 100% no-repeat;
	width: 36px;
	height: 36px;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	right: 0;
	transition: .3s;
	}

.sitemapList li a span {
	width: 80%;
	font-size: 18px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	transition: .3s;
	}



/*-------------------------------------------
hover
-------------------------------------------*/
@media only screen and (min-width: 961px){
.sitemapList li a:hover:before {
	background: url(/anniversary/images/common/arrow-red.svg) center / 100% no-repeat;
	}

.sitemapList li a:hover span {
	color: #fb7853;
	}
}

/*-------------------------------------------
TAB
-------------------------------------------*/
@media only screen and (max-width: 960px){


}

/*-------------------------------------------
SP
-------------------------------------------*/
@media only screen and (max-width: 520px){
.sitemapList li a span {
	font-size: 16px;
	}

}


