div.carousel {
	position:relative;
}
div.carousel div.outer {
	position:relative;
	margin:0 30px;
	overflow:hidden;
}
div.carousel div.outer ul {
	position:absolute;
	display:table;
	-webkit-transform: translateZ(0);
}
div.carousel div.outer ul.inner li {
	display:table-cell;
	padding-right:6px;
}
div.carousel div.outer ul.inner li > span,
div.carousel div.outer ul.inner li > span > img {
	display:block;
}
div.carousel div.outer ul.inner li > span {
	text-decoration:none;
	background-color:hsla(0,0%,100%,0.5);
	/**/
	-webkit-transition-duration: 0.5s;
	-webkit-transition-timing-function:ease-in-out;
	transition-duration: 0.5s;
	transition-timing-function:ease-in-out;
	transition-property:opacity;
	opacity:0.3;
	/**/
}
div.carousel div.outer ul.inner li.yes > span {
	opacity:1;
}
div.carousel div.outer ul.inner li > span {
	position:relative;
	background-position:left top;
	background-size:cover;
}

@media all and (min-width: 768px) {
div.carousel {
	margin-bottom:30px;
}
div.carousel div.outer {
	height:342px;
}
div.carousel div.outer ul.inner li > span > img {
	width:520px;
	height:342px;
}
}
@media all and (min-width: 375px) and (max-width: 767px) {
div.carousel {
	margin-bottom:20px;
}
div.carousel div.outer {
	height:159px;
}
div.carousel div.outer ul.inner li > span > img {
	width:242px;
	height:159px;
}
}
@media all and (max-width: 374px) {
div.carousel {
	margin-bottom:10px;
}
div.carousel div.outer {
	height:134px;
}
div.carousel div.outer ul.inner li > span > img {
	width:204px;
	height:134px;
}
}



/*	disc
============================== */
div.carousel ul.ctrl-disc {
	text-align:center;
	height:34px;
	/* background-color:hsla(0,0%,100%,0.5); */
}
div.carousel ul.ctrl-disc li {
	display:inline-block;
	width:24px;
	padding-top:9px;
}
div.carousel ul.ctrl-disc li a {
	display:inline-block;
	text-decoration:none;
	width:16px;
	height:16px;
	background-color:#fff;
	border-radius:8px;
	text-indent:110%;white-space:nowrap;overflow:hidden;
}
div.carousel ul.ctrl-disc li a.now {
	background-color:#de2c28;
}

/*	arrow
============================== */
div.carousel ul.ctrl-arrow li {
	position:absolute;
	top:50%;
	margin-top:-17px;
}
div.carousel ul.ctrl-arrow li.ctrl-lef {
	left:0;
}
div.carousel ul.ctrl-arrow li.ctrl-rig {
	right:0;
}
div.carousel ul.ctrl-arrow li a {
	display:block;
	width:24px;
	height:34px;
	background-image:url(../img/arrow40.svg);
	background-repeat:no-repeat;
	background-size:136px 34px;
	text-indent:110%;white-space:nowrap;overflow:hidden;
	background-color:#de2c28;
}
div.carousel ul.ctrl-arrow li a:hover {
	background-color:#dc786e;
}
div.carousel ul.ctrl-arrow li.ctrl-lef a {
	background-position:-5px 0;
	background-position:-73px 0;
}
div.carousel ul.ctrl-arrow li.ctrl-rig a {
	background-position:-39px 0;
	background-position:-107px 0;
}
div.carousel ul.ctrl-arrow li.ctrl-lef a:hover {
	background-position:-73px 0;
}
div.carousel ul.ctrl-arrow li.ctrl-rig a:hover {
	background-position:-107px 0;
}
@media all and (min-width: 768px) {
div.carousel ul.ctrl-arrow li {
	/* top:101px; */
}
}
@media all and (min-width: 375px) and (max-width: 767px) {
div.carousel ul.ctrl-arrow li {
	/* top:51px; */
}
}
@media all and (max-width: 374px) {
div.carousel ul.ctrl-arrow li {
	/* top:40px; */
}
}


@media print {
div.carousel {
	display:none;
}
}