@charset "UTF-8";

.top_slider .box{
	position: relative;
}
.top_slider .box .visual_content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	opacity: 0;
	transition: opacity 0.6s ease 0.6s;
	color: #FFFFFF;
	width: 65%;
}
.top_slider .box .visual_content img{
	width: 100%;
}

.top_slider .box.slick-active .visual_content{
	opacity: 1;
}
.top_slider .box .visual_content .subtitle{
	font-size: 3rem;
	font-weight: normal;
	line-height: 1.52;
}
.top_slider .box .visual_content .text{
	margin-top: 30px;
}
.top_slider .slick-dots {
    bottom: 0px;
    text-align: right;
    padding: 10px 20px;
}
.top_slider .slick-dots li button{
}
.top_slider .slick-dots li button:before{
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background-color: #FFFFFF;
	left: 50%;
	top: 50%;
	transform: translate3d(-50%,-50%,0);
}
.top_slider .slick-dots li.slick-active button:before,
.top_slider .slick-dots li button:hover:before{
	width: 10px;
	height: 10px;
}

@media (max-width: 768px) {
	.top_slider .box .visual_content {
		width: 100%;
	}
	.top_slider .slick-dots {
		padding: 5px 10px;
	}
	.top_slider .slick-dots li{
		width: 10px;
	}
	.top_slider .box .visual_content .subtitle{
		font-size: 1.75rem;
	}
	.top_slider .box .visual_content .text {
		font-size: 0.88rem;
		margin-top: 20px;
	}
}


/*** #top_about ***/
#top_about{
	padding-top: 100px;
	padding-bottom: 120px;
}
#top_about .block{
	display: flex;
}
#top_about .text_wrap{
	width: 60%;
	padding-left: calc((100vw - 1180px) / 2);
}
#top_about .thumb_wrap{
	width: 40%;
}
#top_about .thumb{
}
.top_about_subtitle{
	padding-top: 100px;
	font-size: 2.7rem;
	line-height: 1.43;
	color: #76952F;
	margin-bottom: 30px;
}
#top_about .text{
	font-size: 1.1rem;
	line-height: 2.14;
}
.btn_list{
	margin-top: 80px;
	display: flex;
	margin-left: -20px;
}
.btn_list li{
	padding-left: 20px;
}


@media (max-width: 768px) {
	#top_about{
		padding-top: 50px;
		padding-bottom: 60px;
	}
	#top_about .text_wrap{
		width: 100%;
	}
	#top_about .block{
		flex-direction: column;
		padding-left: 15px;
		padding-right: 15px;
	}
	#top_about .text_wrap{
		width: 100%;
		padding-left: 0px;
		order: 2;
	}
	#top_about .thumb_wrap{
		width: 100%;
		order: 1;
	}
	#top_about .thumb{
		width: 100%;
	}
	.top_about_subtitle{
		padding-top: 50px;
		font-size: 1.57rem;
		line-height: 1.43;
		color: #6d7c37;
		margin-bottom: 20px;
	}
	#top_about .text{
		font-size: 0.88rem;
		line-height: 2.14;
	}
	.btn_list{
		margin-top: 40px;
		display: flex;
		margin-left: -10px;
	}
	.btn_list li{
		padding-left: 10px;
		width: 50%;
	}

}



/*** common ***/
.top_business{
	width: 100%;
	height: 520px;
	position: relative;
	z-index: 1;
	color: #FFFFFF;
	overflow: hidden;
}
.top_business .bg{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	z-index: -1;
	transition: transform 0.3s ease;
}

.top_business:hover .bg{
	transform: scale(1.2);
}

.top_business .bg:before{
	content: "";
	display: inline-block;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	background-color: rgba(0,0,0,0.20);
	opacity: 0;
	transition: opacity 0.3s ease;
}
.top_business:hover{
	cursor: pointer;
}
.top_business:hover .bg:before{
	opacity: 1;
}
.top_business .container{
	height: 100%;
}
.top_business .block{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}

.top_business .btn_more{
	display: inline-flex;
	align-items: center;
	font-size: 1rem;
	padding: 10px 20px;
	border: 1px solid;
	transition: background 0.3s ease;
}
.top_business .btn_more:hover{
	background-color: rgba(254,254,254,0.20);
}
.top_business .btn_more .arrow_right{
	display: inline-block;
	margin-left: 20px;
	width: 60px;
	height: 10px;
	position: relative;
}
.top_business .btn_more .arrow_right:before{
	content: "";
	display: inline-block;
	width: 100%;
	height: 1px;
	background-color: #FFFFFF;
	position: absolute;
	left: 0px;
	bottom: 0px;
	transition: background 0.3s ease;
}
.top_business .btn_more .arrow_right:after{
	content: "";
	display: inline-block;
	width: 30%;
	height: 1px;
	background-color: #FFFFFF;
	position: absolute;
	right: 0px;
	bottom: 0px;
	transform: rotate(30deg);
	transform-origin: right bottom;
	transition: background 0.3s ease;
}
.top_business .subtitle{
	font-size: 3rem;
	font-weight: normal;
	line-height: 1.52;
}
.top_business .text{
	margin-top: 30px;
	font-size: 1.3rem;
}
.top_business .more{
	margin-top: 100px;
}



@media (max-width: 768px) {
	.top_business{
		height: 270px;
	}
	.top_business .bg:before{
		opacity: 1;
	}
	.top_business .subtitle{
		font-size: 1.75rem;
		text-align: center;
	}
	.top_business .text {
		text-align: center;
		margin-top: 20px;
		font-size: 1rem;
	}
	.top_business .more {
		margin-top: 20px;
		text-align: center;
	}

	.top_business .inner{
		margin: 0 auto;
	}
}




/*** top_school ***/
#top_school .bg{
	background-image: url("../images/top/school_bg.jpg");
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	#top_schoo .bg{
		background-image: url("../images/top/school_bg@2x.jpg");
	}
}


/*** top_distribution ***/
#top_distribution .bg{
	background-image: url("../images/top/distribution_bg.jpg");
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	#top_distribution .bg{
		background-image: url("../images/top/distribution_bg@2x.jpg");
	}
}


/*** top_human ***/
#top_human .bg{
	background-image: url("../images/top/human_bg.jpg");
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	#top_human .bg{
		background-image: url("../images/top/human_bg@2x.jpg");
	}
}



/*** top_human ***/
#top_bakery .bg{
	background-image: url("../images/top/bakery_bg.jpg");
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	#top_bakery .bg{
		background-image: url("../images/top/bakery_bg@2x.jpg");
	}
}




