*,
body,
ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.slide-wrapper {
  width: 80%;
  height: 600px;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

.slide {
  width: 500%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
}

.slide div {
  width: 20%;
  height: 100%;
  font-size: 16px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.slide div img {
  width: 100%;
}

.slide1 {
  /* スライドさせるために必要なクラス */
  transform: translateX(0);
}

.slide2 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-20%);
}

.slide3 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-40%);
}

.slide4 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-60%);
}

.slide5 {
  /* スライドさせるために必要なクラス */
  transform: translateX(-80%);
}

.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;
}

.slide div:nth-of-type(4) {
  /* 背景色 */
  background-color: #a43174;
}

.slide div:nth-of-type(5) {
  /* 背景色 */
  background-color: #3152a4;
}

/* ↓ 左右のボタン */
.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;
}

.popo {
  text-align: center;
  padding-top: 30px;
}

#slide-wrapper img {
  margin-left: auto;
  margin-right: auto;
}

#slide-wrapper {
  height: 70%;
  text-align: center;
}

button {
  width: 50px;
  height: 50px;
}

button.ok {
  margin-top: 20px;
  background-color: orange;
  width: 100px;
}