@charset "utf-8";



@media all and (max-width: 767px) {

/*外枠*/

.slide_image_panel {
	position: relative;
	width: 100%;
	/*height: 300px;
	overflow: hidden;*/
	background-color:#ffffff;
}

.slide_image_panel .inner {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.slide_image_panel .panel_box {
	position: absolute;
	width: 100%;
}

.slide_image_panel .panel {
	position: absolute;
	top: 0;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 0;
}

.slide_image_panel .panel img {
	margin: 0;
	padding: 0;
}


/*今の状態*/

.posimage {
	position: absolute;
	bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 15px;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.posimage li {
	position: relative;
	width: 6px;
	height: 6px;
	margin: 0 6px;
	padding: 0;
	background-color: #8a8988;
	border-radius: 50%;
}

.posimage li.this {
	background-color: #171716;
	animation: posimage_this 0.5s forwards;
}

@keyframes posimage_this {
0% {transform: scale(1) ;}
100% {transform: scale(2) ;}
}


/*一つだけの場合（動かさない場合）*/

.slide_image_panel.normal {
	position: relative;
	width: 100%;
	height: auto;
	overflow: visible;
	background-color: #f8f7f5;
}

.slide_image_panel.normal .panel_box {
	position: relative;
	width: 100%;
}

.slide_image_panel.normal .panel {
	position: relative;
	top: 5px;
	left: 10px;
	box-sizing: border-box;
	width: calc(100% - 20px);
	margin: 0;
	padding: 0 10px 5px 10px;
}


/*左右ボタン*/

.slide_image_panel .left_move {
	position: absolute;
	top: 50%;
	left: -40px;
	margin: -30px 0 0 0;
	padding: 0;
	width: 100px;
	height: 100px;
	background: url(left.png) center center no-repeat;
	background-size: 80%;
}

.slide_image_panel .right_move {
	position: absolute;
	top: 50%;
	right: -40px;
	margin: -30px 0 0 0;
	padding: 0;
	width: 100px;
	height: 100px;
	background: url(right.png) center center no-repeat;
	background-size: 80%;
}






/*左右ボタン*/

.slide_image_panel .left_move {
	left: -20px;
	width: 60px;
	height: 60px;
}

.slide_image_panel .right_move {
	right: -20px;
	width: 60px;
	height: 60px;
}

}/*スマホ向け　ここまで*/

