﻿@charset "utf-8";

/* =======================================
	トップページ
======================================= */

/* .stageBase
--------------------------- */
.stageBase {
	width: 100%;
	position: relative;
	overflow: hidden;
    background-color:#FFF;
}
.stageBase.footerbox {
    background-color: transparent;
    width:0;
}
.stageBase .fieldWrap {
	padding: 0 0 0 0;
	text-align: center;
}


/* .stageSlide
--------------------------- */
.stageSlide {
	position: relative;
	overflow: hidden;
	/*visibility: hidden;*/
    visibility:visible;
}
.stageSlide .slideWrap {
	top: 0;
	left: 0;
	position: absolute;
	overflow: hidden;
}
.stageSlide .slideWrap:before,
.stageSlide .slideWrap:after {
	content: " ";
	display: table;
}
.stageSlide .slideWrap:after {clear: both;}
.stageSlide .slideWrap {*zoom: 1;}

.stageSlide .slidePanel {
	float: left;
	overflow: hidden;
}

.stageSlide .sdPrev,
.stageSlide .sdNext {
	margin-top: -25px;
	top: 50%;
	width: 50px;
	height: 50px;
	display: block;
	position: absolute;
	z-index: 99;
}
.stageSlide .sdPrev {
	left: 80px;
	background: transparent url(../img/slide_prev.png) no-repeat left top;
}
.stageSlide .sdNext {
	right: 80px;
	background: transparent url(../img/slide_next.png) no-repeat left top;
}

.stageSlide .slideNav {
	bottom: 70px;
	left: 0;
	width: 100%;
	height: 15px;
	text-align: center;
	position: absolute;
	z-index: 98;
}
.stageSlide .slideNav a {
	margin: 0 5px;
	width: 15px;
	height: 15px;
	/*background: transparent url(../img/nav.png) no-repeat center center;*/
    background:#000;
	display: inline-block;
	overflow: hidden;
}
.stageSlide .slideNav a.pnActive {
	/*background: transparent url(../img/nav_acv.png) no-repeat center center;*/
    background:#D60003;
}

/* #pageNav
--------------------------- */
#pageNav {
	top: 0;
	right: 25px;
	width: 15px;
	text-align: center;
	position: fixed;
	z-index: 1001;
}
#pageNav ul {
	width: 15px;
	display: block;
}
#pageNav ul li {
	padding-bottom: 5px;
	width: 12px;
	height: 12px;
	display: block;
	overflow: hidden;
    margin:5px;
    border-radius:10px;
}
#pageNav ul li a {
	width: 15px;
	height: 15px;
	background: transparent url(../img/nav.png) no-repeat center center;
	display: block;
}
#pageNav ul li.activeStage a {
	background: transparent url(../img/nav_acv.png) no-repeat center center;
}

@media (max-width: 767px) {
#pageNav {
	right: 6px;
}
}
@media (min-width: 768px) and (max-width: 991px) {
#pageNav {
	right: 15px;
}
}

/* #pageDown
--------------------------- */
#pageDown {
	bottom: -8px;
	left: 50%;
	/*width: 100%;*/
	height: 40px;
	text-align: center;
	position: fixed;
	overflow: hidden;
	z-index: 1001;
    margin:0 0 0 -150px;
}
#pageDown a {
	margin: 0 auto;
	width: 300px;
	height: 30px;
	background: transparent url(../img/next_arw.png) no-repeat center center;
	display: block;
}

@media (max-width: 767px) {
    .disp_hor #pageDown {
        display:none !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
}

