@charset "utf-8";

/* ****************************************************************************

　目次

-------------------------------------------------------------------------------

　01. 大枠レイアウト
　02. モジュール

******************************************************************************* */
/* ==

　01. 大枠レイアウト

=============================================================================== */

#main {
	width: auto;
	min-width: 950px;
	padding-bottom: 30px;
}
#main h2 {
	line-height: 1.5;
	margin: 0 0 20px;
	padding: 14px 14px 15px;
	background-color: #707070;
	font-weight: 500;
	color: #fff;
}


#main p,
#main ul {
	font-size: 134%;
	color: #000;
}




/* ==

　02. モジュール

=============================================================================== */
.repoTitle{
	margin: 0 0 50px;
	text-align: center;
}
#main .repoTitle p{
	padding: 0 0 30px;
	font-size: 180%;
	color: #000;
	position: relative;
}
#main .repoTitle p::after{
	content: "";
	width: 80px;
	height: 2px;
	background-color: #000;
	position: absolute;
	bottom: 0;
	left: calc((100% - 80px) / 2);
}
#main .repoTitle h1{
	margin: 30px 0;
	border-bottom: none;
}




/* スライダー
------------------------------------------------------------------------------- */
#main .repoSlider {
	overflow: hidden;
}
#main .repoSlider_in {
	display: none !important;
	right: -11%;
	left: -11%;
	width: 122%;
	margin: 0 0 30px;
}
#main .repoSlider_in-show {
	display: block !important;
}
#main .repoSlider_item {
	padding: 0 15px;
}
#main .repoSlider_item img {
	width: 100%;
	height: auto;
}
#main .repoSlider .slick-prev,
#main .repoSlider .slick-next {
	width: 48px;
	height: 48px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	z-index: 100;
}
#main .repoSlider .slick-prev {
	left: 10%;
	background-image: url(/ad/images/ad_btn01_on.png);
}
#main .repoSlider .slick-next {
	right: 10%;
	background-image: url(/ad/images/ad_btn02_on.png);
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	opacity: 0.7;
}
#main .repoThumbs {
	display: none !important;
	max-width: 930px;
	margin: 0 auto;
}
#main .repoThumbs-n1 {
	max-width: 100px;
}
#main .repoThumbs-n2 {
	max-width: 204px;
}
#main .repoThumbs-n3 {
	max-width: 308px;
}
#main .repoThumbs-n4 {
	max-width: 412px;
}
#main .repoThumbs-n5 {
	max-width: 516px;
}
#main .repoThumbs-n6 {
	max-width: 620px;
}
#main .repoThumbs-n7 {
	max-width: 724px;
}
#main .repoThumbs-n8 {
	max-width: 828px;
}
#main .repoThumbs-show {
	display: block !important;
}
#main .repoThumbs_item {
	position: relative;
	cursor: pointer;
	margin: 0 2px;
}
#main .repoThumbs_item.slick-current {
	cursor: default;
}
#main .repoThumbs_item:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 100%;
	border: 0 solid #ef0043;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
}
#main .repoThumbs_item.slick-current:after {
	border-width: 3px;
}