@charset "utf-8";

/*==================================================
スライダーのためのcss
===================================*/
.entry-content ul.top_slider {
    position:relative;
    z-index: 1;
    margin: 0px;
    list-style-type: none;
}
/*　背景画像設定　*/

.entry-content ul.top_slider li {
    
}

.top_slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.top_slick-prev, 
.top_slick-next {
    position: absolute;/*絶対配置にする*/
  z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.top_slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.top_slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

ul.top_slider ul.slick-dots {
    display: flex;
    justify-content: center;
    height: 100%;
    z-index: 3;
    text-align: center;
    margin: 15px auto 0px;
}

ul.top_slider ul.slick-dots li {
    margin: 0px 5px;
    list-style-type: none;
}
ul.top_slider ul.slick-dots button {
    color: transparent;
    outline: none;
    width: 12px;
    height: 12px;
    display: block;
    background: #a2a0a0;
    border: none;
    font-size: 0;
    line-height: 0;
}

ul.top_slider ul.slick-dots .slick-active button {
    background: #000;
}

/*========= レイアウトのためのCSS ===============*/


