@charset "utf-8";
/* ===========================
   下層ページ共通パーツ
=========================== */

.content-wrap {
	max-width: 820px;
	margin: 0 auto;
}

/* ---------- 企業理念ページ ---------- */
.philosophy-lead {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--c-text);
	margin-bottom: 24px;
	line-height: 1.9;
	text-align: center;
}

.philosophy-body {
	color: var(--c-text-body);
	line-height: 1.95;
	margin-bottom: 64px;
	text-align: center;
}

.cards-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* ---------- 代表挨拶ページ ---------- */
.greeting-layout {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 56px;
	align-items: start;
	max-width: 900px;
	margin: 0 auto;
}

.greeting-portrait {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.greeting-avatar {
	width: 180px;
	box-shadow: var(--shadow-md);
	border-radius: 10%;
	margin-bottom: 20px;
}

.greeting-name {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--c-text);
}

.greeting-title {
	font-size: 0.8rem;
	color: var(--c-text-muted);
	margin-top: 4px;
}

.greeting-body p {
	color: var(--c-text-body);
	line-height: 2;
	margin-bottom: 24px;
}

.greeting-body p:last-child {
	margin-bottom: 0;
}

.greeting-lead {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--c-text);
	margin-bottom: 28px;
	line-height: 1.8;
}

.greeting-signature {
	margin-top: 40px;
	text-align: right;
	font-size: 0.9rem;
	color: var(--c-text-muted);
}

.greeting-signature .name {
	display: block;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--c-text);
	margin-top: 6px;
}

/* ---------- 事業内容ページ ---------- */
.service-lead {
	text-align: center;
	color: var(--c-text-muted);
	margin-bottom: 48px;
}

/* ---------- お知らせ一覧 ---------- */
.news-full-list {
	display: flex;
	flex-direction: column;
}

.news-full-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 4px;
	border-bottom: 1px solid var(--c-border);
}

.news-full-item:first-child {
	border-top: 1px solid var(--c-border);
}

.news-full-date {
	font-family: var(--font-en);
	font-size: 0.9rem;
	color: var(--c-text-muted);
	white-space: nowrap;
	width: 110px;
	flex-shrink: 0;
}

.news-full-tag {
	background: var(--c-primary-muted);
	color: var(--c-primary);
	font-size: 0.72rem;
	font-weight: 700;
	padding: 3px 12px;
	border-radius: 12px;
	white-space: nowrap;
	flex-shrink: 0;
}

.news-full-text {
	color: var(--c-text-body);
	font-size: 0.95rem;
}

/* ---------- お問い合わせページ ---------- */
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	max-width: 860px;
	margin: 0 auto;
}

.contact-list {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.contact-item dt {
	font-family: var(--font-en);
	font-size: 0.75rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--c-text-muted);
	margin-bottom: 6px;
}

.contact-item dd {
	font-size: 1rem;
	color: var(--c-text);
	line-height: 1.7;
}

.contact-item .table-link {
	font-weight: 700;
}

.contact-note {
	background: var(--c-bg-alt);
	border-radius: var(--radius-lg);
	padding: 32px;
}

.contact-note-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--c-text);
	margin-bottom: 16px;
}

.contact-flow {
	list-style: disc;
	padding-left: 1.2em;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 20px;
	color: var(--c-text-body);
	font-size: 0.9rem;
}

.contact-note-desc {
	font-size: 0.85rem;
	color: var(--c-text-muted);
	line-height: 1.9;
}

/* ---------- 下部CTAバンド（全下層ページ共通） ---------- */
.cta-band {
	background: var(--c-primary);
	padding: 72px 0;
	text-align: center;
}

.cta-band .en-title {
	font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.cta-band .en-title,
.cta-band p {
	color: #ffffff;
}

.cta-band p {
	margin: 12px 0 32px;
	opacity: 0.85;
}

/* ===========================
   レスポンシブ
=========================== */
@media (max-width: 768px) {
	.page-hero {
		padding: 48px 0;
	}

	.cards-grid-3 {
		grid-template-columns: 1fr;
	}

	.contact-layout {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.news-full-item {
		flex-wrap: wrap;
	}

	.greeting-layout {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.greeting-signature {
		text-align: left;
	}
}
