@charset "UTF-8";

body {
	background: none !important;
}

.bottom-svg {
	display: none;
}

.wrap .bottom-svg {
	display: block;
	margin-top: 118px;
}

.page-title {
	height: 554px;
	position: relative;
	z-index: -1;
}

.wrap {
	background: url(../img/body.webp);
	background-repeat: repeat;
	border-radius: 50px 50px 0 0;
	margin: -40px auto 0;
	padding-top: 90px;
	color: #1F1F1F;
	width: 100%;
}

.wrap p {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2.5;
}

.about {
	background: url(../img/page/about/about-title.webp) no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 554px;
}

.about h1 {
	color: #fff;
	font-size: 50px;
	letter-spacing: .08em;
	line-height: 1.2;
	padding-top: 238px;
    padding-left: 143px;
}

/* 企業理念 */

.philosophy h2 {
	font-size: 30px;
	letter-spacing: .08em;
	line-height: 2;
	margin-top: 51px;
}

.philosophy h2 span {
	color: #006E3F;
	display: block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2.5;
	padding-left: 1em;
	position: relative;
	margin-bottom: 8px;
}

.philosophy h2 span::before {
	content: "";
	width: 7px;
	height: 7px;
	position: absolute;
	top: 16.5px;
	left: 0;
	background: #006E3F;
	border-radius: 50%;
}

.philosophy p {
	margin-top: 74px;
}

.philosophy img {
	margin-top: 139px;
}

.philosophy .col {
	display: flex;
	justify-content: space-between;
	width: 90%;
    max-width: 1253px;
    margin: 0 auto;
}

.philosophy-images {
	width: 533px;
}

.philosophy-images img {
	margin-top: 0;
}

.philosophy-images_1 {
	animation-delay: 0.25s;
}

.philosophy-images_2 {
	margin-left: 230px;
	margin-top: -180px;
	animation-delay: 0.75s;
}

.philosophy-images_3 {
	margin-left: 42px;
	margin-top: -130px;
	animation-delay: 1.25s;
}

.anime_scale {
	opacity: 0;
}

.philosophy-images.active .philosophy-images_1,
.philosophy-images.active .philosophy-images_2,
.philosophy-images.active .philosophy-images_3 {
	animation-name: anime_scale;
    animation-duration: 3s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

@keyframes anime_scale {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* セクション共通 */

.greeting h2,
.history h2,
.profile h2 {
	font-size: 30px;
	letter-spacing: .08em;
	line-height: 2;
	padding-left: 20px;
	position: relative;
}

.greeting h2::before,
.history h2::before,
.profile h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 26px;
	background: #006E3F;
	border-radius: 50%;
	width: 10px;
	height: 10px;
}

/* 代表挨拶 */

.greeting {
	background: #fff;
	border-radius: 15px;
	box-sizing: border-box;
	margin: 197px 0 0 auto;
	padding: 50px 76px 60px;
	position: relative;
	width: 100%;
	max-width: 1361px;
}

.greeting svg {
	position: absolute;
	top: -38px;
	right: 86px;
}

.greeting .col {
	display: flex;
	align-items: center;
	gap: 70px;
}

.greeting .name {
	text-align: center;
	margin-top: 18px;
}

.greeting .name span,
.greeting .name b {
	display: block;
	line-height: 1;
}

.greeting .name span:first-child {
	font-size: 15px;
}

.greeting .name b {
	font-size: 30px;
	letter-spacing: .08em;
	line-height: 2;
	margin-bottom: 6px;
}

/* 沿革 */

.history {
	background: #fff;
	border-radius: 15px;
	box-sizing: border-box;
	margin: 203px auto 0 0;
	padding: 50px 0 80px;
	position: relative;
	width: 100%;
	max-width: 1097px;
}

.history svg {
	position: absolute;
	top: -38px;
	right: 55px;
}

.history > div {
	margin: 0 auto;
	width: max-content;
}

.history li {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.5;
	display: flex;
	align-items: baseline;
	gap: 75px;
	position: relative;
}

.history li h3 {
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2.5;
	padding-left: 20px;
	width: 155px;
}

.history li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	background: #1F1F1F;
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

.history li::after {
	content: "";
	background: #1F1F1F;
	position: absolute;
	left: 3px;
	top: 14px;
	width: 1px;
	height: 100%;
}

.history li:last-child::after {
	content: none;
}

/* 会社概要 */

.profile {
	background: #fff;
	border-radius: 15px;
	box-sizing: border-box;
	margin: 223px auto 0;
	padding: 98px 80px 84px;
	position: relative;
	width: 100%;
	max-width: 1168px;
}

.profile h2 {
	display: block;
	margin: 0 auto;
	width: max-content;
}

.profile svg {
	position: absolute;
	top: -38px;
	left: 50%;
	transform: translateX(-50%);
}

.profile .col {
	display: flex;
	justify-content: center;
	gap: 100px;
}

.profile .img-wrap {
	height: 340px;
}

.profile h3 {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: .05em;
	padding-left: 16px;
	position: relative;
	margin: 40px 0 38px;
}

.profile h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	background: #006E3F;
	border-radius: 50%;
	width: 10px;
	height: 10px;
}

.profile p {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .03em;
	line-height: 2;
	display: flex;
	gap: 18px;
}

.profile p span {
	width: 110px;
}

@media screen and (max-width:768px) {
	.about,
	.page-title {
		height: 265px;
	}

	.about h1 {
		font-size: 30px;
		padding: 116px 0 0;
		text-align: center;
	}

	.wrap {
		padding-top: 42px;
	}

	/* 経営理念 sp */

	.philosophy-images img {
		width: 100%;
	}

	.philosophy-images_1 {
		width: 96px;
		height: 116px;
		margin: 0 15px 0 0;
	}
	.philosophy-images_2 {
		width: 93px;
		height: 122px;
		margin: 0 29px 0 0;
	}
	.philosophy-images_3 {
		width: 70px;
		height: 124px;
		margin: 0;
	}

	.philosophy .col {
		flex-flow: column-reverse;
	}

	.philosophy-images {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		width: 100%;
		max-width: 308px;
	}

	.philosophy h2 {
		font-size: 25px;
		line-height: 1.6;
		letter-spacing: .05em;
		margin-top: 30px;
	}

	.philosophy h2 span {
		margin-bottom: 20px;
	}

	.philosophy p {
		font-size: 15px;
		line-height: 2;
		margin-top: 20px;
	}

	.philosophy .col div > img {
		margin-top: 54px;
		width: 100%;
	}

	/* 代表挨拶 */

	.greeting {
		margin: 118px 0 0px 24px;
		padding: 45px 24px 64px 33px;
		width: calc(100% - 24px);
	}

	.greeting svg {
		right: auto;
		left: auto;
		max-width: 346px;
		width: 80%;
	}

	.greeting .col {
		flex-flow: column-reverse;
		gap: 42px;
	}

	.greeting p {
		margin-top: 21px;
	}

	/* 沿革 */

	.history {
		margin: 106px 24px 0 0;
		padding: 62px 0 36px 56px;
		width: calc(100% - 24px);
	}

	.history > div {
		width: 100%;
	}

	.history svg {
		max-width: 307px;
		right: 0;
	}

	.history ul {
		margin-top: 28px;
	}

	.history li {
		display: block;
		padding-bottom: 18px;
		padding-left: 16px;
		font-size: 15px;
		line-height: 2;
	}

	.history li::before,
	.history li::after {
		top: 10px;
	}

	.history li:last-child {
		padding-bottom: 0;
	}

	.history li h3 {
		font-size: 15px;
		line-height: 2;
		padding-left: 0;
	}

	/* 会社概要 */

	.profile {
		padding: 50px 24px 83px 24px;
		margin: 116px 0 0 24px;
		width: calc(100% - 24px);
	}

	.profile .col {
		flex-flow: column;
		gap: 50px;
	}

	.profile .col > div:nth-child(1) img {
		display: block;
		margin: 0 auto;
		width: 278px;
		transform: translateX(-24px);
	}

	.profile .col > div:nth-child(2) img {
		display: block;
		margin: 0 auto;
		width: 145px;
		transform: translateX(-24px);
	}

	.profile svg {
		max-width: 286px;
		left: 24px;
		transform: none;
	}

	.profile .img-wrap {
		height: auto;
	}

	.profile h2 {
		margin: 0 auto 33px;
	}

	.profile h3 {
		margin: 48px 0 16px;
	}

	.profile p {
		flex-flow: column;
		gap: 0;
		margin-top: 14px;
	}
}