/**
 * PRESENS - 企業情報ページ (/company/)
 * MVV, PRESENSの原点, PRESENSが作る世界, PRESENSへの想い
 */

/* ===== Company Info Table ===== */
.company-table {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	border-collapse: collapse;
	border-top: 2px solid var(--presens-primary);
}

.company-table th,
.company-table td {
	padding: 1.3rem 1.5rem;
	border-bottom: 1px solid var(--presens-border);
	text-align: left;
	vertical-align: top;
	font-size: 0.95rem;
	line-height: 1.7;
}

.company-table th {
	font-family: var(--presens-font-sans);
	font-size: 0.85rem;
	font-weight: 500;
	color: var(--presens-text-light);
	letter-spacing: 0.06em;
	width: 180px;
	white-space: nowrap;
	background: var(--presens-surface-alt);
}

.company-table td {
	color: var(--presens-text);
	padding-left: 2rem;
}

.company-table td a {
	color: var(--presens-secondary);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color var(--presens-transition);
}

.company-table td a:hover {
	border-bottom-color: var(--presens-secondary);
}

.company-table__sub {
	font-size: 0.8rem;
	color: var(--presens-text-light);
	margin-left: 0.5rem;
}

/* ===== MVV Section ===== */
.mvv-cards {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	max-width: 800px;
	margin: 0 auto;
}

.mvv-card {
	background: var(--presens-surface);
	border: 1px solid var(--presens-border);
	border-left: 3px solid var(--presens-primary);
	padding: 2.5rem 3rem;
}

.mvv-card__label {
	font-family: var(--presens-font-en);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--presens-accent);
	margin-bottom: 1rem;
}

.mvv-card__title {
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.7;
	color: var(--presens-primary);
}

.mvv-card__keyword {
	font-family: var(--presens-font-en);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--presens-primary);
	margin-bottom: 0.9rem;
}

.mvv-card__desc {
	font-family: var(--presens-font-sans);
	font-size: 0.9rem;
	line-height: 1.8;
	color: var(--presens-text-light);
	margin-top: 1rem;
	margin-bottom: 0;
}

.mvv-card__list {
	list-style: none;
	padding: 0;
	margin-top: 1rem;
	counter-reset: values;
}

.mvv-card__list li {
	counter-increment: values;
	padding: 0.4rem 0;
	font-size: 0.95rem;
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
}

.mvv-card__list li::before {
	content: counter(values);
	font-family: var(--presens-font-en);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--presens-accent);
	min-width: 1.5rem;
	text-align: center;
}

/* ===== Origin Story ===== */
.origin-story {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.origin-story__episode {
	font-size: 1.05rem;
	line-height: 1.9;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--presens-border);
}

.origin-story__arrow {
	font-size: 2rem;
	color: var(--presens-secondary);
	padding: 1.5rem 0;
	line-height: 1;
}

.origin-story__conclusion {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--presens-primary);
	padding-top: 1rem;
	letter-spacing: 0.08em;
}

/* ===== World Vision (PRESENSが作る世界) ===== */
.world-vision__list {
	max-width: 600px;
	margin: 0 auto 3rem;
	list-style: none;
	padding: 0;
}

.world-vision__list li {
	font-size: 1.05rem;
	line-height: 1.8;
	padding: 0.6rem 0;
	padding-left: 1.5rem;
	position: relative;
}

.world-vision__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 1.1rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--presens-accent);
}

/* Flow Diagram */
.world-vision__flow {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.world-vision__flow-step {
	background: var(--presens-surface);
	border: 2px solid var(--presens-primary);
	border-radius: 50px;
	padding: 1rem 2rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--presens-primary);
	text-align: center;
	letter-spacing: 0.05em;
}

.world-vision__flow-arrow {
	font-family: var(--presens-font-en);
	font-size: 1.5rem;
	color: var(--presens-accent);
}

/* ===== Thoughts (PRESENSへの想い) ===== */
.thoughts {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.thoughts__lead {
	font-size: clamp(1.3rem, 3vw, 1.8rem);
	font-weight: 600;
	color: var(--presens-primary);
	line-height: 1.6;
	margin-bottom: 2rem;
}

.thoughts__body {
	font-size: 1.05rem;
	line-height: 2;
	margin-bottom: 1.5rem;
}

.thoughts__emphasis {
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	font-weight: 600;
	color: var(--presens-text);
	margin-bottom: 1.5rem;
	letter-spacing: 0.06em;
}

.thoughts__conclusion {
	font-size: clamp(1.5rem, 4vw, 2.2rem);
	font-weight: 700;
	color: var(--presens-primary);
	letter-spacing: 0.08em;
	margin-top: 2rem;
}

.presens-team-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	max-width: 660px;
	margin: 0 auto;
}

.presens-team-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0.85rem;
	border: 1px solid var(--presens-border);
	border-radius: 6px;
	background: var(--presens-surface);
	min-width: 0;
}

.presens-team-card__photo {
	width: min(100%, 140px);
	max-width: 140px;
	aspect-ratio: 3 / 4;
	background: var(--presens-surface-alt);
	border-radius: 4px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.presens-team-card__photo img {
	width: 100%;
	max-width: 140px;
	height: auto;
	max-height: 187px;
	object-fit: contain;
	display: block;
}

.presens-team-card__role {
	font-family: var(--presens-font-en);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--presens-primary);
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
	.company-table th,
	.company-table td {
		display: block;
		width: 100%;
		padding: 0.8rem 1rem;
	}

	.company-table th {
		padding-bottom: 0.3rem;
		border-bottom: none;
	}

	.company-table td {
		padding-top: 0;
		padding-left: 1rem;
	}

	.mvv-card {
		padding: 2rem 1.5rem;
	}

	.mvv-card__keyword {
		font-size: 1.15rem;
	}

	.presens-team-grid {
		grid-template-columns: 1fr;
	}

	.world-vision__flow {
		flex-direction: column;
		gap: 1rem;
	}

	.world-vision__flow-arrow {
		transform: rotate(90deg);
	}
}
