/* ============================================================
   blocks/company.css — 会社案内ブロック (company.html / fc.html で共有)
   .top_read / .top_feature / .top_faq と共通のデザイン方針:
   - 和紙テクスチャの背景
   - .indent コンテナ (max-width: 1120px)
   - h2.ttl は中央揃えの下線付き
   - .fadein によるスクロールアニメーション
   - 配色トークン (--c-brown / --c-gold / --c-pink / --c-cream / --c-ivory)
   - Noto Serif JP のタイポグラフィ
   ============================================================ */

/*.top_company*/
.top_company {
	padding: 7rem 0 7rem;
	background: url("../../img/backgrounds/bk_washi.webp");
}

/*代表挨拶*/
.top_company .company_message {
	margin-bottom: 80px;
}
.top_company .company_message h3 {
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	border-bottom: 2px solid var(--c-pink);
	padding-bottom: 20px;
	margin-bottom: 40px;
}
.top_company .company_message .catchphrase {
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--c-brown);
	text-align: center;
	margin-bottom: 40px;
	line-height: 2.2;
}
.top_company .company_message .message_body {
	max-width: 800px;
	margin: 0 auto;
	line-height: 2.2;
	font-size: 1rem;
}
.top_company .company_message .message_body p {
	margin-bottom: 1.5em;
}
.top_company .company_message .ceo_name {
	text-align: right;
	font-weight: bold;
	font-size: 1.1rem;
	margin-top: 50px;
	line-height: 2;
}

/*理念・ビジョン*/
.top_company .company_philosophy {
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
	margin-bottom: 40px;
}
.top_company .philosophy_item {
	flex: 1;
	padding: 40px;
	text-align: center;
}
.top_company .philosophy_item.purpose {
	background: rgba(255, 252, 245, 0.85);
	color: var(--c-brown-dark);
	border: 1px solid rgba(203, 167, 153, 0.5);
	border-radius: 4px;
	box-shadow: 0 2px 16px rgba(109, 94, 79, 0.08);
	backdrop-filter: blur(2px);
}
.top_company .philosophy_item.vision {
	background: rgba(255, 252, 245, 0.85);
	color: var(--c-brown-dark);
	border: 1px solid rgba(203, 167, 153, 0.5);
	border-radius: 4px;
	box-shadow: 0 2px 16px rgba(109, 94, 79, 0.08);
	backdrop-filter: blur(2px);
}
.top_company .philosophy_item h4 {
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--c-pink);
}
.top_company .philosophy_item p {
	font-size: 1.1rem;
	line-height: 2;
}

/*ミッション*/
.top_company .company_mission {
	background: rgba(255, 252, 245, 0.85);
	border: 1px solid rgba(203, 167, 153, 0.5);
	border-radius: 4px;
	box-shadow: 0 2px 16px rgba(109, 94, 79, 0.08);
	backdrop-filter: blur(2px);
	padding: 40px;
	margin-bottom: 80px;
}
.top_company .company_mission h4 {
	font-size: 1.1rem;
	font-weight: bold;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--c-pink);
	text-align: center;
}
.top_company .company_mission ul {
	max-width: 600px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
}
.top_company .company_mission ul li {
	padding: 10px 0 10px 25px;
	position: relative;
	font-size: 1.05rem;
	line-height: 1.8;
	border-bottom: 1px solid rgba(203, 167, 153, 0.3);
}
.top_company .company_mission ul li:last-child {
	border-bottom: none;
}
.top_company .company_mission ul li::before {
	content: "●";
	color: var(--c-gold);
	font-size: 0.6rem;
	position: absolute;
	left: 0;
	top: 14px;
}

/*会社概要テーブル*/
.top_company .company_detail {
	margin-bottom: 0;
	border-top: 2px solid var(--c-pink);
	padding-top: 40px;
}
.top_company .company_detail h3 {
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	border-bottom: 2px solid var(--c-pink);
	padding-bottom: 20px;
	margin-bottom: 40px;
}
.table_company {
	width: 100%;
	border-collapse: collapse;
}
.table_company tr {
	border-bottom: 1px solid #D9D2C7;
}
.table_company th {
	width: 25%;
	padding: 20px 15px;
	text-align: left;
	vertical-align: top;
}
.table_company th p {
	background: var(--c-cream);
	padding: 0.3rem 0.8rem;
	font-weight: bold;
	font-size: 1rem;
	display: inline-block;
	border-radius: 10px;
}
.table_company td {
	padding: 20px 15px;
	line-height: 2;
	font-size: 1rem;
}
.table_company td ol {
	padding-left: 20px;
}
.table_company td ul {
	list-style: disc;
	padding-left: 20px;
}
.table_company td ol li,
.table_company td ul li {
	margin-bottom: 5px;
}
.table_company td dl.history div {
	display: flex;
	padding: 5px 0;
}
.table_company td dl.history dt {
	width: 80px;
	font-weight: bold;
	flex-shrink: 0;
}

/*レスポンシブ*/
@media (max-width: 767px) {
	.top_company {
		padding: 8rem 0 5rem 0;
	}
	.top_company .company_message .catchphrase {
		font-size: 1.1rem;
	}
	.top_company .company_message .message_body {
		font-size: 0.95rem;
	}
	.top_company .company_philosophy {
		display: block;
	}
	.top_company .philosophy_item {
		margin-bottom: 20px;
		padding: 30px;
	}
	.top_company .company_mission {
		padding: 30px 20px;
		margin-bottom: 60px;
	}
	.table_company th,
	.table_company td {
		display: block;
		width: 100%;
		padding: 10px 15px;
	}
	.table_company th {
		padding-bottom: 0;
		border-bottom: none;
	}
	.table_company td {
		padding-top: 5px;
	}
}

/*------------------------------------
FC加盟店募集ページ 追加ブロック
- 3つの強み / 費用 / 自己資金とリース
------------------------------------*/

/*加盟の3つの強み*/
.top_company .fc_strengths {
	margin-bottom: 80px;
}
.top_company .fc_strengths h3 {
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	border-bottom: 2px solid var(--c-pink);
	padding-bottom: 20px;
	margin-bottom: 40px;
}
.top_company .strengths_grid {
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
.top_company .strength_item {
	flex: 1;
	background: var(--c-cream);
	padding: 40px 30px;
	color: var(--c-brown-dark);
}
.top_company .strength_item h4 {
	font-size: 1.15rem;
	font-weight: bold;
	color: var(--c-brown);
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--c-pink);
	text-align: center;
}
.top_company .strength_item p {
	font-size: 1rem;
	line-height: 2;
}

/*費用*/
.top_company .fc_cost {
	margin-bottom: 80px;
}
.top_company .cost_flex {
	display: flex;
	justify-content: space-between;
	column-gap: 40px;
}
.top_company .cost_block {
	flex: 1;
}
.top_company .cost_block h3 {
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	border-bottom: 2px solid var(--c-pink);
	padding-bottom: 20px;
	margin-bottom: 30px;
}
.top_company .cost_list > div {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 15px 20px;
	border-bottom: 1px solid #D9D2C7;
	font-size: 1rem;
	line-height: 1.7;
}
.top_company .cost_list > div:last-child {
	border-bottom: none;
}
.top_company .cost_list dt {
	font-weight: bold;
	color: var(--c-brown);
}
.top_company .cost_list dd {
	color: var(--c-brown-dark);
	text-align: right;
}
.top_company .cost_list dd span {
	font-size: 0.85rem;
	color: var(--c-brown);
	margin-left: 4px;
}

/*自己資金とリース*/
.top_company .fc_funding {
	margin-bottom: 80px;
}
.top_company .fc_funding h3 {
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	border-bottom: 2px solid var(--c-pink);
	padding-bottom: 20px;
	margin-bottom: 40px;
}
.top_company .funding_grid {
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
}
.top_company .funding_item {
	flex: 1;
	background: var(--c-cream);
	padding: 40px 30px;
	position: relative;
	color: var(--c-brown-dark);
}
.top_company .funding_item.recommended {
	background: var(--c-ivory);
	border: 2px solid var(--c-gold);
}
.top_company .funding_item.recommended::before {
	content: "推奨";
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--c-gold);
	color: #fff;
	padding: 4px 24px;
	font-size: 0.9rem;
	font-weight: bold;
	letter-spacing: 0.15em;
}
.top_company .funding_item h4 {
	font-size: 1.15rem;
	font-weight: bold;
	color: var(--c-brown);
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 2px solid var(--c-pink);
	text-align: center;
}
.top_company .funding_item dl > div {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 12px 0;
	font-size: 1rem;
	border-bottom: 1px solid rgba(203, 167, 153, 0.4);
}
.top_company .funding_item dl > div:last-child {
	border-bottom: none;
}
.top_company .funding_item dl dt {
	font-weight: bold;
	color: var(--c-brown);
}
.top_company .funding_item dl dd {
	color: var(--c-brown-dark);
	text-align: right;
}

@media (max-width: 767px) {
	.top_company .strengths_grid,
	.top_company .cost_flex,
	.top_company .funding_grid {
		display: block;
	}
	.top_company .strength_item,
	.top_company .funding_item {
		margin-bottom: 20px;
		padding: 30px 25px;
	}
	.top_company .cost_block {
		margin-bottom: 40px;
	}
	.top_company .funding_item.recommended {
		margin-top: 30px;
	}
}

