/* +++++++++breadcrumb+++++++++ */
.breadcrumb.adjust {
	top: 80px;
	background-color: unset;
}
.breadcrumb.adjust li a,
.breadcrumb.adjust li span,
.breadcrumb.adjust li span::before {
	color: #1e1e1e;
}



@media only screen and (min-width: 769px) {
	.breadcrumb.adjust {
		top: 90px;
	}
}

/* +++++++++news-detail+++++++++ */
.news-detail {
	padding-top: 160px;
	padding-bottom: 80px;
}
.news-detail .post-inner {
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}
/*
.news-detail .post-intro {
	border-bottom: 4px solid var(--color01);
	padding-bottom: 20px;
}
*/
.news-detail .post-intro {
	position: relative;
	padding-bottom: 20px;
}
.news-detail .post-intro::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--color01);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .8s ease;
}
.news-detail .post-intro.is-active::before {
	transform: scaleX(1);
}
.news-detail .post-intro p {
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 2.2;
}
.news-detail .post-intro h1 {
	font-size: 2.4rem;
	font-weight: 700;
	margin-top: 16px;
	line-height: 1.5;
}
.news-detail .post-content {
	position: relative;
	margin-top: 40px;
}
.news-detail .post-text {
	width: 100%;
	padding-left: 0;
	overflow: hidden;
}
.news-detail .post-text p {
	/*margin-top: 24px;*/
	font-size: 1.5rem;
	line-height: 2;
}
/*
.news-detail .post-text p:first-child {
	margin-top: 0;
}
*/
.news-detail .post-text a {
	text-decoration: underline;
	color: var(--color01);
	word-wrap: break-word;
}
.news-detail .post-text a:hover {
	opacity: .5;
}
.news-detail .post-text .swipe {
	display: block;
	text-align: center;
}



@media only screen and (min-width: 769px) {
	.news-detail {
		padding-top: 170px;
		padding-bottom: 113px;
	}
	.news-detail .post-intro h1 {
		font-size: 3.2rem;
	}
	.news-detail .post-text p {
		/*margin-top: 20px;*/
		font-size: 1.6rem;
	}
}