@charset "utf-8";

.contentBlock {
	width: 100%;
	margin: 0;
	padding: 0;
}

.contentBlock h1 {
	margin: 0 0 0.5em 0;
	padding: 0;
}

.contentBlock h2 {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

.contentBlock img {
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}

.contentBlock p {
	margin-bottom: 2em;
	text-align: justify;
}

.titleBlock {
	display: block;
	margin-bottom: 2em;
	background-image: url(img/title_bg.png);
	background-size: cover;
	padding: 30px;
}

.imgBlock {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-bottom: 2em;
}

.contentBlock hr {
	margin-bottom: 2em;
}

.hr-text {
	line-height: 1em;
	position: relative;
	outline: 0;
	border: 0;
	color: black;
	text-align: center;
	height: 1.5em;
	opacity: .5;
}
.hr-text:before {
	content: '';
	background: -webkit-linear-gradient(left, transparent, #818078, transparent);
	background: linear-gradient(to right, transparent, #818078, transparent);
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
}
.hr-text:after {
	content: attr(data-content);
	position: relative;
	display: inline-block;
	color: black;
	padding: 0 .5em;
	line-height: 1.5em;
	color: #818078;
	background-color: #fcfcfa;
}


.messageBlock {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr ;
}

.messageBox {
	display: block;
	border: 2px solid #cccccc;
	border-radius: 10px;
	padding: 16px;
}
.messageBox > p {
	text-align: justify;
}

.faceName {
	display: flex;
	gap: 8px;
}

.normalLink {
	display: block;
	width: 100%;
	box-sizing: border-box;
	border-radius: 5px;
	border: 1px solid #1895d3;
	padding: 1em;
	line-height: 1em;
	font-weight: bold;
	text-align: center;
	color: #ffffff;
	background-color: #1895d3;
	cursor: pointer;
}
.normalLink:link {
	color: #ffffff;
	background-color: #1895d3;
}
.normalLink:visited {
	color: #ffffff;
	background-color: #1895d3;
}
.normalLink:hover {
	color: #ffffff;
	background-color: #82c6e0;
}
.normalLink:active {
	color: #ffffff;
}

.space {
	margin-bottom: 2em;
}