@charset "UTF-8";
/* CSS Document */
/* mainArea
================================================== */
#mainArea {
	padding: 20px 0 0;
}
#mainTit {
	max-width: 1080px;
	margin: 0 auto;
	padding: 5% 5% 5%;
}
@media screen and (max-width: 639px) {
	#mainTit {
		padding: 15% 5% 15%;
	}
}
#mainTit h1 {
	font-size: 300%;
	padding-bottom: 3%;
	font-weight: 400;
	color: #cc0000;
	border-bottom: solid 5px #ddd;
	position: relative;
}
#mainTit h1:after {
	position: absolute;
	content: "";
	display: block;
	border-bottom: solid 5px #cc0000;
	bottom: -5px;
	width: 30%;
	transform: translateX(0);
	animation: border_anim 1.5s linear forwards;
}
@keyframes border_anim {
  0%{
    width: 0%;
  }
  100%{
    width: 30%;
  }
}
@media screen and (max-width: 1000px) {
	#mainTit h1 {
		font-size: 4.5vw;
	}
}
@media screen and (max-width: 639px) {
	#mainTit h1 {
		font-size: 160%;
	}
}
/* contentArea
================================================== */
.contentArea {
	max-width: 1080px;
	margin: 0 auto;
	padding: 3% 5% 7%;
}
.contentArea h2 {
	font-size: 160%;
	line-height: 160%;
	font-weight: 500;
	padding-bottom: 3%;
}
@media screen and (max-width: 1000px) {
	.contentArea h2 {
		font-size: 2.5vw;
	}
}
@media screen and (max-width: 639px) {
	.contentArea h2 {
		font-size: 4vw;
		padding-bottom: 5%;
	}
}
/* LRBox
================================================== */
.LRBox {
	padding: 0 0 8%;
}
.LRBox .fLeft {
	width: 20%;
}
.LRBox .fRight {
	width: 75%;
}
@media screen and (max-width: 639px) {
	.LRBox {
		padding: 5% 0 10%;
	}
	.LRBox .fLeft {
		float: none;
		width: 60%;
		margin: 0 auto;
		padding-bottom: 5%;
	}
	.LRBox .fRight {
		width: 100%;
	}
}
.LRBox .fRight p {
	padding-bottom: 3%;
}
@media screen and (max-width: 639px) {
	.LRBox .fRight p {
		padding-bottom: 5%;
	}
}
/* kakomi
================================================== */
.kakomi {
	padding: 3% 3% 0;
	margin-bottom: 3%;
	background-color: #F6F4F5;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
@media screen and (max-width: 639px) {
	.kakomi {
		padding: 5% 5% 0;
		margin-bottom: 5%;
	}
}
/* TxtBox
================================================== */
.TxtBox {
	padding: 0 0 8%;
}
@media screen and (max-width: 639px) {
	.TxtBox {
		padding: 5% 0 10%;
	}
}
.TxtBox li,
.TxtBox h3,
.TxtBox ol.type3 {
	padding-bottom: 3%;
}
@media screen and (max-width: 639px) {
	.TxtBox li,
	.TxtBox h3,
	.TxtBox ol.type3 {
		padding-bottom: 5%;
	}
}
.TxtBox p {
	padding: 0 1em 3%;
}
@media screen and (max-width: 639px) {
	.TxtBox p {
		padding: 0 1em 5%;
	}
}
.TxtBox p.RTxt {
	text-align: right;
	font-weight: 500;
	font-size: 80%;
}
.TxtBox h3,
.TxtBox h4 {
	font-weight: 500;
}
.TxtBox ol {
	margin: 0;
}
.TxtBox ol.styleNone li {
	list-style: none;
}
.TxtBox ol.type2 li {
	list-style: lower-alpha;
}
.TxtBox ol.type3 li {
	list-style: disc;
	padding-bottom: 0;
}
.innerTxtBox {
	padding: 0 1em;
}
/* contentArea
================================================== */
.contentArea {
	max-width: 1080px;
	margin: 0 auto;
	padding: 3% 5% 7%;
}
/* bottomTit
================================================== */
.bottomTit {
	margin: 10% 0 5%;
}
@media screen and (max-width: 639px) {
	.bottomTit {
		margin: 15% 0 5%;
	}
}
.bottomTit h2 {
	font-size: 120%;
	font-weight: 500;
	line-height: 100%;
	display: flex;
	align-items: center;
}
.bottomTit h2:after {
	border-top: 5px double #444;
	content: "";
	flex-grow: 1;
	margin-left: 2%;
}

@media screen and (max-width: 639px) {
	.bottomTit h2 {
		font-size: 100%;
	}
}
/* messageArea
================================================== */
#messageArea {
	background-color: #fff;
	box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.16);
}
.messageImgBox {
	float: left;
	width: 50%;
	overflow: hidden;
}
@media screen and (max-width: 700px) {
	.messageImgBox {
		float: none;
		width: 100%;
	}
}
.messageImgBox:hover img {
	width: 100%;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.messageImgBox img {
	width: 100%;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	-webkit-transition-property: background, border, color, fill, content, opacity, -webkit-transform;
	transition-property: background, border, color, fill, content, opacity, -webkit-transform;
	transition-property: background, border, color, transform, fill, content, opacity;
	transition-property: background, border, color, transform, fill, content, opacity, -webkit-transform;
}
#messageTxtBox {
	float: right;
	width: 50%;
}
@media screen and (max-width: 700px) {
	#messageTxtBox {
		float: none;
		width: 100%;
	}
}
.messageTxtTitBox {
  padding: 2% 5%;
  border-bottom: 1px solid #b20000;
}
.messageTxtTitBox h3{
	font-size: 80%;
}
.messageTxtTitBox p{
	font-size: 130%;
	font-weight: 500;
}
.messageLeadBox {
  padding: 2% 5% 5%;
}
.messageLeadBox p{
  padding: 0 0 5%;
	line-height: 200%;
}
.messageBtn {
	position: relative;
	display: inline-block;
	border: solid 1px #222;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	line-height: 2px%;
}
.messageBtn:hover {
	border: solid 1px #b20000;
	transition: .3S;
	-webkit-transition: .3s;
}
.messageBtn a {
	padding: 5px 25px 5px 35px;
	color: #222;
	display: block;
	font-size: 80%;
	font-weight: 500;
}
.messageBtn:hover a {
	transition: .3S;
	-webkit-transition: .3s;
	color: #fff;
	background-color: #b20000;
}
.messageBtn .btn-border:before {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: .3s;
	transition: .3s;
	font-family: 'Material Symbols Outlined';
	content: "\eaaa";
	-webkit-transform: translateX(10px) translateY(5px);
	transform: translateX(10px) translateY(5px);
}
.messageBtn:hover .btn-border:before {
	-webkit-transform: translateX(16px) translateY(5px);
	transform: translateX(16px) translateY(5px);
	color: #fff;
}
/* contentBlock
================================================== */
.contentBlock {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
/* contentBoxArea
================================================== */
#contentBoxArea {
	padding-top: 5%;
}
.contentBox {
	box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.16);
	max-width: 30%;
	margin-bottom: 3.33%;
	text-align: left;
	background: #fff;
}
.contentBox:not(:nth-child(3n+3)) {
	margin-right: 5%;
}
@media screen and (max-width: 700px) {
	.contentBox {
		max-width: 48%;
		margin-bottom: 4%;
	}
	.contentBox {
		width: 100%;
		padding: 0;
	}
	.contentBox:not(:nth-child(3n+3)) {
		margin-right: 0;
	}
	.contentBox:nth-child(2n) {
		margin-left: 4%;
	}
}
.contentBox a {
	display: block;
	color: #222;
	-webkit-transition: all 500ms;
	transition: all 500ms;
}
.contentBox a:hover {
	color: #fff;
	background: #cc0000;
}
.contentBox a:hover .contentBoxImg img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}
.contentBoxImg {
	overflow: hidden;
}
.contentBoxImg img {
	-webkit-transition: all 500ms;
	transition: all 500ms;
	width: 100%;
}
.contentBoxTit {
	letter-spacing: 0;
	padding: 26px 16px;
	font-weight: 500;
}
@media screen and (max-width: 700px) {
	.contentBoxTit {
		font-size: 90%;
	}
}


