@charset "utf-8";
#firstView {
	color: #FFF;
	position: relative;
	height: calc(100vh - 162px);
	min-height: 600px;
	background-color: #05A;
	box-sizing: border-box;
}
#firstView .photo {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: calc(100% - 400px);
	overflow: hidden;
	background: linear-gradient(90deg, #bbb, #FFF);
}
#firstView .photo::before {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	left: 0;
	bottom: 0;
	background: linear-gradient(90deg, #bbb, #FFF);
	z-index: 1;
	mix-blend-mode: multiply;
}
#firstView .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-animation: zoom 60s ease-out;
	animation: zoom 60s ease-out;
	animation-fill-mode: forwards;
}
#firstView .button a {
	background-color: #FFF;
	color: #05A;
	border: solid 10px #FFF;
}
#firstView .button a::before {
	background-color: #05A;
}
@keyframes zoom {
	0% {
		transform: scale(1) rotate(0.1deg);
		;
	}
	100% {
		transform: scale(1.5);
	}
}
#firstView .inBox {
	height: 100%;
	width: 400px;
	padding: 80px 40px 0;
	box-sizing: border-box;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#firstView h1 {
	font-size: 600%;
	line-height: 1.3em;
	font-weight: bold;
	white-space: nowrap;
	letter-spacing: normal;
}
#firstView .summary {
	font-weight: bold;
}
#firstView .scrolldown {
	text-align: center;
	overflow: hidden;
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
#firstView .scrolldown a {
	display: block;
	height: 100px;
	width: 50px;
	color: #fff;
	font-size: 12px;
	line-height: 1em;
	text-decoration: none;
	position: relative;
}
#firstView .scrolldown a::after {
	position: absolute;
	top: 15px;
	left: 50%;
	content: "";
	display: block;
	width: 1px;
	height: 80px;
	background: #fff;
	animation: pathmove 1.4s ease-in-out infinite;
	opacity: 0;
}
@keyframes pathmove {
	0% {
		height: 0;
		top: 15px;
		opacity: 0;
	}
	30% {
		height: 80px;
		opacity: 1;
	}
	100% {
		height: 0;
		top: 100px;
		opacity: 0;
	}
}
#bnrProduct {
	display: flex;
	flex-wrap: wrap;
	border-top: solid 1px #DDD;
	border-left: solid 1px #DDD;
	margin-top: 20px;
}
#bnrProduct .item {
	width: 33.333%;
	box-sizing: border-box;
	border-bottom: solid 1px #DDD;
	border-right: solid 1px #DDD;
}
#bnrProduct .item a {
	display: block;
	padding: 20px;
}
#bnrProduct .item .icon img {
	width: 80%;
	aspect-ratio: 1/1;
	object-fit: cover;
	margin: auto;
}
#bnrProduct .item .title {
	font-size: 90%;
	line-height: 1.5em;
	text-align: center;
	margin-top: 5px;
}
@media screen and (max-width: 700px) {
	#width-----700px----- {}
	#firstView {
		height: auto;
		min-height: inherit;
	}
	#firstView .photo {
		position: relative;
		height: auto;
		width: auto;
		aspect-ratio: 1/1;
	}
	#firstView .inBox {
		height: auto;
		width: auto;
		padding: 30px 30px 0;
	}
	#firstView h1 {
		font-size: 200%;
		line-height: 1.3em;
		white-space: inherit;
		text-align: center;
	}
	#bnrProduct .item {
		width: 100%;
	}
	#bnrProduct .item .icon img {
		width: 50%;
	}
}