/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.slider-item {
    width: 100%;
    height:auto;
}

/*矢印の設定*/

.slick-prev, 
.slick-next {
    position: absolute;
    z-index: 3;
    top: 55%;
    border-top: 2px solid #2E5B55;/*矢印の色*/
    border-right: 2px solid #2E5B55;/*矢印の色*/
    height: 1rem;
    width: 1rem;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
    /* background-image: url(../images/button_left.png); */
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
    /* background-image: url(../images/button_right.png); */
}

.slick-dots button {
    position: relative;
    color: transparent;
    outline: none;
    display: block;
    border: 0;
    background: none;
}

.slick-dots button::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #F2EDED; 
    transition: background 0.3s;
}

.slick-dots .slick-active button::before {
    background: #F3BD00;
}

.slick-dots {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align:center;
    margin:5px 0 0 0;
    width: 100%;
}

.slick-dots li {
    display:inline-block;
    margin: 0 0.5rem;
}