@charset "Shift_JIS";
/**
 * CmnCarouselGallery.css
 * update : 2014.01.14
 */

/*--------------------------------------------------------------------------------
	.cmn-carousel-gallery
--------------------------------------------------------------------------------*/
.cmn-carousel-gallery {
	position: relative;
}

/*--------------------------------------------------------------------------------
	.container2
--------------------------------------------------------------------------------*/
.cmn-carousel-gallery .container2 {
	position: relative;
	margin: 0 auto;
	width: 504px;
	overflow: hidden;
}

/*--------------------------------------------------------------------------------
	.inner
--------------------------------------------------------------------------------*/
.cmn-carousel-gallery .inner {
	position: relative;
	zoom: 1;
}
.cmn-carousel-gallery .inner:after {
	clear: both;
	display: block;
	content: "";
}

/*--------------------------------------------------------------------------------
	.item
--------------------------------------------------------------------------------*/
.cmn-carousel-gallery .item {
	position: relative;
	float: left;
	line-height: 1.4;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
.cmn-carousel-gallery .item .media-box {
	position: relative;
}
.cmn-carousel-gallery .item .media-box a {
	display: block;
}
.cmn-carousel-gallery .item .media-box .icon-zoom {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 19px;
	height: 19px;
	background: url("../img/cmn_cg_icon_zoom.png") no-repeat;
}

.cmn-carousel-gallery .item .media-box.vtbox .icon-zoom {
	position: absolute;
	right: 27.5%;
	bottom: 0;
	width: 19px;
	height: 19px;
	background: url("../img/cmn_cg_icon_zoom.png") no-repeat;
}

.cmn-carousel-gallery .item .media-box .icon-zoom2 {
	position: absolute;
	right: 0;
	bottom: 86px;
	width: 19px;
	height: 19px;
	background: url("../img/cmn_cg_icon_zoom.png") no-repeat;
}
.cmn-carousel-gallery .item .media-box .icon-zoom3 {
	position: absolute;
	right: 20px;
	bottom: 16px;
	width: 19px;
	height: 19px;
	background: url("../img/cmn_cg_icon_zoom.png") no-repeat;
}
.cmn-carousel-gallery .item .media-box .icon-zoom4 {
	position: absolute;
	right: 0;
	bottom: 26px;
	width: 19px;
	height: 19px;
	background: url("../img/cmn_cg_icon_zoom.png") no-repeat;
}



.cmn-carousel-gallery .item .media-box a img {
	transition: opacity 0.2s ease-out;
	-o-transition: opacity 0.2s ease-out;
	-ms-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-webkit-transition: opacity 0.2s ease-out;
}
.cmn-carousel-gallery .item .media-box a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.cmn-carousel-gallery .item .caption {
	margin: 10px 10px 0 5px;
	line-height: 1.6;
}
.cmn-carousel-gallery .caption strong {
	display: block;
	font-size: 0.9em;
	font-weight: normal;
}
.cmn-carousel-gallery .caption p {
	font-size: 0.8em;
	float:right;
	margin-top:-22px;
	margin-right:-10px;
}

@media (max-width:640px){
	.cmn-carousel-gallery .caption strong img {
		margin-bottom:5px;
		vertical-align:middle;
	}
	.cmn-carousel-gallery .caption p {
		float:none;
		margin-top:5px;
		margin-right:0px;
	}
	.cmn-carousel-gallery .item .media-box img {
		width: 100%;
	}
	.cmn-carousel-gallery .item .media-box a img {
		transition: none;
		-o-transition: none;
		-ms-transition: none;
		-moz-transition: none;
		-webkit-transition: none;
	}
	.cmn-carousel-gallery .item .media-box a:hover img {
		opacity: 1.0;
	}
}

/*--------------------------------------------------------------------------------
	.bullets
--------------------------------------------------------------------------------*/
.cmn-carousel-gallery .bullets {
	margin: 20px 0 0 0;
	text-align: center;
}
.cmn-carousel-gallery .bullets ul {
	display: inline-block;
	width: 720px;
	*display: inline;
	*zoom: 1;
}
.cmn-carousel-gallery .bullets ul:after {
	clear: both;
	display: block;
	content: "";
}
.cmn-carousel-gallery .bullets li {
	float: left;
	margin: 6px 0px 0 0px;
	width: 61px;
	border: 2px solid #000;
	cursor: pointer;
	transition: border-color 0.2s ease-out;
	-o-transition: border-color 0.2s ease-out;
	-ms-transition: border-color 0.2s ease-out;
	-moz-transition: border-color 0.2s ease-out;
	-webkit-transition: border-color 0.2s ease-out;
}
.cmn-carousel-gallery .bullets li:hover {
	border: 2px solid #fff;
}
.cmn-carousel-gallery .bullets li.current {
	border: 2px solid #fff;
}
.cmn-carousel-gallery .bullets li img {
	width: 100%;
}

@media (max-width:640px){
	.cmn-carousel-gallery .bullets {
		-webkit-tap-highlight-color: rgba(0,0,0,0);
	}
	.cmn-carousel-gallery .bullets ul {
		width: 90%;
		margin-left:3%;
	}
	.cmn-carousel-gallery .bullets li {
		margin: 0.8% 0 0 0%;
		width: 16%;
		transition: none;
		-o-transition: none;
		-ms-transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
	}
	.cmn-carousel-gallery .bullets li:first-child {
		margin-left: 0;
	}
}

/*--------------------------------------------------------------------------------
	.paddle
--------------------------------------------------------------------------------*/
.cmn-carousel-gallery .paddle {
	position: absolute;
	top: 45%;
	z-index: 3;
	transition: opacity 0.2s ease-out;
	-o-transition: opacity 0.2s ease-out;
	-ms-transition: opacity 0.2s ease-out;
	-moz-transition: opacity 0.2s ease-out;
	-webkit-transition: opacity 0.2s ease-out;
	cursor: pointer;
}
.cmn-carousel-gallery .paddle:hover {
	opacity: 0.6;
}

@media (max-width:640px){
	.cmn-carousel-gallery .paddle {
		top: 25%;
		transition: none;
		-o-transition: none;
		-ms-transition: none;
		-moz-transition: none;
		-webkit-transition: none;
	}
	.cmn-carousel-gallery .paddle:hover {
		opacity: 1.0;
	}
}

/* .prev
--------------------------------------------------------------------------------*/
.cmn-carousel-gallery .paddle.prev {
	left: 0;
}
.cmn-carousel-gallery .paddle.prev em {
	display: block;
	margin: -20px 0 0;
	width: 40px;
	height: 40px;
	background: url("../img/cmn_cg_paddle.png");
}
html.no-opacity .cmn-carousel-gallery .paddle.prev:hover em {
	background-position: -80px;
}
.cmn-carousel-gallery .paddle.prev.false {
	cursor: auto;
	opacity: 0.2;
}
html.no-opacity .cmn-carousel-gallery .paddle.prev.false em {
	background-position: -160px;
}

@media (max-width:640px){
	.cmn-carousel-gallery .paddle.prev em {
		margin: 0;
		background: url("../img/cmn_cg_paddle2.png");
		background-size: 80px 40px;
	}
}

/* .next
--------------------------------------------------------------------------------*/
.cmn-carousel-gallery .paddle.next {
	right: 0;
}
.cmn-carousel-gallery .paddle.next em {
	display: block;
	margin: -20px 0 0;
	width: 40px;
	height: 40px;
	background: url("../img/cmn_cg_paddle.png");
	background-position: -40px 0;
}
html.no-opacity .cmn-carousel-gallery .paddle.next:hover em {
	background-position: -120px;
}
.cmn-carousel-gallery .paddle.next.false {
	cursor: auto;
	opacity: 0.2;
}
html.no-opacity .cmn-carousel-gallery .paddle.next.false em {
	background-position: -200px;
}

@media (max-width:640px){
	.cmn-carousel-gallery .paddle.next em {
		margin: 0;
		background: url("../img/cmn_cg_paddle2.png");
		background-position: -120px 0;
		background-size: 80px 40px;
	}
}


@media (max-width:640px){
	.mod-contentContainer .sp{
		display:none !important;
	}
}
@media (max-width:480px){
	.mod-contentContainer .sp{
		display:block !important;
	}
}