@charset "UTF-8";

.page-content {
    padding: 0;
    background: transparent;
}

/* flow */
.area-flow {
    position: relative;
    z-index: 1;
}

.area-flow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    background: #fff;
    width: 100%;
}

.flow-list {
	position: relative;
}

.flow-list > li {
    position: relative;
}

.flow-list > li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    -webkit-transform: translate(50%, 50%);
            transform: translate(50%, 50%);
    color: #182986;
}

.flow-list > li:last-child:before {
    display: none;
}

.flow-list__box {
	background: #fff;
}

.flow-list__head {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.flow-list__num {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding-top: .25em;
	border-radius: 50%;
	background: #182986;
	color: #fff;
	font-weight: 500;
	line-height: 1.1;
}

.flow-list__num .num {
	font-size: 1.833em;
	font-weight: 600;
}

.flow-list__ttl {
    line-height: 1.3;
	text-align: center;
}

.flow-list__img {
    overflow: hidden;
}

/* cta */
.area-line {
    position: relative;
    background: #0072be url("../image/bg_cta.jpg") 50% 50% no-repeat;
	background-size: cover;
    color: #fff;
}

.area-line::before,
.area-line::after {
    content: "";
    position: absolute;
    right: 0;
    display: block;
}

.area-line::before {
    top: 0;
    height: 100%;
    background: #fff;
}

.area-line::after {
    bottom: 0;
    height: 52.2%;
    background: #f2f3f4;
}

.area-line__cont {
    max-width: 846px;
    margin: 0 auto;
    background: #fff;
    color: #111a24;
    text-align: center;
}

.area-line__ttl {
    border-bottom: solid 1px;
    color: #182986;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.area-line__txt {
    font-weight: 700;
    letter-spacing: 0.05em;
}

.area-line__link a {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 374px;
    width: 100%;
    padding-right: 1em;
    border-radius: 3em;
    background: #00b900;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.area-line__link a .m-icon {
    margin-right: .6em;
}

/* point */
.area-point {
    background: #f2f3f4;
}

.area-point__ttl {
    color: #182986;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.area-point__cont {
    border: solid 1px #182986;
    background: #fff;
}

.area-point__check {
    position: relative;
    color: #182986;
    font-weight: 700;
    line-height: 1.4;
}

.area-point__check::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}

.area-point__list > div > dt {
    margin-bottom: 10px;
}

.area-point__list > div > dd {
    line-height: 1.75;
}


@media screen and (min-width: 900px) {

    /* flow */
    .area-flow {
        padding-top: 90px;
    }

    .area-flow::before {
        bottom: 108px;
    }

    .flow-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
        width: 100%;
        margin-bottom: -108px;
	}

	.flow-list > li {
		width: 30.666%;
		margin-top: 28px;
	}

    .flow-list > li::before {
        content: "\f054";
        right: -24px;
        bottom: 50%;
        font-size: 30px;
    }

	.flow-list__box {
		border-radius: 10px;
		-webkit-box-shadow: 5px 5px 5px rgba(34,34,34,.05);
		        box-shadow: 5px 5px 5px rgba(34,34,34,.05);
	}

	.flow-list__head {
		height: 108px;
	}

	.flow-list__num {
		left: 15px;
		top: -32px;
		width: 65px;
		height: 65px;
		font-size: 12px;
	}

	.flow-list__ttl {
		padding-top: 14px;
		font-size: 20px;
		letter-spacing: 0.05em;
	}

    .flow-list__img {
        border-radius: 0 0 10px 10px;
    }

    /* line */
	.area-line {
		padding: 170px 0 100px;
	}

    .area-line::before,
    .area-line::after {
        width: 80px;
    }

    .area-line__cont {
        padding: 42px 28px 55px;
		border-radius: 10px;
	}

	.area-line__ttl {
        padding-bottom: 12px;
		margin-bottom: 7px;
		font-size: 34px;
	}

    .area-line__txt {
        font-size: 20px;
    }

    .area-line__link {
        margin-top: 18px;
    }

    .area-line__link a {
        height: 80px;
        font-size: 18px;
    }
    
    .area-line__pic {
		position: absolute;
        z-index: 1;
		right: -62px;
        bottom: -45px;
	}

	.area-line__pic.scroll-active {
		-webkit-transform: translate(0, 50%);
		        transform: translate(0, 50%);
		opacity: 0;
		-webkit-transition: .8s;
		transition: .8s;
	}

	.area-line__pic.scroll-active.active {
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
		opacity: 1;
	}

    /* point */
    .area-point {
        padding: 85px 0 150px;
    }

    .area-point__ttl {
        margin-bottom: 23px;
        font-size: 32px;
    }

    .area-point__cont {
        padding: 35px;
        border-radius: 10px;
    }

    .area-point__check {
        padding-left: 28px;
        font-size: 20px;
    }
    
    .area-point__check + dd {
        padding-left: 28px;
    }
    
    .area-point__list > div {
        margin-bottom: 23px;
    }

}

@media screen and (max-width: 899px) {

    /* flow */
    .area-flow {
        padding-top: 60px;
    }

    .area-flow::before {
        bottom: 80px;
    }

    .flow-list {
        margin-bottom: -80px;
	}

    .flow-list > li {
        margin-top: 30px;
    }

	.flow-list > li + li {
		margin-top: 60px;
	}

    .flow-list > li::before {
        content: "\f078";
        right: 50%;
        bottom: -25px;
        font-size: 20px;
    }

	.flow-list__box {
		border-radius: 7px;
		-webkit-box-shadow: 5px 5px 5px rgba(34,34,34,.05);
		        box-shadow: 5px 5px 5px rgba(34,34,34,.05);
	}

	.flow-list__head {
		height: 108px;
	}

	.flow-list__num {
		left: 15px;
		top: -32px;
		width: 65px;
		height: 65px;
		font-size: 12px;
	}

	.flow-list__ttl {
		padding-top: 14px;
		font-size: 18px;
		letter-spacing: 0.05em;
	}

    .flow-list__img {
        border-radius: 0 0 7px 7px;
    }

    /* line */
	.area-line {
		padding: 115px 0 40px;
	}

    .area-line::before,
    .area-line::after {
        width: 3%;
    }

    .area-line__cont {
        padding: 25px 6%;
        border-radius: 7px;
    }

	.area-line__ttl {
		padding-bottom: 10px;
		margin-bottom: 10px;
		font-size: 22px;
		font-size: min(5.87vw, 28px);
	}

    .area-line__link {
        margin-top: 18px;
    }

	.area-line__link a {
        height: 70px;
        font-size: 16px;
    }

    .area-line__link a .m-icon {
        width: 24px;
    }

    .area-line__pic {
		position: absolute;
        z-index: 1;
		right: -5%;
		bottom: -20px;
		-webkit-transform: scale(.4);
		        transform: scale(.4);
		-webkit-transform-origin: right bottom;
		        transform-origin: right bottom;
	}

	.area-line__pic.scroll-active {
		-webkit-transform: translate(0, 50%) scale(.4);
		        transform: translate(0, 50%) scale(.4);
		opacity: 0;
		-webkit-transition: .8s;
		transition: .8s;
	}

	.area-line__pic.scroll-active.active {
		-webkit-transform: translate(0, 0) scale(.4);
		        transform: translate(0, 0) scale(.4);
		opacity: 1;
	}

    /* point */
    .area-point {
        padding: 40px 0 70px;
    }

    .area-point__ttl {
        margin-bottom: 18px;
        font-size: 24px;
		font-size: min(6.4vw, 32px);
    }

    .area-point__cont {
        padding: 25px 7%;
        border-radius: 7px;
    }

    .area-point__check {
        padding-left: 24px;
        font-size: 18px;
    }
    
    .area-point__check + dd {
        padding-left: 24px;
    }
    
    .area-point__list > div {
        margin-bottom: 18px;
    }

}