@charset "UTF-8";
.main {
	padding: 128px 0;
	background-color: var(--main-color);
}
.post {
	margin-bottom: 128px;
	padding: 48px 8%;
}
.post.mb--0 {
	margin-bottom: 0;
}
.post__wrap {
	max-width: 738px;
	margin: auto;
}
.post__date {
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	max-width: max-content;
	line-height: 1.7;
    align-items: center;
	margin-bottom: 12px;
	font-family: var(--irohamaru);
}
.post__date::after {
	content: "";
	width: 1.5rem;
	height: 1.5rem;
	background: url(../../../../uploads/2024/12/icon_calendar.png) center / 100% no-repeat;
	display: block;
	margin-right: 2px;
}
.ico--new::before {
	border-radius: 50% 50% 50% 0;
	right: -2.1875rem;
	top: -.9375rem;
}
.post__title {
	font-family: var(--irohamaru);
	font-size: var(--fs-24);
	line-height: 1.4;
	letter-spacing: 0.2em;
	padding-bottom: 4px;
	border-bottom: 1px dashed var(--font-color);
	margin-bottom: 24px;
}
.post__text {
	line-height: 1.5;
}
.section--overview {
	padding: 128px 8% 96px 8%;
	position: relative;
}
.section--overview .section__title__outer {
	position: absolute;
	left: 0;
	right: 0;
	top: -72px;
	margin: auto;
}
.def {
	display: flex;
	flex-wrap: wrap;
	counter-reset: number 0;
}
.def__title {
	margin-bottom: 32px;
	font-family: var(--irohamaru);
	font-weight: 500;
	width: 31%;
	padding: 8px 8px 8px 0;
	box-sizing: border-box;
}
.def__title::before {
	counter-increment: number 1;
    content: counter(number) "";
    display: inline-block;
    margin-right: 1em;
    border: 1px solid;
    border-radius: 50%;
    line-height: .8125rem;
    font-size: .8125rem;
    width: .8125rem;
    height: .8125rem;
    text-align: center;
}
.def__data {
	margin-bottom: 32px;
	width: 69%;
	padding: 8px 8px 8px 32px;
	border-left: 1px solid #333;
	box-sizing: border-box;
}
.link--orange {
	margin: auto;
}
/*----------------------------
	media query
-----------------------------*/
@media screen and (max-width: 768px){
	.post {
		padding: 48px 15px;
	}
	.post__date {
		font-size: var(--fs-14);
	}
	.post__title {
		font-size: var(--fs-20);
	}
	.section--overview {
		padding: 80px 15px;
	}
	.def__title {
		width: 100%;
		margin-bottom: 8px;
		padding: 0;
	}
	.def__data {
		width: 100%;
		font-size: var(--fs-14);
		border-left: none;
		padding: 0;
	}
}