@charset "UTF-8";

.wrapper {
  overflow: hidden;
  width: auto;
  position: relative;
  height: auto;
  object-fit: cover;
}

.next {
  width: 50px;
  height: 100%;
  position: absolute;
  right: 0;
  transition: all 0.3s;
  z-index: 10;
  cursor: pointer;
}

.next::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  right: 15px;
  top: 10px;
}

.next:hover {
  background-color: #fff;
  transition: all 0.3s;
}

.prev {
  width: 50px;
  height: 100%;
  position: absolute;
  left: 0;
  transition: all 0.3s;
  z-index: 10;
  cursor: pointer;
}

.prev::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  left: 15px;
  top: 10px;
}

.prev:hover {
  background-color: #fff;
  transition: all 0.3s;
}

.slider {
  width: 300%;
  height: auto;
  display: flex;
  margin: 0 auto;
}

.slider1 {
  transform: translateX(0);
  transition: all 0.3s;
}

.slider2 {
  transform: translateX(-33.3333%);
  transition: all 0.3s;
}

.slider3 {
  transform: translateX(-66.6666%);
  transition: all 0.3s;
}

.content {
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content1 {
  background-color: #ededed;
}

.content2 {
  background-color: #cfcfcf;
}

.content3 {
  background-color: #9c9c9c;
}

.indicator {
  width: 100%;
  position: absolute;
  bottom: 10px;
  margin: 0;
  padding: 0;
  display: flex;
  z-index: 10;
  justify-content: center;
  align-items: center;
}

li.chara {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
  list-style: none;
  border: 1px #3d3d3d solid;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
}

li.chara :after {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px #3d3d3d solid;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: 9;
}

#list1 {
  background-color: #000;
}