@charset "UTF-8";

/**************************/
/* philosophy */
/**************************/
.philosophy {
	padding-bottom: 125px;
	@media (max-width: 750px) {
		padding: 0 0px 75px 0px;
	}
}

.philosophyCard {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	background: linear-gradient(180deg, #20239a 0%, #2483a4 100%);
	padding: 64px 64px 76px;
	color: var(--white);
	text-align: center;
	@media (max-width: 750px) {
		padding: 42px 24px 52px;
		text-align: left;
	}
}

.philosophyCard::after {
	content: "PHILOSOPHY";
	position: absolute;
	right: 0px;
	bottom: -50px;
	color: rgba(255, 255, 255, 0.11);
	font-size: clamp(58px, 9vw, 112px);
	font-family: "Barlow Semi Condensed", sans-serif;
	font-weight: 900;
	@media (max-width: 750px) {
		bottom: -20px;
	}
}

.philosophyCard h2 {
	margin-bottom: 58px;
	font-size: clamp(34px, 4vw, 54px);
	font-weight: bold;
	letter-spacing: 0.05em;
	@media (max-width: 750px) {
		margin-bottom: 30px;
	}
}

.philosophyCard p {
	position: relative;
	z-index: 1;
	text-align: left;
	color: rgba(255, 255, 255, 0.88);
	font-size: 16px;
	font-weight: normal;
	line-height: 2.4;
	@media (max-width: 750px) {
		font-size: 14px;
		line-height: 2;
	}
}

/**************************/
/* company profile */
/**************************/
.companyProfile {
	padding-bottom: 80px;
}

.profileHeading {
	margin-bottom: 72px;
	@media (max-width: 750px) {
		margin-bottom: 40px;
	}
}

.companyTable {
	width: 100%;
	border-collapse: collapse;
	border-top: 4px solid #203961;
	background: rgba(255, 255, 255, 0.94);
}

.companyTable tbody,
.companyTable tr {
}

.companyTable th,
.companyTable td {
	display: table-cell;
	border-bottom: 1px solid rgba(39, 52, 87, 0.2);
	vertical-align: middle;
	padding: 20px;
	line-height: 1.8;
	font-size: 16px;
	@media (max-width: 750px) {
		text-align: left;
		padding: 5px;
		font-size: 14px;
	}
}

.companyTable th {
	width: 30%;
	background: #cdefff;
	color: var(--blue);
	font-weight: bold;
	text-align: center;
	@media (max-width: 750px) {
		width: 20%;
		min-width: 6em;
	}
}

.companyTable td {
	color: #202a43;
	font-weight: normal;
	@media (max-width: 750px) {
		width: auto;
		text-align: left;
		padding: 8px;
	}
}
