/*==================================================
スライダーのためのcss
===================================*/
/*画像の横幅を100%にしてレスポンシブ化*/
.photoArea img{
    width: 100%;
    height: auto;
    vertical-align: bottom;/*画像の下にできる余白を削除*/
    margin: 0;
    padding: 0;
}

/*メイン画像下に余白をつける*/


li{
	list-style: none;
	margin-top: 3px;
}

/*1枚：200*/
.choice-btn {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
	font-size:0;
}
.choice-btn.b03,
.choice-btn.d04{
	width: 600px;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
	font-size:0;
}
.choice-btn.b02,
.choice-btn.c05,
.choice-btn.d05{
	width: 400px;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
	font-size:0;
}
.thumb {
	width: 200px;
	text-align: center;
	margin-top: 3px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	padding: 0;
	display: inline-block;
	transition: 0.3s;
}
.thumb:hover{
    opacity: 0.7;
}



/*矢印の設定*/

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

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

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



@media screen and (max-width: 480px){
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    z-index: 3;
    top: 50%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;/*矢印の色*/
    border-right: 2px solid #fff;/*矢印の色*/
    height: 15px;
    width: 15px;
}
.choice-btn,
.choice-btn.b03,
.choice-btn.d04,
.choice-btn.b02,
.choice-btn.c05,
.choice-btn.d05{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	cursor: pointer;
	font-size:0;
}
.thumb {
	width: auto;
	text-align: center;
	margin-top: 3px;
	margin-right: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	padding: 0;
	display: inline-block;
	transition: 0.3s;
}
	img{
		width: 100%
	}
}
