@charset "UTF-8";

/* ============================================================
	共通(element)
============================================================ */






/* ============================================================
	共通(id,class)
============================================================ */





/* ============================================================
	ページメイン
============================================================ */
#page-main {
	position: relative;
	padding: 50px 0;
}
#page-main::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	z-index: -1;
	width: 100%;
	height: 300px;
	background: #f5f3f0;
}

/*  アイキャッチ
------------------------------ */
#page-main .eyecatch {
	position: relative;
	width: 960px;
	height: 270px;
	margin: 0 auto 40px;
}
/* 読み込み時の背景画像 */
#page-main .eyecatch > div {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #fff;
	transition: .5s;
}
#page-main .eyecatch.active > div {
	width: 100%;
}

/* アイキャッチ画像 */
#page-main .eyecatch::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: url(./images/page_main-eyecatch-img-pc.jpg) top left no-repeat;
	background-size: cover;
	transition: .5s;
}
#page-main .eyecatch.active::before {
	width: 100%;
}

/*  見出し
------------------------------ */
#page-main .headline.cmn.type-a {
/*
  common-sp.cssに記述
  リセット等の記述はこちら
*/
}





/* ============================================================
	記事一覧
============================================================ */
#single {
	position: relative;
	padding: 80px 0;
}
#single > .inner {
	width: 800px;
	margin: 0 auto;
	text-align: left;
}

/*  シングル上部
------------------------------ */
#single .single-head {
	/* width: 540px; */
	margin: 0 auto;
}

/*----- 日付 -----*/
#single .single-head .date {
	margin-bottom: 20px;
	font-weight: bold;
}

/*----- 見出し -----*/
#single .single-head .title {
	padding-bottom: 20px;
	font-size: 26px;
	line-height: 1.6;
}

/*----- カテゴリ -----*/
#single .single-head .category-icon {
	float: left;
	font-size: 14px;
}
#single .single-head .fa-fw {
	color: #888;
}
#single .single-head .category {
	padding-bottom: 20px;
	border-bottom: solid 2px #e6e6e6;
	width: auto;
	padding-left: 27px;
}
#single .single-head a {
	color: #888;
}


/*  シングル本体
------------------------------ */
#single .single-body {
	padding: 40px 0 40px 0;
	margin: 0 auto;
}
#single .single-body a {
	border-bottom: 1px #999 dotted;
	text-decoration: none;
}
#single .single-body p {
	line-height: 2;
}
#single .single-body img {
	max-width: 800px;
}


/*  シングル下部
------------------------------ */
#single .single-foot {
	margin: 0 auto;
	padding: 0 0 80px;
	line-height: 2em;
}
#single .single-foot .tags-icon {
	float: left;
	font-size: 14px;
}
#single .single-foot .fa-fw {
	color: #888;
}
#single .single-foot .tags {
	margin-bottom: 40px;
	width: auto;
	padding-left: 27px;
}
#single .single-foot a {
	color: #888;
}

/*  アクション
------------------------------ */
#single .action {
}
#single .action .button {
	width: 340px;
	height: 80px;
	margin: 0 auto;
	position: relative;
	z-index: 20;
	letter-spacing: 0;
}
#single .action .button a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	background: #004a2e;
	font-size: 25px;
	color: #fff;
	box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, .2);
}
#single .action .button a:hover {
	-ms-transform: translateY(5px);
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
	border-bottom: none;
	box-shadow: none;
	box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, .2);
}
#single .action .button a svg {
	margin-right: 20px;
	margin-left: 30px;
	font-size: 34px;
}
#single .action .button a span {
	margin-right: 30px;
	margin-bottom: 4px;
}

/*  ページネーション
------------------------------ */
#single .pagination {
	-js-display: flex;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}
#single .pagination .button {
}
#single .pagination .button.top {
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 90px;
}
#single .pagination .button a {
	position: relative;
	font-family: 'Homemade Apple', cursive;
	color: #004a2e;
}
#single .pagination .button a::after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: -10px;
	left: 0;
	width: 20px;
	height: 2px;
	margin: auto;
	background: #004a2e;
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	transform-origin: center top;
	-webkit-transition: transform .3s;
	transition: transform .3s;
}
#single .pagination .button a:hover::after {
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
}
