@font-face {
	font-family: 'local noto sans jp';
	src: local('noto sans jp');
}

.post-content .micron-children {
	padding-block: 16px;
}

.post-content .micron-children > ul {
	margin-block: 0;
	padding-inline-start: 0;
	display: grid;
	list-style-type: '';
}

.post-content .micron-children > ul > li {
	display: contents;
}

.post-content .micron-children > ul > li > a {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	row-gap: 0;
}

.post-content .micron-children > ul > li > a .micron-child-image {
	position: relative;
	z-index: 1;
}

.post-content .micron-children > ul > li > a .micron-child-image::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	inset: 0;
	z-index: 2;
	opacity: 0;
	transition: opacity 300ms ease;
}

.post-content .micron-children > ul > li > a .micron-child-image img {
	width: 100%;
	aspect-ratio: 16/9;
	-o-object-fit: cover;
	object-fit: cover;
	position: relative;
	z-index: 1;
}

.post-content .micron-children > ul > li > a .micron-child-title {
	padding-block: 24px;
	padding-inline: 24px;
	display: grid;
	grid-template-columns: auto 24px;
	-moz-column-gap: 24px;
	column-gap: 24px;
	line-height: 1.3888888889;
	color: #333;
	background-color: #fff;
	font-weight: 700;
	font-size: 1.125rem;
	transition: color 300ms ease;
}

.post-content .micron-children > ul > li > a .micron-child-title::after {
	content: '';
	width: 24px;
	height: 24px;
	background-color: #333;
	-webkit-mask-image: url(../images/icon/arrow-circle.svg);
	mask-image: url(../images/icon/arrow-circle.svg);
	-webkit-mask-size: 24px 24px;
	mask-size: 24px 24px;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	position: relative;
	left: 0;
	z-index: 1;
	transition: left 300ms ease;
}

.post-content .micron-children > ul > li > a:hover,
.post-content .micron-children > ul > li > a:active,
.post-content .micron-children > ul > li > a:focus-visible {
	text-decoration: none;
}

.post-content .micron-children > ul > li > a:hover .micron-child-image::before,
.post-content .micron-children > ul > li > a:active .micron-child-image::before,
.post-content .micron-children > ul > li > a:focus-visible .micron-child-image::before {
	opacity: 0.2;
}

.post-content .micron-children > ul > li > a:hover .micron-child-title,
.post-content .micron-children > ul > li > a:active .micron-child-title,
.post-content .micron-children > ul > li > a:focus-visible .micron-child-title {
	color: #005baa;
}

.post-content .micron-children > ul > li > a:hover .micron-child-title::after,
.post-content .micron-children > ul > li > a:active .micron-child-title::after,
.post-content .micron-children > ul > li > a:focus-visible .micron-child-title::after {
	left: 8px;
}

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

	.post-content .micron-children > ul {
		row-gap: 24px;
	}
}

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

	.post-content .micron-children > ul {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px 24px;
	}
}

@media print {

	.post-content .micron-children > ul {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px 24px;
	}
}
