#single_page {
	max-width: var(--content-width);
	padding-inline: 1em;
	margin-inline: auto;
	margin-top: 3em;
	.wrap {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.category {
		width: 8em;
		border: 1px solid var(--text-color);
		text-align: center;
		padding: 0.2em 0.5em;
	}
	.content {
		margin-top: 3px;
	}
	.link {
		text-align: center;
		margin-top: 5em;
		a {
			display: inline-block;
			padding: 0.5em;
			max-width: 20em;
			border: 1px solid var(--text-color);
			width: 100%;
			text-decoration: none;
			position: relative;
			&::after {
				content: '';
				width: 1em;
				height: 1em;
				background-image: url("../images/front-page/arrow.svg");
				background-size: contain;
				background-position: center;
				background-repeat: no-repeat;
				position: absolute;
				top: 50%;
				right: 0.5em;
				transform: translateY(-50%);
			}
		}
	}
	.content {
		line-height: 1.8em;
	}
}