.KOP_second {
  overflow: hidden;
  background-color: #fff;
}
.p-top__section-works {
	transform: translateX(-100%);
	transition: transform 0.2s ease-in-out 1s;
}
.p-top__section-works.show {
	transform: translateX(0);
}
.p-top__section-pholosophy {
	transform: translateX(100%);
	transition: transform 0.2s ease-in-out 1s;
}
.p-top__section-pholosophy.show {
	transform: translateX(0);
}
.KOP_door {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
  transition: visibility 0.01s cubic-bezier(0.4, 0, 1, 1) 0.8s;
}
.KOP_door.show {
  visibility: hidden;
}
.KOP_doorUp,
.KOP_doorDown {
	background-color: #fff;
	height: 50%;
	position: relative;
	transform: translateY(0);
	transition: transform 0.25s cubic-bezier(0.4, 0, 1, 1) 0.5s;
}
.KOP_doorUp img {
	bottom: 0;
	position: absolute;
}
.KOP_doorUp.show {
	transform: translateY(-100%);
}
.KOP_doorDown img {
	top: 0;
	position: absolute;
  transform: translateY(-55%);
}
.KOP_doorDown.show {
	transform: translateY(100%);
}