/*----------------------------------------------------------------------------
******************************************************************************
base
******************************************************************************
----------------------------------------------------------------------------*/
/* ==== base === */
body { background-color: #2B2B2B; }
/* ==== layout === */
.layout {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}
/* ==== wrap === */
.wrap-bg { background: url(../images/wrap-bg.png) no-repeat center #AB1D1D; }
/* ==== header === */
.hd-nav-bg { background-color: #FFF; }
.hd-nav-con {
	display: flex;
	justify-content: space-between;
	align-items: center;/*-縦-*/
}
.hd-nav-logo-con, .hd-nav-list-con { display: inline-block; }
.hd-nav-list li {
	display: inline-block;
	margin-left: 10px;
}
.hd-nav-list a {
	background: url(../images/icon-arrow.png) no-repeat left center;
	color: #111;
	font-size: 0.7rem;
	text-decoration: none;
	padding-left: 7px;
}
.hd-con {
	display: flex;
	align-items: center;/*-縦-*/
	padding: 20px 0;
}
.hd-con .hd-logo-con { display: inline-block; }
.hd-con .hd-bnr-con { display: inline-block; margin-left: 50px; }
/* ==== global nav === */
.gnav-bg {
	background: url(../images/gnav-bg.png) repeat-x left center;
	margin-bottom: 30px;
	z-index: 100;
	position: relative;
}
.gnav-con { }
.gnav-list {
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	border-left: 1px solid rgba(0, 0, 0, 0.2);
	display: flex;
}
.gnav-list > li {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	border-right: 1px solid rgba(0, 0, 0, 0.2);
	width: 100%;
}
.gnav-list a.parent,.gnav-list span.parent {
	color: #FFF;
	cursor: pointer;
	display: flex;
	align-items: center;/*-縦-*/
	justify-content: center;/*-横-*/
	height: 60px;
	text-decoration: none;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.gnav-list a.parent:hover,.gnav-list span.parent:hover { background-color: rgba(0, 0, 0, 0.2); }
/* ==== content === */
.con-con {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	padding: 0 0 50px;
	position: relative;
	z-index: 0;
}
.content {
	color: #FFF;
	word-wrap: break-word;
}
/* a */
.content a img:hover {
	opacity: 0.5;
	filter: alpha(Opacity=50);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
/* dl */
.content dl {
	margin-bottom: 20px;
	margin-top: 20px;
}
.content dl dt, .content dl dt {
	margin-bottom: 10px;
	margin-top: 10px;
}
/* h */
.content h1 { margin-bottom: 30px; }
.content h2, .title-grad {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #000), color-stop(0.00, #333));
	background: -webkit-linear-gradient(#333, #000);
	background: -moz-linear-gradient(#333, #000);
	background: -o-linear-gradient(#333, #000);
	background: -ms-linear-gradient(#333, #000);
	background: linear-gradient(#333, #000);
	border: 1px solid #666;
	border-radius: 6px;
	color: #FFF;
	font-size: 1.1rem;
	margin-bottom: 10px;
	margin-top: 20px;
	padding: 10px 10px 10px 20px;
	position: relative;
}
.content h2:before, .title-grad:before {
	background: url(../images/icon-bar.png) no-repeat left center;
	content: "";
	display: block;
	height: 32px;
	left: 6px;
	top: 50%;
	margin-top: -16px;
	width: 5px;
	position: absolute;
}
.content h3 {
	margin-bottom: 20px;
	margin-top: 30px;
}
.content h4 {
	margin-bottom: 10px;
	margin-top: 20px;
}
/* hr */
.content hr {
	border: none;
	border-top: 1px dotted rgba(0, 0, 0, 1);
}
/* iframe */
.content iframe { max-width: 100%; }
/* img */
.content img {
	max-width: 100%;
	height: auto;
}
/* ol */
.content ol {
	margin-bottom: 20px;
	margin-left: 1.5em;
	margin-top: 20px;
}
.content ol li { margin-left: 5px; }
/* p */
.content p { margin-bottom: 10px; }
/* ul */
.content ul {
	list-style-type: disc;
	margin-bottom: 20px;
	margin-left: 1.5em;
	margin-top: 20px;
}
.content ul li { margin-left: 5px; }
/* table */
.content table {
	margin-bottom: 10px;
	margin-top: 10px;
}
.main-con { width: 720px; }
.sub-con { width: 220px; }
.sub-bnr-con { margin-bottom: 20px; }
.sub-bnr-con { margin-bottom: 20px; }
.sub-bnr-list li { margin-bottom: 5px; }
.sub-bnr-list img {
	height: auto;
	width: 100%;
}
.sub-bnr-list a:hover { opacity: 0.7; }
.sub-title {
	color: #FFF;
	font-size: 1.1rem;
	margin-top: 20px;
	margin-bottom: 10px;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.sub-list li {
	margin-bottom: 1px;
	background-color: #CF2525;
}
.sub-list a {
	color: #FFF;
	display: block;
	font-size: 0.8rem;
	padding: 10px 15px;
	text-decoration: none;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.sub-list a:hover { background-color: rgba(0, 0, 0, 0.2); }
/* ==== footer === */
.ft-bg { border-top: 10px solid #500E0E; }
.ft-con {
	display: flex;
	justify-content: space-between;
	padding: 20px 0 30px;
}
.ft-addr-con, .ft-list-con { display: inline-block; }
.ft-addr-con { color: #FFF; }
.ft-list li {
	display: inline-block;
	margin-left: 10px;
}
.ft-list a {
	color: #FFF;
	font-size: 0.7rem;
	text-decoration: none;
}
.ft-con .copyright { font-size: 0.7rem; }
/* ==== pagetop === */
.pagetop {
	bottom: 30px;
	display: table;
	height: 5em;
	position: fixed;
	right: 30px;
	width: 5em;
	z-index: 100;
}
.pagetop span {
	background-color: #222;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	color: #FFF;
	cursor: pointer;
	display: table-cell;
	font-size: 0.5em;
	text-align: center;
	text-decoration: none;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	vertical-align: middle;
}
.pagetop span:hover {
	filter: alpha(opacity=80);/*IE*/
	opacity: 0.8;
}
/*----------------------------------------------------------------------------
******************************************************************************
original
******************************************************************************
----------------------------------------------------------------------------*/
/* ==== Home === */
.home-slide-con {
	background: url(http://app004.xsrv.jp/a-player/wp-content/uploads/2017/03/img-bg.png) no-repeat center;
	margin-bottom: 30px;
}
.home-news-con { }
.home-news-time {
	background: url(../images/home-news-icon1.jpg) no-repeat 0 5px;
	display: inline-block;
	float: left;
	padding-left: 15px;
}
.home-news-text {
	border-bottom: 1px dotted #333;
	padding: 0 0 8px 130px;
	margin-bottom: 10px;
}
.home-news-text:nth-last-of-type(1) {
 margin-bottom: 0;
}
.home-link-con { }
/* ==== Other === */
.btn-contact-con { margin-top: 50px; }
.cate-entry { margin-bottom: 20px; }
.cate-entry h2 {
	color: #FFF;
	margin-bottom: 10px;
}
.cate-card {
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 5px;
	margin-bottom: 40px;
	padding: 20px;
	position: relative;
}
.cate-eyecatch-con { margin-bottom: 20px; }
.cate-excerpt-con {
	color: #FFF;
	margin-bottom: 20px;
}
.cate-eyecatch-con img {
	height: auto;
	width: 100%;
}
.cate-entry-row1 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.cate-entry-row1-col1 { width: 250px; }
.cate-entry-row1-col1 img {
	height: auto;
	width: 100%;
}
.cate-entry-row1-col2 { width: 400px; }
.cate-btn-detail-con {
	position: absolute;
	right: 10px;
}
.cate-entry-row2 {
	background-color: rgba(255, 255, 255, 1);
	border-radius: 5px;
	padding: 20px;
	margin-bottom: 20px;
}
.cate-spec-list li {
	font-size: 1.1rem;
	margin-bottom: 5px;
}
.cate-table td {
	font-size: 1.3rem;
	color: #AB1D1D;
}
.cate-entry-row3 {
	display: flex;
	justify-content: space-between;
	align-items: center;/*-縦-*/
}
a.cate-btn-detail {
	background-color: #AB1D1D;
	border-radius: 5px;
	color: #FFF;
	padding: 10px;
	text-decoration: none;
}
.cate-entry-row3-col1 {
	font-size: 1.6rem;
	display: inline-block;
}
.cate-entry-row3-col2 {
	color: #AB1D1D;
	font-size: 3rem;
	font-weight: bold;
	text-align: right;
	position: relative;
	padding-top: 10px;
}
.cate-entry-row3-col2 span.jpen { font-size: 2rem; }
.cate-entry-row3-col2 span.zeikomi {
	font-size: 8px;
	display: inline-block;
	right: 2px;
	top: -6px;
	position: absolute;
}
a.cate-btn-detail:hover {
	color: #FFF;
	text-decoration: underline;
}
.game-ranking-sec-col2{
	display: flex;
	flex-wrap: wrap;
}
.game-ranking-sec-col2 a{
	color: #FFF;
	text-decoration: none;
}
.game-ranking-sec-col2 a:hover{
	text-decoration: underline;
}
.game-ranking-sec-col2 > div{
	width: calc( (100% - 3px ) / 2 );
	margin: 0 3px 3px 0;
}
.game-ranking-sec-col2 > div:nth-child(2n){
	margin-right: 0;
}
.game-ranking-sec-col2 img{
	height: auto;
	width: 100%;
}
.game-ranking-sec-col3{
	display: flex;
	flex-wrap: wrap;
}
.game-ranking-sec-col3 a{
	color: #FFF;
	text-decoration: none;
}
.game-ranking-sec-col3 a:hover{
	text-decoration: underline;
}
.game-ranking-sec-col3 > div{
	width: calc( (100% - 6px ) / 3 );
	margin: 0 3px 3px 0;
}
.game-ranking-sec-col3 > div:nth-child(3n){
	margin-right: 0;
}
.game-ranking-sec-col3 img{
	height: auto;
	width: 100%;
}
/*----------------------------------------------------------------------------
******************************************************************************
responsive
******************************************************************************
----------------------------------------------------------------------------*/
@media screen and (max-width: 780px) {
/* ==== pagetop === */
.pagetop {
bottom: 10px;
height: 50px;
right: 10px;
width: 50px;
}
.contents {
 width: 100%;
 margin: auto;
 padding: 30px;
}
.content {
 line-height: 26px;
}
/* h */
.content h1 {
}
.content h2 {
}
.content h3 {
}
.content h4 {
}
/* ol,ul */
.content ul {
 list-style-type: disc;
}
.content ol li, .content ul li {
 line-height: 22px;
}
/* table */
.content table {
 line-height: 22px;
}
/* dl */
.content dl {
 line-height: 22px;
}
/* img */
.content img {
 max-width: 100%;
 height: auto;
}
}
@media screen and (max-width: 480px) {
/* ==== pagetop === */
.pagetop {
height: 40px;
width: 40px;
}
}
