@charset "utf-8";

.resolGroupSection {
	position: relative;
	z-index: 0;
	isolation: isolate;
	margin: 48px 0;
	padding: 56px 20px;
	background: transparent;
	color: #055e26;
	font-family: 'Noto Sans JP', sans-serif;
	box-sizing: border-box;
}

.resolGroupSection::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	background: #f2ffe9;
	pointer-events: none;
	z-index: -1;
}

.resolGroupSection * {
	box-sizing: border-box;
}

.resolGroupSection a {
	text-decoration: none;
}

.resolGroupSection a,
.resolGroupSection a:visited,
.resolGroupSection a:hover,
.resolGroupSection a:active {
	color: inherit;
}

.resolGroupSection a:hover {
	opacity: 1;
}

.resolGroupSection a:focus-visible {
	outline: 3px solid #055e26;
	outline-offset: 3px;
}

.resolGroupSection__inner {
	max-width: 1110px;
	margin: 0 auto;
	padding: 24px 35px 32px;
	background: #f2ffe9;
	border: 5px solid #f2ffe9;
	border-radius: 28px;
	box-shadow:
		5px 5px 9px rgba(62, 77, 70, 0.35),
		-3px -3px 6px rgba(255, 255, 255, 0.95),
		inset 2px 2px 4px rgba(62, 77, 70, 0.12),
		inset -5px -5px 8px rgba(255, 255, 255, 0.95);
}

.resolGroupSection__title {
	margin: 0 auto 25px;
	color: #055e26;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 40px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}

.resolGroupSection__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 25px 30px;
}

.resolGroupSection__card {
	padding: 15px 20px 22px;
	background: #f2ffe9;
	border-radius: 20px;
	box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.2), -7px -7px 15px rgba(242, 255, 233, 1);
}

.resolGroupSection__company,
.resolGroupSection__business {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	color: #055e26;
	background: #f2ffe9;
	border-radius: 11px;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.resolGroupSection__company::after,
.resolGroupSection__business::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 30px;
	height: 30px;
	background: #f2ffe9;
	border-radius: 50%;
	transform: translateY(-50%);
}

.resolGroupSection__company::before,
.resolGroupSection__business::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 22px;
	z-index: 1;
	width: 8px;
	height: 8px;
	border-top: 2px solid #055e26;
	border-right: 2px solid #055e26;
	transform: translateY(-50%) rotate(45deg);
}

.resolGroupSection__company span,
.resolGroupSection__business span {
	position: relative;
	z-index: 1;
}

.resolGroupSection__company {
	min-height: 52px;
	padding: 8px 58px 8px 22px;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.35;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2), -4px -4px 8px rgba(255, 255, 255, 1);
}

.resolGroupSection__company::after {
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2), -3px -3px 6px rgba(255, 255, 255, 0.95);
}

.resolGroupSection__businessList {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 13px;
	margin-top: 13px;
}

.resolGroupSection__businessList--split {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resolGroupSection__business {
	min-height: 46px;
	padding: 7px 54px 7px 18px;
	color: #231815;
	background: #fafafa;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	box-shadow: inset 2px 2px 5px rgba(35, 24, 21, 0.16), 4px 4px 8px rgba(0, 0, 0, 0.18), -4px -4px 8px rgba(255, 255, 255, 0.95);
}

.resolGroupSection .resolGroupSection__business,
.resolGroupSection .resolGroupSection__business:visited,
.resolGroupSection .resolGroupSection__business:hover,
.resolGroupSection .resolGroupSection__business:active {
	color: #231815;
}

.resolGroupSection__business::after {
	background: #fafafa;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.18), -3px -3px 6px rgba(255, 255, 255, 0.95);
}

.resolGroupSection__company:hover {
	background: #f2ffe9;
	box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.18), -3px -3px 7px rgba(255, 255, 255, 0.95);
	transform: translateY(1px);
}

.resolGroupSection__business:hover {
	background: #fafafa;
	box-shadow: inset 2px 2px 5px rgba(35, 24, 21, 0.14), 3px 3px 7px rgba(0, 0, 0, 0.16);
	transform: translateY(1px);
}

.resolGroupSection__company:hover::after {
	background: #f2ffe9;
}

.resolGroupSection__separator {
	color: #055e26;
}

.resolGroupSection__spBreak {
	display: none;
}

@media only screen and (max-width: 767px) {
	.resolGroupSection {
		margin: 34px 0;
		padding: 30px 12px;
	}

	.resolGroupSection__inner {
		padding: 18px 12px 22px;
		border-width: 3px;
		border-radius: 18px;
		box-shadow:
			5px 6px 10px rgba(73, 103, 67, 0.24),
			-5px -5px 10px rgba(255, 255, 255, 0.95),
			inset 1px 1px 3px rgba(73, 103, 67, 0.1),
			inset -3px -3px 6px rgba(255, 255, 255, 0.9);
	}

	.resolGroupSection__title {
		margin-bottom: 16px;
		font-size: 28px;
	}

	.resolGroupSection__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 14px;
	}

	.resolGroupSection__card {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		padding: 12px;
		border-radius: 16px;
		box-shadow: 5px 7px 12px rgba(59, 82, 52, 0.18), -4px -4px 9px rgba(255, 255, 255, 0.72);
	}

	.resolGroupSection__company {
		min-height: 54px;
		padding: 9px 38px 9px 12px;
		font-size: clamp(13px, 3.6vw, 14px);
		line-height: 1.3;
		text-align: center;
		overflow: hidden;
		box-shadow: 4px 5px 9px rgba(61, 82, 52, 0.22), -3px -3px 7px rgba(255, 255, 255, 0.86);
	}

	.resolGroupSection__businessList,
	.resolGroupSection__businessList--split {
		grid-template-columns: minmax(0, 1fr);
		gap: 10px;
		margin-top: 10px;
	}

	.resolGroupSection__business {
		min-height: 48px;
		padding: 8px 44px 8px 14px;
		font-size: 14px;
		line-height: 1.3;
		text-align: center;
		overflow: hidden;
		box-shadow: inset 2px 2px 5px rgba(154, 148, 158, 0.24), 2px 3px 7px rgba(88, 82, 91, 0.12), -3px -3px 7px rgba(255, 255, 255, 0.84);
	}

	.resolGroupSection__company span,
	.resolGroupSection__business span {
		display: block;
		width: 100%;
		text-align: center;
		overflow-wrap: break-word;
	}

	.resolGroupSection__company span {
		white-space: nowrap;
	}

	.resolGroupSection__spBreak {
		display: inline;
	}

	.resolGroupSection__company::after,
	.resolGroupSection__business::after {
		right: 10px;
		width: 24px;
		height: 24px;
	}

	.resolGroupSection__company::before,
	.resolGroupSection__business::before {
		right: 19px;
		width: 6px;
		height: 6px;
	}
}
