/*====================================
PHILOSOPHY
====================================*/

.philosophy {
	padding: 120px 5%;
	background: #fff;
}

.philosophy_inner {
	max-width: 1400px;
	margin: auto;
}

.philosophy_copy {
	text-align: center;
	font-size: 5rem;
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", sans-serif;
	margin-bottom: 90px;
}

.philosophy_wrap {
	display: grid;
	grid-template-columns: 620px 1fr;
	align-items: center;
	gap: 0;
	position: relative;
}

.philosophy_content {
	background: #000;
	color: #fff;
	padding: 90px 90px 110px;
	position: relative;
	z-index: 1;
}
/*--------------------*/

.philosophy_title {
	font-family: "Bebas Neue", sans-serif;
	font-size: 6rem;
	text-align: center;
	margin-bottom: 60px;
}

.philosophy_text p {
	margin-bottom: 20px;
}

/*--------------------*/

.philosophy_gallery {
	position: relative;
	height: 900px;
}

.philosophy .photo {
	position: absolute;
	overflow: hidden;
}
.philosophy .photo img {
	width: 100%;
	display: block;
	object-fit: cover;
	filter: grayscale(100%);
	transition: .5s;
}
.philosophy .photo:hover img {
	transform: scale(1.05);
}
.philosophy .photo01 {
	width: 380px;
	top: -50px;
	left: -70px;
	z-index: 2;
}
.philosophy .photo02 {
	width: 650px;
	bottom: 0;
	right: 0;
}
.philosophy .photo01 img {
	aspect-ratio: 3/4;
}
.philosophy .photo02 img {
	aspect-ratio: 4/3;
}

@media screen and (min-width: 601px) {
	.philosophy_copy br.sp {
		display: none;
	}
}
@media(max-width:900px) {
	.philosophy {
		padding: 80px 20px;
	}
	.philosophy_copy {
		font-size: 3rem;
		margin-bottom: 50px;
		margin-top: 0;
	}
	.philosophy_wrap {
		display: flex;
		flex-direction: column-reverse;
	}
	.philosophy_content {
		padding: 50px 20px;
		margin-top: -50px;
	}
	.philosophy_title {
		font-size: 4rem;
		margin-bottom: 40px;
	}
	.philosophy_gallery {
		height: auto;
		display: grid;
		gap: 20px;
	}
	.philosophy .photo {
		position: static;
		width: 85%;
	}
	.philosophy .photo01 {
		z-index: 1;
	}
	.philosophy .photo02 {
		z-index: 2;
		margin-left: auto;
		margin-top: -50px;
		margin-right: -5%;
	}
}
