@charset "UTF-8";
/*
 * .sitemap.index.css
 *
 */

/*==================================
              sitemap
===================================*/
.sitemap_link ul li {
	margin:30px auto;
}
.sitemap_link ul li a {
	color:#000;
	font-weight:bold;
}
.sitemap_link .sitemap_sub li {
	margin:30px 0 0 30px;
}
.sitemap_sub li::before {
  content: '';
  position: relative;
  top: 40%;
  left: 0%;
  display: inline-block;
  width: 15px;
  height: 5px;
  border-top: solid 1px #999;
}
.sitemap_link {
	padding:50px 0;
}
.sitemap_link ul li a::before {
  content: '\f105';
  left: 0;
  margin: 0 10px 0 0;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: relative;
  color: #000;
}
.sitemap_link .home_link a::before {
  content: '\f015';
  left: 0;
  margin: 0 10px 0 0;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: relative;
  color: #000;
}


.slider {
    display: block;
  width: 300px;
　　height: 200px;
　　overflow: hidden;
　　margin: 0 auto;

}
.slider-item {
  width: 300px;
  float: left;
}
.slider-item img{
  width:100%;
}
.slider-inner {
  width: 300%;
  animation: slider 10s infinite ease;
}

@keyframes slider {
	0% {
	transform: translateX(0);
	}
	33% {
	transform: translateX(-100px);
	}
	66% {
	transform: translateX(-600px);
	}
	100% {
	transform: translateX(0);
	}
}