@charset "UTF-8";



.main-title {
	position: relative;
	background: none;
}
.main-title::after {
	position: absolute;
	content: "";
	display: block;
	width: 100vw;
	height: 200vw;
	left: 0;
	top: 0;
	z-index: 1;
	background: url(/img/bg_technology.png?2) 50% 0% no-repeat;
	background-size: 100% auto;
}

.main-title > * {
	position: relative;
	z-index: 10;
}

main > *:nth-child(n + 2) {
	position: relative;
	z-index: 100;
}



#intro {
	position: relative;
	padding: 90px 0;
}
#intro .inner {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

#intro .content {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

#intro .box {
	width: calc(100% - 410px - 50px);
}
#intro figure {
	width: 410px;
	overflow: hidden;
	border: 1px solid #e6e6e6;
	border-radius: 7px;
}

#intro h2 {
	font-size: 30px;
	font-weight: 500;
	line-height: 1.5;
}
#intro .text {
	margin: 40px 0 0;
}
#intro .text p {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}


#intro .tech-list {
	margin: 60px 0 0;
	padding: 60px;
	background: #f4f4f4;
	border-radius: 7px;
}
#intro .tech-list ul {
	display: flex;
	justify-content: space-between;
}
#intro .tech-list li {
	width: calc((100% - (34px * 2)) / 3);
}
#intro .tech-list .pict {
	overflow: hidden;
	border: 1px solid #e6e6e6;
	border-radius: 7px;
	background: #fff;
}

#intro .tech-list dl {
	margin:	20px 0 0;
}
#intro .tech-list dt {
	font-size: 24px;
	font-weight: 700;
}
#intro .tech-list dt + dd {
	margin:	20px 0 0;
	font-size: 15px;
	font-weight: 700;
	color: #dc1010;
}
#intro .tech-list dd + dd {
	margin:	14px 0 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}
#intro .tech-list nav {
	width: 420px;
	margin: 50px auto 0;
}







#howto {
	position: relative;
	padding: 90px 0;
	background: #f4f4f4;
	border-top: 1px solid #e6e6e6;
}
#howto .inner {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

#howto header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
#howto header h2 {
	width: 520px;
	font-size: 30px;
	font-weight: 500;
	line-height: 1.5;
}
#howto header .caption {
	width: calc(100% - 520px - 50px);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}


#howto figure {
	position: relative;
	box-sizing: border-box;
	margin: 60px auto 0;
	aspect-ratio: 1280 / 757;
	background: #fff;
}
#howto figure iframe {
	position: absolute;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	left: -1px;
	top: -1px;
}

@media screen and (max-height:780px) {
	#howto figure {
		height: calc(100vh - 80px);
		min-height: 480px;
	}
}



#lab {
	position: relative;
	padding: 90px 0;
	background: #fff;
	border-top: 1px solid #e6e6e6;
}
#lab .inner {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

#lab h2 {
	font-size: 30px;
	font-weight: 500;
}

#lab .content {
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	margin: 60px 0 0;
	padding: 60px;
	background: #f4f4f4;
}
#lab .content .box,
#lab .content .pict {
	width: calc(50% - 25px);
}
#lab .content dt {
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
}
#lab .content dd {
	margin: 20px 0 0;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.9;
}
#lab .content nav {
	margin: 40px 0 0;
	max-width: 420px;
}

#lab .content .pict {
	overflow: hidden;
	border: 1px solid #e6e6e6;
	border-radius: 7px;
}









/* ---------------------------------------------------------------------------------------------------- */
/* OPENING */


.main-title::after {
	opacity: 0;
	transform: scale(1.25);
	transform-origin: center top;
	transition: all 500ms ease;
}



.main-title h1 {
	position: relative;
	height: 66px;
	overflow: hidden;
}
.main-title h1 span {
	position: relative;
	display: block;
	transform: translateY(66px);
	transition: all 400ms ease 200ms;
}

.main-title .lead {
	position: relative;
	height: 24px;
	overflow: hidden;
}
.main-title .lead span {
	position: relative;
	display: block;
	transform: translateY(24px);
	transition: all 400ms ease 400ms;
}



.main-title .caption {
	position: relative;
	opacity: 0;
	transition: all 600ms ease 500ms;
}






body.start .main-title::after {
	opacity: 1;
	transform: scale(1);
}


body.start .main-title h1 span {
	transform: translateY(0px);
}
body.start .main-title .lead span {
	transform: translateY(0px);
}

body.start .main-title .caption {
	opacity: 1;
}






main > *:nth-child(n + 2) {
	opacity: 0;
	transition: all 600ms ease 500ms;
}
body.start main > *:nth-child(n + 2) {
	opacity: 1;
}






