@media screen and (max-width: 1027px){

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

  li {
    list-style: none;
  }
  /* ↓ スライドの外枠 */
  .slide-wrapper1 {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden; /* はみ出したスライドを隠す */
  }
  /*  ↓ スライド（コンテンツ） */
  .slide1 { /*スライド全体 */
    width: 300%;
    height: 100%;
    display: flex;
    transition: all 0.6s;
  }

  .slide1 div { /* スライド */
    width: 33.33%;
    height: 100%;
    font-size: 16px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .slides1 { /* スライドさせるために必要なクラス */
    transform: translateX(0);
  }
  .slides2 { /* スライドさせるために必要なクラス */
    transform: translateX(-33.33%);
  }
  .slides3 { /* スライドさせるために必要なクラス */
    transform: translateX(-66.66%);
  }
  /* ↓ 左右のボタン */
  .next1 {
    position: absolute;
    width: 4vw;
    height: 4vw;
    right: 10px;
    bottom: 50%;
    z-index: 10;
    cursor: pointer;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    -webkit-transform: rotate(45deg) translateY(50%);
    transform: rotate(45deg) translateY(50%);
  }
  .prev1 {
    position: absolute;
    width: 4vw;
    height: 4vw;
    left: 25px;
    bottom: 50%;
    z-index: 10;
    cursor: pointer;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
  }
  /* ↓ インジケーター */
  .indicator1 {
    width: 100%;
    position: absolute;
    bottom: 20px;
    display: flex;
    column-gap: 18px;
    z-index: 10;
    justify-content: center;
    align-items: center;
  }
  .indicator1 li {
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    list-style: none;
    background-color: #fff;
    border: 2px #39871a solid;
    cursor: pointer;
  }
  .indicator1 li:first-of-type {
    background-color: #39871a;
  }
}

@media (max-width: 519px){
  .indicator li {
    width: 3.5vw;
    height: 3.5vw;

  }

}


@media screen and (min-width: 1028px){
    
*,body,ul {
    margin: 0;
    padding: 0;
  }

  li {
    list-style: none;
  }
  /* ↓ スライドの外枠 */
  .slide-wrapper1 {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden; /* はみ出したスライドを隠す */
  }
  /*  ↓ スライド（コンテンツ） */
  .slide1 { /*スライド全体 */
    width: 300%;
    height: 100%;
    display: flex;
    transition: all 0.6s;
  }

  .slide1 div { /* スライド */
    width: 33.33%;
    height: 100%;
    font-size: 16px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .slides1 { /* スライドさせるために必要なクラス */
    transform: translateX(0);
  }
  .slides2 { /* スライドさせるために必要なクラス */
    transform: translateX(-33.33%);
  }
  .slides3 { /* スライドさせるために必要なクラス */
    transform: translateX(-66.66%);
  }
  /* ↓ 左右のボタン */
  .next1 {
    position: absolute;
    width: 25px;
    height: 25px;
    right: 10px;
    bottom: 50%;
    z-index: 10;
    cursor: pointer;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    -webkit-transform: rotate(45deg) translateY(50%);
    transform: rotate(45deg) translateY(50%);
  }
  .prev1 {
    position: absolute;
    width: 25px;
    height: 25px;
    left: 25px;
    bottom: 50%;
    z-index: 10;
    cursor: pointer;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
  }
  /* ↓ インジケーター */
  .indicator1 {
    width: 100%;
    position: absolute;
    bottom: 20px;
    display: flex;
    column-gap: 18px;
    z-index: 10;
    justify-content: center;
    align-items: center;
  }
  .indicator1 li {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    list-style: none;
    background-color: #fff;
    border: 2px #39871a solid;
    cursor: pointer;
  }
  .indicator1 li:first-of-type {
    background-color: #39871a;
  }

}