/* main-visual
-------------------------------------------*/

.main_visual{
	position: relative;
	width: 85%;
	height: 80vh;
	max-height: 1400px;
	margin: -110px 0 0 auto;	/*ヘッダー分*/
	z-index: 0;
}
.mv{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-radius: 0 0 0 200px;
	background: url(../img/top/mainvisual.jpg) center center no-repeat;
	background-size: cover;
}
.mv::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(var(--font-black-rgb),0.4);
}
.mv video{
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-height: 1400px;
}
.main_copy{
	z-index: 1;
	position: absolute;
	bottom: 7%;
	right: 7%;
}
.main_copy p{
	font-size: 84px;
	line-height: 1.2;
	text-align: right;
	color: rgba(0,0,0,0);
	-webkit-text-stroke: 1px #fff;
	text-stroke: 1px #fff;
	font-family: var(--font-en);
}

@media screen and (max-width: 960px){
}
@media screen and (max-width: 650px){
	
	.main_visual{
		width: var(--page-width);
		height: 68vh;
		margin-top: -76px;	/*ヘッダー分*/
	}
	.mv{
		border-radius: 0 0 0 100px;
	}
	.mv::before{
		background-color: rgba(var(--font-black-rgb),0.2);
	}
	.main_copy{
		width: 88%;
		bottom: 10%;
		right: 5%;
	}
	.main_copy p{
		width: 100%;
		height: auto;
	}
}

/* intro
-------------------------------------------*/

.intro{
	background: url(../img/top/plant.png) left 30% no-repeat;
	background-size: 53% auto;
	padding: 15% 0 18%;
	margin: -80px auto;
}
.intro .plant{
	width: var(--page-width);
	margin: 0 auto;
}
.intro .plant .text{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 40%;
	color: #fff;
	margin: -50px 0 0 auto;
}
.intro .plant .text p{
	width: 100%;
	text-align: justify;
	padding-bottom: 50px;
}
.intro .more_btn a{
	color: #fff;
	background: url(../img/common/ic_morebtn.svg) 90% center no-repeat;
	background-size: 24px;
}
.intro .more_btn a:hover{
	background: url(../img/common/ic_morebtn_green.svg) 90% center no-repeat;
	background-size: 24px;
	background-color: #fff;
	color: var(--green);
}

@media screen and (max-width: 960px){
}
@media screen and (max-width: 650px){
	
	.intro{
		background: url(../img/top/plant.png) left top no-repeat;
		background-size: 98% auto;
		padding: 10% 0 15%;
		margin: -10% auto 0;
	}
	.intro .plant .text{
		width: var(--page-width);
		margin: 50% auto 0 auto;
	}
	.intro .plant .text p{
		padding-bottom: 8%;
	}
	.intro .more_btn{
		width: 100%;
	}
	.intro .more_btn a,
	.intro .more_btn a:hover{
		background-size: 20px;
	}
}

/* top/common
-------------------------------------------*/

/* Loading */

.loading{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 10000;
	background-color: var(--green);
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeOut 1.5s 2.5s forwards;
}
@keyframes fadeOut{
	0%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		visibility: hidden;
}}
.loading__logo{
	opacity: 0;
	animation: logo_fade 1.5s 1.5s forwards;
	width: 175px;
}
@keyframes logo_fade{
	0%{
		opacity: 0;
		transform: translateY(20px);
	}
	60%{
		opacity: 1;
		transform: translateY(0);
	}
	100%{
		opacity: 0;
}}

.top_sec{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: auto;
}
.top_sec .sec_title{
	position: relative;
	z-index: 1;
	line-height: 1;
	text-align: left;
	color: rgba(0,0,0,0);
	font-family: var(--font-en);
}
.top_sec .text_area{
	position: relative;
	z-index: 1;
	margin: 0 auto;
	text-align: left;
	width: var(--page-width);
}
.top_sec .text_area h2{
	font-size: 32px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--font-black);
}
.top_sec .more_btn a{
	color: var(--font-black);
	background: url(../img/common/ic_morebtn_bl.svg) 90% center no-repeat;
	background-size: 24px;
}
.top_sec .more_btn a:hover{
	background: url(../img/common/ic_morebtn_wh.svg) 90% center no-repeat;
	background-size: 24px;
	background-color: var(--font-black);
	color: #fff;
}

@media screen and (max-width: 960px){
}
@media screen and (max-width: 650px){
	
	.top_sec .text_area h2{
		font-size: 20px;
		margin-bottom: 8%;
	}
	.top_sec .more_btn a,
	.top_sec .more_btn a:hover{
		background-size: 20px;
	}
}


/* concept
-------------------------------------------*/

.concept{
	background: url(../img/top/bg_concept.jpg) center center no-repeat;
	background-size: cover;
}
.concept .text_area{
	padding: 15% 0;
}
.concept .text_area .read{
	font-size: 60px;
	line-height: 1.25;
	font-weight: bold;
	padding-bottom: 50px;
}
.concept .text_area p{
	width: 50%;
	color: #fff;
	text-align: justify;
}
.concept .text_area .orange{
	color: var(--orange);
}
.concept .text_area .text_line{
	color: rgba(0,0,0,0);
	-webkit-text-stroke: 1px #fff;
	text-stroke: 1px #fff;
}

@media screen and (max-width: 960px){
}
@media screen and (max-width: 650px){
	
	.concept{
		background: url(../img/top/bg_concept.jpg) center center no-repeat;
		background-size: cover;
	}
	.concept .text_area{
		padding: 20% 0;
	}
	.concept .text_area .read{
		font-size: 40px;
		padding-bottom: 8%;
	}
	.concept .text_area p{
		width: var(--page-width);
		margin: 0 auto;
	}
}


/* business
-------------------------------------------*/

.business{
	padding: 15% 0 20%;
}
.business .sec_title{
	-webkit-text-stroke: 1px var(--pale-blue);
	text-stroke: 1px var(--pale-blue);
	font-size: 110px;
	padding-left: 3%;
}
.business .text_area .inner{
	width: 56%;
}
.business .text_area p{
	padding-bottom: 50px;
	text-align: justify;
}
.business .ph{
	width: 260px;
	height: auto;
	margin: 50px -3% 0 auto;
}
.business .ph img{
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 20px;
}
.business .vertical_slider{
	z-index: 0;
	position: absolute;
	top: 15%;
	right: 0;
	width: 40%;
	height: 760px;
	overflow: hidden;
	border-radius: 50px 0 0 50px;
}
.vertical_slider .slider{
	width: 100%;
	height: auto;
}
.vertical_slider .slider li img{
	width: 100%;
	height: auto;
	object-fit: cover;
}

@media screen and (max-width: 960px){
}
@media screen and (max-width: 650px){
	
	.business{
		padding: 20% 0;
	}
	.business .sec_title{
		font-size: 40px;
	}
	.business .text_area .inner{
		width: 100%;
		display: flex;
		align-items: 40%;
		justify-content: space-between;
	}
	.business .text_area .inner div:first-child{
		width: 60%;
	}
	.business .text_area p{
		padding-bottom: 8%
	}
	.business .ph{
		width: 38%;
		margin: 0 -3.5% 0 0;
	}
	.business .ph img{
		width: 100%;
		height: auto;
		object-fit: cover;
		border-radius: 10px 0 0 10px;
	}
	.business .vertical_slider{
		position: relative;
		top: inherit;
		bottom: 0;
		width: 100%;
		height: auto;
		border-radius: 0;
		margin-top: 8%;
	}
}


/* works
-------------------------------------------*/

.works{
	padding: 12% 0 25%;
	background: url(../img/top/works_img.png) 130% 82% no-repeat;
	background-size: 82% auto;
	background-color: var(--pale-blue);
}
.works .sec_title{
	-webkit-text-stroke: 1px #fff;
	text-stroke: 1px #fff;
	font-size: 110px;
	padding-left: 3%;
}
.works .text_area .inner{
	width: 45%;
}
.works .text_area p{
	padding-bottom: 50px;
	/* テキスト背景色 */
	text-shadow: 1px 1px 0 var(--pale-blue),-1px -1px 0 var(--pale-blue),-1px 1px 0 var(--pale-blue),1px -1px 0 var(--pale-blue),0px 1px 0 var(--pale-blue),0-1px 0 var(--pale-blue),-1px 0 0 var(--pale-blue),1px 0 0 var(--pale-blue);
}

@media screen and (max-width: 960px){
}
@media screen and (max-width: 650px){
	
	.works{
		padding: 20% 0 90%;
		background: url(../img/top/works_img.png) 20% 90% no-repeat;
		background-size: 110% auto;
		background-color: var(--pale-blue);
	}
	.works .sec_title{
		font-size: 40px;
	}
	.works .text_area .inner{
		width: 100%;
	}
	.works .text_area p{
		padding-bottom: 8%;
	}
	.works .text_area .more_btn{
		background-color: rgba(var(--pale-blue-rbg),0.8);
	}
}


/* news
-------------------------------------------*/

.news{
	padding: 15% 0 20%;
}
.news .sec_title{
	-webkit-text-stroke: 1px var(--pale-blue);
	text-stroke: 1px var(--pale-blue);
	font-size: 110px;
	padding-left: 3%;
}
.news .text_area h2{
	border: none;
	margin-bottom: 0;
}
.news .news_head{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 20px;
}
.news .more_btn a{
	width: 130px;
	height: 50px;
	line-height: 48px;
	font-size: 14px;
	text-align: left;
	padding-left: 32px;
}
.news .more_btn a,
.news .more_btn a:hover{
	background-size: 20px auto;
}
.news_tabs{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.tab_item{
	position: relative;
	flex: 1;
	height: 50px;
	line-height: 46px;
	text-align: center;
	font-weight: bold;
}
.tab_item{
	border: 1px solid #ddd;
	border-right: 0;
}
.tab_item:nth-of-type(4){
	border-right: 1px solid #ddd;
}
.tab_item:hover{
	color: var(--green);
}
.tab_content{
	flex: 100%;
	display: none;
	overflow: hidden;
}
input[name="tab_item"]{
	display: none;
}
.news_tabs input:checked + .tab_item{
	color: #fff;
	background-color: var(--green);
}
.news_tabs input:checked + .tab_item::after{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: var(--green) transparent transparent transparent;
	display: block;
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -10px;
}
#all:checked ~ #all_content,
#info:checked ~ #info_content,
#recruit_info:checked ~ #recruit_info_content,
#event:checked ~ #event_content{
	display: block;
}
.tab_content{
	position: relative;
	animation: fadeIn 1s ease;
}
.tab_content_description{
	padding-top: 20px;
}
.tab_content_description a{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-bottom: 1px solid #ddd;
	width: 100%;
	padding: 20px 0;
}
.tab_content_description a p{
	text-align: center;
}
.tab_content_description a p.category{
	width: 12%;
	height: 36px;
	line-height: 36px;
	margin-top: 4px;
	font-size: 80%;
	color: var(--green);
	background-color: rgba(var(--green-rgb),0.15);
}
.tab_content_description a p.date{
	width: 12%;
	font-weight: bold;
	letter-spacing: 0.15em;
}
.tab_content_description a p.title{
	width: 70%;
	text-align: left;
}
.tab_content_description a:hover{
	color: var(--green);
}

@media screen and (max-width: 960px){
}
@media screen and (max-width: 650px){
	.news{
		padding: 20% 0;
	}
	.news .sec_title{
		font-size: 40px;
	}
	.news .news_head{
		padding-bottom: 8%;
	}
	.news .more_btn a{
		width: 100px;
		height: 40px;
		line-height: 38px;
		padding-left: 20px;
		font-size: 11px;
	}
	.news .more_btn a,
	.news .more_btn a:hover{
		background-size: 16px auto;
	}
	.tab_content_description{
		padding-top: 3%;
	}
	.tab_content_description a{
		padding: 5% 0;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: flex-start;
	}
	.tab_content_description a p.category{
		width: 110px;
		height: 28px;
		line-height: 28px;
		letter-spacing: 0.2em;
		font-weight: bold;
		margin-top: 0;
	}
	.tab_content_description a p.date{
		width: 50%;
		padding-left: 3%;
		text-align: left;
	}
	.tab_content_description a p.title{
		width: 100%;
		padding-top: 2%;
	}
}


/* bnr
-------------------------------------------*/

.bnr_area{
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 96%;
	margin: 0 auto;
	padding-top: 10%;
}
.bnr_area #special_mv{
	background: url(../img/top/bnr_special_mv.jpg) center center no-repeat;
	background-size: cover;
}
.bnr_area #five_s{
	background: url(../img/top/bnr_5s.jpg) center center no-repeat;
	background-size: cover;
}
.bnr_area .item{
	width: 49%;
	border-radius: 20px;
}
.bnr_area .item a{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	padding: 15% 5%;
}
.bnr_area .item a:hover{
	opacity: var(--hover);
}
.bnr_area .bnr_title{
	text-align: left;
	line-height: 1.2;
}
.bnr_area .bnr_title .serif{
	font-size: 20px;
}
.bnr_area .bnr_title .title{
	font-size: 36px;
}
.bnr_area .bnr_title .sub{
	padding-top: 2%;
}
.bnr_area .item a .more_btn{
	position: absolute;
	bottom: 8%;
	right: 3%;
	width: 140px;
	height: 40px;
	line-height: 38px;
	border-radius: 20px;
	font-size: 12px;
	text-align: left;
	padding-left: 30px;
	border: 1px solid #fff;
	background: url(../img/common/ic_morebtn_wh.svg) 90% center no-repeat;
	background-size: 16px;
	transition: all 0.2s ease;
}
.bnr_area .item a:hover .more_btn{
	color: var(--font-black);
	background: url(../img/common/ic_morebtn_bl.svg) 90% center no-repeat;
	background-size: 16px;
	background-color: #fff;
}

@media screen and (max-width: 960px){
}
@media screen and (max-width: 650px){
	.bnr_area{
		display: block;
		width: 84%;
		padding-top: 20%;
	}
	.bnr_area #special_mv{
		background: url(../img/top/bnr_special_mv.jpg) center center no-repeat;
		background-size: cover;
		margin-bottom: 3%;
	}
	.bnr_area #five_s{
		background: url(../img/top/bnr_5s.jpg) center center no-repeat;
		background-size: cover;
	}
	.bnr_area .item{
		width: 100%;
		border-radius: 10px;
	}
	.bnr_area .item a{
		height: 200px;
		padding: 8%;
	}
	.bnr_area .bnr_title{
		line-height: 1.4;
	}
	.bnr_area .bnr_title .serif{
		font-size: 14px;
	}
	.bnr_area .bnr_title .title{
		font-size: 28px;
		letter-spacing: .075em;
	}
	.bnr_area .bnr_title .sub{
		padding-top: 0;
	}
	.bnr_area .item a .more_btn{
		font-size: 11px;
	}
}


/* recruit
-------------------------------------------*/

.recruit{
	color: #fff;
	background: url(../img/top/bg_recruit.gif) left top repeat;
	background-size: 180% auto;
}
.recruit_visual{
	background: url(../img/top/recruit_visual.jpg) center center no-repeat;
	background-size: cover;
	padding: 15% 0;
}
.recruit_visual .tag,
.recruit_visual .read{
	font-family: "zen-old-mincho", sans-serif;
}
.recruit_visual .tag{
	display: inline;
	font-size: 16px;
	padding: 8px 16px;
	background: var(--font-black);
}
.recruit_visual .read{
	font-size: 36px;
}
.loop{
	position: relative;
	z-index: 1;
}
.loop_text{
	display: flex;
	width: 100%;
	margin-top: -62px;
	font-family: var(--font-en);
}
.loop__item{
	flex: 0 0 auto;
	font-size: 60px;
	white-space: nowrap;
	overflow: hidden;
	width: 1500px;
}
.loop__item:nth-child(odd){
	animation: loop 50s -25s linear infinite;
}
.loop__item:nth-child(even){
	animation: loop2 50s linear infinite;
}
@keyframes loop{
	0%{
		transform: translateX(-100%);
	}to{
		transform: translateX(100%);
	}
}
@keyframes loop2{
	0%{
		transform: translateX(-200%);
	}to{
		transform: translateX(0);
	}
}
.recruit_f_contents{
	position: relative;
	width: 100%;
	padding: 3% 0 10%;
	background: url(../img/recruit/recruit_img.png) 10% top no-repeat;
	background-size: 200px auto;
}
.recruit_f_contents .text_area{
	width: var(--page-width);
	height: auto;
	overflow: hidden;
	margin: 0 auto;
	z-index: 0;
}
.recruit_f_contents .text_area .inner{
	width: 40%;
}
.recruit_f_contents .text_area .inner h2{
	border: none;
}
.recruit_f_contents .text_area .inner p{
	padding-bottom: 30px;
}
.recruit_f_contents .text_area .inner .more_btn a{
	margin-top: 20px;
	color: #fff;
	border-color: #fff;
	background: url(../img/common/ic_morebtn_wh.svg) 90% center no-repeat;
}
.recruit_f_contents .text_area .inner .more_btn a:hover{
	background: url(../img/common/ic_morebtn_bl.svg) 90% center no-repeat;
	background-color: #fff;
	color: var(--font-black);
}
.recruit_f_contents .staff_gallery{
	position: absolute;
	top: 40%;
	right: 0;
	transform: translateY(-50%);
	border-radius: 10px 0 0 0;
	overflow: hidden;
	width: 50%;
}
.staff_slider li a{
	display: block;
	margin: 0 10px;
}
.staff_slider li a .box{
	background: #182538;
	border-radius: 10px;
	width: 250px;
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}
.staff_slider li a .box img{
	width: auto;
	height: 88%;
	object-fit: cover;
}
.staff_slider li a:hover .box{
	background: #111f32;
}
.staff_slider li a:hover .box img{
	opacity: 1;
}
.staff_slider li a .job{
	color: #fff;
	font-size: 22px;
	padding-top: 3%;
	letter-spacing: .15em;
}
.staff_slider li a .job span{
	font-family: var(--font-en);
	color: var(--green);
	padding-right: 8px;
}

@media screen and (max-width: 960px){
}
@media screen and (max-width: 650px){
	
	.recruit{
		background-size: 500% auto;
	}
	.recruit_visual{
		background: url(../img/top/recruit_visual.jpg) 10% center no-repeat;
		background-size: cover;
		padding: 25% 0;
	}
	.recruit_visual .tag{
		font-size: 13px;
		padding: 4px 10px 6px;
	}
	.recruit_visual .read{
		font-size: 18px;
	}
	.loop_text{
		margin-top: -34px;
		transition: all 0.2s ease;
	}
	.loop__item{
		font-size: 36px;
		width: 880px;
	}
	.recruit_f_contents{
		position: relative;
		width: 100%;
		padding: 15% 0 25%;
		background: url(../img/recruit/recruit_img.png) 10% 5% no-repeat;
		background-size: 40% auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.recruit_f_contents .text_area{
		text-align: justify;
		padding-bottom: 15%;
	}
	.recruit_f_contents .text_area h2{
		margin-bottom: 3%;
	}
	.recruit_f_contents .text_area .inner p{
		padding-bottom: 5%;
	}
	.recruit_f_contents .text_area .inner,
	.recruit_f_contents .staff_gallery{
		width: 100%;
	}
	.recruit_f_contents .text_area .inner .more_btn a,
	.recruit_f_contents .text_area .inner .more_btn a:hover{
		background-size: 20px;
	}
	.recruit_f_contents .staff_gallery{
		position: static;
		transform: translateY(0);
		border-radius: 0;
	}
	.staff_slider li a{
		margin: 0 6px;
	}
	.staff_slider li a .box{
		border-radius: 10px;
		width: 160px;
		height: 160px;
	}
	.staff_slider li a .box img{
		height: 82%;
	}
	.staff_slider li a .job{
		font-size: 14px;
		letter-spacing: .1em;
	}
}