:root {
  --image-wrap-width: 64%;
  --image-wrap-height: 30vw;
}

.image-slider::-webkit-scrollbar {
  display: none;
}

.image-slider-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
}

.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
  transition-timing-function: ease-out;
  transition-duration: 400ms;
  user-select: none;
  -webkit-user-select: none;
}

.image-slider div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

.image-slider>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-slider>div img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

.arrow-button-wrap {
  flex: 1;
  display: none;
}

.arrow-button {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(40px + 0.8vw);
  height: calc(40px + 0.8vw);
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 1.2px 1.8px 5px 0.2px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}

.arrow-button .arrow {
  fill: var(--color-blue);
  width: 60%;
  height: 60%;
}