@charset "utf-8";

#svg_top1 a,#svg_top2 a {
	display: none;
}
#svg_top1 object,#svg_top2 object {
	pointer-events: none;
}

#top1 {
	margin: 0;
	position: absolute;
	top: 5px;
	color: white;
	text-shadow: 5px 5px 4px black;
	padding-left: 15px;
	z-index: 5000;
	/*opacity: 0;*/
	width: 600px;
}

#top2 {
	margin: 0;
	position: absolute;
	top: 50px;
	color: white;
	text-shadow: 4px 4px 4px black;
	padding-left: 17px;
	z-index: 5000;
	/*opacity: 0;*/
	width: 600px;
}

#svg_top1 {
	margin: 0;
	width: 510px:
	height: 45px;
	position: absolute;
	top: 7px;
	padding-left: 15px;
	z-index: 4000;
	cursor: pointer;
	display: none;
}

#svg_top2 {
	margin: 0;
	width: 660px:
	height: 45px;
	position: absolute;
	top: 49px;
	padding-left: 17px;
	z-index: 4000;
	cursor: pointer;
	display: none;
}

/* -----top image slide css ------- */
/*全体のコンテナー*/
#stage {
	position: relative;
	width: 768px;
	height: 167px;
	margin: 0 auto;
	/* overflow:hidden;
	background: url(./images/plum001.jpg) no-repeat; */
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}
#stage::-webkit-scrollbar {
	display: none;
	height: 0 !important;
}
/*全てのラジオボタンを非表示に*/
#back2,#back3,#back4,#back5,#next1,#next2,#next3,#next4 {
	display: none;
}
/*全ての写真を水平一列に格納したdiv、#photosにtransitionを設定*/
#photos {
	position:absolute;
	top:0;
	width: 3840px;
	z-index: 100;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
#photo1>img, #photo2>img, #photo3>img, #photo4>img, #photo5>img, #stage {
	-webkit-transform: translateZ(0px);
}
/*各写真の並び位置を設定*/
#photo1>img, #photo2>img, #photo3>img, #photo4>img, #photo5>img {
	width: 768px;
}
#photo1, #photo2, #photo3, #photo4, #photo5 {
	position:relative;
	float:left;
}
/*各写真のインジケーター*/
.ind_phs {
	position: relative;
	bottom: 45px;
	z-index: 6000;
	/* background-color: red;*/
	text-align: center;
	width: auto;
	height: 20px;
	/*margin-left: auto;
	margin-right: auto;*/
}
.ind_phs>label {
	display: inline-block;
	border: 1px solid lightgray;
	border-radius: 7px;
	width: 12px;
	height: 12px;
	line-height: 0.7;
	margin-right: 10px;
	background-color: white;
}
.ind_phs>label:last-of-type {
	margin-right: 0;
}
.cr_ind_ph {
	background-color: red !important;
}
/*ボタン領域の設定*/
.cover_left,.cover_right {
	position:absolute;
	top: 0;
	width: 324px;
	height: 167px;
	display:none;
	cursor:pointer;
	z-index: 2000;
	/* border: 1px solid black; */
	
}
.cover_left {
	left: 0;
	/* border: 1px solid black;
	background-color: rgba(176, 176, 176, 0.5); */
}
.cover_right {
	left: 444px;
	/* border: 1px solid black;
	background-color: rgba(176, 146, 146, 0.5); */
}
/*ボタン領域内のボタン文字（＜、＞）の設定*/
.cover_left span, .cover_right span {
	position: absolute;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 40px;
	font-weight: bold;
	opacity:0;
	top: 78px;
	/* text-shadow:3px 3px 2px black; */
}
.cover_left span {
	left: 10px;
}

.cover_right span {
	left: 250px;
}


/* 左矢印 */
.cover_left span:after {
	display: block;
	position: absolute;
	top: 24px;
	left: 22px;
	margin-top: 3px;
	width: 27px;
	height: 27px;
	border-left: 8px solid #7ce71c;
	border-bottom: 8px solid #53b300;
	content: '';
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* 右矢印 */
.cover_right span:after {
	display: block;
	position: absolute;
	margin-top: 3px;
	top: 24px;
	left: -11px;
	width: 27px;
	height: 27px;
	border-right: 8px solid #7ce71c;
	border-bottom: 8px solid #53b300;
	content: '';
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* 左矢印丸 */
.cover_left span:before {
	display: block;
	position: absolute;
	top: 15px;
	left: 2px;
	margin-top: -3px;
	width: 54px;
	height: 54px;
	border: 6px solid #bbb;
	border-radius: 36px;
	background-color: rgba(250,250,250,0.6);
	content: '';
	box-shadow:3px 3px 2px black;
	opacity: 1;
}

/* 右矢印丸 */
.cover_right span:before {
	display: block;
	position: absolute;
	top: 15px;
	left: -22px;
	margin-top: -3px;
	width: 54px;
	height: 54px;
	border: 6px solid #bbb;
	border-radius: 36px;
	background-color: rgba(250,250,250,0.6);
	content: '';
	box-shadow:3px 3px 2px black;
	opacity: 1;
}

/*ボタン領域hover時文字の設定*/
.cover_right:hover>span,.cover_left:hover>span {
	opacity:1;
	color:#EEE;
}
#right1,#right2,#right3,#right4,#left2,#left3,#left4,#left5 {
	display:none;
}
/*各ボタン領域がクリックされた時の#photosの行き先位置の設定*/
#back2:checked ~ #photos { left:0; }
#back3:checked ~ #photos,#next1:checked ~ #photos { left: -768px; }
#back4:checked ~ #photos,#next2:checked ~ #photos { left: -1536px; }
#back5:checked ~ #photos,#next3:checked ~ #photos { left: -2304px; }
#next4:checked ~ #photos { left: -3072px; }
/*ボタン領域クリック時に前表示域を消し切り替え後の表示域を表示*/
#back2:checked ~ #n_btn label #right1 { display:block; }
#back3:checked ~ #b_btn label #left2,#back3:checked ~ #n_btn label #right2 { display:block; }
#back4:checked ~ #b_btn label #left3,#back4:checked ~ #n_btn label #right3 { display:block; }
#back5:checked ~ #b_btn label #left4,#back5:checked ~ #n_btn label #right4 { display:block; }
#next1:checked ~ #b_btn label #left2,#next1:checked ~ #n_btn label #right2 { display:block; }
#next2:checked ~ #b_btn label #left3,#next2:checked ~ #n_btn label #right3 { display:block; }
#next3:checked ~ #b_btn label #left4,#next3:checked ~ #n_btn label #right4 { display:block; }
#next4:checked ~ #b_btn label #left5 { display:block; }

#hdwrap>span {
	display:none;
}
#mskwrap {
	clear: both;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 3840px;
	height: 167px;
	background-color: rgba(0,0,0,0.42);
	padding: 0;
	z-index: 1490;
}
#hdwrap {
	clear: both;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 3840px;
	height: 167px;
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 75%, rgba(255,255,255,1) 100%);
	padding: 0;
	z-index: 1500;
}