
/* --------------------------　メインスライダー　-------------------------- */

#sitemap-content .page_main {
	background: url("../../images/sitemap/page_main.jpg") no-repeat;
	background-position: top center;
	background-size:cover;
}



.sitemapbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.sitemapbox div {
	width: 32%;
	margin-bottom: 15px;
}

.button02 a {
    background: #0d2f45;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	box-sizing: border-box;
}
.button02 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button02 a:hover {
  background: #947c46;
  color: #FFF;
}
.button02 a:hover:after {
  right: 1.4rem;
}




@media screen and (max-width: 768px) {
	
	
#sitemap-content .page_main {
	background: url("../../images/sitemap/page_main_sp.jpg") no-repeat;
	background-position: top center;
	background-size:cover;
}
	

.sitemapbox {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
}

.sitemapbox div {
	width: auto;
	margin-bottom: 5px;
}

.button02 a {
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	box-sizing: border-box;
	font-size: 1.4rem;
}
.button02 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button02 a:hover {
  color: #FFF;
}
.button02 a:hover:after {
  right: 1.4rem;
}



}



