@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;600;700&display=swap');

html,
body {
	padding: 0;
	margin: 0;
	font-family: 'Hanken Grotesk', sans-serif;
}
ul,li {
	padding: 0;
	margin: 0;
	list-style: none;
}
a {
	text-decoration: none;
}
img {
	width: 100%;
	border: none;
}


#cl {
	width: 100%;
}
#cl .img {
	line-height: 0;
}
#cl .spview {
	display: none;
}
@media only screen and (max-width: 768px)  {
	#cl .spview {
		display: block;
	}
	#cl .pcview {
		display: none;
	}
}

#main_visual {
	width: 100%;
	position: relative;
	background: #7a7d73;
}
#main_visual .visual {
	width: 100%;
	line-height: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto;
}
#main_visual .title {
	position: absolute;
	top: 40%;
	left: 50%;
	width: 50%;
	transform: translate(-50%,-50%);
}
#main_visual .title .top {
	line-height: 0;
	margin-bottom: 2%;
}
#main_visual .title .sub {
	width: 15%;
	margin-left: 84%;
}

@media only screen and (max-width: 768px)  {
	#main_visual .visual {
		width: 100%;
		line-height: 0;
		display: block;
		grid-template-columns: auto;
		grid-template-rows: auto;
	}
	#main_visual .title {
		position: absolute;
		top: 0%;
		left: 10%;
		width: 80%;
		height: 100%;
		transform: translate(0);
	}
	#main_visual .title img {
		position: sticky;
		top: 50%;
		transform: translate(0,-50%);
	}
}




#main_contents {
	width: 100%;
	background: #7a7d73;
}
#main_contents .section {
	position: relative;
}
#main_contents .section ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
#main_contents .section ul li:nth-of-type(1) {
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}
#main_contents .section:nth-of-type(even) ul li:nth-of-type(1) {
	grid-column: 2 / 4;
}
#main_contents .section ul li {
	opacity: 0;
	filter: blur(10px);
	transform: translate(0,20px);
	transition: 1.5s all 0s ease;
}
#main_contents .section ul li:nth-of-type(2) {
	transition: 1.5s all 0.5s ease;
}
#main_contents .section ul li:nth-of-type(3) {
	transition: 1.5s all 1s ease;
}
#main_contents .section.ac ul li {
	opacity: 1;
	filter: blur(0);
	transform: translate(0);
}
@media only screen and (max-width: 768px)  {
	#main_contents .section ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
	#main_contents .section ul li:nth-of-type(1) {
		grid-column: 1 / 3;
		grid-row: auto;
	}
	#main_contents .section:nth-of-type(even) ul li:nth-of-type(1) {
		grid-column: 1 / 3;
	}	
}


#main_contents .section .no {
	display: block;
	position: absolute;
	top: 40px;
	left: 40px;
	color: #000;
	font-size: 60px;
	letter-spacing: 1px;
	font-weight: 600;
	line-height: 1;
	opacity: 0;
	transition: 1.5s all 0s ease;
	transform: translate(0,-20px);
	z-index: 10
}
#main_contents .section:nth-of-type(even) .no {
	left: auto;
	right: 40px;
}
#main_contents .section:nth-of-type(6) .no {
	color: #ddd;
}
#main_contents .section.ac .no {
	opacity: 0.9;
	transform: translate(0);
}
#main_contents .section .full {
	position: relative;
	opacity: 0;
	filter: blur(10px);
	transform: translate(0,20px);
	transition: 1.5s all 0s ease;
}
#main_contents .section .full.ac {
	position: relative;
	opacity: 1;
	filter: blur(0px);
	transform: translate(0);
}
#main_contents .section .item a {
	display: block;
	position: absolute;
	top: 50%;
	right: 10%;
	transform: translate(0,-50%);
	color: #000;
	font-size: 20px;
	letter-spacing: 1px;
	font-weight: 600;
	line-height: 2.2;
	opacity: 0;
	transition: 1.5s all 0s ease;
	z-index: 10;
}
#main_contents .section.ac .item a {
	opacity: 0.9;
}
#main_contents .section:nth-of-type(even) .item a {
	right: auto;
	left: 10%;
}
#main_contents .section:nth-of-type(6) .item a {
	color: #ddd;
}
#main_contents .section .item a span.btn {
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 600;
	margin: 0 25px;
	padding: 0 50px 0 0;
	position: relative;
	line-height: 1;
}
#main_contents .section .item a span.btn::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
}
#main_contents .section:nth-of-type(6) .item a span.btn::before {
	background: #ddd;
}
@media only screen and (max-width: 768px)  {
	#main_contents .section .no {
		top: 20px;
		left: auto;
		right: 20px;
		font-size: 40px;
	}
	#main_contents .section:nth-of-type(even) .no {
		left: 20px;
		right: auto;
	}
	#main_contents .section .item a {
		display: block;
		position: absolute;
		top: 50%;
		transform: translate(0,-50%);
		right: 5%;
		font-size:12px;
		line-height: 1.4;
		text-align: right;
	}
	#main_contents .section:nth-of-type(even) .item a {
		left: 5%;
		right: auto;
		text-align: left;
	}
	#main_contents .section .item a span.btn {
		font-size: 10px;
		display: block;
		margin: 10px 0 0 0;
		padding: 0 0 0 0;
	}
}


#main_foot {
	position: relative;
}
#main_foot .banner {
	overflow: hidden;
	width: 90%;
	height: 70vh;
	box-sizing: border-box;
	margin: 5% auto;
	position: relative;
}
#main_foot .title {
	position: absolute;
	top: 50%;
	left: 5%;
	width: 40%;
	transform: translate(0,-50%);
}
@media only screen and (max-width: 768px)  {
	#main_foot .banner {
		width: 90%;
		height: auto;
	}
	#main_foot .title {
		position: absolute;
		top: 50%;
		left: 5%;
		width: 80%;
		filter: invert(1)
	}
}



#main_visual .visual {
	opacity: 0;
	transition: 1.5s all 0s ease;
}
#main_visual .title {
	opacity: 0;
	filter: blur(20px);
	transition: 2s all 1.2s ease;
}
#main_visual.ac .visual {
	opacity: 1;
}
#main_visual.ac .title {
	opacity: 0.9;
	filter: blur(0);
}


