@charset "UTF-8";
/* CSS Document */
/* mainArea */
.mainArea {
	width: 100%;
	height: calc( 700px - 70px);
	position: relative;
	margin-top: 70px;
}
.mainArea .m_inner {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.mainArea .m_inner .inner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	text-align: center;
}
.mainArea .m_inner .inner p {
	font-size: 38px;
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	text-shadow: 1px 1px 4px #000;
}
.mainArea .m_inner .inner p span {
	font-size: 30px;
}
.swiper-container {
	width: 100%;
}
.swiper-slide {
	height: calc( 700px - 70px);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.slide01 {
	background-image: url("../img/top/main01.webp");
}
.slide02 {
	background-image: url("../img/top/main02.webp");
}
.slide03 {
	background-image: url("../img/top/main03.webp");
}
.swiper-button-prev,
.swiper-button-next {
	color: #fff !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 26px;
}
.sbn {
	right: auto!important;
	left: 80%!important;
}
.sbp {
	left: auto !important;
	right: 80%!important;
}

/* 共通 */
/* btn */
.btn02 {
	width: 220px;
	height: 48px;
	position: relative;
	display: block;
	padding: 12px 30px;
	text-align: center;
	transition: ease .2s;
	background: #49c1bb;
	border-radius: 50px;
} 
.btn02 span {
	position: relative;
	z-index: 3;
	color: #fff;
}
.btn02:hover span {
	color: #000;
}
.bgcenterx:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgba(225,225,225,.8);
	width: 100%;
	height: 100%;
	transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	transform: scale(0, 1);
	transform-origin: top;
	border-radius: 50px;
}
.bgcenterx:hover:before{
	transform: scale(1, 1);
}

/* h2 */
.newsArea .inner h2,
.conceptArea .inner h2,
.contentArea .content h2,
.zebArea .inner .zeb .desc h2 {
	font-weight: 700;
	line-height: 1;
	font-size: 32px;
	color: #00a496;
}

/* newsArea */
.newsArea {
	background-image: url("../img/top/news_bg.webp");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.newsArea .inner {
	padding: 40px 20px;
	text-align: center;
}
.newsArea .inner h2 {
	display: inline-block;
	position: relative;
}
.newsArea .inner h2:before {
	content: url("../img/top/mark.svg");
	position: absolute;
	left: 140px;
	top: 0;
	width: 220px;
}
.newsArea .inner h2:after {
	content: url("../img/top/mark.svg");
	position: absolute;
	right: 140px;
	top: 0;
	width: 220px;
}
.newsArea .inner .news {
	max-width: 900px;
	margin: 0 auto;
	padding-top: 10px;
}
.newsArea .inner .news li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 12px 0;
}
.newsArea .inner .news li span {
	display: block;
}
.newsArea .inner .news li .date {
	width: 120px;
	background-color: #30417e;
	color: #fff;
	padding: 10px 0;
}
.newsArea .inner .news li .ttl {
	width: 780px;
	margin-left: 20px;
	background-color: #fff;
	padding: 10px 16px;
	text-align: left;
	border: 1px solid #003366;
}
.newsArea .inner .btnArea {
	display: flex;
	justify-content: center;
	padding-top: 16px;
}

/* conceptArea */
.conceptArea {
	background-color: #81d7b9;
	background-image: url("../img/top/concept_bg.webp");
	background-repeat: no-repeat;
	background-position: left center;
}
.conceptArea .inner {
	padding: 50px 20px;
	text-align: center;
}
.conceptArea .inner h2 {
	color: #fff;
	padding-bottom: 16px;
}
.conceptArea .inner .lg {
	color: #003366;
	font-size: 20px;
	padding-bottom: 8px;
	font-weight: 700;
}
.conceptArea .inner .sm {
	color: #003366;
	font-weight: 700;
}

/* contentArea */
.contentArea {
	background-image: url("../img/top/content_bg.webp");
	background-repeat: no-repeat;
	background-position: center center;
	padding: 26px 0;
}
/* 共通 */
/* content */
.contentArea .content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 26px 0;
}
.contentArea .content:nth-of-type(even) {
	flex-direction: row-reverse;
}
.contentArea .content .desc {
	width: 460px;
	margin: 0 auto;
	padding-left: 20px;
}
.contentArea .content:nth-of-type(even) .desc {
	padding-right: 20px;
	padding-left: 0;
}
.contentArea .content h2 {
	position: relative;
	padding-left: 120px;
}
.contentArea .content h2:before {
	position: absolute;
	top: -46px;
	left: 0;
	font-size: 90px;
	line-height: 1;
	color: #00a496;
}
.contentArea .content:first-of-type h2:before {
	content: "01";
}
.contentArea .content:nth-of-type(2) h2:before {
	content: "02";
}
.contentArea .content:nth-of-type(3) h2:before {
	content: "03";
}
.contentArea .content p {
	padding-top: 20px;
}
.contentArea .content .btnArea {
	padding-top: 20px;
}
.contentArea .content .img {
	width: 748px;
	height: 263px;
	background-repeat: no-repeat;
	box-shadow: 0 3px 10px rgb(0 0 0 / 30%);
}
.contentArea .productsArea .img {
	background-image: url("../img/top/products_img.webp");
	background-position: center right;
}
.contentArea .worksArea .img {
	background-image: url("../img/top/works_img.webp");
	background-position: center left;
}
.contentArea .companyArea .img {
	background-image: url("../img/top/company_img.webp");
	background-position: center right;
}

/* zebArea */
.zebArea .inner {
	padding: 26px 20px;
	display: flex;
	justify-content: center;
}
.zebArea .inner .zeb {
	width: 636px;
	border: 3px solid #81d7b9;
	background-color: #fff;
	border-radius: 20px;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.zebArea .inner .zeb .desc {
	width: 350px;
	padding-left: 20px;
}
.zebArea .inner .zeb .img {
	width: 236px;
	height: 220px;
	background-image: url("../img/top/zeb_img.webp");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.zebArea .inner .zeb .desc p {
	padding-top: 10px;
}
.zebArea .inner .zeb .desc .btnArea {
	padding-top: 16px;
}

@media screen and (max-width: 6000px) {
/* mainArea */
	.mainArea {
		height: calc( 1500px - 70px);
	}
	.swiper-slide {
		height: calc( 1500px - 70px);
	}
}

@media screen and (max-width: 4000px) {
/* mainArea */
	.mainArea {
		height: calc( 1200px - 70px);
	}
	.swiper-slide {
		height: calc( 1200px - 70px);
	}
}

@media screen and (max-width: 3000px) {
/* mainArea */
	.mainArea {
		height: calc( 930px - 70px);
	}
	.swiper-slide {
		height: calc( 930px - 70px);
	}
}

@media screen and (max-width: 2600px) {
/* mainArea */
	.mainArea {
		height: calc( 830px - 70px);
	}
	.swiper-slide {
		height: calc( 830px - 70px);
	}
}

@media screen and (max-width: 1500px) {
/* mainArea */
	.mainArea {
		height: calc( 660px - 70px);
	}
	.swiper-slide {
		height: calc( 660px - 70px);
	}
}

@media screen and (max-width: 1400px) {
/* mainArea */
	.mainArea {
		height: calc( 630px - 70px);
	}
	.swiper-slide {
		height: calc( 630px - 70px);
	}
}

@media screen and (max-width: 1300px) {
/* mainArea */
	.mainArea {
		height: calc( 600px - 70px);
	}
	.swiper-slide {
		height: calc( 600px - 70px);
	}
	.mainArea .m_inner .inner p {
		font-size: 36px;
	}
	
/* h2 */
	.newsArea .inner h2,
	.conceptArea .inner h2,
	.contentArea .content h2,
	.zebArea .inner .zeb .desc h2 {
		font-size: 28px;
	}
	
/* conceptArea */
	.conceptArea .inner h2 {
		color: #003366;
	}	
	
/* contentArea */
	.contentArea .content h2 {
		padding-left: 96px;
	}
	.contentArea .content h2:before {
		top: -38px;
		font-size: 76px;
	}
	.contentArea .content .desc {
		width: 400px;
	}	
}

@media screen and (max-width: 1200px) {
/* mainArea */
	.mainArea {
		height: calc( 570px - 70px);
	}
	.swiper-slide {
		height: calc( 570px - 70px);
	}
	
/* contentArea */
	.contentArea .content .img {
		width: 66%;
		height: 263px;
	}	
	.contentArea .content .desc {
		width: 44%;
		padding: 0 20px;
	}	
	.contentArea .content:nth-of-type(even) .desc {
		padding: 0 20px;
	}	
}

@media screen and (max-width: 1000px) {
/* mainArea */
	.mainArea {
		height: calc( 600px - 60px);
		margin-top: 60px;
	}	
	.swiper-slide {
		height: calc( 600px - 60px);
	}
	.sbn {
		left: 96%!important;
	}
	.sbp {
		right: 96%!important;
	}
	.mainArea .m_inner .inner p {
		font-size: 28px;
	}
	.mainArea .m_inner .inner p span {
		font-size: 22px;
	}
	
/* h2 */
	.newsArea .inner h2,
	.conceptArea .inner h2,
	.contentArea .content h2,
	.zebArea .inner .zeb .desc h2 {
		font-size: 24px;
	}
	
/* newsArea */
	.newsArea .inner {
		padding: 40px 8vw;
	}
	.newsArea .inner h2:before {
		left: 100px;
		width: 100px;
	}
	.newsArea .inner h2:after {
		right: 100px;
		width: 100px;
	}
	.newsArea .inner .news {
		max-width: 100%;
		width: 100%;
		padding-top: 10px;
	}
	.newsArea .inner .news li {
		display: block;
		padding: 12px 0;
	}
	.newsArea .inner .news li .date {
		margin-bottom: 8px;
		line-height: 1.2;
	}
	.newsArea .inner .news li .ttl {
		width: 100%;
		margin-left: 0;
	}
	
/* conceptArea */
	.conceptArea .inner {
		padding: 40px 6vw;
	}
	.conceptArea .inner h2 {
		padding-bottom: 10px;
	}
	.conceptArea .inner .lg {
		font-size: 16px;
		padding-bottom: 8px;
	}
	
/* contentArea */
	.contentArea {
		padding: 26px 0;
	}
/* 共通 */
/* content */
	.contentArea .content {
		display: block;
		padding: 30px 0;
	}
	.contentArea .content .desc {
		width: 748px;
		margin: 0 auto;
		padding: 0 0 26px;
	}
	.contentArea .content:nth-of-type(even) .desc {
		padding: 0 0 26px;
	}
	.contentArea .content h2 {
		padding-left: 80px;
	}
	.contentArea .content h2:before {
		top: -28px;
		font-size: 60px;
	}
	.contentArea .content .img {
		width: 748px;
		margin: 0 auto;
	}
	.contentArea .productsArea .img {
		background-position: center center;
	}
	.contentArea .worksArea .img {
		background-position: center center;
	}
	.contentArea .companyArea .img {
		background-position: center center;
	}

/* zebArea */
	.zebArea .inner {
		padding: 26px 6vw;
	}
}

@media screen and (max-width: 800px) {
/* contentArea */
	.contentArea .content .desc {
		width: 100%;
		padding: 0 6vw 26px;
	}
	.contentArea .content:nth-of-type(even) .desc {
		padding: 0 6vw 26px;
	}
	.contentArea .content .img {
		width: 100%;
		margin: 0 auto;
		background-size: cover;
	}
}

@media screen and (max-width: 767px) {
/* mainArea */
	.mainArea {
		height: calc( 500px - 60px);
	}	
	.swiper-slide {
		height: calc( 500px - 60px);
	}
	
/* h2 */
	.newsArea .inner h2,
	.conceptArea .inner h2,
	.contentArea .content h2,
	.zebArea .inner .zeb .desc h2 {
		font-size: 22px;
	}
	
/* newsArea */
	.newsArea .inner {
		padding: 40px 6vw;
	}
	.newsArea .inner h2:before {
		left: 90px;
		width: 80px;
	}
	.newsArea .inner h2:after {
		right: 90px;
		width: 80px;
	}
	
/* conceptArea */
	.conceptArea .inner .sm {
		text-align: left;
		line-height: 1.4;
	}
	
/* contentArea */
	.contentArea {
		padding: 26px 0;
	}
/* 共通 */
/* content */
	.contentArea .content h2 {
		padding-left: 70px;
	}
	.contentArea .content h2:before {
		top: -20px;
		font-size: 50px;
	}
	.contentArea .content p {
    line-height: 1.4;
	}
	.contentArea .content .img {
		height: 230px;
	}

/* zebArea */
	.zebArea .inner .zeb {
		width: 100%;
	}	
}

@media screen and (max-width: 700px) {
	.zebArea .inner {
			padding: 26px 8vw;
	}	
	.zebArea .inner .zeb {
		width: 100%;
		border-radius: 16px;
		padding: 30px;
		flex-direction: column-reverse;
	}
	.zebArea .inner .zeb .img {
		width: 400px;
		height: 200px;
		background-image: url("../img/top/zeb_img_sp.webp");
	}
	.zebArea .inner .zeb .desc {
		padding-left: 0;
		padding-bottom: 16px;
		width: 400px;
		margin: 0 auto;
	}
	.zebArea .inner .zeb .desc h2 {
		text-align: center;
	}
	.zebArea .inner .zeb .desc p {
		line-height: 1.4;
	}
	.zebArea .inner .zeb .desc .btnArea {
		display: flex;
		justify-content: center;
	}
}

@media screen and (max-width: 600px) {
/* mainArea */
	.sbn {
		left: 90%!important;
	}
	.sbp {
		right: 90%!important;
	}
	
/* newsArea */
	.newsArea .inner .news li .ttl {
		line-height: 1.4;
	}	
/* contentArea */
	.contentArea .content .img {
		height: 180px;
	}	
	
/* zebArea */
	.zebArea .inner .zeb .desc {
		width: 100%;
	}	
	.zebArea .inner .zeb .img {
		width: 100%;
	}	
}

@media screen and (max-width: 550px) {
/* zebArea */
	.zebArea .inner .zeb .img {
		height: 180px;
	}	
}

@media screen and (max-width: 480px) {
/* zebArea */
	.zebArea .inner .zeb {
    padding: 20px;
	}
	.zebArea .inner .zeb .img {
		height: 160px;
	}	
}

@media screen and (max-width: 420px) {
/* conceptArea */
	.conceptArea {
		background-position: center center;
		background-size: cover;
	}	
	.conceptArea .inner .lg {
		font-size: 15px;
		text-align: left;
		line-height: 1.4;
	}	
	
/* contentArea */
	.contentArea .content .img {
		height: 160px;
	}
	
/* zebArea */
	.zebArea .inner .zeb .img {
		height: 140px;
	}	
}

@media screen and (max-width: 380px) {
/* mainArea */
	.mainArea {
		height: calc( 460px - 60px);
	}	
	.swiper-slide {
		height: calc( 460px - 60px);
	}
	.mainArea .m_inner .inner p {
		font-size: 7vw;
	}
	.mainArea .m_inner .inner p span {
		font-size: 6vw;
	}	
	
/* zebArea */
	.zebArea .inner .zeb .img {
		height: 120px;
	}	
}

