@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.content {
	margin:0 auto;
	width: 950px;
	text-align: left;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 25px;
		width: auto;
	}
}
/*------------------------------------------------------------
	h2
------------------------------------------------------------*/
h2 {
	position: relative;
	color: #299EAC;
	font-size: 2.6rem;
	font-weight: 900;
	line-height: 1.35;
	text-align: center;
	overflow: hidden;
}
h2 span {
	display: inline-block;
}
h2 span::before,
h2 span::after {
	width: 100%;
	height: 9px;
	position: absolute;
	top: 50%;
	background: url("../../img/index/line01.png") no-repeat left center / 329px 9px;
	transform: translateY(-50%);
	content: "";
}
h2 span::before {
	left: 0;
}
h2 span::after {
	right: 0;
	background: url("../../img/index/line02.png") no-repeat right center / 329px 9px;
}
@media all and (max-width: 896px) {
	h2 {
		font-size: 1.8rem;
	}
	h2 span::before,
	h2 span::after {
		width: 19%;
		height: 6px;
		background: url("../../img/index/line01.png") no-repeat right center / 329px 6px;
	}
	h2 span::after {
		background: url("../../img/index/line02.png") no-repeat left center / 329px 6px;
	}
}
@media all and (max-width: 374px) {
	h2 {
		font-size: 1.4rem;
	}
	h2 span::before,
	h2 span::after {
		width: 15%;
	}
}
/*------------------------------------------------------------
	comTitle
------------------------------------------------------------*/
.comTitle {
	color: #299EAC;
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 1.74;
	text-align: center;
}
.comTitle span {
	padding: 0 9px;
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.comTitle span:not(:first-child) {
	margin-top: -17px;
}
.comTitle span::before {
	width: 100%;
	height: 3px;
	position: absolute;
	left: 0;
	bottom: 7px;
	background-color: #299EAC;
	transform: translateX(-101%);
	content: "";
}
.comTitle span.on::before  {
	animation-name: slideIn;
	animation-timing-function: ease;
	animation-duration: 1.0s;
	animation-fill-mode: both;
}
@keyframes slideIn {
    0% {
        transform: translateX(-101%);
    }
    100% {
        transform: translateX(0);
    }
}
@media all and (max-width: 896px) {
	.comTitle {
		font-size: 2.3rem;
		line-height: 1.74;
	}
	.comTitle span {
		padding: 0;
	}
	.comTitle span:not(:first-child) {
		margin-top: -17px;
	}
	.comTitle span::before {
		height: 2px;
		bottom: 4px;
	}
	.comTitle span.on::before  {
		animation-name: slideIn;
		animation-timing-function: ease;
		animation-duration: 0.3s;
		animation-fill-mode: both;
	}
}
@media all and (max-width: 374px) {
	.comTitle {
		font-size: 1.8rem;
    }
}
/*------------------------------------------------------------
	comBlueBox
------------------------------------------------------------*/
.comBlueBox {
	padding: 85px 56px 46px;
	background: #299EAC url("../../img/common/icon01.png") no-repeat center -1px / 60px 36px;
}
.comBlueBox .effortUl {
	margin-top: -34px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.comBlueBox .effortUl > li {
	margin-top: 34px;
	width: 385px;
}
.comBlueBox .effortUl > li:nth-child(2n) {
	width: 363px;
	position: relative;
}
.comBlueBox .effortUl > li:nth-child(2n)::before {
	width: 1px;
	height: 215px;
	position: absolute;
	top: 4px;
	left: -56px;
	background-color: #fff;
	content: "";
}
.comBlueBox .effortUl > li p {
	color: #fff;
	font-weight: 500;
	line-height: 1.95;
}
.comBlueBox .effortUl > li .ttl {
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	color: #FFF39B;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.65;
}
.comBlueBox .effortUl > li .ttl span {
	margin-right: 15px;
	width: 68px;
	height: 68px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #299EAC;
	font-size: 3.5rem;
	line-height: 1;
	border-radius: 50%;
	background-color: #FFF39B;
	transform: translateY(5px);
	overflow: hidden;
}
.comBlueBox .effortUl > li .ttl small {
	font-size: 1.5rem;
}
.comBlueBox .effortUl > li .notes {
	margin-top: 7px;
	font-size: 1.2rem;
	line-height: 1.67;
}
.comBlueBox .effortUl > li .ttl span::before {
	width: 100px;
	height: 200px;
	position: absolute;
	right: 200px;
	top: 50%;
	background-color: #fff;
	opacity: 0.8;
	transform: rotate(30deg) translateY(-50%);
	transition: 3s;
	content: "";
}
.comBlueBox .effortUl > li .ttl span.on::before {
	right: -200px;
}
@media all and (max-width: 896px) {
	.comBlueBox {
		padding: 60px 23px 40px;
		background: #299EAC url("../../img/common/icon01.png") no-repeat center -12px / 60px 36px;
	}
	.comBlueBox .effortUl {
		margin-top: -34px;
		display: block;
	}
	.comBlueBox .effortUl > li {
		margin-top: 34px;
		padding-bottom: 35px;
		width: auto;
		border-bottom: 1px solid #fff;
	}
	.comBlueBox .effortUl > li:last-child {
		padding-bottom: 0;
		border-bottom: none;
	}
	.comBlueBox .effortUl > li:nth-child(2n) {
		width: auto;
	}
	.comBlueBox .effortUl > li:nth-child(2n)::before {
		display: none;
	}
	.comBlueBox .effortUl > li .ttl {
		margin: 0 -13px 9px;
		flex-direction: column;
		text-align: center;
	}
	.comBlueBox .effortUl > li .ttl span {
		margin: 0 0 14px;
	}
	.comBlueBox .effortUl > li .notes {
		margin-top: 7px;
		font-size: 1.2rem;
		line-height: 1.67;
	}
	.comBlueBox .effortUl > li .ttl span::before {
		width: 100px;
		height: 200px;
		position: absolute;
		right: 200px;
		top: 50%;
		background-color: #fff;
		opacity: 0.2;
		transform: rotate(30deg) translateY(-50%);
		transition: 0.5s;
		content: "";
	}
	.comBlueBox .effortUl > li .ttl span.on::before {
		right: -200px;
	}
}
@media all and (max-width: 374px) {
	.comBlueBox .effortUl > li .ttl {
		font-size: 1.6rem;
	}
	.comBlueBox .effortUl > li p {
		font-size: 1.4rem;
	}
}