@charset "utf-8";

/* 
 * modalWindow.css
 * 2011-07-02 
 * 2013-10-09 Last Modified.
 */

body > #G_ModalWindowOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0;
	z-index: 1000;
	margin: 0;
	padding: 0;
	-webkit-transition: all 0.3s ease;
	   -moz-transition: all 0.3s ease;
	        transition: all 0.3s ease;
}


body > #G_ModalWindowBody {
	position: fixed;
	top: 0;
	left: 0;
	margin:0 auto;
	background-color: transparent;
	z-index: 1002;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	   -moz-transition: opacity 0.3s ease;
	        transition: opacity 0.3s ease;
}

body > #G_ModalWindowBody.onload-complete {
	opacity: 1;
}

/* iframe content */
#G_ModalWindowBody iframe {
	
}

/* ajax content */
#G_ModalWindowBody #G_ModalWindowAjaxContent {
	height: 100%;
}

/* UI */

#G_ModalWindowNext,
#G_ModalWindowPrev {
	position: fixed;
	top: 20px;
	display: block;
	width: 50px;
	height: 100px;
	line-height: 60px;
	cursor: pointer;
}

#G_ModalWindowNext {
	right: 0;
	z-index: 2101;
}

#G_ModalWindowPrev {
	left: 0;
	z-index: 2102;
}

#G_ModalWindowNext:before,
#G_ModalWindowPrev:before {
	content: "";
	display: block;
	width: 60px;
	height: 100px;
	color: #fff;
	vertical-align: middle;
	text-align: center;
	margin: 0 auto;
	
	-webkit-transition: all 0.25s ease;
	   -moz-transition: all 0.25s ease;
	        transition: all 0.25s ease;
}

#G_ModalWindowNext:before {
	background: transparent url(../images/icon_arrow_right_s_wt.png) no-repeat left center;
}
#G_ModalWindowNext:hover:before {
	background-position: 15% center;
}

#G_ModalWindowPrev:before {
	background: transparent url(../images/icon_arrow_left_s_wt.png) no-repeat right center;
}
#G_ModalWindowPrev:hover:before {
	background-position: 85% center;
}

#G_ModalWindowCloseButton {
	position: fixed;
	right: 10px;
	top: 10px;
	cursor: pointer;
	opacity: 1;
	-webkit-transition: all 0.5s ease;
	   -moz-transition: all 0.5s ease;
	        transition: all 0.5s ease;
	z-index: 6000;
}

#G_ModalWindowCloseButton:hover {
	opacity: 0.7;
}

#indicatorContainer {
	z-index: 10001;
}

#G_ModalWindowBody p {
	color: #fff;
	margin-top: 30px;
	font-family: "Helvetica W01 Light Cn", "MHGKyokashotaiTHK-Light", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "HGP教科書体", "HGS教科書体", "HGS明朝E", "MS PMincho", YuGothic, "メイリオ", "Meiryo UI", serif;
	font-size: 15px;
	letter-spacing: 0.06em;
}

/* -------------------------------------------- */

/* IE6 only */

* html #G_ModalWindowNext,
* html #G_ModalWindowPrev {
	position: absolute;
	display: "block";
	width: 30px;
	height: 60px;
	background-color: #F00;
	cursor: pointer;
}

* html #G_ModalWindowNext {
	right: 0px;
	z-index: 2101;
}

* html #G_ModalWindowPrev {
	left: 0px;
	z-index: 2102;
}
