/* -----------------------
	一覧ページ
-----------------------  */
main .block {
    max-width: 90vw;
    margin: 0 auto;
}

.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/topics/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;
	padding-left: none;
}

.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/topics/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: #000000;
	line-height: 1.3;
	opacity: 1;
	transition: var(--hover-1);
}

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

.linkBtnList{
	margin-top: 50px;
}
#topicsList{
	text-align: left;
	margin-bottom: 300px;
}

#topicsList .topics1,
#topicsList .topics2{
	margin-bottom: 100px;
}

#topicsList .topics1 dl dt,
#topicsList .topics2 dl dt{
	font-size: 20px;
	text-align: left;
	width: 193px;
	padding: 15px;
	color: #fff;
	background-color: #253c16;
	border-right: 12px solid #68cb42;
}

#topicsList .topics1 dl dd,
#topicsList .topics2 dl dd{
	font-size: 38px;
	text-align: left;
	padding: 15px;
	color: #253c16;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

#topicsList .topics1 dl dd a,
#topicsList .topics2 dl dd a{
	position: relative;
}

#topicsList .topics1 dl dd a:before,
#topicsList .topics2 dl dd a:before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 50%;
	right: 50%;
	bottom: 0;
	/*    bottom: 0;*/
	background: #b4e650;
	height: 4px;
	-webkit-transition-property: left, right;
	transition-property: left, right;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

#topicsList .topics1 dl dd a:hover:before,
#topicsList .topics2 dl dd a:hover:before,
#topicsList .topics1 dl dd a:focus:before,
#topicsList .topics2 dl dd a:focus:before,
#topicsList .topics1 dl dd a:active:before,
#topicsList .topics2 dl dd a:active:before {
	left: 0;
	right: 0;
}

@media only screen and (max-width: 1150px) {
	#topicsList .topics1 dl dt,
	#topicsList .topics2 dl dt {
		font-size: 20px;

	}
	
	#topicsList .topics1 dl dd,
	#topicsList .topics2 dl dd {
		font-size: 34px;	
	}

	.post {
		padding-left: unset;
	}

}

@media only screen and (min-width: 957px) and (max-width: 1024px) {

	#topicsList .topics1 dl dt,
		#topicsList .topics2 dl dt {
		font-size: 20px;
	}

	#topicsList .topics1 dl dd,
	#topicsList .topics2 dl dd {
		/* 32px @ 957px increasing to 34px @ 1024px */
		font-size: calc(2rem + ((1vw - 9.57px) * 2.9851));
	}

	.post {
		padding-left: unset;
	}
}

@media only screen and (min-width: 769px) and (max-width: 956px) {

	#topicsList .topics1 dl dt,
		#topicsList .topics2 dl dt {
		/* 18px @ 769px increasing to 20px @ 956px */
		font-size: calc(1.125rem + ((1vw - 7.69px) * 1.0695));
	}

	#topicsList .topics1 dl dd,
	#topicsList .topics2 dl dd {
		/* 26px @ 769px increasing to 32px @ 956px */
		font-size: calc(1.625rem + ((1vw - 7.69px) * 3.2086));
	}

	.post {
		padding-left: unset;
	}
}

@media only screen and (min-width: 701px) and (max-width: 768px) {

	#topicsList .topics1 dl dt,
		#topicsList .topics2 dl dt {
		font-size: 16px;
	}

	#topicsList .topics1 dl dd,
	#topicsList .topics2 dl dd {
		font-size: 24px;
	}

	.post {
		padding-left: unset;
	}
}

@media only screen and (min-width: 360px) and (max-width: 700px) {

	#topicsList .topics1 dl dt,
		#topicsList .topics2 dl dt {
		font-size: 16px;
	}

	#topicsList .topics1 dl dd,
	#topicsList .topics2 dl dd {
		font-size: 24px;
	}

	.post {
		padding-left: unset;
	}
}


@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;
	}

	.post {
		padding-left: unset;
	}
}

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

	.post .titleCnt__title {
		font-size: 30px;
	}

	#topicsList .topics1 dl dt,
	#topicsList .topics2 dl dt {
		font-size: 16px;

	}

	#topicsList .topics1 dl dd,
	#topicsList .topics2 dl dd {
		font-size: 20px;
	}

	.post {
		padding-left: unset;
	}

}