@charset "utf-8";

/* Styles for slider div and images */
.ccslider {
	position: relative;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
}

.slider-innerWrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* Styles for next/prev and play/pause buttons */
a.slider-nav {
	position: absolute;
	top: 50%;
	z-index: 150;
	cursor: pointer;
	border-radius: 20px;
	text-align: center;
	display: block;
	margin-top: -20px;
	width: 40px;
	height: 40px;
	opacity: 0.8;
}

.slider-nav.prev {
	background: url(../../../../../img/btnPrev.png) 50% 50% no-repeat #000;
	left: -10px;
	animation-duration: 1.5s;
	animation-name: fade-in;
	-moz-animation-duration: 1.5s;
	-moz-animation-name: fade-in;
	-webkit-animation-duration: 1.5s;
	-webkit-animation-name: fade-in;
}

.slider-nav.next {
	background: url(../../../../../img/btnNext.png) 50% 50% no-repeat #000;
	right: -10px;
	animation-duration: 1.5s;
	animation-name: fade-in;
	-moz-animation-duration: 1.5s;
	-moz-animation-name: fade-in;
	-webkit-animation-duration: 1.5s;
	-webkit-animation-name: fade-in;
}

@keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		dislay: block;
		opacity: 1;
	}
}
@-moz-keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100%{
		display: block;
		opacity: 1;
	}
}
@-webkit-keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	1% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
.ccslider:hover .slider-nav {
	display: block;
}

.slider-timer {
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 200;
	cursor: pointer;
	display: none;
}

.ccslider:hover .slider-timer {
	display: block;
}

/* Styles for the control links */
.control-links {
	position: absolute;
	z-index: 150;
	list-style: none;
	top: 100%;
	left: 0;
	margin-top: 10px;
	padding: 0;
	min-width: 100%;
	text-align: center;
	line-height: 0;
}

.control-links li {
	display: inline-block;
	margin-left: 5px;
	cursor: pointer;
	background: #ccc !important;
	width: 12px;
	height: 12px;
	line-height: 0;
	zoom: 1;
	border-radius: 10px;
	text-indent: -9999px;
	*float: left; /* for IE6, IE7 */
	padding: 0px !important;
}

.control-links li:first-child {
	margin-left: 0;
}

.control-links li.active {
	background: #c00 !important;
}

.control-links li.linkThumb {
	width: auto;
	height: auto;
	position: relative;
	text-indent: 0;
	background: transparent none;
	-moz-transition: all 400ms ease;
	-webkit-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	-ms-transition: all 400ms ease;
	transition: all 400ms ease;
}

.control-links li.linkThumb.active {
	background: transparent none;
	z-index: 1;
	-moz-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
	-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.control-links li.linkThumb img {
	display: inline !important;
	visibility: visible !important;
}

.ccslider.controlThumbs {
	margin-bottom: 100px;
}

/* Caption styles */
.cc-caption {
	display: none;
}

.slider-caption {
	background: #000;
	background: rgba(0, 0, 0, 0.7);
	z-index: 101;
	color: #fff;
	padding: 10px;
	font-size: 14px;
	position: absolute;
	overflow: hidden;
	display: none;
}

.slider-caption.bottom {
	left: 0;
	bottom: 0;
}

.slider-caption.top {
	left: 0;
	top: 0;
}

.slider-caption.left {
	left: 0;
	top: 0;
	width: 100px;
}

.slider-caption.right {
	right: 0;
	top: 0;
	width: 100px;
}

/* Containers for custom HTML content */
.cc-htmlwrapper {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 101;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: none;
}

.cc-html {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.cc-html img {
	/* This ensures that images inside custom html content are visible */
	visibility: visible !important;
}

/* Styles for links placed on slide images */
.slider-link {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	background: url(about:blank);
	/* hack to fix a bug in IE, to make the anchor tag clickable. Can use any fake image url */
}

/* position the canvas elements for 3d effect */
.ccslider canvas {
	position: absolute;
	top: 0;
	left: 0;
}

/* Styles for elements used in 2d animations */
.wipe-div {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 0;
	height: 0;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}

.split1-div,.split2-div {
	position: absolute;
	z-index: 4;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}

.circle-div {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	width: 0;
	height: 0;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

.clock-mask {
	position: absolute;
	top: 0;
	z-index: 3;
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.clock-mask.left {
	left: 0;
}

.clock-mask.right {
	right: 0;
}

.clock-outer {
	position: absolute;
	top: 50%;
	overflow: hidden;
}

.left .clock-outer {
	-moz-transform-origin: left center;
	-webkit-transform-origin: left center;
	-o-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
}

.right .clock-outer {
	-moz-transform-origin: right center;
	-webkit-transform-origin: right center;
	-o-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
}

.clock-inner {
	position: absolute;
	top: 50%;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
}

.left .clock-inner {
	left: -50%;
}

.right .clock-inner {
	left: 50%;
}

.slider-caption {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	color: #000;
}

.slider-caption a {
	color: #2D6294;
}

#slider img {
	visibility: hidden;
}

/* -----coverGirl----- */
.coverGirl {
	margin-bottom: 10px;
	padding-bottom: 20px;
	position: relative;
}

#slider {
/* background: url(../img/loading.gif) 50% 50% no-repeat; */
	position: relative;
}

#iconCoverGirl {
	position: absolute;
	z-index: 99;
	display: none;
	top: -5px;
	right: -5px;
}

div#firstdiv {
	position: absolute;
	width:100%; /* 幅いっぱいに広げる */
	margin:0 auto; /* ブロック要素の中央揃え */
	text-align:center; /* インライン要素の中央揃え */
}

#first-innerWrapper {
	position:absolute; /* 絶対配置 */
	width:100%; /* 幅いっぱいに広げる */
	top:50%; /* 上から半分 */
	left:50%; /* 左から半分 */
	overflow: visible;
	margin-left: -50%;
	visibility: hidden;
}

/* カバーガール表示枠 */
div#slider, div#firstdiv{
/*
	width: 800px;
	height: 400px;
*/

/* for IE8, IE9 */
/*
	width: 800px\0/ !important;
	height: 400px\0/ !important;
*/
}
/* カバーガール表示枠と同じ高さ、幅を指定して下さい。 */
#firstImg {
	max-width: 100%;
	max-height: 100%;
}

/* -----coverGirl----- */
/* -----IE8対応----- */
#slider.fallback .slider-innerWrapper{
	position:relative; /* 絶対配置の基準点 */
	margin:0 auto; /* ブロック要素の中央揃え */
	text-align:center; /* インライン要素の中央揃え */
	display: none;
}

#slider.fallback .slider-innerWrapper img {
	position: absolute;
	top:50%; /* 上から半分 */
	left: 0;
	visibility: visible;
	max-width: 100%;
}

#slider.fallback .slider-link {
	top:50%; /* 上から半分 */
	left:50%; /* 左から半分 */
	overflow: visible;
	margin-left: -50%;
}
/* -----IE8対応----- */