@charset "UTF-8";
/* CSS Document */
/*=================================
pagecommon
=================================*/
.sectionText,
.sectionTitle{text-align: center;}

/*=================================
aboutArea
=================================*/
.aboutArea .sectionText,
.aboutArea .sectionTitle{text-align: left;}

/*=================================
meritArea
=================================*/
.case{
	margin-top: 80px;
}
.case h4{
	text-align: center;
	font-size: 2rem;
	font-weight: 400;
	margin-bottom: 40px;
}
.case .slide-item{
    position: relative;
	margin: 0 15px;
}
.case .slide-item::before{
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 1px;
	background: rgba(105,191,177,.5);
}
.case .count{
	background: #fff;
	color: #69bfb1;
	font-size: 1.4rem;
	padding-right: 15px;
}
.case .num{
	color: #69bfb1;
	margin-left: 5px;
	font-size: 3.6rem;
}
.case p{
	font-family: YakuHanMP_Noto, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
	margin-top: 15px;
	font-size: 1.8rem;
	padding-bottom: 15px;
    border-bottom: 1px solid rgba(105,191,177,.25);
}
@media only screen and (max-width: 1440px) {}
@media only screen and (max-width: 1240px) {}
@media only screen and (max-width: 991px) {}
@media only screen and (max-width: 767px) {}
@media only screen and (max-width: 320px) {}
/*ie*/
@media all and (-ms-high-contrast: none) {
}


/*=================================
flowArea
=================================*/
.flowList{
	display: flex;
}
.flowList li{
	position: relative;
	padding: 50px 15px;
	width: 20%;
	transition: all .6s ease-in-out;
	opacity: 0;
	transform: translateX(-30px);
	background: #fafffe;
}
.flowList li.inview{
	opacity: 1;
	transform: translateX(0);
}
.flowList li .count{
	display: block;
    margin: 0 auto;
    text-align: center;
}
.flowList li .num{
	font-size: 4.8rem;
    display: block;
    line-height: 1.4;
}
.flowList li figure{
	width: 100%;
	max-width: 160px;
    display: flex;
    align-items: center;
	margin: 30px auto 15px;
}
.flowList li figure img{
	width: 100%;
}
.flowList li:nth-child(2) figure{max-width: 150px;}
.flowList li:nth-child(3) figure{max-width: 70px;}
.flowList li:nth-child(5) figure{max-width: 140px;}
.flowList li:nth-child(even){
	background: #edf8f6;
}

.flowArea .consultantFormBtn{
	max-width: 350px;
	margin: 50px auto 30px;
	background: #e23636;
	transition: .5s;
	box-shadow: 0px 0px 4px 2px #dadada;
}
.flowArea .consultantFormBtn:hover{opacity: 0.8;}
.flowArea .consultantFormBtn a{
    text-decoration: none;
    padding: 25px 15px 15px;
    text-align: center;
    color: #ffffff;
    display: inline-block;
    width: 100%;
    font-size: 20px;
}

.flowArea .consultantFormBtn span{
	position: relative;
    display: inline-block;
	padding-bottom: 10px;
}

.flowArea .consultantFormBtn span::before{
	content: "";
	background: #ffffff;
	position: absolute;
	 bottom: 0;
	 right: 0; 
	width: 0%;
	height: 1px;
	transition: all .3s ease;
}

.flowArea .consultantFormBtn:hover span::before{
	left: 0%;
	right: auto;
	width: 100%;
}

@media only screen and (max-width: 1024px) {
	.flowList li{
		opacity: 1;
		transform: translateX(0);
	}
}
@media only screen and (max-width: 991px) {
	.flowArea .container{overflow: hidden;}
	.flowList {width: 1100px;}
	.flowList li {
		width: 200px;
	}
}
@media only screen and (max-width: 767px) {
	.flowList li {
		padding: 30px 15px;
	}
	.flowList li figure {max-width: 110px;margin: 15px auto;}
	.flowList li:nth-child(2) figure {max-width: 120px;}
	.flowList li:nth-child(3) figure {max-width: 50px;}
	.flowList li:nth-child(5) figure {max-width: 100px;}
}

/*=================================
checkArea
=================================*/
.checkArea .sectionWrap.bgGray{
	background: rgb(226 242 239);
}
 .checkList li{
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 30px;
}
 .checkList li+li{
	 border-top: 3px solid #e2f2ef;
}
.checkList li:nth-child(odd){background: #fafffe;}
.checkList li:nth-child(even){background: #edf8f6}
.checkList li h4{
	position: relative;
    font-size: 2rem;
    font-weight: 400;
    padding: 20px 15px 20px 45px;
    width: 40%;
	border-right: 3px solid #e2f2ef;
	color: #69bfb1;
}
.checkList li h4::before{
	content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid #69bfb1;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
	z-index: 1;
	opacity: .5;
	transition: all .4s .2s ease-in-out;
}
.checkList li h4::after{
	content: "check";
	vertical-align: text-top;
	margin: 0 5px 0 0;
	font-size: 20px;
	font-family: "Material Icons";
	position: absolute;
    top: 50%;
    left: 0;
	transition: all .6s ease-in-out; 
    transform: translateY(-100%);
	z-index: 2;
	opacity: 0;
}
.checkList li.inview h4::after{
    transform: translateY(-50%);
	opacity: 1;
	color: #fff;
}
.checkList li.inview h4::before{
	opacity: 1;
	background: #69bfb1;
}
.checkList li p{
	padding-left: 30px;
}
.checkArea small{
    margin-top: 5px;
    display: block;
    text-align: right;
    font-size: 1.1rem;	
}
@media only screen and (max-width: 991px) {
	.checkList li h4 {width: 60%;}
	.checkList li p {width: 40%;}
}
@media only screen and (max-width: 767px) {
	.checkList li {
		flex-wrap: wrap;
		padding: 0 15px;
	}
	.checkList li h4 {
		width: 100%;
		padding: 15px 15px 15px 45px;
		border-right: none;
	}
	.checkList li p {
		padding: 15px 15px 15px 30px;
		border-top: 1px solid rgba(0,0,0,.15);
		line-height: 1.4;
		width: 100%;
	}
}

/*=================================
prchaseArea
=================================*/
.prchaseList{
	margin-top: 50px;
}
.prchaseArea .info {
    margin-top: 15px;
}
.prchaseArea .info .name{
    font-size: 1.6rem;
	line-height: 1.4;
}
.prchaseArea .info .address{
	color: #403b38;
}

.prchaseList li:nth-child(n+5){
	margin-top: 45px;
}
@media only screen and (max-width: 991px) {
	.prchaseList li:nth-child(n+4){
		margin-top: 45px;
	}
}
@media only screen and (max-width: 767px) {
	.prchaseList li:nth-child(n+3){
		margin-top: 45px;
	}
	.prchaseList li{
		padding-right: 5px;
		padding-left: 5px;
	}	
}