/*スライド画像
-----------------------------------------------------------------------*/
.slide_hero {
	position: relative;
	width: 360px;
	height: calc(100svh - 170px);
	box-sizing: border-box;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 1.00);
	margin: auto;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
}
/* 4画像のスライド */
.slide_hero_img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: calc(100svh - 170px);
  opacity: 0;
  animation: slide_hero 22s linear infinite;
}
.slide_hero_img:nth-child(1) {
  animation-delay: 0s;
}
.slide_hero_img:nth-child(2) {
  animation-delay: 5.5s;
}
.slide_hero_img:nth-child(3) {
  animation-delay: 11s;
}
.slide_hero_img:nth-child(4) {
  animation-delay: 16.5s;
}
@keyframes slide_hero {
  0%, 27.27%, 100% {
    opacity: 0;
  }
  9.09%, 22.73% {
    opacity: 1;
  }
  27.27% {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 460px) {
  .slide_hero, .slide_hero_img {
    width: 100%
  }
}
/*スライド画像のアドレス
-----------------------------------------------------------------------*/
.slide_hero_img:nth-child(1) {
  background-image: url("../image/slide01.jpg");
}
.slide_hero_img:nth-child(2) {
  background-image: url("../image/slide02.jpg");
}
.slide_hero_img:nth-child(3) {
  background-image: url("../image/slide03.jpg");
}
.slide_hero_img:nth-child(4) {
  background-image: url("../image/slide04.jpg");
}