@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}
.carousel {
	width: 300px;
	height: 300px;
	margin: 0 auto;
	position: absolute;
	z-index: 13;
	top: 24%;
	right: 50%;
	-webkit-transform: translate3d(-50%, 0, 0);
	transform: translate3d(-50%, 0, 0);
}
.carousel-area {
	width: 990px;
	height: 100%;
	display: flex;
}
.carousel-list {
	width: 300px;
	height: 300px;
	margin-right: 30px;
}
.carousel-img {
	width: 100%;
	height: 100%;
}
.item-name {
	margin-top: 45px;
	font-size: 1.2em;
	font-weight: 700;
}
.item-exp {
	margin-top: 35px;
	font-size: 0.95em;
	line-height: 1.5;
}
@media screen and (max-width: 600px) {
	.carousel {
		width: 300px;
		height: 300px;
	}
	.carousel-area {
		width: 900px;
	}
	.carousel-list {
		width: 300px;
		height: 300px;
		margin-right: 0;
	}
}