@charset "UTF-8";
header {
	display: none;
}
/*****************************
TopPageContents
*****************************/

.firstView {
	width: 100vw;
	height: 100vh;
	height: 100lvh;
	position: relative;
	background-color: var(--mainColor);
}
.firstView.active {
	height: auto;
	overflow: visible;
}

.shutter {
	width: 150vw;
	height: 102vh;
	height: 102lvh;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	transform-origin: center;
	overflow: hidden;
}
.shutter .innerLeft {
	display: block;
	width: 75vw;
	height: 102vh;
	height: 102lvh;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%)skewX(-10deg);
	transform-origin: right center;
	background-color: var(--mainColor);
	transition: 1.5s left cubic-bezier(0.87, 0.05, 0.17, 0.9);
	overflow: hidden;
}
.shutter .innerRight {
	display: block;
	width: 75vw;
	height: 102vh;
	height: 102lvh;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%)skewX(-10deg);
	transform-origin: left center;
	background-color: var(--thinColor);
	transition: 1.5s right cubic-bezier(0.87, 0.05, 0.17, 0.9);
	overflow: hidden;
}
.shutter span:before {
}
.shutter .innerLeft:before {
	display: block;
	width: 200px;
	height: 200px;
	position: absolute;
	content: '';
	background-image: url("../format/mainLogo2-assets/mainLogo.png");
	background-repeat: no-repeat;
	background-size: 200px auto;
	top: 50%;
	right: -100px;
	transform: translateY(-50%)skew(10deg);
}
.shutter .innerRight:before {
	display: block;
	width: 200px;
	height: 200px;
	position: absolute;
	top: 50%;
	left: -100px;
	transform: translateY(-50%)skew(10deg);
	content: '';
	background-image: url("../format/mainLogo2-assets/mainLogo.png");
	background-repeat: no-repeat;
	background-size: 200px auto;
}

.shutter:before {
}
.shutter:after {
}
/*
.shutter:before {
	display: block;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transform-origin: right center;
	background-color: var(--mainColor);
	content: '';
	background-image: url("../format/mainLogo2-assets/mainLogo.png");
	background-repeat: no-repeat;
	background-size: 200px auto;
	background-position: right -100px center;
	transition: 1.5s top ease-out;
}
.shutter:after {
	display: block;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transform-origin: left center;
	background-color: var(--thinColor);
	content: '';
	background-image: url("../format/mainLogo2-assets/mainLogo.png");
	background-repeat: no-repeat;
	background-size: 200px auto;
	background-position: -100px center;
	transition: 1.5s top ease-out;
}
*/
.shutter.active .innerLeft {
	left: -60vw;
}
.shutter.active .innerRight {
	right: -60vw;
}
.openingTrigger {
	position: fixed;
	bottom: 10vh;
	bottom: 10svh;
	left: 50%;
	transform: translateX(-50%)translateY(0);
	font-size: var(--f4);
	font-family: var(--oswald);
	text-align: center;
	opacity: 1;
	transition: 0.8s all ease;
	cursor: pointer;
}
.openingTrigger.passive {
	opacity: 0;
	transform: translateX(-50%)translateY(10px);
}
.openingTrigger:before {
	font-family: var(--icon);
	font-weight: bold;
	font-size: 4rem;
	content: '\f053';
	margin-right: 10px;
	animation: 1s openingLeft ease;
	animation-iteration-count: infinite;
}
.openingTrigger:after {
	font-family: var(--icon);
	font-weight: bold;
	font-size: 4rem;
	content: '\f054';
	margin-left: 10px;
	animation: 1s openingRight ease;
	animation-iteration-count: infinite;
}
@keyframes openingLeft {
	0% {
		margin-right: 10px;
		opacity: 1;
	}
	100% {
		margin-right: 30px;
		opacity: 0;
	}
}
@keyframes openingRight {
	0% {
		margin-left: 10px;
		opacity: 1;
	}
	100% {
		margin-left: 30px;
		opacity: 0;
	}
}


.topPageContents {

}

.topPageContents:before {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 70vh;
	height: 70lvh;
	background-image: url("../toppage/mainImage.jpg");
	background-size: cover;
	background-position: center bottom;
	content: '';
	z-index: -1;
}
.firstView .logo {
	;
}
.firstView .logo h1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.firstView .logo h1 img {
	width: 200px;
	height: auto;
}
.secondView {
	background-color: var(--subColor);
	padding-bottom: 50px;
}
.secondView h1 {
	padding: 50px 20px;
	font-size: var(--f3);
	font-family: var(--mplus);
	font-weight: 700;
	color: white;
	text-align: center;
}

.secondView h1 span.active {
	animation: 0.6s secondViewfade ease;
	animation-fill-mode: both;
}
.secondView h1 span.active:first-of-type {
	animation-delay: 0s;
}
.secondView h1 span.active:nth-of-type(2) {
	animation-delay: 0.4s;
}
.secondView h1 span.active:nth-of-type(3) {
	animation-delay: 0.8s;
}
.secondView h1 span.active:nth-of-type(4) {
	animation-delay: 1.2s;
}
.secondView h1 span.active:nth-of-type(5) {
	animation-delay: 1.6s;
}
@keyframes secondViewfade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.secondView h2 {
	margin-bottom: 20px;
	font-size: var(--f3);
	text-align: center;
	font-weight: 700;
	color: var(--thinColor);
}
.secondView h2:last-of-type {
	margin-top: 50px;
}
.secondView h2:after {
	display: block;
	text-align: center;
	font-size: 4rem;
	font-family: var(--icon);
	content:'\f078';
	animation: 2s scrollArrow ease;
	animation-iteration-count: infinite;
}
@keyframes scrollArrow {
	0% {
		transform: translateY(-10px);
	}
	50% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(-10px);
	}
}
article p {
	color: white;
	font-size: var(--f5);
}
.secondView section {
	padding: 0;
	min-height: 300px;
	background-color: var(--thinColor);
}
.secondView section:nth-child(odd) {
	background-color: var(--deepColor);
}


.secondView section h3 {
	padding: 10px 0;
	font-size: var(--f3);
	opacity: 0;
}
.secondView section.active h3 {
	animation: h3Fade 0.8s ease; 
	animation-fill-mode: both;
}
@keyframes h3Fade {
	0% {
		opacity: 0;
		transform: translateX(-30px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
.secondView section h3:after {
	display: block;
	width: 0;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: var(--accentColor);
	content: '';
}
.secondView section:nth-child(odd) h3:after {
	left: auto;
	right: 0;
}
.secondView section.active h3:after {
	animation: h2AfterFade 0.8s ease; 
	animation-fill-mode: both;
}
@keyframes h2AfterFade {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
.secondView section.active .photo {
	animation: photoFade 0.8s ease;
	animation-delay: 0.5s;
	animation-fill-mode: both;
}
@keyframes photoFade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.betweenImage {
	width: 100vw;
	height: 70vh;
	height: 70lvh;
	position: relative;
}
.betweenImage:after {
	display: block;
	width: 100vw;
	height: 100vh;
	height: 100lvh;
	background-image: url("../toppage/background.jpg");
	background-position: center;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	content: '';
}
/*
.thirdView.active:before {
	visibility: visible;
}
*/
.thirdView {
	width: 100vw;
	padding: 30px 0;
	min-height: 30vh;
	min-height: 30svh;
	position: relative;
	background-image: url("../toppage/companyAppearance.jpg");
	background-size: cover;
	backgorund-position: center center;
}
.thirdView h2 {
	font-size: var(--f3);
	color: var(--mainColor);
	text-align: center;
	margin-bottom: 20px;
}
.thirdView iframe {
	display: block;
	width: 70%;
	height: 50vh;
	margin-left: auto;
	margin-right: auto;
}
.thirdView .link {
	width: 70%;
	margin: 20px auto;
	padding: 20px;
	background-color: rgba(0,0,0,0.70);
	font-size: var(--f4);
	color: white;
}
.thirdView .link dl {
	margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid white;
	border-left: 1px solid white;
}
.thirdView .link dl dt,
.thirdView .link dl dd{
		padding: 8px;
		border-right: 1px solid white;
		border-bottom: 1px solid white;
		font-size: var(--f6);
}
.thirdView .link dl dt {
	width: 30%;
}
.thirdView .link dl dd {
	width: 70%;
}


@media screen and (max-width:767px){
.thirdView .link dl {
	display: block;
}
.thirdView .link dl dt,
.thirdView .link dl dd{
		padding: 8px;
		border-right: 1px solid white;
		border-bottom: 1px solid white;
		font-size: var(--f6);
}
.thirdView .link dl dt {
	width: 100%;
	background-color: var(--thinColor);
	color: var(--textColor);
}
.thirdView .link dl dd {
	width: 100%;
}	
}
