@charset "UTF-8";
/*
 story.css（ファイル名変更可）
 本サイト各ページ用CSS
*/

.story-box-body {
	position: relative;
	z-index: 1;
	background: #fff;
	padding-bottom: 30px;
}

/* article */
.story-article-contents {
	position: relative;
	padding-top: 140px;
	font-size: 1.6rem;
}
.story-article-body { padding: 0 30px; }

/* article -movie */
.story-article-mainMovie {
	padding-top: 56%;
	overflow: hidden;
	position: relative;
}
.story-article-mainMovie iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* article -title */
.story-article-title {
	position: absolute;
	top: -50px;
	left: 0;
	display: block;
	background: #ce0000;
	padding: 10px;
}
.story-article-title-inner {
	text-align: center;
	color: #fff;
	border: 1px solid #fff;
	background: url(../images/common/d-box-bg_red.png);
	background-repeat: repeat-x;
	background-size: 44.5px 67.5px;
	background-position: 15px bottom;
	background-color: #ce0000;
	padding: 20px;
}
.story-article-title-inner .number {
	display: block;
	font-size: 3rem;
	line-height: 1;
}
.story-article-title-inner .count {
	font-size: 4.8rem;
}
.story-article-title-inner .date {
	display: block;
	font-size: 1.6rem;
}

/* article -text */
.story-article-text  > p + p {
	margin-top: 2.5rem;
}
.story-article-text .read_text {
	margin-bottom: 2.5rem;
}

/* article -img */
.story-article-contents img{
	display: block;
	width: 100%;
	margin: 0 auto 1em;
}
.story-article-contents figure{
	width: 100%;
	max-width: none;
	margin: 0;
}
.story-article-contents figure img {
	margin: 0;
}
.story-article-contents figure.fig-l {
	float: left;
	width: 50%;
	margin: 1em 1em 1em 0;
}
.story-article-contents figure.fig-l + p {
	margin-top: 1em;
}
.story-article-contents figure.fig-r {
	float: right;
	width: 50%;
	margin: 0 0 1em 1em;
}
.story-article-contents figure.fig-col2 {
	float: left;
	width: 49%;
	margin-left: 2%;
}
.story-article-contents figure.fig-col2:nth-of-type(2n+1) {
	clear: both;
	margin-left: 0;
}
.story-article-contents br.cb {
	clear: both;
}

/* story-channel */
.story-channel-area {
	text-align: center;
	font-size: 1.6rem;
	color: #cc0000;
	border: 2px solid #cc0000;
	padding: 20px 30px;
}
.story-channel-title {
	margin-bottom: 1rem;
}
.story-channel-list {
	width: 100%;
}
.story-channel-item {
	display: inline-block;
	width: calc(( 97% - 30px ) / 2);
	vertical-align: top;
}
.story-channel-item:not(:first-child) {
	margin-left: 3%;
}
.story-channel-item a {
	display: block;
	width: 100%;
	padding: 13px 10px;
	border-radius: 3px;
}
.story-channel-item.tada a {
	background-color: #ff005a;
}
.story-channel-item.hulu a {
	background-color: #67ae3e;
}
.story-channel-item a span {
	display: block;
	height: 46px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	font-size: 0;
	text-indent: -9999px;
	overflow: hidden;
	white-space: nowrap;
}
.story-channel-item.tada a span {
	background-image: url(../images/story/story-channel-tada-pc.png);
}
.story-channel-item.hulu a span {
	background-image: url(../images/story/story-channel-hulu-pc.png);
}

/* share */
.story-share {
	display: table;
	width: 100%;
	overflow: hidden;
	margin-top: 30px;
}
.story-share-title,
.story-share-body {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	background-color: #efefef;
	padding: 15px 0;
}
.story-share-title {
	font-size: 1.0rem;
	line-height: 1.1;
	width: 85px;
}
.story-share-body {
	border-left: 1px solid #fff;
}
.story-share-body > ul:after {
	content: "";
	display: block;
	clear: both;
}
.story-share-body > ul > li {
	vertical-align: middle;
	display: inline-block;
	padding: 0 5px;
	margin: 5px 0;
}



/* backnumber */
.backnumber-area {
	width: calc(100% - 60px);
	background: #cc0000;
	padding: 30px 30px 20px;
	margin: 30px auto 0;
}
.backnumber-area .story-article-body{ padding: 0; }
.backnumber-list{
	counter-reset: num;
}
.backnumber-list-item:after {
	counter-increment: num;
	content: "第" counter(num)"話";
	display: block;
	text-align: center;
	color: #fff;
	font-size: 1.6rem;
	line-height: 1;
	padding: 10px 5px 10px;
}

.backnumber-list-item a {
	display: block;
}

/* ---------------------------------
 SP用
--------------------------------- */
@media only screen and (max-width: 600px) {

	/* article */
	.story-article-body { padding: 0 15px ;}
	.story-article-contents { padding-top: 70px; font-size: 1.3rem; }

	/* article -title */
	.story-article-title { top: -25px; padding: 5px; }
	.story-article-title-inner { padding: 12px 10px; }
	.story-article-title-inner .number { font-size: 1.5rem; }
	.story-article-title-inner .count { font-size: 2.4rem; }
	.story-article-title-inner .date { font-size: 0.8rem; }

	/* article -img */
	.story-article-contents br.cb { display: none; }
	.story-area .story-article-contents figure.fig-l { width: 100%; margin: 1em 0; }
	.story-area .story-article-contents figure.fig-r { width: 100%; margin: 1em 0; }

	/* story-channel */
	.story-channel-area { padding: 10px; margin-top: 20px; }
	.story-channel-title { font-size: 1.3rem; }
	.story-channel-item { width: 100%; }
	.story-channel-item a { padding: 10px;}
	.story-channel-item a span { height: 25px; }
	/* .story-channel-item.tada a span { background-image: url(../images/story/story-channel-hulu-sp.png); }
	.story-channel-item.hulu a span { background-image: url(../images/story/story-channel-hulu-sp.png); } */
	.story-channel-item:not(:first-child) { margin-left: 0; margin-top: 10px; }

	/* share */
	.story-share { margin-top: 20px; }
	.story-share-body > ul > li {
		width: 30px;
		padding: 0;
		margin: 5px;
	}
	.story-share-body > ul > li > a {
		display: block;
		text-indent: -9999px;
		white-space: nowrap;
		overflow: hidden;
		font-size: 0;
		width: 30px;
		height: 30px;
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}
	.story-share-body > ul > li > a.facebook { background-image: url("../images/sns/sns-facebook-square.png"); }
	.story-share-body > ul > li > a.twitter { background-image: url("../images/sns/sns-twitter-square.png"); }
	.story-share-body > ul > li > a.line { background-image: url("../images/sns/sns-line-square.png"); }

	/* backnumber */
	.backnumber-area {
		width: calc(100% - 30px);
		margin: 20px auto 0;
		padding: 15px 0;
	}
	.backnumber-list{
		width: 100%;
		overflow-y: hidden;
		overflow-x: scroll;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}
	.backnumber-list-item{
		display: inline-block;
		width: 43.8%;
		position: relative;
		vertical-align: bottom;
	}
	.backnumber-list-item:not(:first-child){
		margin-left: 1%;
	}
	.backnumber-list-item-img{
		width: 100%;
		padding-top: 56.25%;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	.backnumber-link {
		margin-top: 20px;
		padding-left: 10px;
		padding-right: 10px;
	}
	/* .backnumber-inner { padding: 0 10px; }
	.backnumber-list{
		width: 100%;
		overflow: hidden;
	}
	.backnumber-list-item{
		width: 32%;
		margin-left: 1.333%;
		margin-top: 0.6%;
		margin-bottom: 0.6%;
		position: relative;
		float: left;
	}
	.backnumber-list-item:nth-child(3n+1) { margin-left: 0; }
	.backnumber-list-item-img{
		width: 100%;
		padding-top: 56.25%;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	.backnumber-link { margin-top: 50px; }
	.backnumber-list-item:after {
		font-size: 1.0rem;
		padding: 5px 5px 10px;
	} */
}

/* ------------------------------------------------------------------
 SP 〜 tablet　（〜992px）
------------------------------------------------------------------ */
@media screen and (max-width: 992px) {
}

/* ---------------------------------
 PC用
--------------------------------- */
@media screen and (min-width: 993px) {
}

/* ---------------------------------
 tablet FONT用
--------------------------------- */
@media screen and (min-width : 601px){

	/* article */
	.story-area .story-article-contents figure.fig-l { width: 55%; }
	.story-area .story-article-contents figure.fig-r { width: 55%; }

	/* backnumber */
	.backnumber-list{
		width: 100%;
		overflow: hidden;
	}
	.backnumber-list-item{
		width: 24%;
		margin-left: 1.333%;
		margin-top: 0.6%;
		margin-bottom: 0.6%;
		position: relative;
		float: left;
	}
	.backnumber-list-item:nth-child(4n+1) { margin-left: 0; }
	.backnumber-list-item-img{
		width: 100%;
		padding-top: 56.25%;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	.backnumber-link { margin-top: 50px; }


	/* story-share */
	.story-share-title { width: 150px; }
	.story-share-title br { display: none; }
	.story-share-body > ul > li > a {
		display: block;
		width: 110px;
		text-align: center;
		padding: 7px 0;
		border-radius: 2px;
		color: #fff;
	}
	.story-share-body > ul > li > a.facebook { background-color: #3b5998; }
	.story-share-body > ul > li > a.twitter { background-color: #55acee; }
	.story-share-body > ul > li > a.line { background-color: #00b900; }

}



