@charset "utf-8";

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

li {
  list-style: none;
}

/* ↓ スライドの外枠 */
.slide-wrapper {
  width: 100%;
  max-width: 500px;
  height: 446px;
  position: relative;
  overflow: hidden;
  /* はみ出したスライドを隠す */
  border: 1px solid #CBCBCB;
}

/*  ↓ スライド（コンテンツ） */
.slide {
  /*スライド全体 */
  width: 300%;
  height: 100%;
  display: flex;
  transition: all 0.3s;
}

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

.slide div {
  /* スライド */
  width: 33.33%;
  height: 100%;
  font-size: 16px;
}

.women-slide div {
  width: 33.33%;
  height: 100%;
  font-size: 16px;
}

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

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

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

/* ↓ 左右のボタン */
.next {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 12%;
  bottom: 5%;
  z-index: 10;
  cursor: pointer;
  background-color: #FFFAF5;
  border: 2px solid #E5D8C9;
  border-radius: 100%;
}

.next::before {
  content: "";
  display: block;
  width: 15px;
  height: 3px;
  background: #B17B00;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  position: absolute;
  top: 46%;
  left: 32%;
}

.next::after {
  content: "";
  display: block;
  left: 1px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #B17B00;
  border-bottom: 3px solid #B17B00;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  position: absolute;
  top: 37%;
  left: 38.4%;
}

.prev {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 12%;
  bottom: 5%;
  z-index: 10;
  cursor: pointer;
  background-color: #FFFAF5;
  border: 2px solid #E5D8C9;
  border-radius: 100%;
}

.prev::before {
  content: "";
  display: block;
  width: 15px;
  height: 3px;
  background: #B17B00;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  position: absolute;
  top: 46%;
  right: 32%;
}

.prev::after {
  content: "";
  display: block;
  /* left: 1px; */
  width: 10px;
  height: 10px;
  border-right: 3px solid #B17B00;
  border-bottom: 3px solid #B17B00;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 36%;
  right: 37.4%;
}

/* ↓ インジケーター */
.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;
}
@media screen and (max-width: 900px){
  .slide-wrapper{
    max-width: 400px;
  }
  .prev{
    left: 3%;
  }
  .next{
    right: 3%;
  }
  .slide-wrapper{
    margin: auto;
  }
}
@media screen and (max-width: 600px){
  .slide-wrapper{
    max-width: 330px;
  }
  .prev{
    width: 45px;
    height: 45px;
    left: 0%;
  }
  .prev::after{
    top: 35%;
  }
  .next{
    width: 45px;
    height: 45px;
    right: 0%;
  }
  .next::after{
    top: 35%;
  }
}
@media screen and (max-width: 500px){

}