@charset "UTF-8";
@import "/include/css/common.pc.css";

/* ---------------------------------------------------------
	CSS Document entries
--------------------------------------------------------- */

#entries {
	margin-bottom: 130px;
	padding: 70px 0;
	background: linear-gradient(135deg, #f0f0f0 50%, #e6e6e6 50%);
}

#entries .flex {
	display: flex;
	flex-wrap: wrap;
}

#entries .row {
	width: 380px;
	margin-right: 30px;
	margin-bottom: 30px;
	padding: 30px;
	background: #fff;
	text-align: left;
}

#entries .row:nth-of-type(3n) {
	margin-right: 0;
}

#entries figure {
	height: 225px;
	overflow: hidden;
	position: relative;
}

#entries figure img {
	width: 100%;
	min-height: 225px;
	object-fit: cover;
	transition: transform .4s ease;
}

#entries .row:hover img {
	transform: scale(1.1);
}

#entries figcaption {
	height: 29px;
	padding: 0 1em;
	background: linear-gradient(to bottom, var(--black) 0%, #1a1a1a 100%);
	font-size: 13px;
	line-height: 30px;
	color: #fff;
	position: absolute;
	top: 0;
	right: 0;
}

#entries .meta {
	background: #fff;
	transition: .4s;
}

#entries .meta dl {
	padding: 20px 50px 15px 0;
	background: #fff;
	font-size: 13px;
	line-height: 1.5;
 	color: var(--orange);
	position: relative;
}

#entries .meta dl:after {
	content: '';
	width: 30px;
	height: 30px;
	margin-top: -15px;
	background: url(/include/top/arrow_circle.svg) no-repeat left / 100% auto;
	position: absolute;
	top: 50%;
	right: 0;
	transition: .4s;
}

#entries .row:hover .meta dl:after {
	transform: translateX(6px);
}

#entries .meta dd {
	font-weight: 700;
	font-size: 18px;
}

#entries .meta dd a {
	text-decoration: none;
	color: var(--black);
}

#entries .meta p {
	text-align: justify;
	font-size: 14px;
	line-height: 1.7;
/*
	color: var(--gray);
*/
}

/* ---------------------------------------------------------
	CSS Document detail
--------------------------------------------------------- */

#detail {
	margin-bottom: 130px;
}

#detail .entry_meta figure {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 540px;
	overflow: hidden;
	margin-bottom: 15px;
	position: relative;
	z-index: 0;
	opacity: 0;
	translate: 0 30%;
}

#detail .entry_meta figure.isActive {
	opacity: 1;
	translate: 0;
	transition-duration: 0.6s;
	transition-timing-function: opacity var(--ease-out-cubic), translate var(--ease-out-quint);
}

#detail .entry_meta img {
	width: 100%;
	object-fit: cover;
}

#detail .entry_meta figcaption {
	display: none;
	min-width: 240px;
	height: 60px;
	padding: 0 1.5em;
	background: #ddd;
	line-height: 60px;
	position: absolute;
	top: 0;
	left: 0;
}

#detail .entry_date {
	margin-bottom: 40px;
	text-align: right;
	font-size: 14px;
}

#detail .entry_category {
	margin-bottom: 10px;
	color: var(--orange);
}

#detail .entry_body {
	margin: 0 100px 60px;
}

#detail .entry_body p {
	display: inline-block;
	vertical-align: top;
	text-align: justify;
}

#detail .entry_assets {
	margin-bottom: 80px;
}

#detail .entry_assets ul {
	display: flex;
	flex-wrap: wrap;
}

#detail .entry_assets li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 294px;
	height: 220px;
	overflow: hidden;
	margin-right: 8px;
	margin-bottom: 8px;
}

#detail .entry_assets li:nth-of-type(4n) {
	margin-right: 0;
}


#detail .entry_assets li a img {
	height: 220px;
	object-fit: cover;
	transition: transform .4s ease-in;
}

#detail .entry_assets li a:hover img {
	transform: scale(1.1);
}

/* ---------------------------------------------------------
	CSS Document pnavi
--------------------------------------------------------- */

#pnavi {
	padding-top: 30px;
	border-top: solid 1px var(--silver);
	position: relative;
}

#pnavi .link_before {
	position: absolute;
	top: 30px;
	left: 0;
}

#pnavi .link_next {
	position: absolute;
	top: 30px;
	right: 0;
}

#pnavi li a {
	display: inline-block;
	vertical-align: top;
	height: 52px;
	overflow: hidden;
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
	line-height: 50px;
	color: var(--black);
	position: relative;
}

#pnavi .link_before a {
	padding-left: 1.5em;
}

#pnavi .link_next a {
	padding-right: 1.5em;
}

#pnavi .link_before a:before,
#pnavi .link_next a:before {
	content: '';
	width: 6px;
	height: 6px;
	margin-top: -4px;
	border-top: solid 1px var(--gray);
	border-right: solid 1px var(--gray);
	position: absolute;
	top: 50%;
}

#pnavi .link_before a:before {
	transform: rotate(-135deg);
	left: 4px;
}

#pnavi .link_next a:before {
	transform: rotate(45deg);
	right: 4px;
}

#pnavi a:after {
	content: '';
	height: 2px;
	background: var(--black);
	position: absolute;
	left: 51%;
	right: 51%;
	bottom: 0;
	transition-property: left, right;
	transition-duration: 0.2s;
	transition-timing-function: ease-out;
}

#pnavi a:hover:after {
	left: 0;
	right: 0;
}
