*,
body,
ul {
  margin: 0;
  padding: 0px;
}

li {
  list-style: none;
}

/* ↓ スライドの外枠 */
.slide-wrapper {
  width: 700px;
  height: 400px;
  position: relative;
  overflow: hidden;
  /* はみ出したスライドを隠す */
  margin: 20px auto;
  padding: 0px;

}

.slide img {
  width: 100%;
  height: auto;
}

/*  ↓ スライド（コンテンツ） */
.slide {
  /*スライド全体 */
  width: 300%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
}

.slide div {
  /* スライド */
  width: 33.33%;
  height: 100%;
  font-size: 16px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.slide1 {
  /* スライドさせるために必要なクラス */
  transform: translateX(0);
}

.slide2 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-33.33%);
}

.slide3 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-66.66%);
}

/* 背景色 */
/*.slide div:nth-of-type(1){
    background-color: #E1F3FC;
  }
  .slide div:nth-of-type(2){
    background-color: #FCE8F0;
  }
  .slide div:nth-of-type(3){
    background-color: #E3F1E4;
  }*/

/* ↓ 左右のボタン */
.next {
  position: absolute;
  width: 15px;
  height: 15px;
  right: 10px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  -webkit-transform: rotate(45deg) translateY(50%);
  transform: rotate(45deg) translateY(50%);
}

.prev {
  position: absolute;
  width: 15px;
  height: 15px;
  left: 25px;
  bottom: 50%;
  z-index: 10;
  cursor: pointer;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

/* ↓ インジケーター */
.indicator {
  width: 100%;
  position: absolute;
  bottom: 20px;
  display: flex;
  column-gap: 18px;
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.indicator li {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  list-style: none;
  background-color: #fff;
  border: 2px #000 solid;
  cursor: pointer;
}

.indicator li:first-of-type {
  background-color: #000;
}