@charset "utf-8";
/* CSS Document */
/*----------------------------------
	mv
------------------------------------*/
.line-lp .mv{
	background: #00a65b;
}
.line-lp .mv .inner{
	position: relative;
}
.line-lp .mv h1{
	margin-top: 0;
	width: 70%;
	padding-top: 3rem;
}
.line-lp .mv .img{
	position: absolute;
	top: 30px;
	right: 70px;
	width: 20%;
}
.line-lp .mv ul{
	display: flex;
	padding: 40px 35px;
	gap:15px;
}
.line-lp .mv ul li{
	color: #fff;
	font-weight: bold;
	font-size: 1.2rem;
	width: 23%;
}
.line-lp .mv ul li dt{
	border: 2px solid;
    border-radius: 50px;
    padding: 4px;
    text-align: center;
	position: relative;
}
.line-lp .mv ul li dt::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	border-style: solid;
	border-width: 12px 10px 0 10px;
	border-color: #ffffff transparent transparent;
	translate: -50% 100%;
}
.line-lp .mv ul li dt::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	border-style: solid;
	border-width: 8.9px 7.4px 0 7.4px;
	border-color: #00a65b transparent transparent;
	translate: -50% 100%;
}
.line-lp .mv ul li dd{
	color: #f4ec1b;
	margin: 20px 0;
	text-align: center;
}
.line-lp .mv ul li dd span{
	border-bottom: 2px solid;
}
.line-lp .mv ul li dd span em{
	font-size: 2.8rem;
	font-style: normal;
	margin-right: 5px;
}

@media all and (max-width: 768px) {
	.line-lp .mv h1{
		width: 63%;
	}
	.line-lp .mv .img{
		width: 30%;
		right: 1rem;
	}
	.line-lp .mv ul{
		flex-wrap: wrap;
		padding: 40px 0 15px;
		justify-content: center;
	}
	.line-lp .mv ul li{
		width: 47%;
	}
}

/*----------------------------------
	block1
------------------------------------*/
.line-lp .block1{
	display: flex;
	margin: 5rem 0 5.6rem;
}
.line-lp .block1 h3{
	text-align: center;
	font-size: 1.5rem;
	color: #fff;
	margin: 0 auto;
	width: 45%;
	border-radius: 0 0 15px 15px;
	padding: 7px 0;
	background: #00a65b;
	letter-spacing: 1.5px;
}
.line-lp .block1 h3 span{
	font-size: 1rem;
}
.line-lp .block1 .left{
	border: 4px solid #777777;
    border-radius: 20px;
	width: 48%;
	position: relative;
}
.line-lp .block1 .left h3{
	background: #777;
}
.line-lp .block1 .right{
	border: 4px solid #00a65b;
    border-radius: 20px;
	width: 48%;
	background: #fffaba;
	position: relative;
}
.line-lp .block1 .arrow{
	width: 6%;
	margin: 13rem 50px;
}
.line-lp .block1 ol{
	padding-left: 3rem;
	font-weight: bold;
	font-size: 1.2rem;
	counter-reset: number;
	list-style: none;
}
.line-lp .block1 .right ol{
	font-size: 1.4rem;
	color: #00a65b;
}
.line-lp .block1 ol li{
	position: relative;
	padding-left: 30px;
	line-height: 1.5em;
	padding: 0.5em 0.5em 0.5em 35px;
}
.line-lp .block1 ol li::before{
	position: absolute;
	counter-increment: number;
	content: counter(number);
	display:inline-block;
	background: #00a65b;
	color: #fff;
	font-weight:bold;
	font-size: 15px;
	border-radius: 50%;
	left: 0;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
  /*以下 上下中央寄せのため*/
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.line-lp .block1 .left ol li::before{
	background: #777;
}
.line-lp .block1 .left img,
.line-lp .block1 .right img{
	position: absolute;
	bottom: -8vw;
}

@media all and (max-width: 768px) {
	.line-lp .block1{
		flex-direction: column;
	}
	.line-lp .block1 h3{
		width: 60%;
	}
	.line-lp .block1 .left,
	.line-lp .block1 .right{
		width: 100%;
	}
	.line-lp .block1 .left img,
	.line-lp .block1 .right img{
		position: static;
		margin-bottom: -4px;
	}
	.line-lp .block1 .arrow{
		width: 12%;
		margin: 1rem auto;
		transform: rotate(90deg);
	}
	.line-lp .block1 ol{
		padding-left: 1rem;
	}
	.line-lp .block1 .right ol li::before{
		top: 1.7rem;
	}
}

/*----------------------------------
	point
------------------------------------*/
.line-lp .bg{
	background: #00a65b;
}
.line-lp .point{
	padding: 3rem 0;
}
.line-lp .point h2,
.line-lp .tool h2{
	text-align: center;
    color: #fff;
    font-size: 2.2rem;
}
.line-lp .point h2 span,
.line-lp .tool h2 span{
	color: #f4ec1b;
	font-size: 2.7rem;
}
.line-lp .point ul{
	display: flex;
	gap: 30px;
	margin-top: 4rem;
}
.line-lp .point ul li{
	background: #fff;
	border-radius: 15px;
	width: 30%;
	padding: 0 0 20px;
}
.line-lp .point ul li .num{
	background: #f4ec1b;
	border-radius: 50%;
    width: 70px;
    height: 70px;
    display: block;
    margin: -30px auto;
	color: #00a65b;
	font-weight: bold;
	position: relative;
}
.line-lp .point ul li .num span{
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width :70px;
	text-align: center;
}
.line-lp .point ul li .num span em{
	font-style: normal;
	font-size: 1.5rem;
	display: block;
}
.line-lp .point ul li dl{
	margin-top: 35px;
	text-align: center;
	padding: 0 30px;
}
.line-lp .point ul li dt{
	color: #00a65b;
	font-weight: bold;
	font-size: 1.3rem;
	border-bottom: 2px solid #00a65b;
	padding-bottom: 15px;
}
.line-lp .point ul li dd{
	margin: 0;
	font-weight: bold;
	padding-top: 15px;
	font-size: 1.3rem;
}
.line-lp .point ul li dd span{
	background: #f4ec1b;
}
.line-lp .point ul li dd span span{
	background: none;
}

@media all and (max-width: 768px) {
	.line-lp .point h2{
		font-size: 1.6rem;
	}
	.line-lp .point h2 span{
		font-size: 2.3rem;
	}
	.line-lp .point ul{
		flex-direction: column;
		row-gap: 50px;
	}
	.line-lp .point ul li{
		width: 100%;
	}
}

/*----------------------------------
	tool
------------------------------------*/
.line-lp .tool{
	position: relative;
	padding-bottom: 5rem;
}
.line-lp .tool h2{
	position: relative;
}
.line-lp .tool h2 span{
	display: block;
}
.line-lp .tool h2::before,
.line-lp .tool h2::after{
	position: absolute;
	content: "";
	width: 80px;
	height: 80px;
}
.line-lp .tool h2::before{
	background: url("../images/img_pc.png") no-repeat;
	background-size:contain;
	top: 16px;
	left: 10%;
}
.line-lp .tool h2::after{
	background: url("../images/img_sp.png") no-repeat;
	background-size:contain;
	top: 16px;
	right: 10%;
}
.line-lp .tool .tool-area{
	background: #fff;
	border-radius: 15px;
	padding: 40px 30px 20px;
	display: flex;
}
.line-lp .tool h3.box-title{
    background: #000;
    color: #fff;
    margin: 50px auto -20px;
    width: 32%;
    text-align: center;
	padding: 10px;
	border-radius: 50px;
	position: relative;
	z-index: 1;
	font-size: 1.2rem;
}
.line-lp .tool ol{
	font-weight: bold;
	font-size: 1.2rem;
	counter-reset: number;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
.line-lp .tool ol{
	font-size: 1.4rem;
	color: #00a65b;
	width: 46%;
}
.line-lp .tool ol li{
	position: relative;
	padding-left: 30px;
	line-height: 1.5em;
	padding: 0.5em 0.5em 0.5em 35px;
	width: 38%;
	color: #00a65b;
}
.line-lp .tool ol li::before{
	position: absolute;
	counter-increment: number;
	content: counter(number);
	display:inline-block;
	background: #00a65b;
	color: #fff;
	font-weight:bold;
	font-size: 15px;
	border-radius: 50%;
	left: 0;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
  /*以下 上下中央寄せのため*/
	top: 23px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.line-lp .tool ul{
	width: 56%;
	display: flex;
	gap:20px;
}
.line-lp .tool ul li{
	width: 33%;
	text-align: center;
}
.line-lp .tool ul li span{
	font-size: 120%;
}
.line-lp .tool p.textc{
	width: 9rem;
	margin: 3rem auto;
}
.line-lp .tool h3{
	color: #fff;
	font-size: 2rem;
	text-align: center;
}
.line-lp .tool h3 span{
	position: relative;
	display: inline-block;
	padding-inline: 30px;
	height: 100%;
}
.line-lp .tool h3 span::before,
.line-lp .tool h3 span::after{
	position: absolute;
	content: "";
	background: #fff;
	width: 3px;
	height: 100%;
}
.line-lp .tool h3 span::before{
	bottom:0;
	left: 0;
	transform: rotate(-30deg); 
}
.line-lp .tool h3 span::after{
	bottom:0;
	right: 0;
	transform: rotate(30deg); 
}
.line-lp .tool .illust{
	position: absolute;
	bottom: 21%;
	right: 15%;
	width: 140px;
}
.line-lp .tool .list-block{
	display: flex;
	width: 100%;
	gap: 30px;
}
.line-lp .tool .list-block li{
	background: #f4ec1b;
	border-radius: 15px;
	padding: 53px 20px 10px;
	font-weight: bold;
	color: #00a65b;
	position: relative;
	font-size: 1.2rem;
	line-height: 1.3;
}
.line-lp .tool .list-block li::before{
	position: absolute;
	content: "";
	background: url("../images/icon_check.svg") no-repeat;
	background-size: contain;
	width: 40px;
	height: 40px;
	top: 15px;
	left: 43%;
}

@media all and (max-width: 768px) {
	.line-lp .tool{
		padding-top: 3rem;
	}
	.line-lp .tool h2{
		font-size: 2rem;
	}
	.line-lp .tool h2 span{
		font-size: 2.3rem;
	}
	.line-lp .tool h2::before,
	.line-lp .tool h2::after{
		width: 50px;
		height: 50px;
	}
	.line-lp .tool h2::before{
		top: -60px;
		left: 30%;
	}
	.line-lp .tool h2::after{
		top: -60px;
		right: 27%;
	}
	.line-lp .tool h3.box-title{
		padding: 10px 0;
		width: 100%;
	}
	.line-lp .tool .tool-area{
		flex-direction: column;
		padding-top: 20px;
	}
	.line-lp .tool ol{
		width: 100%;
	}
	.line-lp .tool ol li{
		width: 100%;
		line-height: 1.1em;
	}
	.line-lp .tool ul{
		flex-wrap: wrap;
		width: 100%;
	}
	.line-lp .tool ul li{
		width: 100%;
	}
	.line-lp .tool h3{
		font-size: 1.5rem;
	}
	.line-lp .tool .illust{
		position: static;
		margin: 0 auto;
	}
	.line-lp .tool .list-block li{
		padding-bottom: 20px;
		font-size: 1.5rem;
	}
	.line-lp .tool .list-block li::before{
		left: 45%;
	}
}

/*----------------------------------
	business
------------------------------------*/
.line-lp .business{
	text-align: center;
	margin-top: 5rem;
}
.line-lp .business h2{
	position: relative;
	display: inline-block;
	padding-inline: 30px;
	color: #00a65b;
	font-size: 2.2rem;
}
.line-lp .business h2::before,
.line-lp .business h2::after{
	content: "";
	position: absolute;
	width: 3px;
	height: 100%;
	bottom: 0;
	background: #00a65b;
}
.line-lp .business h2::before{
	left: 0;
	transform: rotate(-30deg);
}
.line-lp .business h2::after{
	right: 0;
	transform: rotate(30deg);
}
.line-lp .business div{	
	margin-top: -90px;
}

@media all and (max-width: 768px) {
	.line-lp .business{
		margin-top: 2rem;
	}
	.line-lp .business h2{
		font-size: 2rem;
		padding-inline: 50px;
	}
	.line-lp .business h2::before,
	.line-lp .business h2::after{
		height: 40%;
	}
	.line-lp .business div{	
		margin-top: 0;
	}
}
