@charset "utf-8";
/* CSS Document */
.fv{
	position: relative;
	overflow: hidden;
}
.fv_contents{
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 1440px;
	margin: 0 auto;
	z-index: 3;
	padding: 150px 50px 100px;
	gap: 50px;
}
body.on .fv_contents{
	min-height: 100vh;
}
body:not(.on) .fv_contents{
	height: 2000px;
}
.fv_contents .fv_item{
	position: relative;
	width: calc(100% / 2 - 50px / 2);
	opacity: 1;
	transition: ease 0.8s;
}
.fv_contents .fv_item:first-of-type{
	width: 100%;
}

body:not(.on) .fv_contents .fv_item{
	background-color: #000;
}
.fv_contents .fv_item.off{
	opacity: 0.2;
}

.fv_contents .fv_item:hover{
	opacity: 1;transform: scale(1.05);
}

body.on .fv_contents .fv_item > .bg_img_wrap{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	z-index: 1;
}
body.on .fv_contents.active .fv_item > .bg_img_wrap{
	animation-name: fv_item_in;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
body.on .fv_contents .fv_item2 > .bg_img_wrap{
	animation-delay: 0.3s;
}
body.on .fv_contents .fv_item3 > .bg_img_wrap{
	animation-delay: 0.6s;
}
@keyframes fv_item_in {
	0% {
		transform: translateY(80px);
		opacity: 0;
	}
	100% {
		opacity: 0.5;
		transform: translateY(0px);
	}
}

body.on .fv_contents .fv_item::after,body.on .fv_item_bg_wrap .fv_item_bg::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	mix-blend-mode: multiply;
	opacity: 0.8;
	transition: ease 0.5s;
}
body.on .fv_contents .fv_item::after{
	background-color: rgba(0,0,0,0.40);
	border-radius: 15px;
}
body.on .fv_contents .fv_item:hover::after{
	opacity: 0.4;
}
/*
body.on .fv_contents .fv_item1::after,body.on .fv_item_bg_wrap .fv_item_bg1::after{
	background-color: #29A7DE;
}
body.on .fv_contents .fv_item2::after,body.on .fv_item_bg_wrap .fv_item_bg2::after{
	background-color: #EFE7E1;
}
body.on .fv_contents .fv_item3::after,body.on .fv_item_bg_wrap .fv_item_bg3::after{
	background-color: #C19857;
}
*/
.fv_contents .fv_item .txtbox{
	position: relative;
	z-index: 2;
	padding: 20px 5%;
}
.fv_contents .fv_item .txtbox h1,.fv_contents .fv_item .txtbox h2,.fv_contents .fv_item .txtbox p,.fv_contents .fv_item .txtbox i{
	color: #fff;
}
.fv_contents .fv_item .txtbox .titlebox p.font-italianno{
	display: block;
	text-align: center;
}
.fv_contents .fv_item .txtbox .titlebox p.font-italianno::first-letter{
	color: #debb55;
}
.fv_contents .fv_item1 .txtbox .titlebox p.font-italianno::first-letter{
	color: #29A7DE;
}
.fv_contents .fv_item2 .txtbox .titlebox p.font-italianno::first-letter{
	color: rgba(216,216,178,1);
}
.fv_contents .fv_item3 .txtbox .titlebox p.font-italianno::first-letter{
	color: rgba(222,187,85,1);
}
.fv_contents .fv_item .txtbox i{
	display: block;
	width: 100%;
	text-align: center;
}

body.on .fv_contents .fv_item > .bg_img_wrap,body.on .fv_contents .fv_item .txtbox,body.on .fv_contents .fv_item::after{
	-ms-filter: blur(6px);
	filter: blur(6px);
	transform: translateY(80px);
	opacity: 0;
}

body.on .fv_contents.active .fv_item > .bg_img_wrap,body.on .fv_contents.active .fv_item .txtbox,body.on .fv_contents.active .fv_item::after{
	animation-name: fv_item_in;
	animation-duration: 1.6s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
body.on .fv_contents.active .fv_item2 > .bg_img_wrap,body.on .fv_contents.active .fv_item2 .txtbox,body.on .fv_contents.active .fv_item2::after{
	animation-delay: 0.4s;
}
body.on .fv_contents.active .fv_item3 > .bg_img_wrap,body.on .fv_contents.active .fv_item3 .txtbox,body.on .fv_contents.active .fv_item3::after{
	animation-delay: 0.8s;
}
@keyframes fv_item_in {
	0% {
		-ms-filter: blur(6px);
		filter: blur(6px);
		transform: translateY(80px);
		opacity: 0;
	}
	100% {
		-ms-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
		transform: translateY(0px);
	}
}


body.on .fv_item_bg_wrap{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% + 20px);
	height: calc(100% + 20px);
	overflow: hidden;
	-ms-filter: blur(6px);
	filter: blur(6px);
	background-color: #000;
}
body.on .fv_item_bg_wrap .fv_item_bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0;
	transition: ease 0.4s;
}
body.on .fv_item_bg_wrap .fv_item_bg::after{
background: rgb(38,33,73);
background: radial-gradient(circle, rgba(38,33,73,1) 0%, rgba(0,0,0,1) 100%);
}
body.on .fv_item_bg_wrap .fv_item_bg1{
	opacity: 1;
	z-index: 1;
}
body.on .fv_item_bg_wrap .fv_item_bg.on{
	opacity: 0;
}
body.on .fv_item_bg_wrap .fv_item_bg.active{
	opacity: 1;
}


.section01 .imgbox,.section02 .box_wrap .box .imgbox{
	width: 60%;
}
.section01 .txtbox,.section02 .box_wrap .box .txtbox{
	width: 40%;
}

.section01{
	padding: 0 50px;
}
.section01 .imgbox{
	position: relative;
	z-index: 1;
}
body.on .section01 .imgbox::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}
.section01 .txtbox{
	position: relative;
	z-index: 2;
	padding-right: 30px;
}
.section01 .txtbox .font-italianno{
	font-size: 10vw;
	line-height: 1;
}
.section01 .txtbox .titlebox{
	padding-left: 8vw;
}
.section01 .txtbox h2,.section02 .txtbox h2{
	position: relative;
	font-size: 2vw;
	padding-left: 80px;
	white-space: nowrap;
}
.section01 .txtbox h2::after{
	content: "";
	position: absolute;
	width: 60px;
	height: 1px;
	top: 50%;
	left: 0;
	background-color: #B1883A;
}
.section01 .txtbox .font-italianno{
	color: #e5e5e5;
}
.section01 .txtbox .font-italianno::first-letter{
	transition: ease 0.4s;
}
.section01 .txtbox .font-italianno.active::first-letter{
	color: #debb55;
}
.section01 .txtbox h2{
	font-weight: 500;
}
.section02 .box_wrap .box{
	align-items: flex-start;
	margin-top: 15%;
}
/*
.section02 .box_wrap .box:nth-of-type(odd){
	background-color: #C19857;
}
.section02 .box_wrap .box:nth-of-type(odd) h2,.section02 .box_wrap .box:nth-of-type(odd) p{
	color: #fff;
}
.section02 .box_wrap .box:nth-of-type(even){
	flex-flow: row-reverse;
	background-color: #EFE7E1;
}
.section02 .box_wrap .box:nth-of-type(even) .titlebox h2,.section02 .box_wrap .box:nth-of-type(even) .titlebox p{
	color: #B1883A;
}
*/
.section02 .box_wrap .box .titlebox h2{
	color: #B1883A;
}
.section02 .box_wrap .box:nth-of-type(even){
	flex-flow: row-reverse;
}
.section02 .box_wrap .box .imgbox{
	transform: translateY(-10%);
}
.section02 .box_wrap .box .txtbox{
	background-color: rgba(255,255,255,0.90);
	padding: 50px;
	position: relative;
	box-shadow:  0 0 20px rgba(0,0,0,0.1);
}
.section02 .box_wrap .box:nth-of-type(odd) .txtbox{
	transform: translate(-80px,80px);
}
.section02 .box_wrap .box:nth-of-type(even) .txtbox{
	transform: translate(80px,80px);
}
.section02 .box_wrap .box .txtbox::before{
	content: "";
	position: absolute;
	top: 0;
	width: 100%;
	height: 1px;
}
.section02 .box_wrap .box .txtbox::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgb(245,247,217);
	background: linear-gradient(180deg, rgba(245,247,217,1) 0%, rgba(222,187,85,1) 36%, rgba(169,121,48,1) 75%, rgba(169,101,47,1) 100%);
}
.section02 .box_wrap .box:nth-of-type(odd) .txtbox::before{
	left: 0;
	background: rgb(245,247,217);
	background: linear-gradient(90deg, rgba(245,247,217,1) 0%, rgba(222,187,85,1) 36%, rgba(169,121,48,1) 75%, rgba(169,101,47,1) 100%);
}
.section02 .box_wrap .box:nth-of-type(odd) .txtbox::after{
	left: 0;
}
.section02 .box_wrap .box:nth-of-type(even) .txtbox::before{
	right: 0;
	background: rgb(245,247,217);
	background: linear-gradient(270deg, rgba(245,247,217,1) 0%, rgba(222,187,85,1) 36%, rgba(169,121,48,1) 75%, rgba(169,101,47,1) 100%);
}
.section02 .box_wrap .box:nth-of-type(even) .txtbox::after{
	right: 0;
}

.section02 .txtbox .font-italianno{
	font-size: 6vw;
	line-height: 1;
}
.section02 .txtbox h2{
	padding-left: 0!important;
}

.section02 .txtbox p.font-italianno{
	display: block;
	text-align: center;
	color: #e5e5e5;
}
.section02 .txtbox p.font-italianno::first-letter{
	color: #debb55;
}
.section02 #box1 .txtbox p.font-italianno::first-letter{
	color: #29A7DE;
}
.section02 #box2 .txtbox p.font-italianno::first-letter{
	color: rgba(216,216,178,1);
}
.section02 #box3 .txtbox p.font-italianno::first-letter{
	color: rgba(222,187,85,1);
}

body.on .section02 .box_wrap .box .imgbox,body.on .section02 .box_wrap .box .txtbox{
	opacity:0;
	-ms-filter: blur(6px);
	filter: blur(6px);
}
body.on .section02 .box_wrap .box .imgbox{
	transform: translateY(50px);
}
body.on .section02 .box_wrap .box .txtbox{
	animation-delay: 0.6s;
}
body.on .section02 .box_wrap .box.active .imgbox{
	animation-name: blurin2;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
body.on .section02 .box_wrap .box.active .txtbox{
	animation-name: blurin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.section03 .contents .webgene-blog{
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
	flex-direction: row;
	gap: 50px;
}
.section03 .contents .webgene-blog .webgene-item{
	width: calc(100% / 3 - 100px / 3);
}
.section03 .contents .webgene-blog .webgene-item a{
	background-color: #fff;
}
.section03 .contents .webgene-blog .webgene-item a .img-box{
}
.section03 .contents .webgene-blog .webgene-item a .cate-txt{
	background-color: #C19857;
	color: #fff;
	padding: 4px 20px;
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.fv_contents{
		height: 100%;
		padding: 100px 30px 50px;
		gap: 30px;
	}
	.fv_contents .fv_item{
		width: calc(100% / 2 - 30px / 2);
		border-radius: 15px;
	}
	
	.section01 .imgbox,.section02 .box_wrap .box .imgbox{
		width: 50%;
	}
	.section01 .txtbox,.section02 .box_wrap .box .txtbox{
		width: 50%;
	}

	
	.section01 .txtbox .titlebox{
		padding-left: 0;
	}
	.section01 .txtbox h2{
		font-size: 2.4vw;
		padding-left: 70px;
	}
	.section01 .txtbox h2::after{
		width: 50px;
	}
	
	.section02 .box_wrap .box:nth-of-type(odd) .txtbox{
		transform: translate(-50px,50px);
	}
	.section02 .box_wrap .box:nth-of-type(even) .txtbox{
		transform: translate(50px,50px);
	}
	
	.section03 .contents .webgene-blog{
		gap: 40px;
	}
	.section03 .contents .webgene-blog .webgene-item{
		width: calc(100% / 3 - 80px / 3);
	}
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.fv_contents{
		height: 100%;
		padding: 100px 20px 50px;
		gap: 20px;
	}
	.fv_contents .fv_item{
		width: calc(100% / 2 - 20px / 2);
		border-radius: 15px;
	}
	
	.section01 .imgbox{
		width: 80%;
		margin-left: 20%;
	}
	.section01 .txtbox{
		width: 80%;
		margin-right: 20%;
		transform: translateY(-50px);
		padding-right: 0;
	}
	.section01 .txtbox h2{
		font-size: 3vw;
		padding-left: 70px;
	}
	.section02 .box_wrap .box .imgbox{
		width: 80%;
	}
	.section02 .box_wrap .box .txtbox{
		width: 80%;
		padding-top: 50px;
		box-shadow: none;
	}
	.section02 .box_wrap .box:nth-of-type(odd) .txtbox{
		transform: translate(0px,0px);
	}
	.section02 .box_wrap .box:nth-of-type(even) .txtbox{
		transform: translate(0px,0px);
	}
	.section02 .box_wrap .box:nth-of-type(even){
		flex-flow: wrap;
	}
	.section02 .box_wrap .box .txtbox::before{
		display: none;
	}
	.section02 .box_wrap .box .txtbox::after{
		display: none;
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.fv_contents{
		height: 100%;
		padding: 100px 30px 50px;
		gap: 20px;
	}
	.fv_contents .fv_item{
		width: 100%;
		border-radius: 15px;
	}
	
	
	
	.section03 .contents .webgene-blog{
		gap: 20px;
	}
	.section03 .contents .webgene-blog .webgene-item{
		width: calc(100% / 3 - 40px / 3);
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.fv_contents{
		height: 100%;
		padding: 80px 20px 50px;
		gap: 20px;
	}
	.fv_contents .fv_item{
		width: 100%;
		border-radius: 15px;
		opacity: 1;
	}
	
	.section01{
		padding: 0 20px;
	}
	.section01 .imgbox,.section02 .box_wrap .box .imgbox{
		width: 100%;
		margin-left: 0;
		margin-bottom: 30px;
	}
	.section01 .txtbox,.section02 .box_wrap .box .txtbox{
		width: 100%;
		margin-right: 0;
		transform: translateY(0);
		padding-right: 0;
	}
	.section01 .txtbox .font-italianno,.section02 .txtbox .font-italianno{
		font-size: 50px;
		text-align: center;
	}
	.section01 .txtbox h2,.section02 .txtbox h2{
		font-size: 20px;
		padding-left: 40px;
		white-space: normal;
	}
	.section01 .txtbox h2::after{
		width: 30px;
	}
	
	.section02 .box_wrap .box .imgbox{
		width: 100%;
	}
	.section02 .box_wrap .box .txtbox{
		width: 100%;
		padding: 30px 20px 30px;
	}
	.section03 .contents .webgene-blog{
		gap: 30px;
	}
	.section03 .contents .webgene-blog .webgene-item{
		width: 90%;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

