@charset "UTF-8";
/* CSS Document */

/*==================================================
スライダーのためのcss
===================================*/
.slider {
  position:relative;
	z-index: -1;
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url("../images/home_woman.JPG");
}

.slider-item02 {
    background:url("../images/cook_image15.png");
}

.slider-item03 {
    background:url("../images/cook_image13.jpg");
    
}
.slider-item04 {
    background:url("../images/cook_image17.jpg");
    
}

.slider-item05 {
    background:url("../images/cook_image18.jpg");
    
}

.slider-item06 {
    background:url("../images/cook_image19.png");
    
}
.section_image,inner {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:630px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    border-radius: 40px;
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
  list-style: none;
    
}


/*　sp版 背景画像設定　*/
@media (max-width: 900px) {

.sp_slider-item01 {
    background:url("../images/home_woman.JPG");
}

.sp_slider-item02 {
    background:url("../images/cook_image15.png");
}

.sp_slider-item03 {
    background:url("../images/cook_image13.jpg");
    
}
	.sp_slider-item04 {
    background:url("../images/cook_image17.jpg");
    
}

.sp_slider-item05 {
    background:url("../images/cook_image18.jpg");
    
}

.sp_slider-item06 {
    background:url("../images/cook_image19.png");
    
}

.sp_section_image,inner {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:195px;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    border-radius: 20px;
  background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
    list-style: none;

    
}
    
}

/*矢印の設定*/

.slick-prev, 
.slick-next {
   position: absolute;
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;/*矢印の色*/
    border-right: 2px solid #fff;/*矢印の色*/
    height: 20px;
    width: 20px;
}

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

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

@media(max-width:768px) {
 .slick-prev, 
.slick-next {
    height: 10px;
    width: 10px;
} 
}




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

.slick-dots {
    position: relative;
    display: none;
    z-index: 3;
    text-align: center;
    margin: -50px 0 0 0;
	line-height: 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
  width: 8px !important;
    height: 8px !important;
    background: #FFF ;
    border-radius: 50%;
    color: transparent;
    outline: none;
    border: none;
    padding: 0;
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}
@media(max-width:768px) {
	.slick-dots {
    margin: -25px 0 0 0;
}
	

}