@charset "utf-8";


body {
	margin: 0;
	padding: 0;
	font-family: "NotoSansJP";
	font-weight: 400;
	color: #333;
	font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
ul,
ol,
li,
header,
footer,
nav,
dl,
dt,
dd,
section,
article {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

@font-face {
	font-family: "NotoSansJP";
	font-weight: 400;
	src: url("../../font/NotoSansJP-Regular.otf")format("opentype")
}

@font-face {
	font-family: "NotoSansJP";
	font-weight: 500;
	src: url("../../font/NotoSansJP-Medium.otf") format("opentype")
}

@font-face {
	font-family: "NotoSansJP";
	font-weight: 700;
	src: url("../../font/NotoSansJP-Bold.otf") format("opentype")
}

@font-face {
	font-family: "NotoSansJP";
	font-weight: 900;
	src: url("../../font/NotoSansJP-Black.otf") format("opentype")
}

.pc-only {
	display: none;
}

@media (min-width: 768px) {
	.sp-only {
		display: none !important;
	}

	.pc-only {
		display: block;
	}
}



.header__nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 999;
}

.header__nav--inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1720px;
	height: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.header__nav--inner p {
	width: 60%;
	margin-right: 10px;
}

.header__nav--inner p img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.header__nav--right {
	display: flex;
	gap: 10px;
}

.header__btn--green {
	position: relative;
	width: 100px;
	height: 40px;
	padding-left: 20px;
	box-sizing: border-box;
	background-color: #5db530;
	box-shadow: 3px 3px 0 rgba(0, 0, 0, 1);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 36px;
	border: solid 2px #000;
}

.header__btn--green:after {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	left: 5px;
	transform: translateY(-50%);
	width: 14px;
	height: 15px;
	background-image: url("../../img/recruit-lp/icon-tel.png");
	background-size: cover;
}
.header__btn--green:hover {
	background-color: #ff0000;
	box-shadow: 0 0 0 rgba(0, 0, 0, 1);
	transition: 0.5s;
}

@media (min-width: 768px) {
	.header__btn--green {
		width: 200px;
		height: 50px;
		padding-left: 50px;
		font-size: 20px;
		line-height: 50px;
	}

		.header__btn--green:after {
			top: 50%;
			left: 20px;
			width: 24px;
			height: 25px;
		}
}

.header__btn--red {
	position: relative;
	width: 100px;
	height: 40px;
	padding-left: 20px;
	box-sizing: border-box;
	background-color: #ff0000;
	box-shadow: 3px 3px 0 rgba(0, 0, 0, 1);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 36px;
	border: solid 2px #000;
	transition: 0.5s;
}


.header__btn--red:after {
	content: "";
	display: block;
	position: absolute;
	top: 55%;
	left: 10px;
	transform: translateY(-50%);
	width: 14px;
	height: 10px;
	background-image: url("../../img/recruit-lp/icon-mail.png");
	background-size: cover;
}


.header__btn--red:hover {
	background-color: #5db530;
	box-shadow: 0 0 0 rgba(0, 0, 0, 1);
	transition: 0.5s;
}

@media (min-width: 768px) {
	.header__btn--red {
		width: 200px;
		height: 50px;
		padding-left: 50px;
		font-size: 20px;
		line-height: 50px;
	}

	.header__btn--red:after {
		top: 50%;
		left: 20px;
		width: 29px;
			height: 20px;
	}
}



.header__img {
	position: relative;
	width: 100%;
}

@media (min-width: 768px) {
	.header__img {
		background-image: url("../../img/recruit-lp/header-img.webp");
		background-size: cover;
		background-position: center right;
	}
}


.header__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: bottom;
}

@media (min-width: 768px) {
	.header__img img {
		width: 100%;
	}
}

.header__img--icon {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.header__img--icon img {
	width: 56.923vw;
}

.header__img--wrap {
	position: absolute;
	top: 35%;
	width: 100%;
}

.header__img--wrap h1 {
	margin-bottom: 20px;
	font-size: 6.4vw;
	font-weight: 900;
	color: #fff;
	text-align: center;
	text-shadow: 15px 15px 15px rgba(0, 0, 0, 0.20);
}

.header__img--wrap h1 span {
	display: block;
	font-size: 10.667vw;
	color: #f0ec0d;
}


@media (min-width: 768px) {
	.header__img--wrap h1 img {
		width: 100%;
	}
}


.header__main--btns {
		display: flex;
		gap: 15px;
	}


.header__img--text {
	padding: 0 20px;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.header__img--text {
		max-width: 650px;
	}
}

@media (min-width: 1024px) {
	.header__img--text {
		max-width: 1000px;
	}
}

.header__img--text p {
	color: #fff;
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.header__img--text p {
		color: #333;
		font-size: 24px;
		font-weight: 700;
		padding-bottom: 0;
	}
}
@media (min-width: 1024px) {
	.header__img--text p {
		font-size: 30px;
padding-bottom: 60px;
	}
}

.header__img--btn--green {
	display: block;
	position: relative;
	width: 230px;
	height: 50px;
	margin: 0 auto;
	padding-left: 30px;
	box-sizing: border-box;
	border: 2px solid #000;
	background-color: #5db530;
	box-shadow: 5px 5px 0 rgba(0, 0, 0, 1);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 40px;
	transition: 0.5s;
}

.header__img--btn--green:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	width: 25px;
	height: 26px;
	background-image: url("../../img/recruit-lp/icon-tel.png");
	background-size: cover;
}

.header__img--btn--green:hover {
	background-color: #ff0000;
	box-shadow: 0 0 0 rgba(0, 0, 0, 1);
	transition: 0.5s;
}

@media (min-width: 768px) {
.header__img--btn--green {
	width: 320px;
	height: 80px;
	margin: 0;
	padding-left: 50px;
	font-size: 30px;
	line-height: 70px;
}

.header__img--btn--green:after {
	left: 60px;
	width: 35px;
	height: 36px;
}
}

.header__img--btn--red {
	display: block;
	position: relative;
	width: 230px;
	height: 50px;
	margin: 0 auto;
	padding-left: 30px;
	box-sizing: border-box;
	border: 2px solid #000;
	background-color: #ff0000;
	box-shadow: 5px 5px 0 rgba(0, 0, 0, 1);
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 40px;
	transition: 0.5s;
}

.header__img--btn--red:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	width: 29px;
	height: 20px;
	background-image: url("../../img/recruit-lp/icon-mail.png");
	background-size: cover;
}

.header__img--btn--red:hover {
	background-color: #5db530;
	box-shadow: 0 0 0 rgba(0, 0, 0, 1);
	transition: 0.5s;
}

@media (min-width: 768px) {
	.header__img {
		height: 600px;
	}

	.header__img--icon {
		top: 38%;
		left: 390px;
		transform: none;
	}

	.header__img--icon img {
		width: 194px;
	}

	.header__img--wrap {
		top: 20%;
		padding-left: 20px;
		box-sizing: border-box;
	}

	.header__img--wrap h1 {
		font-size: 30px;
		text-align: left;
	}

	.header__img--wrap h1 span {
		font-size: 70px;
	}

	

	.header__img--btn--red {
		width: 320px;
		height: 80px;
		margin: 0;
		padding-left: 50px;
		font-size: 30px;
		line-height: 70px;
	}

	.header__img--btn--red:after {
		left: 60px;
		width: 40px;
		height: 29px;
	}
}

@media (min-width: 1024px) {
	.header__img {
		height: 930px;
	}

	.header__img--icon {
		top: 35%;
		left: inherit;
		right: 0%;
		width: 100%;
	}

	.header__img--icon--inner {
		max-width: 1520px;
		margin: 0 auto;
		padding-right: 20px;
		text-align: right;
	}

	.header__img--icon img {
		width: 25.342vw;
		max-width: 482px;
		height: auto;
	}

	.header__img--wrap {
		width: 100%;
		right: 0;
	}

	.header__img--inner {
		display: flex;
		max-width: 1720px;
		margin: 0 auto;
		padding-right: 20px;
	}

	.header__img--wrap h1 {
		margin-bottom: 60px;
		font-size: 60px;
	}

	.header__img--wrap h1 span {
		font-size: 100px;
		font-size: clamp(90px, 8vw, 100px);
	}
}



.lp-section01 {
	position: relative;
	max-width: 1520px;
	margin: 0 auto;
	padding: 40px 20px;
}

.lp-section01:after {
	content: "";
	display: block;
	position: absolute;
	bottom: -35px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-top: 35px solid #fff;
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
}

.lp-section01 h2 {
	margin-bottom: 40px;
	font-size: 24px;
	color: #333;
	text-align: center;
}

.lp-section01 h2 span {
	color: #5db530;
}

.lp-section01--contents {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.lp-section01 figure {
	width: calc((100% - 20px) / 2);
	margin-bottom: 40px;
}

.lp-section01 figure img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	margin: 0 auto 20px;
}

.lp-section01 figure figcaption {
	font-size: clamp(16px, 4.26vw, 30px);
	font-weight: 700;
	color: #5db530;
	text-align: center;
}

.lp-section01 figure figcaption span {
	background: linear-gradient(to bottom, #fff 0%, #fff 60%, #f0ec0d 60%, #f0ec0d 100%);
	font-weight: 900;
}

@media (min-width: 768px) {
	.lp-section01 {
		padding: 100px 20px;
	}

	.lp-section01:after {
		bottom: -70px;
		border-top: 70px solid #fff;
		border-left: 200px solid transparent;
		border-right: 200px solid transparent;
	}

	.lp-section01 h2 {
		margin-bottom: 90px;
		font-size: 30px;
	}

	.lp-section01--contents {}

	.lp-section01 figure {
		width: calc((100% - 20px) / 2);
	}
}

@media (min-width: 1280px) {
	.lp-section01 figure {
		display: flex;
		flex-direction: column;
		width: calc((100% - 100px) / 4);
		margin-bottom: 0;
	}

	.lp-section01 figure figcaption {
		margin-top: auto;
	}
}



.lp-section02 {
	padding: 90px 20px 40px;
	background-image: url("../../img/recruit-lp/lp-bg01.webp");
	background-position: center center;
	background-size: cover;
}

.lp-section02 h2 {
	margin-bottom: 40px;
	font-size: 24px;
	color: #333;
	text-align: center;
}

.lp-section02 h2 span {
	color: #5db530;
}

.lp-section02--contents01 {
	margin: 0 auto;
	text-align: center;
}

.lp-section02--contents01 p:first-child {
	color: #5db530;
	font-weight: 700;
}

@media (min-width: 768px) {
	.lp-section02--contents01 p:first-child {
		font-size: 55px;
	}
}

.lp-section02--contents01 p:first-child span {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	background-color: #5db530;
	padding: 0 20px;
}

@media (min-width: 768px) {
	.lp-section02--contents01 p:first-child span {
		font-size: 42px;
	}
}

.lp-section02--contents01 p:nth-child(2) {
	color: #5db530;
	padding: 20px 0 50px;
	font-size: 20px;
	font-weight: 700;
}

@media (min-width: 768px) {
	.lp-section02--contents01 p:nth-child(2) {
		font-size: 48px;
	}
}

.lp-section02--contents01 p:nth-child(2) span {
	background: linear-gradient(to bottom, transparent 0%, transparent 60%, #ffff00 60%, #ffff00 100%)
}

.lp-section02--contents01 p:last-child {
	padding-bottom: 100px;
	line-height: 2;
}

.lp-section02--contents01 p:last-child span {
	color: #ff0000;
}


.lp-section02--contents02 {
	max-width: 1300px;
	margin: 0 auto;
}

.lp-section02--contents02 figure {
	width: 100%;
	margin-bottom: 40px;
}

.lp-section02--contents02 figure img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	margin: 0 auto 10px;
	border-radius: 50%;
}

.lp-section02--contents02 figure figcaption h3 {
	margin-bottom: 10px;
	font-size: 24px;
	text-align: center;
	color: #5db530;
}

.lp-section02--contents02 figure figcaption p {
	font-size: 16px;
	line-height: 2;
}

.lp-section02--contents02 figure figcaption p span {
	color: #ff0;
}

@media (min-width: 768px) {
	.lp-section02 {
		padding: 140px 20px 40px;
	}

	.lp-section02 h2 {
		font-size: 30px;
	}

	.lp-section02--contents02 {
		display: flex;
		justify-content: space-between;
	}

	.lp-section02--contents02 figure {
		width: calc((100% - 100px) / 3);
	}

	.lp-section02--contents02 figure figcaption h3 {
		font-size: 30px;
	}

	.lp-section02--contents02 figure figcaption p {
		font-size: 18px;
	}
}



.lp-section03 {
	padding: 40px 10px;
	background-color: #edfbe0;
}

.lp-section03 h2 {
	margin-bottom: 40px;
	font-size: 24px;
	color: #333;
	text-align: center;
}

.lp-section03 h2 span {
	color: #5db530;
}

@media (min-width: 768px) {
	.lp-section03 {
		padding: 80px 20px;
	}

	.lp-section03 h2 {
		margin-bottom: 60px;
		font-size: 30px;
	}
}


.lp-section03--voice01 {
	background-color: #fff;
	border-radius: 20px;
	margin-bottom: 20px;
}

.section03--voice01--text {
	padding: 20px;
}


.section03--voice01--text h3 {
	font-size: 24px;
	font-weight: 700;
	color: #5db530;
}

.section03--voice01--text h3 span {
	display: block;
	font-size: 20px;
	color: #333;
	margin-top: 10px;

}

.section03--voice01--text p {
	margin-top: 50px;
	line-height: 2;
}

.section03--voice01--img {
	text-align: center;
}

.section03--voice01--img img {
	vertical-align: bottom;
	width: 100%;
}

@media (min-width: 768px) {

	.lp-section03--voice01 {
		max-width: 1300px;
		display: flex;
		background-image: url("../../img/recruit-lp/lp-img08.webp");
		background-position: right bottom;
		background-repeat: no-repeat;
		margin: 0 auto 35px;
		padding: 20px;
		box-sizing: border-box;
	}

	.section03--voice01--text {
		width: 70%;
		padding: 30px 0 30px 30px;
	}

	.section03--voice01--text p {
		font-size: 18px;
		background: rgba(255, 255, 255, 0.7);
	}

	.section03--voice01--text h3 {
		font-size: 36px;
		font-weight: 700;
		color: #5db530;
	}
}

.lp-section03--voice02 {
	background-color: #fff;
	border-radius: 20px;
	margin-bottom: 20px;
}

.section03--voice02--text {
	padding: 20px;
}


.section03--voice02--text h3 {
	font-size: 24px;
	font-weight: 700;
	color: #5db530;
}

.section03--voice02--text h3 span {
	display: block;
	font-size: 20px;
	color: #333;
	margin-top: 10px;

}

.section03--voice02--text p {
	margin-top: 50px;
	line-height: 2;
}

.section03--voice02--img {
	text-align: center;
}

.section03--voice02--img img {
	vertical-align: bottom;
	width: 100%;
}

@media (min-width: 768px) {
	.lp-section03--voice02 {
		max-width: 1300px;
		display: flex;
		background-image: url("../../img/recruit-lp/lp-img09.webp");
		background-position: right bottom;
		background-repeat: no-repeat;
		margin: 0 auto 35px;
		padding: 20px;
		box-sizing: border-box;
	}

	.section03--voice02--text {
		width: 70%;
		padding: 30px 0 30px 30px;
	}

	.section03--voice02--text p {
		font-size: 18px;

		background: rgba(255, 255, 255, 0.7);
	}

	.section03--voice02--text h3 {
		font-size: 36px;
		font-weight: 700;
		color: #5db530;
	}
}

.lp-section03--voice03 {
	background-color: #fff;
	border-radius: 20px;
	margin-bottom: 20px;
}

.section03--voice03--text {
	padding: 20px;
}


.section03--voice03--text h3 {
	font-size: 24px;
	font-weight: 700;
	color: #5db530;
}

.section03--voice03--text h3 span {
	display: block;
	font-size: 20px;
	color: #333;
	margin-top: 10px;

}

.section03--voice03--text p {
	margin-top: 50px;
	line-height: 2;
}

.section03--voice03--img {
	text-align: center;
}

.section03--voice03--img img {
	vertical-align: bottom;
	width: 100%;
}

@media (min-width: 768px) {
	.lp-section03--voice03 {
		max-width: 1300px;
		display: flex;
		background-image: url("../../img/recruit-lp/lp-img10.webp");
		background-position: right top;
		background-repeat: no-repeat;
		margin: 0 auto 35px;
		padding: 20px;
		box-sizing: border-box;
	}

	.section03--voice03--text {
		width: 70%;
		padding: 30px 0 30px 30px;
	}

	.section03--voice03--text p {
		font-size: 18px;

		background: rgba(255, 255, 255, 0.7);
	}

	.section03--voice03--text h3 {
		font-size: 36px;
		font-weight: 700;
		color: #5db530;
	}
}


.lp-section03--voice04 {
	background-color: #fff;
	border-radius: 20px;
	margin-bottom: 20px;
}

.section03--voice04--text {
	padding: 20px;
}


.section03--voice04--text h3 {
	font-size: 24px;
	font-weight: 700;
	color: #5db530;
}

.section03--voice04--text h3 span {
	display: block;
	font-size: 20px;
	color: #333;
	margin-top: 10px;

}

.section03--voice04--text p {
	margin-top: 50px;
	line-height: 2;
}

.section03--voice04--img {
	text-align: center;
}

.section03--voice04--img img {
	vertical-align: bottom;
	width: 100%;
}

@media (min-width: 768px) {

	.lp-section03--voice04 {
		max-width: 1300px;
		display: flex;
		background-image: url("../../img/recruit-lp/lp-img11.webp");
		background-position: right top;
		background-repeat: no-repeat;
		margin: 0 auto 35px;
		padding: 20px;
		box-sizing: border-box;
	}

	.section03--voice04--text {
		width: 70%;
		padding: 30px 0 30px 30px;
	}

	.section03--voice04--text p {
		font-size: 18px;

		background: rgba(255, 255, 255, 0.7);
	}

	.section03--voice04--text h3 {
		font-size: 36px;
		font-weight: 700;
		color: #5db530;
	}
}


.lp-section04 {
	padding: 40px 20px;
	background-image: url("../../img/recruit-lp/lp-img14.webp");
	background-position: center bottom;
	background-repeat: no-repeat;
	margin-bottom: 100px;
	background-size: cover;
}


@media (min-width: 768px) {
	.lp-section04 {
		background-size: auto;
	}

	.lp-section04--price {
		display: flex;
		justify-content: space-between;
		max-width: 1200px;
		margin: 50px auto 0;
	}
}

.lp-section04--price--text {
	padding-bottom: 20px;
	text-align: center;
}

@media (min-width: 768px) {
	.lp-section04--price--text {
		margin-top: auto;
		padding-bottom: 100px;
		width: 55%;
		text-align: left;
	}
}

.lp-section04--price--text p {
	color: #ff0000;
	font-size: 50px;
	font-weight: 700;
}

.lp-section04--price--text p span {
	font-size: 24px;
}

.lp-section04--price--text p:last-child {
	font-size: 18px;
	font-weight: 400;
}

.lp-section04--price--img {
	width: 40%;
	margin: auto;
}

@media (min-width: 768px) {
	.lp-section04--price--img {
		margin: 0;
	}
}

.lp-section04--price--img img {
	width: 100%;
}

.lp-section04 h2 {
	margin-bottom: 20px;
	font-size: 24px;
	color: #333;
}

.lp-section04 h2 span {
	display: inline-block;
	background: linear-gradient(to bottom, transparent 0%, transparent 60%, #f0ec0d 60%, #f0ec0d 100%);
}

.lp-section04--contents01 {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.lp-section04--contents01 h3 {
	margin-bottom: 10px;
}

.lp-section04--contents01 ul {
	background-color: #fff;
	padding: 20px 0;
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.lp-section04--contents01 ul {
		display: flex;
		justify-content: center;

		gap: 10px;
	}
}



.lp-section04--contents02 {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.lp-section04--contents02 h3 {
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.lp-section04--contents02 ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 10px;
	}
}

.lp-section04--contents02 ul li {
	background-color: #fff;
	padding: 10px 25px;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 5px;

}

@media (min-width: 768px) {
	.lp-section04--contents02 ul li {
		width: 24%;
		margin-bottom: 0;
	}
}

@media (min-width: 768px) {
	.lp-section04 {
		padding: 80px 20px;
	}

	.lp-section04 h2 {
		font-size: 30px;
	}


}





.lp-section05 {
	margin: 0 auto 40px;
	padding: 40px 20px;
	background-color: #f7f7f7;
	background-size: cover;
}

.lp-section05 h2 {
	margin-bottom: 40px;
	color: #333;
	text-align: center;
}

.lp-section05--inner {
	max-width: 1000px;
	margin: 0 auto;
}

.lp-section05--contents {
	padding-bottom: 40px;
}

.lp-section05--contents h3 {
	position: relative;
	margin-bottom: 10px;
	padding-left: 50px;
	font-size: 18px;
	color: #5db530;
}

.lp-section05--contents h3:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	background-size: cover;
	background-color: #5db530;
	box-shadow: 5px 5px 0 rgba(0, 0, 0, 1);
}

.lp-section05--contents.block01 h3:before {
	background-image: url("../../img/recruit-lp/icon-step01.png");
}

.lp-section05--contents.block02 h3:before {
	background-image: url("../../img/recruit-lp/icon-step02.png");
}

.lp-section05--contents.block03 h3:before {
	background-image: url("../../img/recruit-lp/icon-step03.png");
}

.lp-section05--contents.block04 h3:before {
	background-image: url("../../img/recruit-lp/icon-step04.png");
}

.lp-section05--contents.block05 h3:before {
	background-image: url("../../img/recruit-lp/icon-step05.png");
}

.lp-section05--contents.block06 h3:before {
	background-image: url("../../img/recruit-lp/icon-step06.png");
}

.lp-section05--contents.block07 h3:before {
	background-image: url("../../img/recruit-lp/icon-step07.png");
}


@media (min-width: 768px) {
	.lp-section05 {
		margin: 0 auto 90px;
		padding: 70px 20px 50px;
	}

	.lp-section05 h2 {
		margin-bottom: 130px;
		font-size: 30px;
	}

	.lp-section05--contents {
		position: relative;
		padding: 0 0 50px 70px;
		border-left: 2px solid #5db530;
		margin-left: 20px;
	}

	.lp-section05--contents:last-child {
		border-left: none;
	}

	.lp-section05--contents:before {
		content: "";
		display: block;
		position: absolute;
		top: 15%;
		left: -30px;
		transform: translateY(-50%);
		width: 50px;
		height: 50px;
		background-size: cover;
		background-color: #5db530;
		box-shadow: 5px 5px 0 rgba(0, 0, 0, 1);
	}

	.lp-section05--contents.block01:before {
		background-image: url("../../img/recruit-lp/icon-step01.png");
	}

	.lp-section05--contents.block02:before {
		background-image: url("../../img/recruit-lp/icon-step02.png");
	}

	.lp-section05--contents.block03:before {
		background-image: url("../../img/recruit-lp/icon-step03.png");
	}

	.lp-section05--contents.block04:before {
		background-image: url("../../img/recruit-lp/icon-step04.png");
	}

	.lp-section05--contents.block05:before {
		background-image: url("../../img/recruit-lp/icon-step05.png");
	}

	.lp-section05--contents.block06:before {
		background-image: url("../../img/recruit-lp/icon-step06.png");
	}

	.lp-section05--contents.block07:before {
		background-image: url("../../img/recruit-lp/icon-step07.png");
	}

	.lp-section05--contents h3 {
		padding-left: 0;
		font-size: 30px;
	}

	.lp-section05--contents h3:before {
		display: none;
	}

	.lp-section05--contents p {
		font-size: 18px;
	}
}

@media (min-width: 1024px) {

	.lp-section05--contents.block01:after,
	.lp-section05--contents.block02:after,
	.lp-section05--contents.block03:after,
	.lp-section05--contents.block04:after {
		content: "";
		display: block;
		position: absolute;
		bottom: -60px;
		left: 50px;
		width: 3px;
	}

	.lp-section05--contents.block01:after,
	.lp-section05--contents.block04:after {
		height: 50px;
	}

	.lp-section05--contents.block02:after,
	.lp-section05--contents.block03:after {
		height: 60px;
	}
}



.lp-section06 {
	padding: 40px 20px;
}

.lp-section06 h2 {
	margin-bottom: 40px;
	font-size: 24px;
	color: #333;
	text-align: center;
}

.lp-section06--contents {
	max-width: 1300px;
	margin: 0 auto;
}

.lp-section06--contents li {
	margin-bottom: 20px;
}

.lp-section06--contents li section h3 {
	position: relative;
	padding: 30px 60px 30px 20px;
	background-color: #edfbe0;
	font-size: 18px;
}

.lp-section06--contents li section h3:after,
.lp-section06--contents li section h3.open:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	width: 22px;
	height: 12px;
}

.lp-section06--contents li section h3:after {
	background-image: url("../../img/recruit-lp/icon-arrow-bottom.png");
}

.lp-section06--contents li section h3.open:after {
	background-image: url("../../img/recruit-lp/icon-arrow-top.png");
}

.lp-section06--contents li section p {
	display: none;
	padding: 20px;
	background-color: #fff;
}

@media (min-width: 768px) {
	.lp-section06 {
		padding: 110px 20px 170px;
	}

	.lp-section06 h2 {
		margin-bottom: 65px;
		font-size: 30px;
	}

	.lp-section06--contents li section h3 {
		padding: 30px 80px 30px 100px;
	}

	.lp-section06--contents li section h3:before {
		content: "Q";
		display: block;
		position: absolute;
		top: 50%;
		left: 25px;
		transform: translateY(-50%);
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background-color: #5db530;
		font-size: 24px;
		color: #fff;
		text-align: center;
		line-height: 43px;
	}

	.lp-section06--contents li section h3:after,
	.lp-section06--contents li section h3.open:after {
		right: 40px;
	}

	.lp-section06--contents li section p {
		padding: 30px;
		font-size: 18px;
	}
}

.lp-section07 {
	padding: 30px 20px 0;
	background-image: url("../../img/recruit-lp/lp-bg01.webp");
	background-position: center center;
	background-size: cover;
}

.lp-section07--contents p {
	color: #5db530;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.8;
	text-align: center;
}

.lp-section07--contents p span {
	font-size: 24px;
	background: linear-gradient(to bottom, transparent 0%, transparent 60%, #ffff00 60%, #ffff00 100%)
}

.lp-section07--contents p img {
	width: 100%;
	vertical-align: bottom;
}

@media (min-width: 768px) {
	.lp-section07 {
			padding: 90px 20px 0;
	}
	.lp-section07--contents p {
		font-size: 36px;
	}
		.lp-section07--contents p img {
			max-width: 1050px;
		}

	.lp-section07--contents p span {
		font-size: 42px;
	}
}

.lp-section08 {
	padding: 0 20px ;
}

.lp-section08--contents {
	max-width: 1000px;
	background-color: #5db530;
	padding: 30px 10px;
	margin: 100px auto;
	border: 2px solid #000;
	box-shadow: 7px 7px 0 rgba(0, 0, 0, 1);
	transition: 0.5s;
}

.lp-section08--contents:hover {
	background-color: #ff0000;
	box-shadow: 1px 1px 0 rgba(0, 0, 0, 1);
	transition: 0.5s;
}

.lp-section08--contents:visited {
	background-color: #5db530;
	box-shadow: 5px 5px 0 rgba(0, 0, 0, 1);
	transition: 0.5s;
}

.lp-section08--contents a {
	display: block;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

@media (min-width: 768px) {
	.lp-section08--contents a {
			font-size: 30px;
		}
	}




.lp-page-top {
	position: relative;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #5db530;
	cursor: pointer;
}

.lp-page-top:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 19px;
	height: 10px;
	background-image: url("../../img/recruit-lp/icon-page-top.png");
	background-size: cover;
}

@media (min-width: 768px) {
	.lp-page-top {
		bottom: 40px;
		right: 40px;
		width: 80px;
		height: 80px;
	}

	.lp-page-top:after {
		width: 38px;
		height: 20px;
	}
}



.l-footer {
	background-color: #e8e8e8;
}

.l-footer--top {
	max-width: 1300px;
	margin: 0 auto;
	padding: 40px 20px;
}

.l-footer--top img {
	width: 50%;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	margin-bottom: 10px;
}

.l-footer--top h2 {
	margin-bottom: 30px;
	font-size: 22px;
}

.l-footer--top p {
	margin-bottom: 1em;
}

.l-footer--copyright {
	padding: 20px;
	background-color: #333;
}

.l-footer--copyright p {
	color: #fff;
	text-align: center;
}

@media (min-width: 768px) {
	.l-footer--top img {
		width: auto;
	}

	.l-footer--top p {
		margin-bottom: 0;
		font-size: 18px;
	}
}