
main,
ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

/* ↓ スライドの外枠 */
.slide-wrapper {
    /* aspect-ratio:16/9; */
    width: 100%;
    height: 50%; /*丸島先輩に相談 */
    position: relative;
    overflow: hidden;
    /* はみ出したスライドを隠す */
}
.slide-wrapper p{
    position: absolute;
        top:50%;
        left:50%;
        font-size:5vh;
        font-weight: bold;
        color: white;
        padding:0;
        margin:0;
        transform: translate(-50%,-50%);
        z-index: 2;
}
.slide-wrapper p span {
    white-space: nowrap;
}
/*  ↓ スライド（コンテンツ） */
.slide {
    /*スライド全体 */
    width: 300%;
    height: 100%;
    display: flex;
    transition: all 0.3s;
}

.slide div {
    /* スライド */
    width: 33.33%;
    height: 100%;
    font-size: 16px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.slide img{

    width: 100%;
    /* height: auto; */
    /* add */
    height: 70vh; /*スライド高さいっぱい*/
    object-fit: cover;/*縮尺そのまま切り抜き*/

    }

.slide1 {
    /* スライドさせるために必要なクラス */
    transform: translateX(0);
}

.slide2 {
    /* スライドさせるために必要なクラス */
    transform: translateX(-33.33%);
}

.slide3 {
    /* スライドさせるために必要なクラス */
    transform: translateX(-66.66%);
}

.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;
}

/* ↓ 左右のボタン */
.next {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 10px;
    bottom: 50%;
    z-index: 1;
    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: 1;
    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: 1;
    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;
}
