@charset "utf-8";

#wrapper {
	overflow: inherit;
}
@media screen and (max-width: 768px){
	
	#wrapper {
		overflow: hidden;
	}
	
}
/* -----------------------------------------------------------
    intro-area
-------------------------------------------------------------- */
.intro-area{
	padding: 50px 0 100px;
	background: url("../img/bg-blueprint.png") repeat top left;
}
.intro-area .inner{
	display: flex;
	align-items: center;
}
.intro-area .img{
	border-radius: 100%;
	overflow: hidden;
	flex-shrink: 0;
}
.intro-area .txt-wrap{
	margin: 0 0 0 80px;
}
.intro-area .catch{
	font-size: 3.8rem;
}

@media screen and (max-width: 768px){
	.intro-area{
		padding: 30px 0 50px;
		background: url("../img/bg-blueprint.png") repeat top left / auto 100%;
	}
	.intro-area .inner{
		flex-direction: column;
		align-items: flex-start;
	}
	.intro-area .txt-wrap{
		margin: 20px 0 0;
	}
	.intro-area .catch{
		font-size: 2.3rem;
		width: 195px;
		position: relative;
	}
	.intro-area .catch::before{
		content: "";
		width: 170px;
		height: 170px;
		background: url("../img/rec-environment-intro.jpg") no-repeat center/ cover;
		border-radius: 50%;
		position: absolute;
		top: -15px;
		left: calc( 100% - (100% - 200px));
	}
	.intro-area .img{
		width: 120px;
		height: 120px;
	}
}


/* -----------------------------------------------------------
    img-slide01
-------------------------------------------------------------- */
.img-slide01{
	width: 100%;
	height: 230px;
	background: url("../img/rec-environment-slide01.jpg") repeat-x top left / auto 230px;
	animation: bg-slider 30s linear infinite;
	overflow: hidden;
}

@keyframes bg-slider {
	from {
        background-position: 0 0;
    }
    to {
        background-position: -1825px 0;
    } /* 1825pxとは使用した背景画像の長さ */
}

@media screen and (max-width: 768px){
	.img-slide01{
		width: 100%;
		height: 160px;
		background: url("../img/rec-environment-slide01.jpg") repeat-x top left / auto 160px;
		animation: bg-slider 30s linear infinite;
		overflow: hidden;
	}
}


/* -----------------------------------------------------------
    attraction-area
-------------------------------------------------------------- */
.attraction-area{
	margin: 100px 0 0;
	padding: 100px 0;
	position: relative;
}
.attraction-area::before{
    content: "";
    display: block;
    width: 100%;
    max-width: calc(1300px + (100% - 1300px)/2 + 80px);
    height: 100%;
    background-color: var(--bg-green);
    border-radius: 200px 0 0 200px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
/* ------------------------
	画面固定
------------------------ */
/*ラッパー要素*/
.attraction-wrapper{
    display: flex;
	flex-direction: row;
	justify-content: flex-start;
    position: relative;
}
/*コンテンツのブロック*/
.attraction-contents {
    width: 600px;
    margin: 0 100px 0 calc((100% - 1200px)/ 2);
}
.attraction-contents .scroll-box01,
.attraction-contents .scroll-box02,
.attraction-contents .scroll-box03{
	height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.attraction-contents .titlebox{
	margin: 0 0 100px;
}
.attraction-contents .attraction-title-en{
	font-size: 2.0rem;
	line-height: 1;
	color: var(--recruit-main);
	font-family: var(--en-font);
	font-weight: 700;
	position: relative;
	margin: 0 0 20px;
}
.attraction-contents .attraction-title-en span{
	font-size: 10rem;
	opacity: 0.15;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	left: 0;
}
.attraction-contents .catch{
    font-size: 3.5rem;
    margin: 0 0 10px 0;
}
.attraction-contents .catch.style02{
    font-size: 2.5rem;
    margin: 40px 0 0;
}

/*画像のブロック*/
.images{
    width: 565px;
	height: 100vh;
	margin: 0 calc((100% - 1300px)/ 2) 0 0;
    display: flex;
    align-items: center;
    position: sticky;
    position: -webkit-sticky;
    top:0;
}
.images div {
	width: 565px;
    height: 712px;
    display: block;
    overflow: hidden;
    visibility: hidden;
    /* 画像が透過pngの時は背景色が必要です */
    position: absolute;
    top: 90px;
    bottom: 0;
	margin: auto;
    /* フェード速度 */
    transition: .3s;
    opacity: 0;
}
.images div:first-child,
.images div.active {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 768px){
	.attraction-area{
		margin: 50px 0 0;
		padding: 50px 0 20px;
		position: relative;
	}
	.attraction-area::before{
		max-width: 100%;
		height: 100%;
		border-radius: 40px 0 0 40px;
	}
	.attraction-area .titlebox{
		padding: 0;
		margin: 0 20px 30px 20px;
	}
	/* ------------------------
		画面固定
	------------------------ */
	/*ラッパー要素*/
	.attraction-wrapper{
		flex-direction: column;
	}
	/*コンテンツのブロック*/
	.attraction-contents {
		width: 100%;
		margin: 0 auto;
	}
	.attraction-contents .scroll-box01,
	.attraction-contents .scroll-box02,
	.attraction-contents .scroll-box03{
		height: auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		margin: 0 0 30px;
	}
	.attraction-contents .attraction-title-en{
		font-size: 1.8rem;
		padding: 0 20px;
		margin: 50px 0 5px;
	}
	.attraction-contents .attraction-title-en span{
		font-size: 6rem;
	}
	.attraction-contents .catch{
		font-size: 2.3rem;
		margin: 10px 0 0;
		padding: 0 20px;
	}
	.attraction-contents .txt{
		padding: 0 20px;
	}
	.attraction-contents .catch.style02{
		font-size: 1.8rem;
		margin: 20px 0 0;
	}
	.attraction-contents .img{
		width: 100%;
	}

	/*画像のブロック*/
	.images{
		display: none;
	}
	.images div:first-child,
	.images div.active {
		visibility: hidden;
	}

}


/* -----------------------------------------------------------
    data-area
-------------------------------------------------------------- */
.data-area{
	margin: 100px 0;
}
.data-area .txt{
	margin: 20px 0;
}
.data-area .cmn-wrap{
	margin: 0 0 60px;
	padding: 40px 0 0;
}
.data-area .cmn-wrap .title-en{
	font-size: 2.0rem;
	line-height: 1;
	color: var(--recruit-main);
	font-family: var(--en-font);
	font-weight: 700;
	position: relative;
}
.data-area .cmn-wrap .title-en span{
	font-size: 10rem;
	opacity: 0.15;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	left: 0;
}
.data-area .cmn-wrap .title-jp{
	font-size: 2.6rem;
}



/*data-box*/
.data-area .data-box{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
	margin: 0 0 40px;
}
.data-area .data-box li{
	/*position: absolute;*/
}
.data-area .data-box li.type01{
	width: 327px;
}
.data-area .data-box li.type02{
	width: 486px;
}
.data-area .data-box li.type03{
	width: 684px;
}
.data-area .data-box li.type04{
	width: 380px;
}
.data-area .data-box li img{
}
.data-area .cmn-box{
	border: 2px var(--recruit-main) solid;
	border-radius: 20px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	min-height: 260px;
}
.data-area .cmn-box.bot{
	margin: 40px 0 0;
}
.data-area .cmn-box .title{
	background: var(--recruit-main);
	padding: 5px 15px 8px;
	color: #fff;
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	position: absolute;
	left: 30px;
	top: -22px;
}
.data-area .cmn-box .date{
	font-size: 1rem;
	right: 20px;
	bottom: 20px;
	text-align: right;
	color: #888;
	position: absolute;
}

/*work-style01*/
.data-area .work-style01 .data-box{
}
.data-area .work-style01 .data01{
	height: 177px;
}
.data-area .work-style01 .data02{
	height: 177px;
}
.data-area .work-style01 .data03{
	height: 173px;
}
.data-area .work-style01 .data04{
	height: 177px;
}
.data-area .work-style01 .data05{
	height: 177px;
}
.data-area .work-style01 .data06{
	height: 173px;
}
.data-area .work-style01 .data07{
	height: 173px;
}
.data-area .work-style01 .data08{
	height: 181px;
}
.data-area .work-style01 .data09{
	height: 177px;
}

/*work-style02*/
.data-area .work-style02 .data-box{
}
.data-area .work-style02 .data01{
	height: 177px;
}
.data-area .work-style02 .data02{
	height: 173px;
}
.data-area .work-style02 .data03{
	height: 515px;
}
.data-area .work-style02 .data04{
	height: 210px;
}
.data-area .work-style02 .data05{
	height: 189px;
}


/*work-style03*/
.data-area .work-style03 .data-box{
}
.data-area .work-style03 .data01{
	height: 414px;
	margin: 20px 0;
}
.data-area .work-style03 .data02{
	height: 388px;
	margin: 32px 0;
}
.data-area .work-style03 .data03{
	height: 432px;
	margin: 0 0 20px;
}
.data-area .work-style03 .data04{
	height: 190px;
}
.data-area .work-style03 .data05{
	height: 164px;
}
.data-area .work-style03 .data06{
	height: 515px;
}
.data-area .work-style03 .data07{
	height: 380px;
	margin: 35px 0;
}
.data-area .work-style03 .data08{
	height: 418px;
	margin: 10px 0 20px;
}
.data-area .work-style03 .data09{
	height: 411px;
	margin: 20px 0;
}


/*work-style04*/
.data-area.club .titlebox{
	margin: 0 0 80px;
}
.data-area .work-style04 .data-box{
	gap: 50px 40px;
}
.data-area .work-style04 .data-box li{
	/*width: 100%;*/
	width: calc((100% - 40px) / 2);
	border: 2px var(--recruit-main) solid;
	border-radius: 20px;
}

.data-area .work-style04 .cmn-box{
	padding: 40px;
	min-height: inherit;
	justify-content: flex-start;
	
	display: block;
	
	border: none;
}
.data-area .work-style04 .img{
	width: 100%;
	margin: 0 0 20px 0;
}
.data-area .work-style04 .txt{
	line-height: 1.8;
	text-align: left;
	margin: 0;
	padding: 0;
}

/*ワイド型*/
.data-area .work-style04 .data-box li.wide{
	width: 100%;
}
.data-area .work-style04 .flex-img{
	display: flex;
	justify-content: space-between;
}
.data-area .work-style04 .flex-img .img{
	width: 48.5%;
}

@media screen and (max-width: 768px){
	.data-area{
		margin: 50px 0;
	}
	.data-area .cmn-wrap{
		margin: 0 0 40px;
		padding: 20px 0 0;
	}
	.data-area .cmn-wrap .title-en span{
		font-size: 6rem;
		top: 0;
	}
	.data-area .cmn-wrap .title-jp{
		font-size: 2rem;
	}
	
	
	/*data-box*/
	.data-area .data-box{
		gap: 30px 0;
		margin: 0 0 40px;
	}
	.data-area .data-box li{
		/*position: absolute;*/
		width: 100%!important;
	}
	.data-area .data-box li img{
		width: 100%;
		object-fit: contain;
	}
	.data-area .cmn-box{
		border: 1px var(--recruit-main) solid;
		border-radius: 10px;
		padding: 25px 20px 20px 20px;
		min-height: inherit;
	}
	.data-area .cmn-box.bot{
		margin: 30px 0 0;
	}
	.data-area .cmn-box .title{
		padding: 3px 12px 5px;
		font-size: 1.6rem;
		left: -5px;
		top: -17px;
	}
	.data-area .cmn-box .date{
		right: 10px;
		bottom: 10px;
	}
	
	/*work-style01*/
	.data-area .work-style01 .data-box{
	}
	.data-area .work-style01 .data01{
		height: 100px;
	}
	.data-area .work-style01 .data02{
		height: 100px;
	}
	.data-area .work-style01 .data03{
		height: 100px;
	}
	.data-area .work-style01 .data04{
		height: 100px;
	}
	.data-area .work-style01 .data05{
		height: 100px;
	}
	.data-area .work-style01 .data06{
		height: 100px;
	}
	.data-area .work-style01 .data07{
		height: 100px;
	}
	.data-area .work-style01 .data08{
		height: 100px;
	}
	.data-area .work-style01 .data09{
		height: 110px;
	}
	
	
	/*work-style02*/
	.data-area .work-style02 .data-box{
	}
	.data-area .work-style02 .data01{
		height: 100px;
	}
	.data-area .work-style02 .data02{
		height: 130px;
	}
	.data-area .work-style02 .data03{
		height: 300px;
	}
	.data-area .work-style02 .data04{
		height: 130px;
	}
	.data-area .work-style02 .data05{
		height: 130px;
	}
	
	
	/*work-style03*/
	.data-area .work-style03 .data-box img{
		margin: 0 auto!important;
	}
	.data-area .work-style03 .data01{
		height: 100%;
		max-height: 350px;
	}
	.data-area .work-style03 .data02{
		height: 270px;
	}
	.data-area .work-style03 .data03{
		height: 290px;
	}
	.data-area .work-style03 .data04{
		height: 140px;
	}
	.data-area .work-style03 .data05{
		height: 120px;
	}
	.data-area .work-style03 .data06{
		height: 100%;
		max-height: 350px;
	}
	.data-area .work-style03 .data07{
		height: 250px;
	}
	.data-area .work-style03 .data08{
		height: 300px;
	}
	.data-area .work-style03 .data09{
		height: 300px;
	}

	
	/*work-style04*/
	.data-area.club .titlebox{
		margin: 0 0 50px;
	}
	.data-area .work-style04 .data-box{
		gap: 30px 0;
	}
	.data-area .work-style04 .data-box li{
		width: 100%;
		border: 1px var(--recruit-main) solid;
		border-radius: 10px;
	}
	.data-area .work-style04 .cmn-box{
		padding: 25px 20px 20px 20px;
		display: block;
	}
	.data-area .work-style04 .img{
		width: 100%;
		margin: 0 auto 10px;
	}
	.data-area .work-style04 .txt{
		margin: 0;
		padding: 0;
	}

	/*ワイド型*/
	.data-area .work-style04 .flex-img{
		display: block;
	}
	.data-area .work-style04 .flex-img .img{
		width: 100%;
	}
	
}



/* -----------------------------------------------------------
    img-slide02
-------------------------------------------------------------- */
.img-slide02{
	width: 100%;
	height: 230px;
	background: url("../img/rec-environment-slide02.jpg") repeat-x top left / auto 230px;
	animation: bg-slider2 30s linear infinite;
	overflow: hidden;
}

@keyframes bg-slider2 {
	from {
        background-position: 0 0;
    }
    to {
        background-position: -1825px 0;
    } /* 1825pxとは使用した背景画像の長さ */
}

@media screen and (max-width: 768px){
	.img-slide02{
		width: 100%;
		height: 160px;
		background: url("../img/rec-environment-slide02.jpg") repeat-x top left / auto 160px;
		animation: bg-slider2 30s linear infinite;
		overflow: hidden;
	}
}

/* -----------------------------------------------------------
    welfare-area
-------------------------------------------------------------- */
.welfare-area{
	margin: 100px 0 0;
	padding: 100px 0;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.welfare-area::before{
    content: "";
    display: block;
    width: 100%;
    max-width: calc(1300px + (100% - 1300px)/2 + 80px);
    height: 100%;
    background-color: var(--bg-beige);
    border-radius: 0 200px 200px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.welfare-area .txt-wrap{
	margin: 0 80px 0 calc((100% - 1200px)/ 2);
	width: 670px;
	flex-shrink: 0;
}
.welfare-area .catch{
	font-size: 3.8rem;
}
.welfare-area .list-wrap{
	margin: 30px 0 0;
	padding: 30px 40px 30px 35px;
	background-color: #fff;
	border-radius: 20px;
}
.welfare-area .list-wrap li p{
	margin: 0 0 5px;
}
.welfare-area .list-wrap li p::before{
	content: "・";
	display: inline-block;
	font-family: var(--font-jp);
	font-weight: 600;
	line-height: 1.8;
	color: var(--recruit-main);
	margin: 0 5px 0 0;
}
.welfare-area .img{
	height: 470px;
	width: auto;
	max-width: 650px;
	min-width: 498px;
	/*width: 650px;*/
	margin: 100px 0 0 0;
	position: relative;
	z-index: 1;
}
.welfare-area .img::before{
	content: "";
	width: calc(100% - 50px);
	height: calc(100% + 200px);
	background-color: var(--bg-green);
	border-radius: 200px 0 0 200px;
	position: absolute;
	top: -100px;
	right: 0;
	z-index: -1;
}
.welfare-area .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 30px 0 0 30px;
}

@media screen and (max-width: 768px){
	.welfare-area{
		margin: 50px 0 0;
		padding: 50px 0 80px;
		flex-direction: column;
	}
	.welfare-area::before{
		width: 100%;
		max-width: 100%;
		height: 100%;
		background-color: var(--bg-beige);
		border-radius: 0 40px 40px 0;
	}
	.welfare-area .txt-wrap{
		margin: 0;
		padding: 0 20px;
		width: 100%;
	}
	.welfare-area .catch{
		font-size: 2.3rem;
	}
	.welfare-area .list-wrap{
		margin: 30px 0 0;
		padding: 20px 15px;
	}
	.welfare-area .list-wrap li p{
		margin: 0 0 5px;
		padding: 0 0 0 1.6rem;
		position: relative;
	}
	.welfare-area .list-wrap li p::before{
		content: "・";
		display: block;
		font-family: var(--font-jp);
		font-weight: 600;
		line-height: 1.8;
		color: var(--recruit-main);
		margin: 0 auto;
		position: absolute;
		top: 0;
		left: 0;
	}
	.welfare-area .img{
		height: 220px;
		width: 100%;
		max-width: 489px;
		min-width: auto;
		/*width: 650px;*/
		margin: 50px 0 0 0;
		position: relative;
		z-index: 1;
	}
	.welfare-area .img::before{
		content: "";
		width: calc(100% - 30px);
		height: calc(100% + 60px);
		background-color: var(--bg-green);
		border-radius: 0;
		position: absolute;
		top: -30px;
		right: 0;
		z-index: -1;
	}
	.welfare-area .img::before img{
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		border-radius: 30px 0 0 30px;
	}
}

/* -----------------------------------------------------------
    -area
-------------------------------------------------------------- */

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