.news_detail h1 {
	padding-bottom: 10px;
	font-size: clamp(2rem, 1.52rem + 1vw, 2.8rem);
}

.news_detail h2 {
	padding-bottom: 10px;
	font-size: clamp(1.8rem, 1.44rem + 0.75vw, 2.4rem);
}

.news_detail h3 {
	padding-bottom: 10px;
	font-size: clamp(1.6rem, 1.36rem + 0.5vw, 2rem);
}

.news_detail h4 {
	padding-bottom: 10px;
	font-size: clamp(1.4rem, 1.28rem + 0.25vw, 1.8rem);
}

.news_detail h5 {
	padding-bottom: 10px;
	font-size: clamp(1.2rem, 1.2rem + 0.25vw, 1.6rem);
}

.news_detail > div {
	margin-bottom: 40px;
}

.news_detail > p {
	padding-bottom: 20px;
	padding-left: 0px!important;
	text-indent: 0px!important;
}

.news_detail hr {
	display: block;
	background-color: #ffffff;
	border: none;
	margin: 20px auto;
	width: 85%;
	height: 1px;
}

.news_detail em {
	font-style: italic;
	font-weight: normal;
}

.news_detail blockquote {
	display: block;
	background-color: #666666;
	border-left: solid 10px #ffffff;
	border-radius: 2px;
	margin-bottom: 20px;
	padding: 10px 1.0em;
}

.news_detail code {
	display: block;
	background-color: #ffffff;
	border-radius: 2px;
	padding: 10px 1.0em;
	color: var(--main-color);
}

.news_detail pre {
	display: block;
	padding-bottom: 20px;
}

.news_detail figure {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 40px;
}

.news_detail figure img {
	display: block;
	border-radius: 2px;
	max-width: 100%;
	height: auto;
}

.news_detail table {
	border: solid 1px #ffffff;
	border-radius: 1px;
	border-collapse: separate;
	border-spacing: 0px;
	margin-bottom: 20px;
}

.news_detail table tr th {
	background-color: #cccccc;
	color: #666666;
}

.news_detail table tr th,
.news_detail table tr td {
	padding: 5px 10px;
}

.news_detail table tr th:not(:last-of-type),
.news_detail table tr td:not(:last-of-type) {
	border-right: solid 1px #ffffff;
}

.news_detail table tr:not(:last-of-type) th,
.news_detail table tr:not(:last-of-type) td {
	border-bottom: solid 1px #ffffff;
}

.news_detail ul {
	list-style-type: disc;
	margin: 0px 0px 20px 30px;
}

.news_detail ol {
	list-style-type: decimal;
	margin: 0px 0px 20px 26px;
}

.news_detail a {
	display: inline-flex;
	align-items: center;
	position: relative;
	color: #ffffff;
	transition: all 0.5s;
}

.news_detail a:not(:has(img))::before {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	background-color: #ffffff;
	width: 100%;
	height: 2px;
	transform: scaleX(1);
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}

.news_detail a.on:not(:has(img))::before {
	width: 100%;
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.25s ease-out;
}

.news_detail a[target="_blank"]:not(:has(img))::after {
	content: "";
	display: inline-block;
	background: url(../img/icon-open-external-link-white.svg) 100% 50% / contain no-repeat;
	padding-left: 6px;
	width: 0.9em;
	height: 0.9em;
}