/* 画像スライド */
*,body,ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
/* ↓ スライドの外枠 ※Width,heightは画像サイズに合わせる */
.slide-wrapper {
  margin: auto;
  padding-left: 0px;
  width: 900px;
  height: 597px;
  position: relative;
  overflow: hidden; /* はみ出したスライドを隠す */
  /* border: 1px solid #e9ebeb; */
  border: 1px solid #aeaeae;
  margin-top: -50px;
}
/*  ↓ スライド（コンテンツ） */
.slide { /*スライド全体 */
  width: 600%;
  height: 100%;
  display: flex;
  text-align: center;
  /* transition: all 0.5s; */
  transition: all 1s ease;
  background-color:transparent;
  background-color: #E1F3FC;
}
.slide div { /* スライド */
  vertical-align: middle;
  width: 100%;
  height: 100%;
  font-size: 16px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
/* スライドさせるために必要なクラス */
.slide1 { transform: translateX(0%); }
.slide2 { transform: translateX(-16.66%); }
.slide3 { transform: translateX(-33.3%); }
.slide4 { transform: translateX(-50%); }
.slide5 { transform: translateX(-66.66%); }
.slide6 { transform: translateX(-83.35%); }

/* 背景色 */
/* .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: #E3F1E4;
}
.slide div:nth-of-type(5){
  background-color: #E3F1E4;
} */
/* background-color: white; */


/* ↓ 左右のボタン */
.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;
}
.slide img {
  width: 100%;
  height: auto;
}
