@charset "utf-8";

/* =========================================================
  Company Info
========================================================= */
.p-company-info__heading {
	padding-top: clamp(70px, 7.8vw, 150px);
	padding-bottom: clamp(55px, 5.2vw, 100px);
}

.p-company-info__body {
	padding-top: clamp(55px, 5.2vw, 100px);
	padding-bottom: clamp(70px, 7.8vw, 150px);
	background-color: #f7f7f7;
}

.p-company-info__table {
	width: 100%;
	border-collapse: collapse;
}

.p-company-info__table tr {
	border-bottom: 1px dashed var(--color-border);
}

.p-company-info__table th,
.p-company-info__table td {
	padding-top: 32px;
	padding-bottom: 16px;
	vertical-align: top;
	line-height: 1.75;
}

.p-company-info__table th {
	position: relative; 
	width: 375px;
	padding-right: 40px;
	font-size: clamp(20px, 1.5625vw, 30px);
	font-weight: 400;
}

.p-company-info__table th::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 34px;
	height: 4px;
	background-color: var(--color-primary);
}

.p-company-info__table td {
	font-size: clamp(18px, 1.302vw, 25px);
	font-weight: 400;
}

/* =========================================================
  Company Info - Tablet
========================================================= */
@media (max-width: 1023px) {
	.p-company-info__table th {
		width: 280px;
		padding-right: 30px;
	}

	.p-company-info__table th,
	.p-company-info__table td {
		padding-top: 26px;
		padding-bottom: 13px;
	}
}

/* =========================================================
  Company Info - SP
========================================================= */
@media (max-width: 767px) {
	.p-company-info__heading {
		padding-top: 55px;
		padding-bottom: 45px;
	}

	.p-company-info__body {
		padding-top: 40px;
		padding-bottom: 60px;
	}

	.p-company-info__table,
	.p-company-info__table tbody,
	.p-company-info__table tr,
	.p-company-info__table th,
	.p-company-info__table td {
		display: block;
		width: 100%;
	}

	.p-company-info__table th {
		padding: 22px 0 12px;
		font-size: 20px;
	}

	.p-company-info__table th::after {
		bottom: 0;
		width: 28px;
		height: 3px;
	}

	.p-company-info__table td {
		padding: 14px 0 24px;
		font-size: 16px;
	}
}

/* =========================================================
  Company Logo
========================================================= */
.p-company-logo {
	padding-top: clamp(70px, 7.8vw, 150px);
	padding-bottom: clamp(80px, 8.33vw, 160px);
}

.p-company-logo__figure {
	width: clamp(190px, 13.958vw, 268px);
	margin-top: clamp(50px, 5.2vw, 100px);
	margin-left: auto;
	margin-right: auto;
}

.p-company-logo__text {
	position: relative;
	margin-top: clamp(50px, 5.2vw, 100px);
	padding: clamp(35px, 3.9vw, 75px) clamp(60px, 7.2vw, 138px);
	border: 1px solid var(--color-border);
	font-size: clamp(16px, 1.042vw, 20px);
	font-weight: 600;
	line-height: 1.9;
	text-align: center;
}
.p-company-logo__text p {
	text-align: left;
	display: inline-block;
}
.p-company-logo__text::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: clamp(70px, 5.573vw, 107px);
	aspect-ratio: 107 / 75;
	background-image: url("/assets/img/company/icon_triangle.svg");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
}

@media (max-width: 767px) {
	.p-company-logo {
		padding-top: 60px;
		padding-bottom: 70px;
	}

	.p-company-logo__text {
		padding: 28px 22px 45px;
		font-size: 15px;
	}

	.p-company-logo__text br {
		display: none;
	}
}


/* =========================================================
  Custom Override
  Company Logo：三角装飾画像パス修正
========================================================= */

.p-company-logo__text::after {
	background-image: url("../img/company/icon_triangle.svg");
}

/* =========================================================
  Custom Override
  Company Typography
========================================================= */

.p-company-logo__text {
	font-weight: 400;
	color: #444;
	letter-spacing: 0.03em;
}