@charset "UTF-8";

.philosophy {
	margin-top: -100px;
}

.philosophy_wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 100%;
}

.philosophy_cnt {
	z-index: 2;
	width: 80%;
	border-radius: 10px;
}

.philosophy_cnt_img {
	z-index: 1;
	width: calc(50vw - 50% + 760px);
	max-width: 100%;
	height: 350px;
	margin-right: calc(50% - 50vw);
	margin-bottom: 120px;
	margin-left: -760px;
	overflow: hidden;
	border-radius: 10px 0 0 10px;
}

.philosophy_cnt_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.philosophy_cnt_list {
	padding: 40px;
	border-radius: 10px;
	background-color: #ffffffa0;

	backdrop-filter: blur(10px);
}

.philosophy_cnt_list > li {
	position: relative;
	padding-left: 2em;
}

.philosophy_cnt_list > li:not(:last-child) {
	margin-bottom: 10px;
}

.philosophy_cnt_list > li::before {
	content: "一、";
	position: absolute;
	top: 0;
	left: 0;
}

.overview {
	padding-top: 120px;
}

.overview_tbl > dl {
	display: flex;
	gap: 20px;
	padding: 18px 10px;
	border-top: 1px solid var(--color-border-default);
}

.overview_tbl > dl:last-child {
	border-bottom: 1px solid var(--color-border-default);
}

.overview_tbl > dl > dt {
	width: 200px;
	font-weight: 700;
}

.overview_tbl > dl > dd {
	flex: 1;
}

.overview_tbl_list > li {
	position: relative;
	padding-left: 12px;
}

.overview_tbl_list > li:not(:last-child) {
	margin-bottom: 4px;
}

.overview_tbl_list > li::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 11px;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background-color: var(--color-brand-primary);
}

.overview_tbl_client {
	display: flex;
	gap: 0 40px;
}

.overview_ft {
	display: flex;
	gap: 15px 4%;
	margin-top: 50px;
}

.overview_ft_item {
	width: 48%;
	overflow: hidden;
	border-radius: 10px;
	aspect-ratio: 560/400;
}

.overview_ft_item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.overview_ft_item iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.office {
	padding: 120px 0;
}

.office_list {
	display: flex;
	flex-wrap: wrap;
	gap: 60px 4%;
}

.office_item {
	width: 48%;
}

.office_item.-double {
	width: 100%;
}

.office_item.-double .office_img {
	display: flex;
	gap: 6px 4%;
}

.office_img {
	margin-bottom: 16px;
}

.office_img img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	object-fit: cover;
	aspect-ratio: 560/400;
}

.office_item.-double .office_img img {
	width: 48%;
}

.office_cap_ttl {
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 24px;
	line-height: var(--lh-ttl-jp);
}

.history {
	padding: 120px 0;
	background-color: var(--color-bg-light);
}

.history_hd {
	margin-bottom: 30px;
	font-weight: 700;
	font-size: 20px;
}

.history_list {
	position: relative;
}

.history_list::after {
	content: "";
	display: block;
	position: absolute;
	top: -220px;
	right: 0;
	z-index: 0;
	width: 18%;
	min-width: 150px;
	background: url(/recruit/img/company/profile/history-char@2x.webp) no-repeat center / contain;
	aspect-ratio: 177/273;
}

.history_item {
	display: flex;
	gap: 30px;
	position: relative;
	z-index: 1;
}

.history_item_ttl {
	width: 120px;
	margin-top: 24px;
	color: var(--color-brand-primary);
	font-weight: 700;
	line-height: 1;
	text-align: right;
}

.history_item_ttl .-en {
	font-size: 24px;
}

.history_item_ttl .-en.-large {
	font-size: 34px;
}

.history_item_ttl .-jp {
	font-size: 13px;
}

.history_item_month {
	flex: 1;
	position: relative;
	padding: 24px 0;
	padding-left: 40px;
}

.history_item_month::before,
.history_item_month::after {
	content: "";
	display: block;
	position: absolute;
}

.history_item_month::before {
	top: 0;
	left: 8px;
	width: 1px;
	height: 100%;
	border-left: 2px dotted var(--color-border-strong);
}

.history_item_month::after {
	top: 24px;
	left: 0;
	width: 18px;
	height: 18px;
	border-radius: 10px;
	background-color: var(--color-brand-accent-1);
}

.history_item_month > dl {
	display: flex;
}

.history_item_month > dl:not(:last-child) {
	margin-bottom: 10px;
}

.history_item_month > dl > dt {
	width: 35px;
}

.history_item_month > dl > dd {
	flex: 1;
}

@media screen and (max-width:1240px) {
	.philosophy {
		margin-top: 0;
		padding-top: 60px;
	}

	.philosophy_wrap {
		flex-direction: column;
	}

	.philosophy_cnt {
		width: 100%;
	}

	.philosophy_cnt_img {
		width: 90%;
		max-width: none;
		height: auto;
		min-height: 150px;
		margin-top: -20px;
		margin-bottom: 0;
		aspect-ratio: 9/4;
	}
}

@media screen and (max-width:768px) {
	.philosophy_cnt_list {
		padding: 30px;
	}

	.overview {
		padding-top: 60px;
	}

	.overview_tbl > dl {
		flex-direction: column;
		gap: 4px;
		padding: 14px 0;
	}

	.overview_tbl > dl > dt {
		width: 100%;
	}

	.overview_tbl_client {
		flex-direction: column;
		gap: 0 40px;
	}

	.overview_ft {
		flex-direction: column;
	}

	.overview_ft_item {
		width: 100%;
	}

	.office {
		padding: 60px 0;
	}

	.office_list {
		flex-direction: column;
		gap: 40px;
	}

	.office_item {
		width: 100%;
	}

	.office_item.-double .office_img {
		flex-direction: column;
	}

	.office_item.-double .office_img img {
		width: 100%;
	}

	.office_cap_ttl {
		font-size: 20px;
	}

	.history {
		padding: 60px 0;
	}

	.history_item {
		gap: 10px;
	}

	.history_item_ttl {
		width: 82px;
		margin-top: 20px;
	}

	.history_item_ttl .-en {
		font-size: 18px;
	}

	.history_item_ttl .-en.-large {
		font-size: 24px;
	}

	.history_item_ttl .-jp {
		font-size: 11px;
	}

	.history_item_month {
		padding: 15px 0;
		padding-left: 26px;
	}

	.history_item_month::after {
		top: 20px;
	}

	.history_list::after {
		top: -180px;
		min-width: 100px;
	}
}
