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

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;600;800&family=Noto+Sans+JP:wght@400;600;800&display=swap');

/*
font-family: 'Hanken Grotesk', sans-serif;
font-family: 'Noto Sans JP', sans-serif;

*/

html,
body {
	margin: 0;
	font-family: 'Hanken Grotesk','Noto Sans JP', sans-serif;

}
img, svg {
	width: 100%;
	border: none;
}
ul,li {
	padding: 0;
	margin: 0;
	list-style: none;
}
a {
	text-decoration: none;
	color: #000;
}
h1,h2,h3 {
	padding: 0;
	margin: 0;
}
.clear {
	clear: both;
}
.spview {
	display: none;
}
@media only screen and (max-width: 768px)  {
	.pcview {
		display: none;
	}
	.spview {
		display: block;
	}
}



#cl {
	width: 100%;
}
#main_visual {
	width: 100%;
	position: relative;
}
#main_visual .visual {
	line-height: 0;
	opacity: 0;
	transition: 2s all 0.7s ease;
}
#main_visual.ac .visual {
	opacity: 1;
}
#main_visual .title {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 35%;
	opacity: 0.8;
	transform: translate(-50%,-50%);
}
#main_visual .title svg {
	overflow: hidden;
	margin: 5px 0
}
#main_visual .title svg path {
	transform: translate(0,100%);
	transition: 0.6s all 0s ease;
}
#main_visual .title svg path:nth-of-type(2) {
	transition: 0.6s all 0.1s ease;
}
#main_visual .title svg path:nth-of-type(3) {
	transition: 0.6s all 0.2s ease;
}
#main_visual .title svg path:nth-of-type(4) {
	transition: 0.6s all 0.3s ease;
}
#main_visual .title svg path:nth-of-type(5) {
	transition: 0.6s all 0.4s ease;
}
#main_visual .title svg path:nth-of-type(6) {
	transition: 0.6s all 0.5s ease;
}
#main_visual.ac .title svg path {
	transform: translate(0%);
}
#main_visual .icon {
	position: absolute;
	top: 50%;
	left: 2%;
	width: 96%;
	transform: translate(0,-50%);
	display: grid;
	grid-template-columns: 1fr 1fr;
	opacity: 0;
	transition: 2s all 0.7s ease;
	font-size: 11px;
	
}
#main_visual.ac .icon {
	opacity: 1;
	transition: 2s all 0.7s ease;
	
}
#main_visual .icon li:nth-of-type(2) {
	text-align: right;
}
@media only screen and (max-width: 768px)  {
	#main_visual .title {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 60%;
	}
}




#main_contents {
	margin: 5% auto;
}

#main_contents .section {
	position: relative;
	margin: 10% auto;
}
#main_contents .section .data {
	width: 90%;
	margin: 0 auto 2%;
}
#main_contents .section .data .no {
	font-size: 60px;
	font-weight: 600;
	margin-bottom: 15px;
}
#main_contents .section .data .name {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.8;
}
#main_contents .section .tab-buttons {
	width: 360px;
	height: 80px;
	background: url("../images/select.svg") no-repeat center center;
	background-size: 100%;
/* 	position: relative;
	margin: 0 auto;*/
	position: absolute;
	top: 8%;
	right: 5%;
}
#main_contents .section .tab-buttons .content1,#main_contents .section .tab-buttons .content2 {
	display: block;
	width: 50%;
	height: 100%;
	float: left;
}
#main_contents .section .tab-buttons::before {
	display: block;
	clear: both;
}
@media only screen and (max-width: 768px)  {
	#main_contents .section {
		position: relative;
		margin: 15% auto;
	}
	#main_contents .section .data {
		text-align: center;
	}
	#main_contents .section .data .no {
		font-size: 40px;
		font-weight: 600;
		margin-bottom: 15px;
	}
	#main_contents .section .data .name {
		font-size: 20px;
		font-weight: 600;
		line-height: 1.8;
	}
	#main_contents .section .tab-buttons {
		width: 280px;
		height: 80px;
		position: relative;
		top: auto;
		right: auto;
		margin: 5% auto;
	}	
}



#main_contents .section .look {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto;
	gap:10px;
}
#main_contents .section .look li {
	line-height: 0;
}
#main_contents .section .product {
	width: 50%;
	float: left;
	box-sizing: border-box;
	padding: 5%;
	position: relative;
}
#main_contents .section .style {
	width: 50%;
	float: right;
	box-sizing: border-box;
	padding: 5%;
	position: relative;
}
#main_contents .section .product::before {
	content: "";
	position: absolute;
	top: 20%;
	right: 0;
	width: 1px;
	height: 60%;
	background: #000;
}
@media only screen and (max-width: 768px)  {
	#main_contents .section .look {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
		gap:10px;
	}
	#main_contents .section .look li:nth-of-type(1) {
		grid-column: 1 / 3;
	}
	#main_contents .section .product {
		width: 100%;
		float: none;
		padding: 10%;
	}
	#main_contents .section .style {
		width: 100%;
		float: none;
		padding: 10%;
	}
	#main_contents .section .product::before {
		display: none;
	}
	
}



#main_contents .section .tit {
	font-weight: 600;
	font-size: 20px;
	letter-spacing: 1px;
	margin-bottom: 15px;
}
#main_contents .section .txt {
	font-size: 13px;
	line-height: 2.0;
}
#main_contents .section .btn a {
	font-size: 16px;
	font-weight: 600;
	max-width: 200px;
	display: block;
	position: relative;
	padding: 0 0 5px;
	margin: 5% 0 0;
}
#main_contents .section .btn a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #000;
}

#lamp1,#lamp2,#lamp3{
  width:50%;
  height:100%;
  background:#333;
  display:block;
  position:absolute;
  top:0px;
}
#lamp1.content2,#lamp2.content2,#lamp3.content2{
  left:50%;
	background: url("../images/select_w.svg") no-repeat center;
	background-size: 100%;
}

#lamp1.content1,#lamp2.content1,#lamp3.content1{
  left:0;
	background: url("../images/select_a.svg") no-repeat center;
	background-size: 100%;
}

#main_contents .anim {
	opacity: 0;
	transition: 1.5s all 0s ease;
}
#main_contents .anim.ac {
	opacity: 1;
}