@charset "UTF-8";

.sections {
	opacity: 0;
	/* 初期状態で非表示 */
}

.webp .section01 {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background-image: url(../img/service/service_img01.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.no-webp .section01 {
	position: relative;
	height: 100vh;
	overflow: hidden;
	background-image: url(../img/service/seervice_img01-min.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* タイトル アニメーション */
.section01 .animate_titleBox {
	position: absolute;
	top: 34%;
	left: 20%;
	z-index: 2;
	width: 100%;
	max-width: 350px;
	height: 100px;
	overflow: hidden;
	display: block;
}

.section01 .animate_titleBox svg {
	width: 100%;
	max-width: 350px;
}

.section01 .animate_titleBox text {
	font-size: 50px;
}


.section02 {
	position: relative;
	/*	height: 900px;*/
	padding: 30px 20px 0px 20px;
}

.section02 .title_box,
.section02 .slide-img,
.section02 .detail {
	/*	opacity: 0;*/
}


.slider-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
	background-color: #FFFFFF;
}

.slider {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.slide {
	min-width: 100%;
	height: 2370px;
	/*  display: flex;*/
	/*  justify-content: center;*/
	/*  align-items: center;*/
	position: relative;
}

.slide .subbox {
	position: relative;
	height: 100%;
	max-height: 600px;
}

.slide .slide-title {
	position: absolute;
	top: 5px;
	left: 0%;
	color: #1E6D64;
	font-size: 25px;
	font-weight: bold;
	font-family: "Noto Sans JP", sans-serif;
	/*	margin-left: -400px;*/
	/*	transform: translate(-50%);*/
	opacity: 0;
	display: block;
	z-index: 2;
}

.slide .slide-img {
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translate(-50%);
	max-width: 800px;
	width: 100%;
	height: auto;
	display: block;
	z-index: 1;
	opacity: 0;
}

.detail {
	width: 62vw;
	max-width: 360px;
	position: absolute;
	top: 73vw;
	left: 0px;
	transform: translate(0, -21vw);
	background-image: linear-gradient(90deg, rgba(166, 222, 133, 0.8), rgba(72, 136, 129, 0.8));
	color: white;
	padding: 20px 20px 20px 20px;
	font-size: 14px;
	z-index: 2;
	opacity: 0;
}

.detail span {
	font-size: 20px;
	font-weight: bold;
	font-family: "Noto Sans JP", sans-serif;
	margin-bottom: 20px;
	display: block;
}

.detail p {
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.4;
}

.article {
	width: 100%;
	max-width: 500px;
}

.article .list {
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
}

.article .list .article-img {
	text-align: center;
	padding: 30px 0px;
	display: block;
	order: 2;
}

.article .list .article-img img {
	width: 150px;
}

.article .article-title {
	color: #1E6D64;
	font-size: 20px;
	font-family: "Noto Sans JP", sans-serif;
	text-align: center;
	margin-top: 50px;
	display: block;
	order: 1;
}

.article .aritcle-detail {
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	color: #483D3A;
	line-height: 1.4;
	margin-top: 20px;
	order: 2;
}

.slide .btn {
	/*	position: absolute;*/
	/*	left: 50%;*/
	/*	bottom: 5%;*/
	width: 300px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	/*	transform: translate(-50%);*/
}

.slide .btn:nth-child(2) {
	margin-top: 20px;
}

.slide .btn a {
	color: #FFFFFF;
	font-size: 18px;
	font-family: "Noto Sans JP", sans-serif;
	text-decoration: none;
	text-align: center;
	padding: 20px 10px;
	display: block;
	background-color: #1E6D64;
	border-radius: 10px;
}

.slide .sns {
	/*	position: absolute;*/
	/*	left: 50%;*/
	/*	bottom: 0;*/
	width: 100px;
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
	/*	transform: translate(-50%);*/
	display: flex;
	gap: 20px;
}

.slide .sns a {
	text-decoration: none;
	display: block;
}

.slider-arrow {
	position: absolute;
	top: 9%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 9;
}

.slider-arrow.prev {
	left: 5%;
}

.slider-arrow.next {
	right: 5%;
}

.slider-arrow:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.slide .detail:after {
	position: absolute;
	top: 50%;
	/*	bottom: 6px;*/
	left: 0;
	/*	transform: translate(0%, -50%);*/
	content: '';
	width: 62vw;
	max-width: 360px;
	height: 65vh;
	padding: 5vw;
	background-image: url(../img/service/service_img02.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: auto;
	animation: slide_text_box02 1s ease-in-out 1s 1 forwards;
	z-index: 2;
}

@keyframes slide_title {
	0% {
		transform: translateY(0px);
		opacity: 0;
	}

	70% {
		transform: translateY(0px);
		opacity: 0;
	}

	100% {
		transform: translateY(10px);
		opacity: 1;
	}
}

@keyframes slide_img {
	0% {
		opacity: 0;
	}

	70% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes slide_text_box {
	0% {
		opacity: 0;
	}

	70% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes slide_text_box02 {
	0% {
		bottom: 0px;
		left: 0px;
		opacity: 0;
	}

	70% {
		bottom: 0px;
		left: 0px;
		opacity: 0;
	}

	100% {
		transform: translate(0%, calc(100% - 830px));
		left: 20px;
		opacity: 1;
	}
}