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

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

#entries {
	margin-bottom: 15vw;
	padding: 10vw 5vw;
	background: linear-gradient(120deg, #f0f0f0 20%, #e6e6e6 20%);
}

#entries .row {
	margin-bottom: 5vw;
	padding: 8vw;
	background: #fff;
	text-align: justify;
	line-height: 1.7;
}

#entries figure {
	display: flex;
	align-items: center;
	height: 45vw;
	overflow: hidden;
	position: relative;
}

#entries figure img {
	width: 100%;
	min-height: 45vw;
	object-fit: cover;
}

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

#entries .meta dl {
	margin: 4vw 0 3vw;
	font-size: 3vw;
	position: relative;
}

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

#entries .meta dt {
 	color: var(--orange);
}

#entries .meta dd {
	font-size: 4vw;
}

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

#entries .meta p {
	text-align: justify;
	font-size: 3vw;
}

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

#detail {
	margin: 0 8vw 15vw;
}

#detail .entry_meta figure {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60vw;
	overflow: hidden;
	margin-bottom: 2vw;
	position: relative;
	z-index: 0;
}

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

#detail .entry_meta figcaption {
	display: none;
	padding: 0 1em;
	background: var(--black);
	font-size: 3vw;
	line-height: 2.5em;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
}

#detail .entry_date {
	margin-bottom: 9vw;
	text-align: right;
	font-size: 3vw;
}

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

#detail .entry_body {
	margin-bottom: 5vw;
	text-align: justify;
}

#detail .entry_assets {
	margin-bottom: 15vw;
}

#detail .entry_assets ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#detail .entry_assets li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 49.5%;
	height: 32vw;
	overflow: hidden;
	margin-bottom: 1%;
}

#detail .entry_assets li img {
	max-height: 30vw;
}

#detail .entry_assets li a img {
	max-height: auto;
	min-height: 32vw;
	object-fit: cover;
}

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

#pnavi {
	padding-top: 30px;
	border-top: solid 1px var(--silver);
	text-align: center;
	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;
	text-decoration: none;
	font-weight: 600;
	font-size: 3vw;
	line-height: 13vw;
	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: 1.8vw;
	height: 1.8vw;
	margin-top: -1.1vw;
	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;
}

