/* 温室効果ガス認証ページ専用CSS
 * 配置先想定: /hp/css/scope/authentication/ghg.css
 * 共通コンポーネントで表現できない範囲のみ定義する。
 */

.p-ghg-hero {
	min-height: 180px;
	display: flex;
	align-items: center;
	background:
		linear-gradient(120deg, rgba(0, 60, 117, .96), rgba(0, 91, 172, .82)),
		linear-gradient(30deg, transparent 0 45%, rgba(255, 255, 255, .08) 45% 55%, transparent 55%);
}

.p-ghg-hero .c-hero__title h1 {
	color: #fff;
}

.p-ghg-scope-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 20px;
}

.p-ghg-scope-list li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	margin: 0;
	padding: 12px 16px;
	border: 1px solid #d6e1ea;
	background: #fff;
	text-align: center;
}

.p-ghg-scope-list li span {
	font-weight: bold;
	line-height: 1.6;
	color: #003c75;
}

.p-ghg-form-list {
	display: grid;
	gap: 16px;
}

.p-ghg-form-list .c-box--form {
	margin: 0;
}

@media screen and (max-width: 900px) {
	.p-ghg-scope-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 640px) {
	.p-ghg-hero {
		min-height: 150px;
	}

	.p-ghg-scope-list {
		grid-template-columns: 1fr;
	}

	.p-ghg-scope-list li {
		min-height: 0;
	}
}

/* 認証関連資料テーブル：右側の資料セルのみ白背景 */
.p-auth-ghg table.p-ghg-table--white td {
	background-color: #fff !important;
}
