@charset "UTF-8";
/* CSS Document */
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
html,
body {
	padding: 0;
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
}
#loading {
  width: 100vw;
  height: 100vh;
	transition: 1s all 1s ease;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
	max-width: 400px;
	width: 70%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

#lp_wrap {
	width: 100%;
	min-width: 1000px;
	font-size: 12px;
	line-height: 1.8;

}
#lp_wrap img,#lp_wrap video {
	width: 100%;
	border: none;
}
#lp_wrap a {
	text-decoration: underline;
	color: #000;
}
#lp_wrap ul,#lp_wrap li {
	list-style: none;
	padding: 0;
	margin: 0;
}
#lp_wrap h1,#lp_wrap h2,#lp_wrap h3 {
	padding: 0;
	margin: 0;
}
#lp_wrap .spv {
	display: none;
}
#lp_wrap .pcv {
	display: block;
}
@media only screen and (max-width: 768px)  {
	#lp_wrap {
		width: 100%;
		min-width: 100%;
		font-size: 11px;
		line-height: 1.8;
	}
	#lp_wrap .spv {
		display: block;
	}
	#lp_wrap .pcv {
		display: none;
	}
}
#main_title {
	position: relative;
	padding: 0;
	overflow: hidden;
	width: 100%;

}
#main_title .title {
	width: 40%;
	margin: 0 auto;
	padding: 5% 0;
	z-index: 10
}

#main_title .brand {
	width: 80%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 5%;
	margin: 10% auto 0;
}


@media only screen and (max-width: 768px)  {
	#main_title {
		width: 100%;
	}
	#main_title .title {
		width: 90%;
		padding: 15% 0;
		z-index: 10
	}
	#main_title .brand {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		column-gap: 5%;
		margin: 6% auto 0;
	}

	
}



#main_contents {
	position: relative;
}
#main_contents ul {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 6%;
	width: 80%;
	margin: 0 auto;
}
#main_contents ul li {
	margin-bottom: 15%;
}
#main_contents ul li img {
	box-sizing: border-box;
	border: 1px solid #ddd;
}
#main_contents ul .data{
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	text-decoration: underline;
}
@media only screen and (max-width: 768px)  {
	#main_contents ul {
		display: grid;
		grid-template-columns: 1fr 1fr;
		column-gap:5%;
		width: 100%;
		margin: 0 auto;
	}
	#main_contents ul li {
		margin-bottom: 20%;
	}
}


#footer {
	margin: 0% auto;
	background: #FFF;
	position: relative;
	z-index: 10;
	padding: 5% 0;
}
#footer .all {
	text-align: center;
	font-size: 14px;
	margin: 25px auto;
}
#footer .logo {
	max-width: 250px;
	width: 70%;
	margin: 5% auto;
}
#footer .copyright {
	font-size: 10px;
	text-align: center;
	padding-top: 25px;
}
@media only screen and (max-width: 768px)  {
	#footer {
		padding: 15% 0;
	}
	#footer .logo {
		margin: 15% auto;
	}
}

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