﻿.add-news {
	margin: 0 auto;
	max-width: 860px;
}

.add-news * {
	font-family: YakuHanJP, "Helvetica Neue", Helvetica, "Open Sans", Arial, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	letter-spacing: .02em;

}

.news-card {
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	gap: 2rem 1.5rem;
	padding: 2.3rem 6.2rem 2.3rem 2rem;
	color: #454545;
	box-sizing: border-box;
}

.news-card::after {
	content: "";
	position: absolute;
	right: 2rem;
	top: 50%;
	width: 2rem;
	height: 2rem;
	border-bottom: solid 1px currentColor;
	border-right: solid 1px currentColor;
	box-sizing: border-box;
	transform: rotate(-45deg);
	margin-top: -1rem;
}

.news-card:hover .news-card__pic {
	opacity: .8;
}

.news-card__pic {
	width: 14rem;
	flex-shrink: 0;
	transition: .3s;
}

.news-card__pic img {
	width: 100%;
	height: auto;
}

.news-card__inner {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-left: 1rem;
}

.news-card__cat {
	display: inline-block;
	line-height: 1;
	font-size: 1.1rem;
	font-weight: 700;
	padding: .5rem .8rem .4rem;
	color: #fff;
	background: #ff9800;
	border-radius: .4rem;
	margin-bottom: .9em;
}

.news-card__title {
	font-size: 2.1rem;
	line-height: 1.5;
	font-weight: 700;
	margin: 0;
}

.news-card__text {
	margin: .2em 0 0;
	padding-bottom: .2em;
}

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

	.news-card {
		gap: 2rem 2rem;
		padding: 2rem 1rem 2rem 1rem;
	}

	.news-card::after {
		display: none;
	}

	.news-card__pic {
		width: 11rem;
	}

	.news-card__inner {
		flex: 1;
		padding-left: 0;
	}

	.news-card__cat {
		font-size: 1.1rem;
		padding: .4rem .5rem .4rem;
		border-radius: .4rem;
		margin-bottom: .6em;
	}

	.news-card__title {
		font-size: 1.7rem;
	}

	.news-card__text {
		font-size: 1.2rem;
		line-height: 1.6;
		margin: .6em 0 0;
		padding-bottom: .2em;
	}
}
