/*記事一覧レイアウト変更
------------------------------------*/
@media only screen and (max-width: 767px) {

	#viewCard:checked~.archive .archive__item,
	#viewNormal:checked~.archive .archive__item,
	#viewWide:checked~.archive .archive__item {
		width: 100%;
		display: flex;
		align-items: flex-start;
		padding: 10px;
		margin-right: 0;
		position: relative;
	}

	#viewCard:checked~.archive .archive__item {
		margin-right: 15px;
	}

	.archive .eyecatch {
		position: unset;
		max-width: 160px;
		min-height: 90px;
		margin-bottom: 0;
	}

	#viewNormal:checked~.archive .eyecatch {
		max-width: 160px;
	}

	.archive .eyecatch__cat a {
		padding: 5px 7.5px;
		font-size: .9rem;
	}

	.archive .eyecatch__link {
		position: absolute;
		top: 10px;
		left: 10px;
		width: 160px;
		height: 90px;
	}

	.archive .heading-secondary {
		font-size: 1rem;
		margin-bottom: 0;
	}

	.archive__contents {
		width: 100%;
		margin-left: 15px;
	}

	.archive__contents .btn {
		margin-top: 10px;
	}

	.archive .heading a {
		font-size: 1.3rem;
	}

	.archive .dateList {
		margin-bottom: 7px;
	}

	.archive .dateList__item {
		font-size: 1.1rem;
	}

	.archive .eyecatch__link-maskzoomrotate:hover img,
	.archive .eyecatch__link:hover img {
		transform: scale(1) rotate(0deg);
	}

	.controller__viewLabel {
		display: none
	}
}

@media only screen and (max-width: 480px) {

	.archive .eyecatch,
	#viewNormal:checked~.archive .eyecatch {
		max-width: 90px;
	}

	.archive .eyecatch__link {
		width: 90px;
	}
}

/*------------------------------------
記事一覧レイアウト変更 ここまで*/


/*フッターの背景色
------------------------------------*/
.l-footer .bottomFooter {
	background: #333;
}

/*フッターの文字色*/
.bottomFooter__copyright,
.bottomFooter__producer {
	color: #fff;
}

/*文字サイズ*/
.t_h {
	font-size: 14px;
}

hr {
	height: 1px;
	margin-top: 10px;
	margin-bottom: 10px;
	background-color: #8cb4db;
	width: 100%;
	border: none;
}

/*記事順序入れ替え
------------------------------------*/

.l-main>.dividerBottom {
	display: flex;
	flex-direction: column;
}

.widget {
	width: 100%;
}

/*投稿ページ上部エリアのウィジェット*/
.dividerBottom {
	order: 1;
}

/*記事タイトル*/
.heading.heading-primary {
	order: 2;
}

/*記事日付など*/
.dateList.dateList-main {
	order: 3;
}

/*アイキャッチ画像*/
.eyecatch.eyecatch-main {
	order: 4;
}

/*記事本文*/
.pageContents,
.postContents {
	order: 5;
}

/*コメント*/
.comments {
	order: 7;
}

/*投稿ページ下部エリアのウィジェット*/
.dividerTop {
	order: 8;
}

/*SNSフォロー*/
.snsFollow {
	order: 9;
}

/*関連記事*/
.related {
	order: 10;
}

/*------------------------------------
記事順序入れ替え ここまで
*/


/*人気記事ランキングウィジェット
------------------------------------*/

/* 横並びにする */
.widgetArchive__item.widgetArchive__item-rank {
	display: flex;
}

/*アイキャッチ画像部分*/
.widgetArchive__item-rank .eyecatch {
	max-width: 75px;
	height: 75px;
	margin: 0 10px 0 0;
}

.widgetArchive__item .eyecatch .eyecatch__link img {
	width: 75px;
	height: 75px;
}

/*見出し部分*/

.widgetArchive__item-rank .widgetArchive__contents {
	width: 100%
}

.widgetArchive__item-rank .widgetArchive__contents a {
	font-size: 14px;
	line-height: 1.3;
}

@media only screen and (max-width: 980px) {
	.widgetArchive__item-rank .widgetArchive__contents a {
		font-size: 12px;
		line-height: 1.2;
		word-break: break-all;
	}
}

@media only screen and (max-width: 767px) {
	.widgetArchive__item-rank .widgetArchive__contents a {
		font-size: 14px;
		line-height: 1.5;

	}
}

/*カテゴリラベルを消す*/
.widgetArchive__item .eyecatch__cat {
	display: none;
}

/*順位ラベル*/
.widgetArchive__item.widgetArchive__item-rank:before {
	top: -10px;
	left: -10px;
	border-radius: 50%;
	width: 2.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
}

/*記事ページのアイキャッチ ホバーOFF
------------------------------------*/
.eyecatch.eyecatch-main:hover img {
	transform: none;
}

/*コメント数表示
------------------------------------*/
li.dateList__item.icon-bubble2 {
    font-size: 13px;
    font-weight: bold;
	color: #2271b1;
}

/*フッター下スペース
------------------------------------*/
.bottomFooter__copyright {
    margin-bottom: 50px !important;
}

/* スマホ */
@media (max-width: 767px) {
    .bottomFooter__copyright {
        margin-bottom: 120px !important;
    }
}

/* スマホのスタイル
--------------------------- */

@media only screen and (max-width: 767px) {
	/* スマホ記事一覧タイトル */
    .archive .heading a {
        font-size: 1.7rem !important;
        margin-top: -15px !important;
    }
	/* スマホ記事一覧タイトル　行間 */
	.heading {
    line-height: 1.4;
	}
	/* スマホの場合のスタイル */
	.heading-primary {
		font-size: 2.2rem;
    }
	/* 位置 */
	#viewNormal:checked~.archive .archive__contents {
		margin-top: -25px;
	}
	/* サイドウィジェットのフォントサイズ */
	.widget_text {
		font-size: 1.6rem;
	}
	/* サイドウィジェット「ランキング」フォントサイズ */
	.widgetArchive__item-rank .widgetArchive__contents a {
		font-size: 1.6rem;
		line-height: 1.5;
	}
	/* サイドウィジェット「最近のコメント」フォントサイズ */
	.widget.widget_recent_comments ul li a {
		font-size: 1.6rem;
	}
	/* 関連記事タイトル位置 */
	 .related__item .heading-secondary {
		margin-top: 0px;
		margin-bottom: 20px;
	} 
}