.p-ac-statutory-solas .l-section .c-section__content h3::before {
	content: none;
}

.p-solas {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	margin-top:20px;
}

/* left: description */
.p-solas__intro {
	flex: 1 1 50%;
	line-height: 1.8;
}

/* right: action buttons */
.p-solas__actions {
	flex: 0 0 548px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* individual link button */
.p-solas__link {
	position: relative;
	display: block;
	padding: 18px 56px 18px 40px; /* 左に■ 右に → のスペース */
	background: #f1f1f1;
	font-weight: 700;
	color: #333;
	text-decoration: none;
	transition: background .2s;
}

/* ■ before */
.p-solas__link::before {
	content: "■";
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.9em;
}

/* → after */
.p-solas__link::after {
	content: "→";
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.1em;
}

/* hover */
.p-solas__link:hover {
	background: #e5e5e5;
}

/* ----------------------------
Responsive (mobile)
---------------------------- */
@media (max-width: 1024px) {
	.p-solas {
		flex-direction: column;
		align-items: flex-start;
		gap:0px;
	}

	.p-solas__actions {
		flex: none;
		width: 548px;
		margin-left: auto;	/* 右寄せ */
	}
}
@media (max-width: 700px) {
	.p-solas__actions {
		width: 80%;
		max-width: 548px;
	}
}
