/*-------------------------------------*/
/*          リセットスタイル           */
/*-------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-weight:inherit;
	font-style:inherit;
	font-size:100%;
	font-family:inherit;
	vertical-align:baseline;
}
body {
	line-height:1;
	color:black;
	background: #fff;
}
table {
	border-collapse:separate;
	border-spacing:0;
}
caption, th, td {
	text-align:left;
	font-weight:normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content:"";
}
blockquote, q {
	quotes:"" "";
}
/* HTML5タグ */
header, section, footer,
aside, nav, article, figure {
	display: block;
}


/*-------------------------------------*/
/*           メインスタイル            */
/*-------------------------------------*/
body {
	font:14px/1.6 Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif;
	color:#333;
	background:#fff;
}

a, a:visited {
	color:blue;
	text-decoration:none;
}
a:hover, a:active {
	color:#000;
	text-decoration:none;
}

.slider-wrapper { 
	width: 70%; 
	margin: 80px auto;
}

.clear {
	clear:both;
}


/*-------------------------------------*/
/*             テーマ設定              */
/*-------------------------------------*/
.theme-default .misellSlide {
	position:relative;
	background:#fff url(../img/loading.gif) no-repeat 50% 50%;
    margin-bottom:10px;
    -webkit-box-shadow: 0px 1px 5px 0px #4a4a4a;
    -moz-box-shadow: 0px 1px 5px 0px #4a4a4a;
    box-shadow: 0px 1px 5px 0px #4a4a4a;
}
.theme-default .misellSlide img {
	position:absolute;
	top:0px;
	left:0px;
	display:none;
}
.theme-default .misellSlide a {
	border:0;
	display:block;
}

.theme-default .misell-controlNav {
	text-align: center;
	padding: 5px 0;
}
.theme-default .misell-controlNav a {
	display:inline-block;
	width:16px;
	height:16px;
	background:url(../img/bullets.png) no-repeat;
	text-indent:-9999px;
	border:0;
	margin: 0 2px;
}
.theme-default .misell-controlNav a.active {
	background-position:0 -22px;
}

.theme-default .misell-directionNav a {
	display:block;
	width:30px;
	height:30px;
	background:url(../img/arrows.png) no-repeat;
	text-indent:-9999px;
	border:0;
	opacity: 0;
	-webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}
.theme-default:hover .misell-directionNav a { opacity: 1; }
.theme-default a.misell-nextNav {
	background-position:-30px 0;
	right:15px;
}
.theme-default a.misell-prevNav {
	left:15px;
}

.theme-default .misell-caption {
    font-family: Helvetica, Arial, sans-serif;
}
.theme-default .misell-caption a {
    color:#fff;
    border-bottom:1px dotted #fff;
}
.theme-default .misell-caption a:hover {
    color:#fff;
}

.theme-default .misell-controlNav.nivo-thumbs-enabled {
	width: 100%;
}
.theme-default .misell-controlNav.nivo-thumbs-enabled a {
	width: auto;
	height: auto;
	background: none;
	margin-bottom: 5px;
}
.theme-default .misell-controlNav.nivo-thumbs-enabled img {
	display: block;
	width: 120px;
	height: auto;
}


/*--------- 以下 スライド設定 ---------*/

/*-------------------------------------*/
/*            スライド設定             */
/*-------------------------------------*/
.misellSlide {
	position:relative;
	width:100%;
	height:auto;
	overflow: hidden;
}
.misellSlide img {
	position:absolute;
	top:0px;
	left:0px;
	max-width: none;
}
.misell-image {
	display: block !important;
	position: relative !important; 
	width: 100% !important;
}


/*-------------------------------------*/
/*           リンクスタイル            */
/*-------------------------------------*/
.misellSlide a.misellLink {
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	border:0;
	padding:0;
	margin:0;
	z-index:6;
	display:none;
}


/*-------------------------------------*/
/*       スライス・ボックス設定        */
/*-------------------------------------*/
.misell-slice {
	display:block;
	position:absolute;
	z-index:5;
	height:100%;
	top:0;
}
.misell-box {
	display:block;
	position:absolute;
	z-index:5;
	overflow:hidden;
}
.misell-box img { display:block; }


/*-------------------------------------*/
/*          キャプション設定           */
/*-------------------------------------*/
.misell-caption {
	position:absolute;
	left:0px;
	bottom:0px;
	background:#38e;
	color:#fff;
	width:100%;
	z-index:8;
	padding: 3px 10px;
	opacity: 0.6;
	overflow: hidden;
	display: none;
	-moz-opacity: 0.6;
	filter:alpha(opacity=6);
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}
.misell-caption p {
	padding:3px;
	margin:0;
}
.misell-caption a {
	display:inline !important;
}
.misell-html-caption {
    display:none;
}


/*-------------------------------------*/
/*         NEXT・PREVIEW 設定          */
/*-------------------------------------*/
.misell-directionNav a {
	position:absolute;
	top:45%;
	z-index:9;
	cursor:pointer;
}
.misell-prevNav {
	left:0px;
}
.misell-nextNav {
	right:0px;
}

/*-------------------------------------*/
/*          コントロール設定           */
/*-------------------------------------*/
.misell-controlNav {
	text-align:center;
	padding: 15px 0;
}
.misell-controlNav a {
	cursor:pointer;
}
.misell-controlNav a.active {
	font-weight:bold;
}