/* メインイメージ================================================= */

.carboncredit_main {
	height: 640px;
	background: url(/n_images/basis/business/carboncredit/bg.webp) no-repeat center / cover;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carboncredit_main h2 {
	color: #FFF;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.20);
	font-size: 58px;
	font-weight: 800;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.carboncredit_main h2 {
		font-size: 30px;
	}
}

/* ナビゲーション================================================= */
.carboncredit_nav {
	background: #F8F8F8;
}

.carboncredit_nav_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	padding-bottom: 160px !important;
}

.carboncredit_nav_list li a{
	width: 100%;
	display: flex;
	height: 72px;
	font-size: 18px;
	font-weight: 700;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	border-radius: 2px;
	border-bottom: 4px solid var(--green, #88B04B);
	background: linear-gradient(180deg, #FFF 70%, #EEE 100%);
	color: #000;
	text-decoration: none;
	line-height: 20px; /* 111.111% */
}

@media screen and (max-width: 768px) {
	.carboncredit_nav_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.carboncredit_nav_list li a {
		font-size: 14px;
		text-align: center;
		padding-inline: 10px;
	}
}

/* セクションタイトル================================================= */
.carboncredit_sectionTitle {
	display: flex;
	align-items: center;
	border-radius: 4px;
	background: #FFF;
	box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.05);
	margin-bottom: 80px;
	margin-top: -160px;
}

.carboncredit_sectionTitle_title > span {
	display: flex;
	width: 48px;
	height: 48px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.20);
}

.carboncredit_sectionTitle_title {
	display: flex;
	flex-direction: column;
	width: 256px;
	height: 256px;
	justify-content: center;
	align-items: center;
	gap: 16px;
	border-radius: 4px 0 0 4px;
	background: linear-gradient(315deg, #88B04B 29.93%, #AAC87A 99.93%);
}

.carboncredit_sectionTitle_title  .el_title {
	color: #FFF;
	text-align: center;
	font-size: 32px;
	font-weight: 800;
}

.carboncredit_sectionTitle_title  .el_title  span {
	font-size: 16px;
	display: block;
}

.carboncredit_sectionTitle_content {
	flex: 1;
	padding: 0 80px;
}

.carboncredit_sectionTitle_content  .el_title {
	color: #000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

.carboncredit_sectionTitle_content  .el_text {
	font-size: 14px;
	line-height: 24px; /* 171.429% */
}

@media screen and (max-width: 768px) {
	.carboncredit_sectionTitle {
		flex-direction: column;
	}

	.carboncredit_sectionTitle_title {
		flex-direction: row;
		width: 100%;
		height: 100px;
		justify-content: start;
		padding: 20px;
		border-radius: 4px  4px 0 0;
	}

	.carboncredit_sectionTitle_title .el_title {
		text-align: left;
	}

	.carboncredit_sectionTitle_content {
		padding: 20px;
	}
}

/* セクションサブタイトル================================================= */

.carboncredit_sectionSubTitle {
	display: flex;
	padding-bottom: 40px;
	align-items: center;
	gap: 16px;
	color: #000;
	font-size: 32px;
	font-weight: 700;
}

@media screen and (max-width: 768px) {
	.carboncredit_sectionSubTitle {
		flex-direction: column;
		align-items: start;
		font-size: 24px;
	}
}

/* カーボンクレジットの一般的な活用事例================================================= */

.carboncredit_practicalUse_image img {
	width: 100%;
	height: auto;
	margin-bottom: 80px;
}

.carboncredit_practicalUse_content {
	border-radius: 4px;
	background: #F1F2ED;
	box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.05);
	display: flex;
	padding: 40px;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 80px;
}

.carboncredit_practicalUse_content .el_title {
	color: #000;
	font-size: 20px;
	font-weight: 700;
}

.carboncredit_practicalUse_content .el_text {
	font-size: 14px;
	line-height: 24px; /* 171.429% */
}

.carboncredit_practicalUse_content .el_point {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.carboncredit_practicalUse_content .el_point li {
	display: flex;
	padding: 20px;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	border-radius: 4px;
	border: 1px solid #EEE;
	background: #FFF;
	position: relative;
	overflow: hidden;
}

.carboncredit_practicalUse_content .el_point li::before {
	content: "";
	position: absolute;
	height: 10px;
	width: 60px;
	transform: rotate(45deg);
	background: #C0D136;
	display: block;
    top: 10px;
    right: -14px;
}

.carboncredit_practicalUse_content .el_point li  h5 {
	color: var(--green, #88B04B);
	text-align: center;
	font-size: 19px;
	font-weight: 700;
}

.carboncredit_practicalUse_content .el_point li p {
	font-size: 14px;
	line-height: 24px; /* 171.429% */
}

@media screen and (max-width: 768px) {
	.carboncredit_practicalUse_content {
		padding: 20px;
	}

	.carboncredit_practicalUse_content .el_point {
		grid-template-columns: 1fr;
	}
}


/* 事例紹介================================================= */

.carboncredit_case {
	background: #BADBC7;
}

.carboncredit_case_title {
	color: #FFF;
	font-size: 32px;
	font-weight: 800;
	display: flex;
	width: 256px;
	height: 128px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 4px;
	background: linear-gradient(315deg, #88B04B 29.93%, #AAC87A 99.93%);
	margin-bottom: 40px;
	margin-top: -120px;
}

.carboncredit_case_title span {
	display: flex;
	width: 48px;
	height: 48px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.20);
}

@media screen and (max-width: 768px) {
	.carboncredit_case_title {
		height: 100px;
		width: 100%;
		justify-content: start;
		padding: 20px;
	}
}

/* 鈴与商事の取り組み================================================= */

.carboncredit_attempt {
	background: #BADBC7;
}

.carboncredit_attempt_image img {
	width: 100%;
	height: auto;
}

/* 農業でクレジットを生み出す仕組み================================================= */
.carboncredit_structure {
	background: #F8F8F8;
}

.carboncredit_structure_content {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 60px;
}

.carboncredit_structure_title {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}

.carboncredit_structure_text {
	line-height: 24px; /* 171.429% */
	font-size: 14px;
	margin-bottom: 40px;
}

.carboncredit_structure_content_item {
	display: flex;
	padding: 10px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
	border-radius: 4px;
	background: #FFF;
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.05);
}

.carboncredit_structure_content_item img {
	width: 100%;
}

.carboncredit_structure_content_item .el_title {
	border-bottom: 1px solid var(--green, #88B04B);
	padding: 8px 0 12px;
	color: var(--green, #88B04B);
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	width: 100%;
}

.carboncredit_structure_content_item .el_text {
	width: 100%;
	font-size: 14px;
	line-height: 24px; /* 171.429% */
}

.carboncredit_structure_subtitle {
	border-radius: 4px;
	background: var(--green, #88B04B);
	padding: 20px;
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 20px;
}

.carboncredit_structure_certificate {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 40px;
	width: 100%;
}

.carboncredit_structure_certificate .el_text {
	font-size: 14px;
	line-height: 24px; /* 171.429% */
	margin-bottom: 20px;
}

.carboncredit_structure_certificate .el_text span {
	font-weight: 700;
}

.carboncredit_structure_certificate .el_text span strong {
	color: #9C1B31;
}

.carboncredit_structure_certificate img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	.carboncredit_structure_content {
		grid-template-columns: 1fr;
	}
}

/* Jクレジット/中干し延⾧事業 取り組み生産者の広がり================================================= */
.carboncredit_spread {
	padding-bottom: 120px !important;
}

.carboncredit_spread_content {
	gap: 40px;
	display: grid;
	grid-template-columns: 1fr 400px;
	margin-bottom: 20px;
}

.carboncredit_spread_content .el_data {
	border: 1px dashed #999;
	padding: 10px;
}

.carboncredit_spread_content img {
	width: 100%;
}

.carboncredit_spread_content .el_box {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.carboncredit_spread_content .el_box > .el_text{
	font-size: 14px;
}

.carboncredit_spread_content .el_box > .el_title {
	background: var(--green, #88B04B);
	padding: 4px 16px;
	font-size: 14px;
	color: #FFF;
	font-weight: 700;
}

.carboncredit_spread_content .el_data > .el_title {
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 10px;
}

.carboncredit_spread_content .el_data > .el_text {
	font-size: 14px;
	font-weight: 700;
	line-height: 24px; /* 171.429% */
}

@media screen and (max-width: 768px) {
	.carboncredit_spread_content, .carboncredit_structure_certificate {
		grid-template-columns: 1fr;
	}
}

/* 鈴与商事のご提案================================================= */
.carboncredit_suggestion_title {
	background: var(--green, #88B04B);
	padding: 4px 16px;
	font-size: 14px;
	color: #FFF;
	font-weight: 700;
}

.carboncredit_suggestion_content {
	background: #F1F2ED;
	padding: 10px;
	display: flex;
	gap: 40px;
	align-items: center;
}

.carboncredit_suggestion_content .el_credit {
	display: flex;
	width: 200px;
	height: 128px;
	padding: 20px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 2px;
	border: 2px solid #FFF;
	background: #EBE7E1;
	font-weight: 700;
	font-size: 40px;
	line-height: 1;
}

.carboncredit_suggestion_content .el_credit span {
	font-size: 12px;
}

.carboncredit_suggestion_content .el_text {
	font-size: 16px;
	font-weight: 700;
	line-height: 24px; /* 150% */
	margin-bottom: 10px;
}

.carboncredit_suggestion_content .el_btn {
	border-radius: 20px;
	background: var(--SUZUYO-BLUE, #2155A4);
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	width: 100%;
	max-width: 320px;
	display: block;
}

@media screen and (max-width: 768px) {
	.carboncredit_suggestion_content {
		flex-direction: column;
		padding: 20px;
		gap: 20px;
	}
}
