@charset "UTF-8";

.topic {
	background-color: #FCF9EC;
	padding: 80px 0;
	text-align: center;
}

.topic_title {
	margin-bottom: 32px;
}

.topic_headline {
	font-size: 26px;
	line-height: 1.5;
	margin-bottom: 15px;
	padding: 0 10px;
}

.topic_subhead {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 20px;
	padding: 0 10px;
}

.topic_headline+.topic_subhead {
	margin-top: -15px;
}

.topic_text {
	margin-bottom: 30px;
	padding: 0 20px;
}

.topic_note {
	padding: 0 20px;
}

.topic_image {
	margin-bottom: 30px;
}

.topic_image img {
	margin: 0 auto;
}

.topic_table {
	max-width: 660px;
	margin: 0 auto 40px;
	background-color: #ffffff;
}

.topic_table>tbody>tr {
	border-left: none;
	border-right: none;
}

.topic_table>tbody>tr>th {
	background-color: #E8E8E2;
	width: 127px;
}

.topic_table>tbody>tr>td {
	text-align: left;
}

.topic_link {
	max-width: 377px;
	margin: 0 auto 80px;
}

.topic_link>a {
	display: flex;
	text-decoration: none;
	color: #fff;
	background-color: #0D0606;
	justify-content: center;
	align-items: center;
	border: 1px solid #0D0606;
	box-sizing: border-box;
	transition-duration: .3s;
	transition-property: background-color, color;
	line-height: 1.2;
	padding: 20px 10px;
}

.topic_link>a::before {
	content: 'M1.42,0h338.3l-8.86,39.5L339.72,79H1.42l8.85-39.5Z';
}

.topic_link>a::after {
	content: "";
}

.topic_image>img {
	display: block;
}

@media screen and (min-width:1000px) {
	.topic_link>a:hover {
		color: #0D0606;
		background-color: #E8E8E2;
	}
}

@media screen and (max-width:999px) {
	.topic {
		padding-top: 60px;
	}

	.topic_headline {
		font-size: 22px;
	}

	.topic_subhead{
		font-size: 18px;
	}

	.topic_link {
		margin-bottom: 60px;
	}

	.topic_image {
		width: calc(100% - 100px);
		margin: 0 auto;
	}
}

@media screen and (max-width:767px) {
	.topic {
		padding-top: 40px;
		padding-bottom: 60px;
	}

	.topic_title {
		max-width: 200px;
		margin: 0 auto 20px;
	}

	.topic_headline {
		font-size: 15px;
	}

	.topic_subhead{
		font-size: 14px;
	}

	.topic_text {
		text-align: left;
		margin-bottom: 12px;
	}

	.topic_note {
		text-align: left;
	}

	.topic_table {
		border-bottom: none;
		margin-bottom: 30px;
	}

	.topic_table>tbody>tr>th {
		width: auto;
		white-space: normal;
	}

	.topic_link {
		max-width: none;
		margin-bottom: 30px;
	}

	.topic_image {
		width: 100%;
	}
}