@charset "UTF-8";
body {
	background: #E0D2D2;
}
#popuparea {
	position: relative;
	background: #fff;
	width: 80%;
	max-width: 800px;
	border-radius: 10px;
	margin: 40px auto 60px;
	padding: 80px 60px 10px;
	box-shadow: 0 0 15px rgba(0,0,0,0.2);
}
#popuparea img {
	max-width: 100%;
	height: auto;
}
#popuparea .page-title {
	margin: -40px 0 20px;
	padding: 0 40px 0 0;
	font-size: 0.9em;
	color: #888;
}
#popuparea .post-body h2 {
	font-weight: 700;
}
#popuparea .post-body h3 {
	font-weight: 700;
}
#popuparea .post-body h4 {
	font-weight: 700;
}
#popuparea .post-body p,
#popuparea .post-body ul,
#popuparea .post-body ol,
#popuparea .post-body table,
#popuparea .post-body figure,
#popuparea .post-body blockquote {
	margin-bottom: 20px;
}
#popuparea .footer {
	text-align: center;
	margin: 40px 0 30px;
}
#popuparea .footer .btn {
	width: 230px;
	border: 1px solid #888;
	border-radius: 30px;
	margin: 0 auto;
	cursor: pointer;
}
#popuparea .footer .btn a {
	display: block;
	color: #3E3E3E;
}
#popuparea .footer .logo {
	margin: 40px 0 0;
}
.close {
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}
.close::before,
.close::after {
	content: "";
	position: absolute;
	top: 20px;
	width: 40px;
	height: 2px;
	background: #333;
}
.close:before {
	transform: rotate(45deg);
}
.close:after {
	transform: rotate(-45deg);
}
.close a {
	display: block;
	width: 40px;
	height: 40px;
}
@media screen and (max-width:767px) {
	#popuparea {
		width: calc(100% - 60px);
		padding: 60px 20px 10px;
	}
	.close::before,
	.close::after {
		top: 10px;
		width: 20px;
		height: 2px;
	}
	.close a {
		width: 20px;
		height: 20px;
	}
}
/* post-body */
.post-body img {
	border-radius: 10px;
}
.post-body h2 {
	margin: 30px 0 20px;
	font-weight: bold;
	font-size: 30px;
}
.post-body h3 {
	margin: 30px 0 15px;
	font-size: 24px;
}
.post-body p {
	margin-bottom: 1.5em;
	line-height: 1.8;
	font-size: 17px;
}
.post-body .story-tit,
.post-body .message-tit {
	border-radius: 10px;
	padding: 10px 15px;
	font-size: 23px;
	position: relative;
}
.post-body .story-tit {
	background: #F8F4F4;
	border: solid 1px #E60012;
	color: #E60012;
}
.post-body .message-tit {
	background: linear-gradient(90deg,rgb(3, 110, 184), rgb(152, 197, 25));
	color: #fff;
}
.post-body .story-tit::before,
.post-body .message-tit::before {
	content: "";
    display: block;
	transform: rotate(45deg);
	position: absolute;
}
.post-body .story-tit::before {
	background: #F8F4F4;
	border-right: solid 1px #E60012;
	border-bottom: solid 1px #E60012;
	width: 14px;
    height: 14px;
    bottom: -8px;
    left: 30px;
}
.post-body .message-tit::before {
    border: solid 8px #036EB8;
	bottom: -8px;
    left: 30px;
}
.post-body .story ul {
	list-style: disc;
    padding-left: 1.5em;
}
.post-body .story h3 {
	background: #E60012;
	border-radius: 0 40px 40px 0;
	width: fit-content;
	margin: 20px 0 10px;
	padding: 5px 40px;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
}
.post-body .goal-box {
	background: linear-gradient(45deg, rgb(193, 223, 245), rgb(245, 252, 232));
	margin: 30px 0 0;
	padding: 15px 60px 20px;
}
.post-body .goal-box h3 {
	border-bottom: solid 1px #036EB8;
	padding-bottom: 10px;
	font-weight: bold;
	color: #036EB8;
}
.post-body .message-box {
	border: solid 2px #19A060;
	padding: 10px 30px;
}
.post-body .message-box h3 {
	margin-top: 15px;
	font-weight: bold;
	font-size: 1.3em;
	color: #19A060;
}
@media screen and (max-width: 767px) {
	.post-body.inner {
		max-width: 100%;
	}
	.post-body h2 {
		margin: 20px 0 10px;
		font-size: 22px;
	}
	.post-body h3 {
		margin: 15px 0 5px;
		font-size: 19px;
	}
	.post-body p {
		font-size: 15px;
	}
	.post-body .goal-box {
		padding: 10px 20px;
	}
	.post-body .message-tit {
		margin: 40px 0 20px;
	}
	.post-body .message-box {
		margin-top: -10px;
	}
}