img {
  max-width: 1700px;
  height: auto;
}

ul, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.carousel-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-outer img {
  height: 700px; 
  object-fit: cover;
}

.carousel {
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
}

.no-transition {
  transition: none;
}

.carousel__section {
  min-width: 100%;
  text-align: center;
}

.carousel__button {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.7);
  color: #fff;
  z-index: 10;
  outline: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* アイコンサイズ */
.carousel__button svg { display: block; width: 18px; height: 18px; }

.carousel__button-left,
.carousel__button-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.carousel__button-left {
  left: 5%;
}

.carousel__button-right {
  right: 5%;
}

.carousel__indicator {
  display: flex;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.carousel__indicator > li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  border: 1px solid #000;
}

.carousel__indicator > .active {
  background: #000
}

@media all and (max-width: 599px) {
	.carousel-outer img {
    height: auto;
  }
}