@charset "utf-8";

.lowerLayer .mainContentWrap {
	padding-bottom: 100px;
}
@media (max-width: 768px) {
	.lowerLayer .mainContentWrap.bgGray.spWhite {
		padding-bottom: 13.333vw;
		background: var(--whiteColor);
	}
}

/* lowerLayerContent */
section.lowerLayerContent {
	max-width: 1020px;
	margin: 0 auto;
	padding: 20px 30px 0;
}
section.lowerLayerContent + section.lowerLayerContent {
	padding-top: 50px;
}
@media (max-width: 768px) {
	section.lowerLayerContent {
		padding: 0;
		margin: 0 -4vw;
	}
	section.lowerLayerContent + section.lowerLayerContent {
		padding-top: 0;
	}
}

.lowerLayer .innerBox {
	background: var(--whiteColor);
	padding: 60px;
	border-radius: 20px;
	box-shadow: 0 0 8px 0 rgba(0,0,0,0.07);
}
@media (max-width: 768px) {
	.lowerLayer .innerBox {
		padding: 30px 5.333vw 0;
		border-radius: 0;
		box-shadow: none;
	}
}

/* articleTtlWrap */
.lowerLayer .articleTtlWrap {
	padding-bottom: 25px;
	margin-bottom: 45px;
	border-bottom: 1px solid var(--grayBorderColor);
}
.lowerLayer .articleTtlWrap .iconWrap {
	margin-bottom: 15px;
	display: flex;
	align-items: flex-end;
	gap: 0 10px;
}
.lowerLayer .articleTtlWrap .iconWrap span {
	font-size: 12px;
	color: var(--whiteColor);
	display: inline-block;
	width: 64px;
	text-align: center;
	line-height: 1;
	padding: 3px 0 4px;
}
.lowerLayer .articleTtlWrap .iconWrap .iconRed span {
	background: var(--redColor);
}
.lowerLayer .articleTtlWrap .iconWrap .iconGray span {
	background: var(--grayColor);
}
.lowerLayer .articleTtlWrap h1.articleTtl {
	font-size: 26px;
	font-weight: 600;
}
.lowerLayer .articleTtlWrap .date {
	margin-top: 15px;
	font-size: 14px;
}
@media (max-width: 768px) {
	.lowerLayer .articleTtlWrap {
		padding-bottom: 18px;
		margin-bottom: 25px;
	}
	.lowerLayer .articleTtlWrap .iconWrap {
		margin-bottom: 10px;
		gap: 0 10px;
	}
	.lowerLayer .articleTtlWrap .iconWrap span {
		font-size: 11.5px;
		width: 55px;
		padding: 3px 0 4px;
	}
	.lowerLayer .articleTtlWrap h1.articleTtl {
		font-size: 19px;
	}
	.lowerLayer .articleTtlWrap .date {
		margin-top: 10px;
		font-size: 12px;
	}
}


/* articleContent */
.lowerLayer .articleContent p {
	font-size: 16px;
	line-height: 1.7;
	text-align: justify;
}
.lowerLayer .articleContent p + p {
	margin-top: 20px;
}
.lowerLayer .articleContent p + div,
.lowerLayer .articleContent div + p {
	margin-top: 30px;
}
.lowerLayer .articleContent .pic {
	text-align: center;
	max-width: 540px;
	margin: 30px auto 0;
}
@media (max-width: 768px) {
	.lowerLayer .articleContent p {
		font-size: 14px;
	}
	.lowerLayer .articleContent p + p {
		margin-top: 15px;
	}
	.lowerLayer .articleContent p + div,
	.lowerLayer .articleContent div + p {
		margin-top: 20px;
	}
	.lowerLayer .articleContent .pic {
		max-width: 100%;
		margin: 20px auto 0;
	}
}
