@charset "UTF-8";
/* CSS Document */


#main_visual {
	position: relative;
	width: 100vw;
	height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
}
#main_visual .visual:nth-of-type(1) {
	position: relative;
	overflow: hidden;
}
#main_visual .visual:nth-of-type(2) {
	position: relative;
	overflow: hidden;
}
#main_visual .visual:nth-of-type(1) .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../img/main-01.webp") no-repeat center;
	background-size: cover;
}
#main_visual .visual:nth-of-type(2) .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../img/main-02.webp") no-repeat center;
	background-size: cover;
}
#main_visual .visual::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	z-index: 1
}
#main_visual .visual a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2
}
#main_visual .visual h2 {
	position: absolute;
	bottom: 10%;
	left: 38%;
	width: 24%;
	line-height: 0;
	z-index: 2
}
@media only screen and (max-width: 768px)  {
	#main_visual {
		display: block;
		height: 100svh;
	}	
	#main_visual .visual:nth-of-type(1) {
		width: 100vw;
		height: 50svh;
	}
	#main_visual .visual:nth-of-type(2) {
		width: 100vw;
		height: 50svh;
	}
	#main_visual .visual h2 {
		bottom: 5%;
		left: 35%;
		width: 30%;
	}
}



#main_contents {
	position: relative;
}
#main_contents section {
	position: relative;
	margin: 10% auto;
}
#main_contents section .inner {
	width: calc(100% - 450px);
	margin-left: 350px;
}
#main_contents section .title {
	position: relative;
	line-height: 1;
}
#main_contents section .title h3 {
	font-size: 40px;
	font-weight: 600;
}
#main_contents section .title p {
	font-size: 16px;
	font-weight: 500;
	margin: 20px 0 0;
	padding-left: 20px;
	position: relative;
	display: inline-block;
}
#main_contents section .title p::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
	width: 10px;
	height: 10px;
	background: #000;
	border-radius: 100px;
}
#main_contents section .btn {
	position: relative;
	margin: 50px 0 25px
	
}
#main_contents section .btn a {
	display: inline-block;
	box-sizing: border-box;
	border: 1px solid #000;
	border-radius: 100px;
	text-decoration: none;
	color: #000;
	padding: 10px 15px;
	line-height: 1;
	font-size: 12px;
	font-weight: 600;
	margin-right: 10px
}
@media only screen and (max-width: 768px)  {
	#main_contents section {
		position: relative;
		margin: 20% auto;
	}
	#main_contents section .inner {
		width: 100%;
		margin-left: 0px;
	}	
	#main_contents section .title {
		text-align: center;
	}
	#main_contents section .title h3 {
		font-size: 36px;
	}
	#main_contents section .title p {
		font-size: 12px;
	}
	#main_contents section .btn {
		text-align: center;
	}
	#main_contents section .btn a {
		font-size: 10px;
		margin: 0 5px;
	}
}






#main_contents .news ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
}
#main_contents .news ul li {
	margin-bottom: 25px;
}
#main_contents .news .img {
	overflow: hidden;
	line-height: 0;
	border-radius: 10px;
}
#main_contents .news img {
	width: 100%;
}
#main_contents .news .data {
	position: relative;
	width: 96%;
	display: grid;
	grid-template-columns: 170px 1fr;
	margin: 15px 0
}
#main_contents .news .data a {
	display: inline-block;
	box-sizing: border-box;
	border: 1px solid #000;
	border-radius: 100px;
	text-decoration: none;
	width: 120px;
	color: #000;
	padding: 8px 0;
	line-height: 1;
	text-align: center;
	font-size: 10px;
	font-weight: 600;
}
#main_contents .news .data p {
	font-size: 12px;
}
#main_contents .news .data p span {
	font-size: 32px;
	letter-spacing: 1.5px;
	font-weight: 600;
}
#main_contents .news .data p span:nth-of-type(1) {
	font-size: 20px;
}
#main_contents .news .data .post_time {
	position: relative;
	padding-right: 25px;
	margin-right: 25px;
}
#main_contents .news .data .post_time::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: #ddd;
}
@media only screen and (max-width: 768px)  {
	#main_contents .news ul {
		display: block;
		width: 90%;
		margin: 0 auto;
	}
	#main_contents .news .data {
		width: 100%;
		display: block;
	}
	#main_contents .news .data .post_time {
		padding-right: 0;
		margin-right: 0;
		margin-bottom: 5%;
	}
	#main_contents .news .data .post_time p {
		text-align: right;
		line-height: 1;
	}
	#main_contents .news .data .post_time a {
		position: absolute;
		top:50%;
		left: 0;
		transform: translate(0,-50%);
	}
	#main_contents .news .data .post_time::before {
		display: none;
	}
	#main_contents .news .data .post_tit p {
		font-size: 11px;
	}
}


#main_contents .brand {
	background: #EAE2DA;
	padding: 5% 0
}

#main_contents .brand img {
	width: 100%;
}
#main_contents .brand ul {
	margin: 5% auto;
}
#main_contents .brand li {
	position: relative;
	margin-bottom: 5%;
}
#main_contents .brand li .img {
	width: 75%;
	margin-left: 25%;
	line-height: 0;
	overflow: hidden;
	border-radius: 10px;
}
#main_contents .brand li h2 {
	position: absolute;
	top: 25%;
	left: 0%;
	width: 15%;
	line-height: 0;
}
#main_contents .brand .more {
	position: absolute;
	bottom: 15%;
	left: 0;
}
@media only screen and (max-width: 768px)  {
	#main_contents .brand {
		background: #EAE2DA;
		padding: 15% 0
	}
	#main_contents .brand ul {
		margin: 15% auto 0;
	}
	#main_contents .brand li {
		margin-bottom: 5%;
		overflow: hidden;
		padding: 5% 0 0
	}
	#main_contents .brand li .img {
		width: 75%;
		margin: 0 0 0 25%;
		border-radius: 0;
	}
	#main_contents .brand li .img img {

	}
	#main_contents .brand li h2 {
		position: absolute;
		top: 0%;
		left:5%;
		width: 30%;
		transform: translate(0%);
		line-height: 0;
	}
	#main_contents .brand .more {
		position: relative;
		bottom: auto;
		left: auto;
	}
}


#main_contents .compnay {
}
#main_contents .compnay ul {
	position: relative;
	margin: 50px 0;
	border-bottom: 1.5px solid #000;
}
#main_contents .compnay ul::before {
	content: "";
	position: absolute;
	top: 0;
	left: 200px;
	width: 1.5px;
	height: 100%;
	background: #000;
}
#main_contents .compnay ul li {
	position: relative;
	padding: 25px 0;
	display: grid;
	grid-template-columns: 200px 1fr;
}
#main_contents .compnay ul li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: #000;
}
#main_contents .compnay ul li p {
	padding: 0 5%;
}
#main_contents .compnay ul li .name {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	position: relative;
	padding: 0;
}
@media only screen and (max-width: 768px)  {
	#main_contents .compnay ul::before {
		left: 100px;
	}
	#main_contents .compnay ul li {
		grid-template-columns: 100px 1fr;
	}
	#main_contents .compnay ul li p {
		font-size: 11px;
	}
	#main_contents .compnay ul li .name {
		font-size: 10px;
	}
}




#main_visual .visual:nth-of-type(1) .bg {
	opacity: 0;
	transform: scale(1.1);
	transition: 1.8s all 0.2s ease;
}
#main_visual .visual:nth-of-type(2) .bg {
	opacity: 0;
	transform: scale(1.1);
	transition: 1.8s all 0.2s ease;
}
#main_visual.ac .visual:nth-of-type(1) .bg {
	opacity: 1;
	transform: scale(1);
}
#main_visual.ac .visual:nth-of-type(2) .bg {
	opacity: 1;
	transform: scale(1);
}
#main_visual .visual h2 {
	opacity: 0;
	transition: 1s all 0.5s ease;
}
#main_visual.ac .visual h2 {
	opacity:1;
}
#main_contents .brand h2 img {
	opacity: 0;
	transform: translate(0,20px);
	transition: 1.4s all 0s ease;
}
#main_contents .brand h2.ac img {
	opacity: 1;
	transform: translate(0);
}