@charset "utf-8";

/* ========================================================
	index.css => INDEX
======================================================== */

/* #mainimage
============================================================================================================ */
#mainimage {
	position: relative;
	width: 1200px;
	height: 450px;
	margin: auto;
	overflow: hidden;
}

#mainimage .thumbs {
	position: absolute;
	bottom: 5px;
	left: 50%;
}
#mainimage .thumbs p {
	position: relative;
	float: left;
	left: -50%;
}
#mainimage .thumbs a {
	position: relative;
	float: left;
	padding: 5px 10px;
}
#mainimage .thumbs a span {
	display: block;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 10px;
	-webkit-transition: background 0.15s;
	-o-transition: background 0.15s;
	transition: background 0.15s;
}
#mainimage .thumbs a:hover span,
#mainimage .thumbs a.current span {
	background-color: #ffff08;
}

#mainimage .arrow {
	position: absolute;
	top: 50%;
	width: 80px;
	height: 100px;
	margin-top: -50px;
	background-position: 50%;
	background-repeat: no-repeat;
	cursor: pointer;
}
#mainimage .arrow.l {
	left: 0;
	background-image: url(../images/main_arrow_l.png);
}
#mainimage .arrow.r {
	right: 0;
	background-image: url(../images/main_arrow_r.png);
}

/* page_title
============================================================================================================ */
.page_title {
	color: #000;
}



/* pickup
============================================================================================================ */
.pickup {
	/*background-color: #000;*/
}
.pickup .page_title {
	background-color: #fff;
}
.pickup_list {
	width: 1200px;
	margin: auto;
	background-color: #000;
	zoom: 1;
}
.pickup_list:after {
	content: "."; display: block; height: 0; clear: both; visibility: hidden; line-height: 0; overflow: hidden;
}
.pickup_list li {
	float: left;
}
.pickup_list li + li {
	padding-left: 9px;
}
.pickup_list li a {
	display: block;
	background-color: #f8ec00;
	text-decoration: none;
	font-weight: bold;
}
.pickup_list li a .wrap {
	position: relative;
	display: block;
	padding: 15px 20px;
}
.pickup_list li a .wrap .more {
	position: absolute;
	right: 15px;
	top: 12px;
	padding: 3px 18px;
	background-color: #231815;
	color: #fff;
}
.pickup_list li a .wrap .more:after {
	content: " →";
	position: relative;
}
.pickup_list li a:hover .wrap .more:after {
	left: 1px;
}

/* news
============================================================================================================ */
.news .page_title {
	margin-bottom: 30px;
}
.news .more {
	margin-top: 30px;
}
.news .more a {
	display: inline-block;
	padding: 3px 18px;
	background-color: #231815;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
}
.news .more a:after {
	content: " →";
	position: relative;
}
.news .more a:hover {
	background-color: #605856;
}
.news .more a:hover:after {
	left: 1px;
}


