/* -----------------------
	一覧ページ
-----------------------  */
.block article {
	color: var(--green-2);
}

.block article ~ article {
	margin-top: var(--mt-s);
}

.block article > a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 1em;
	border: 2px solid var(--green-2);
	border-radius: 40px;
	overflow: hidden;
}

.block article .leftItem {
	flex: 1 1 auto;
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	column-gap: 1em;
}

.block article .leftItem .icon {
	flex: 0 0 3.75em;	
	width: 3.75em;
	position: relative;
	background-color: var(--green-2);
	padding: 1.75em 0;
}

.block article .leftItem .icon::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../img/column/pen-icon.svg);
	background-size: 45%;
	background-repeat: no-repeat;
	background-position: center;
}

.block article .leftItem h2 {
	align-self: center;
	font-size: 3.2rem;
	text-align: left;
	letter-spacing: 0.015em;
	margin: 0.5em 0;
}

.block article .rightItem {
	flex: 0 0 2.5em;
	width: 2.5em;
	height: 1em;
	margin-right: 2em;
	background-image: url(../img/common/arrow-icon-h.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	transform: translateX(0);
	transition: var(--hover-1);
}

@media only screen and (max-width: 767px) {
	.block article .leftItem .icon {
		width: 3.25em;
		padding: 1.5em 0;
	}

	.block article .leftItem .icon::after {
		background-size: 40%;
	}

	.block article .leftItem h2 {
		font-size: 2.0rem;
	}

	.block article .rightItem {
		flex: 0 0 2em;
		width: 2em;
		height: 0.75em;
		margin-right: 1em;
	}
}

@media (hover: hover) {

	.block article:hover .rightItem {
		transform: translateX(20%);
	}
}

/* -----------------------
	記事ページ
-----------------------  */
.post {
	max-width: var(--width);
	margin: auto;
	text-align: left;
}

.post > .titleCnt {
	display: flex;
	align-items: center;
	gap: 1em;
}

.post .titleCnt__icon {
	display: inline-block;
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	background-image: url(../img/column/circle-pen-icon.svg);
	background-repeat: no-repeat;
	background-size: cover;
}

.post .titleCnt__title {
	font-size: 3.6rem;
	font-weight: 700;
	letter-spacing: 0.015em;
}

.quote {
	background-color: var(--glay-1);
	padding: 1em;
}

.alignR {
	display: block;
	text-align: right;
}

.post .oneColumn a,
.post .twoColumn a {
	display: inline;
	color: var(--link);
	line-height: 1.3;
	border-bottom: 1px solid var(--link);
	opacity: 1;
	transition: var(--hover-1);
}

@media (hover: hover) {
	.post .oneColumn a:hover,
	.post .twoColumn a:hover {
		opacity: var(--opacity);
	}
}


@media only screen and (max-width: 767px) {
	.post > .titleCnt {
		gap: 0.75em;
	}

	.post .titleCnt__icon {
		flex: 0 0 40px;
		width: 40px;
		height: 40px;
	}

	.post .titleCnt__title {
		font-size: 2.8rem;
	}
}