/* =============================================================
 * Probono page
 * ============================================================= */

.p-probono {
	--probono-orange: #ff9900;
	--probono-orange-dark: #e68a00;
	--probono-orange-tint: #fff7ee;
	--probono-orange-soft: #ffe9d0;
	--probono-text: #333;
	--probono-text-sub: #666;
	--probono-border: #e8e3dc;
	--probono-bg-alt: #faf7f2;
	color: var(--probono-text);
	overflow-x: hidden;
	isolation: isolate;
}

/* load-head の h1〜h4 共通スタイルを無効化（marginは各BEMに任せる） */
.p-probono h1,
.p-probono h2,
.p-probono h3,
.p-probono h4 {
	margin-top: 0;
	padding: 0 !important;
	background: none !important;
	background-color: transparent !important;
	background-image: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	text-indent: 0;
}
.p-probono h1::before, .p-probono h1::after,
.p-probono h2::before, .p-probono h2::after,
.p-probono h3::before, .p-probono h3::after,
.p-probono h4::before, .p-probono h4::after {
	display: none !important;
	content: none !important;
}

.p-probono .l-inner {
	width: 100%;
	padding-right: 5px;
	padding-left: 5px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
}
@media screen and (min-width: 768px) {
	.p-probono .l-inner {
		max-width: 1150px;
		padding-right: 25px;
		padding-left: 25px;
	}
}

/* c-title05 */
.p-probono .c-title05 {
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.02em;
	font-weight: 700;
	color: var(--probono-orange-dark);
	text-align: center;
}
.p-probono .c-title05::after {
	display: block !important;
	content: "" !important;
	width: 30px;
	height: 4px;
	background: linear-gradient(to right, #f4b518, #f4da18);
	margin: 10px auto 0;
	border-radius: 2px;
}
@media screen and (min-width: 768px) {
	.p-probono .c-title05 {
		font-size: 30px;
	}
}

/* 自前のBEMリストのみリセット（margin は各BEMクラスに委ねる） */
.p-probono [class^="p-probono-"] ul,
.p-probono [class^="p-probono-"] ol {
	list-style: none;
	padding: 0;
}
.p-probono [class^="p-probono-"] li {
	list-style: none;
}
.p-probono a {
	color: var(--probono-orange-dark);
	text-decoration: underline;
	text-underline-offset: 2px;
}
.p-probono a:hover {
	text-decoration: none;
}
.p-probono a.c-btn03,
.p-probono a.c-btn02 {
	text-decoration: none;
}

.p-probono .c-btn03 {
	display: flex;
	justify-content: center;
	position: relative;
	cursor: pointer;
}
.p-probono .c-btn03-body {
	display: block;
	width: 100%;
	padding-block: 23px;
	position: relative;
	overflow: hidden;
	border-radius: 40px;
	background-image: linear-gradient(to right, #ffb35b, #fc8804);
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	text-align: center;
}
.p-probono .c-btn03-body__label {
	position: relative;
	z-index: 1;
	font-weight: 700;
}
.p-probono .c-btn03-body::after {
	content: "";
	position: absolute;
	top: 20px;
	right: 23px;
	z-index: 2;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}
@media screen and (min-width: 600px) {
	.p-probono .c-btn03-body::after {
		top: 20px;
		right: 17px;
	}
}

/* submit button の UA 枠線を解除 */
.p-probono button.c-btn03 {
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	color: inherit;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

/* c-btn03 / c-btn02 のホバー（色を変化） */
.p-probono .c-btn03,
.p-probono .c-btn03 .c-btn03-body {
	transition: box-shadow 0.2s ease, transform 0.2s ease, background-image 0.2s ease, filter 0.2s ease;
}
.p-probono .c-btn03:hover .c-btn03-body,
.p-probono button.c-btn03:hover .c-btn03-body {
	background-image: linear-gradient(to right, #ff9b3c, #e67a00);
	box-shadow: 0.3rem 0.3rem 0.7rem rgba(0, 0, 0, 0.28);
	transform: translateY(-2px);
}
.p-probono .c-btn02 {
	transition: filter 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.p-probono .c-btn02:hover {
	filter: brightness(0.92);
	box-shadow: 0.3rem 0.3rem 0.7rem rgba(0, 0, 0, 0.28);
	transform: translateY(-2px);
}

/* =============================================================
 * MV
 * ============================================================= */
.p-probono-mv {
	position: relative;
	background:
		radial-gradient(circle at 85% 10%, #ffe4c4 0%, transparent 55%),
		radial-gradient(circle at 5% 90%, #fff1de 0%, transparent 50%),
		linear-gradient(180deg, #fffaf3 0%, #ffffff 100%);
	padding: 60px 0 70px;
	overflow: hidden;
}
.p-probono-mv__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	text-align: center;
}
.p-probono-mv__content {
	max-width: 600px;
}
.p-probono-mv__label {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.22em;
	color: #c94530;
	margin-bottom: 18px;
	text-indent: 0.22em;
}
.p-probono-mv__label::before,
.p-probono-mv__label::after {
	content: "";
	display: block;
	width: 28px;
	height: 1.5px;
	background: currentColor;
}
.p-probono-mv__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.01em;
	color: #222;
	margin-bottom: 20px;
}
.p-probono-mv__title > span {
	font-weight: 700;
}
.p-probono-mv__title-accent {
	color: var(--probono-orange-dark);
	font-weight: 700;
}
.p-probono-mv__title-mark {
	position: relative;
	display: inline-block;
	font-weight: 700;
	z-index: 0;
}
.p-probono-mv__title-mark::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 10px;
	background: rgba(255, 153, 0, 0.18);
	z-index: -1;
}
.p-probono-mv__text {
	font-size: 14px;
	line-height: 1.9;
	color: var(--probono-text);
	margin-bottom: 14px;
}
.p-probono-mv__note {
	font-size: 12px;
	color: #888;
	margin-bottom: 28px;
}
.p-probono-mv__note a {
	color: var(--probono-orange-dark);
	font-weight: 700;
}
.p-probono-mv__btn {
	display: flex;
	justify-content: center;
}
.p-probono-mv__btn .c-btn03 {
	width: 280px;
	max-width: 100%;
}
.p-probono-mv__image {
	max-width: 440px;
	margin: 0 auto;
}
.p-probono-mv__image img {
	width: 100%;
	height: auto;
	display: block;
}

@media screen and (min-width: 768px) {
	.p-probono-mv {
		padding: 90px 0 110px;
	}
	.p-probono-mv__inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 60px;
		text-align: left;
	}
	.p-probono-mv__content {
		flex: 1 1 auto;
	}
	.p-probono-mv__label {
		font-size: 17px;
		gap: 18px;
		margin-bottom: 15px;
	}
	.p-probono-mv__label::before,
	.p-probono-mv__label::after {
		width: 36px;
	}
	.p-probono-mv__title {
		font-size: 30px;
		line-height: 1.55;
		letter-spacing: 0;
		margin-bottom: 28px;
		white-space: nowrap;
	}
	.p-probono-mv__title-mark::after {
		height: 14px;
		bottom: 4px;
	}
	.p-probono-mv__text {
		font-size: 15px;
		margin-bottom: 16px;
	}
	.p-probono-mv__note {
		font-size: 13px;
		margin-bottom: 36px;
	}
	.p-probono-mv__btn {
		justify-content: flex-start;
	}
	.p-probono-mv__image {
		flex: 0 0 auto;
		max-width: 450px;
	}
}

/* =============================================================
 * Intro
 * ============================================================= */
.p-probono-intro {
	padding: 80px 20px 0;
	text-align: center;
}
.p-probono-intro__lead {
	font-size: 15px;
	line-height: 2;
	color: var(--probono-text-sub);
	max-width: 720px;
	margin: 0 auto;
}
@media screen and (min-width: 768px) {
	.p-probono-intro {
		padding-top: 120px;
	}
	.p-probono-intro__lead {
		font-size: 16px;
	}
}

/* =============================================================
 * Results
 * ============================================================= */
.p-probono-results {
	position: relative;
	padding-top: 80px;
	background: #fff;
}
.p-probono-results::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 54px;
	width: 100%;
	background: #f9f8f2;
	z-index: -1;
}
.p-probono-results__read {
	max-width: 720px;
	margin: 40px auto 0;
	color: var(--probono-text);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.04em;
	text-align: center;
}
.p-probono-results__read-marker {
	background: linear-gradient(transparent 60%, rgba(255, 217, 121, 0.8) 60%);
	font-size: 18px;
	font-weight: 700;
}
.p-probono-results__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: 973px;
	margin: 32px auto 0;
	padding: 0;
}
.p-probono-results__item {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 270px;
	margin: 0 auto;
	padding: 16px;
	background: #fff;
	border: 1px solid var(--probono-border);
	border-radius: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.p-probono-results__item-title {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #000;
	font-size: 17.6px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
	margin-bottom: 10px;
}
.p-probono-results__item-title::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ff8800;
}
.p-probono-results__content {
	display: flex;
	flex: 0.8;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 0;
}
.p-probono-results__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.p-probono-results__item:nth-of-type(1) .p-probono-results__image {
	width: 41px;
	height: 40px;
}
.p-probono-results__item:nth-of-type(2) .p-probono-results__image {
	width: 49px;
	height: 32px;
	margin-top: 8px;
}
.p-probono-results__item:nth-of-type(3) .p-probono-results__image {
	width: 45px;
	height: 45px;
}
.p-probono-results__item:nth-of-type(4) .p-probono-results__image {
	width: 67px;
	height: 40px;
}
.p-probono-results__item:nth-of-type(5) .p-probono-results__image {
	width: 45px;
	height: 45px;
}
.p-probono-results__item:nth-of-type(6) .p-probono-results__image {
	width: 38px;
	height: 53px;
	margin-top: 10px;
}
.p-probono-results__item:last-child .p-probono-results__text {
	margin-top: 15px;
}
.p-probono-results__value {
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0;
}
.p-probono-results__value span {
	color: #ff8800;
	font-size: 60px;
	font-weight: 700 !important;
	line-height: 1;
	letter-spacing: 0;
}
.p-probono-results__item:nth-of-type(3) .p-probono-results__value span,
.p-probono-results__item:nth-of-type(6) .p-probono-results__value span {
	font-size: 48px;
}
.p-probono-results__item:nth-of-type(4) .p-probono-results__value span {
	font-size: 46px;
}
.p-probono-results__value-slash {
	display: inline-block;
	width: 3px;
	height: 44px;
	margin-inline: 16px;
	background: #ff8800;
	transform: skewY(163deg) rotate(19deg) translateY(6px);
}
.p-probono-results__value-note {
	margin-bottom: 0;
	padding-top: 9px;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0;
	text-align: center;
}
.p-probono-results__note {
	text-align: right;
	font-size: 12px;
	color: #999;
	margin-top: 12px;
}
@media screen and (min-width: 600px) {
	.p-probono-results::before {
		bottom: 125px;
	}
	.p-probono-results__read-marker {
		font-size: 20px;
	}
	.p-probono-results__list {
		grid-template-columns: repeat(3, minmax(0, calc((100% - 64px) / 3)));
		column-gap: 35px;
		row-gap: 35px;
		margin-top: 40px;
	}
	.p-probono-results__item {
		max-width: none;
		box-sizing: border-box;
	}
}
@media screen and (min-width: 768px) {
	.p-probono-results {
		padding-top: 120px;
	}
}

/* =============================================================
 * Call for Pro bono（実績下／全面背景）
 * ============================================================= */
.p-probono-call {
	padding: 80px 20px;
	background:
		radial-gradient(circle at 10% 20%, #ffe7cb 0%, transparent 45%),
		radial-gradient(circle at 90% 80%, #fff3dc 0%, transparent 45%),
		var(--probono-orange-tint);
}
.p-probono-call__body {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
	gap: 28px;
	max-width: 1030px;
	margin: 36px auto 0;
}
.p-probono-call__text {
	flex: 1 1 auto;
	font-size: 14px;
	line-height: 2;
	color: var(--probono-text);
}
.p-probono-call__text p {
	margin: 0 0 1.2em;
}
.p-probono-call__text p:last-child {
	margin-bottom: 0;
}
.p-probono-call__image {
	flex: 0 0 auto;
	max-width: 280px;
	width: 100%;
}
.p-probono-call__image img {
	width: 100%;
	height: auto;
	display: block;
}
@media screen and (min-width: 768px) {
	.p-probono-call {
		padding: 120px 20px;
	}
	.p-probono-call__body {
		flex-direction: row-reverse;
		gap: 60px;
		margin-top: 48px;
	}
	.p-probono-call__text {
		font-size: 18px;
	}
	.p-probono-call__image {
		max-width: 320px;
	}
}

/* =============================================================
 * About (features)
 * ============================================================= */
.p-probono-about {
	padding: 80px 20px;
	background: var(--probono-bg-alt);
}
.p-probono-about__inner {
	max-width: 1100px;
	margin: 0 auto;
}
.p-probono-about .c-title05 {
	margin-bottom: 40px;
}
.p-probono-about__list {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr;
	max-width: 1000px;
	margin: 0 auto;
}
.p-probono-about__item {
	background: #fff;
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
	border: 1px solid var(--probono-border);
}
.p-probono-about__icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	background: var(--probono-orange-tint);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.p-probono-about__icon img {
	width: 40px;
	height: 40px;
}
.p-probono-about__item-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 14px;
	color: #222;
}
.p-probono-about__item-text {
	font-size: 14px;
	line-height: 1.9;
	color: var(--probono-text-sub);
	text-align: left;
}
@media screen and (min-width: 768px) {
	.p-probono-about {
		padding: 120px 20px;
	}
	.p-probono-about__list {
		grid-template-columns: repeat(3, 1fr);
		gap: 28px;
	}
	.p-probono-about__item {
		padding: 40px 28px;
	}
}

/* =============================================================
 * Jobs
 * ============================================================= */
.p-probono-jobs {
	padding: 80px 20px;
	background: #fff;
}
.p-probono .p-probono-jobs__inner {
	max-width: 1030px;
	margin: 0 auto;
}
.p-probono-jobs__lead {
	text-align: center;
	font-size: 14px;
	line-height: 1.9;
	color: var(--probono-text-sub);
	margin: 20px 0 36px;
}
.p-probono-jobs__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.p-probono-job {
	background: #fff;
	border: 1px solid var(--probono-border);
	border-radius: 12px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.p-probono-job[open],
.p-probono-job:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	border-color: var(--probono-orange-soft);
}
.p-probono-job__head {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 22px;
	cursor: pointer;
	list-style: none;
	position: relative;
	transition: background-color 0.2s ease;
}
.p-probono-job:not([open]) .p-probono-job__head:hover {
	background-color: var(--probono-orange-tint);
}
.p-probono-job:not([open]) .p-probono-job__head:hover .p-probono-job__arrow {
	border-color: var(--probono-orange-dark);
	transform: rotate(45deg) translate(2px, 2px);
}
.p-probono-job__head::-webkit-details-marker {
	display: none;
}
.p-probono-job__badge {
	display: inline-block;
	padding: 5px 12px;
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: var(--probono-orange);
	border-radius: 999px;
	flex-shrink: 0;
	line-height: 1.4;
}
.p-probono-job[data-accent="youtube-red"] .p-probono-job__badge { background: #FF0033; }
.p-probono-job[data-accent="orange-dark"] .p-probono-job__badge { background: var(--probono-orange-dark); }
.p-probono-job[data-accent="blue"]   .p-probono-job__badge { background: #4a90c2; }
.p-probono-job[data-accent="deepblue"] .p-probono-job__badge { background: #2452a4; }
.p-probono-job[data-accent="green"]  .p-probono-job__badge { background: #6ba66b; }
.p-probono-job[data-accent="purple"] .p-probono-job__badge { background: #8a6bbd; }
.p-probono-job[data-accent="gray"]   .p-probono-job__badge { background: #6b6b6b; }
.p-probono-job[data-accent="yellow"] .p-probono-job__badge { background: #c2a44a; }
.p-probono-job[data-accent="pink"]   .p-probono-job__badge { background: #c26b94; }
.p-probono-job[data-accent="vivid-pink"] .p-probono-job__badge { background: #b13ccf; }
.p-probono-job__sub {
	flex: 1 1 auto;
	font-size: 13px;
	color: var(--probono-text);
}
.p-probono-job__sub--closed {
	display: flex;
	flex-direction: column;
	gap: 2px;
	color: var(--probono-text-sub);
}
.p-probono-job__closed-label,
.p-probono-job__coming-soon {
	color: #d32f2f;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.4;
}
.p-probono-job__closed-label--coming-soon,
.p-probono-job__coming-soon {
	font-style: italic;
}
.p-probono-job__closed-label--paused {
	color: #d32f2f;
	font-weight: 700;
	font-style: normal;
}
.p-probono-job__urgent {
	display: inline-flex;
	align-items: center;
	margin-right: 8px;
	padding: 3px 9px;
	border-radius: 999px;
	background: #d32f2f;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
	box-shadow: 0 2px 6px rgba(211, 47, 47, 0.24);
}
.p-probono-job__arrow {
	flex-shrink: 0;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--probono-orange);
	border-bottom: 2px solid var(--probono-orange);
	transform: rotate(45deg);
	transition: transform 0.25s ease;
	margin-top: -4px;
}
.p-probono-job[open] .p-probono-job__arrow {
	transform: rotate(-135deg);
	margin-top: 4px;
}
.p-probono-job__body {
	padding: 22px 18px 26px;
	border-top: 1px solid var(--probono-orange-soft);
	background: var(--probono-orange-tint);
}
.p-probono-job__desc {
	font-size: 14px;
	line-height: 1.9;
	color: var(--probono-text);
	margin-bottom: 20px;
}
.p-probono-job__closed-note {
	margin: 0 0 16px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.7;
	color: #d32f2f;
}
.p-probono-job__grid {
	background: #fff;
	border-radius: 12px;
	padding: 20px 20px 16px;
	display: grid;
	gap: 18px;
	grid-template-columns: 1fr;
	margin-bottom: 16px;
	border: 1px solid #f2ece3;
}
.p-probono-job__block-title {
	font-size: 13px;
	font-weight: 700;
	color: var(--probono-orange-dark);
	margin-bottom: 10px;
	padding-left: 10px;
	border-left: 3px solid var(--probono-orange);
}
.p-probono-job__ul li {
	position: relative;
	padding-left: 16px;
	font-size: 13px;
	line-height: 1.9;
	color: var(--probono-text);
}
.p-probono-job__ul li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 0.85em;
	width: 6px;
	height: 6px;
	background: var(--probono-orange);
	border-radius: 50%;
	opacity: 0.6;
}
.p-probono-job__meta {
	background: #fff;
	border-radius: 12px;
	padding: 18px 20px;
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr;
	margin-bottom: 22px;
	border: 1px solid #f2ece3;
}
.p-probono-job__meta-item dt {
	font-size: 12px;
	font-weight: 700;
	color: var(--probono-orange-dark);
	margin-bottom: 4px;
}
.p-probono-job__meta-item dd {
	font-size: 13px;
	line-height: 1.8;
	color: var(--probono-text);
	margin: 0;
}
.p-probono-job__cta {
	display: flex;
	justify-content: center;
}
.p-probono-job__cta .c-btn03 {
	width: 280px;
	max-width: 100%;
}
@media screen and (min-width: 768px) {
	.p-probono-jobs {
		padding: 120px 20px;
	}
	.p-probono-jobs__lead {
		font-size: 15px;
		margin-bottom: 44px;
	}
	.p-probono-job__head {
		padding: 22px 28px;
		gap: 18px;
	}
	.p-probono-job__badge {
		font-size: 14px;
		padding: 6px 16px;
		min-width: 180px;
		text-align: center;
	}
	.p-probono-job__sub {
		font-size: 14px;
	}
	.p-probono-job__body {
		padding: 28px 28px 32px;
	}
	.p-probono-job__grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
		padding: 24px 28px 20px;
	}
	.p-probono-job__meta {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
		padding: 22px 28px;
	}
}

/* =============================================================
 * Environment
 * ============================================================= */
.p-probono-env {
	padding: 80px 20px;
	background: var(--probono-bg-alt);
}
.p-probono-env__card {
	max-width: 720px;
	margin: 30px auto 0;
	background: #fff;
	border-radius: 16px;
	padding: 36px 24px;
	text-align: center;
	border: 1px solid var(--probono-border);
}
.p-probono-env__icons {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin: 0 0 22px;
}
.p-probono-env__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: var(--probono-orange-tint);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	line-height: 1;
}
.p-probono-env__lead {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.7;
	margin-bottom: 14px;
}
.p-probono-env__lead strong {
	color: var(--probono-orange-dark);
}
.p-probono-env__text {
	font-size: 14px;
	line-height: 1.9;
	color: var(--probono-text-sub);
	margin-bottom: 14px;
}
.p-probono-env__note {
	font-size: 12px;
	color: #888;
	line-height: 1.8;
}
@media screen and (min-width: 768px) {
	.p-probono-env {
		padding: 120px 20px;
	}
	.p-probono-env__card {
		padding: 48px 40px;
	}
	.p-probono-env__icons {
		gap: 24px;
		margin-bottom: 28px;
	}
	.p-probono-env__icon {
		width: 76px;
		height: 76px;
		font-size: 34px;
	}
	.p-probono-env__lead {
		font-size: 18px;
	}
	.p-probono-env__text {
		font-size: 15px;
	}
	.p-probono-env__note {
		font-size: 13px;
	}
}

/* =============================================================
 * Flow
 * ============================================================= */
.p-probono-flow {
	padding: 80px 20px;
	background:
		linear-gradient(180deg, #fff8ef 0%, #fff2df 100%);
}
.p-probono-flow__list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 560px;
	margin: 40px auto 0;
	position: relative;
	counter-reset: probono-flow;
}
.p-probono-flow__item {
	text-align: center;
	padding: 92px 25px 28px;
	border: 1px solid #ffdcb4;
	border-radius: 10px;
	background:
		linear-gradient(180deg, #fff 0%, #fffaf4 100%);
	position: relative;
	box-shadow: 0 8px 22px rgba(210, 123, 20, 0.10);
	overflow: hidden;
}
.p-probono-flow__item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--probono-orange), #f4d21a);
}
.p-probono-flow__item:not(:last-child)::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 30px;
	background: #ffc783;
	top: 100%;
	left: calc(50% - 5px);
}
.p-probono-flow__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--probono-orange), #e67a00);
	color: #fff;
	font-weight: 700;
	font-size: 26px;
	position: absolute;
	top: 30px;
	left: calc(50% - 30px);
	font-family: 'Helvetica Neue', Arial, sans-serif;
	box-shadow: 0 6px 14px rgba(230, 122, 0, 0.24);
}
.p-probono-flow__item-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--probono-orange-dark);
}
.p-probono-flow__item-text {
	font-size: 13px;
	line-height: 1.8;
	color: var(--probono-text-sub);
}
@media screen and (min-width: 768px) {
	.p-probono-flow {
		padding: 120px 20px;
	}
	.p-probono-flow__list {
		margin-top: 48px;
	}
	.p-probono-flow__item {
		padding: 100px 34px 32px;
	}
	.p-probono-flow__item-title {
		font-size: 20px;
	}
	.p-probono-flow__item-text {
		font-size: 14px;
	}
}

/* =============================================================
 * FAQ
 * ============================================================= */
.p-probono-faq {
	padding: 80px 20px;
	background: var(--probono-bg-alt);
}
.p-probono-faq__list {
	max-width: 780px;
	margin: 40px auto 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.p-probono-faq__item {
	background: #fff;
	border: 1px solid var(--probono-border);
	border-radius: 12px;
	overflow: hidden;
}
.p-probono-faq__q {
	position: relative;
	padding: 18px 48px 18px 54px;
	font-size: 14px;
	font-weight: 700;
	color: #222;
	line-height: 1.6;
}
.p-probono-faq__q::before {
	content: "Q";
	position: absolute;
	left: 20px;
	top: 18px;
	width: 24px;
	height: 24px;
	background: var(--probono-orange);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
}
.p-probono-faq__a {
	position: relative;
	padding: 0 22px 18px 54px;
	font-size: 13px;
	line-height: 1.9;
	color: var(--probono-text-sub);
	margin: 0;
	border-top: 1px dashed var(--probono-border);
	padding-top: 16px;
}
.p-probono-faq__a::before {
	content: "A";
	position: absolute;
	left: 20px;
	top: 16px;
	width: 24px;
	height: 24px;
	background: #fff;
	color: var(--probono-orange-dark);
	border: 1px solid var(--probono-orange);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	font-size: 12px;
}
@media screen and (min-width: 768px) {
	.p-probono-faq {
		padding: 120px 20px;
	}
	.p-probono-faq__q {
		font-size: 15px;
		padding: 22px 60px 22px 60px;
	}
	.p-probono-faq__q::before {
		top: 22px;
	}
	.p-probono-faq__a {
		font-size: 14px;
		padding: 18px 30px 22px 60px;
	}
}

/* =============================================================
 * Entry form
 * ============================================================= */
.p-probono-entry {
	padding: 80px 20px 100px;
	background: #fff;
}
.p-probono-entry__lead {
	text-align: center;
	font-size: 14px;
	line-height: 1.9;
	color: var(--probono-text);
	margin: 20px 0 36px;
}
.p-probono-entry__note {
	font-size: 13px;
	color: #555;
	line-height: 1.7;
	margin: 0 0 10px;
}
.p-probono-entry__message,
.p-probono-entry__login {
	max-width: 720px;
	margin: 0 auto;
	padding: 28px 22px;
	text-align: center;
	background: var(--probono-bg-alt);
	border: 1px solid var(--probono-border);
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.8;
}
.p-probono-entry__login p {
	margin-bottom: 18px;
}
.p-probono-entry__login .c-btn03 {
	width: 240px;
	max-width: 100%;
	margin: 0 auto;
}
.p-probono-entry__empty {
	font-size: 14px;
	color: var(--probono-text-sub);
}
.p-probono-entry__caution {
	max-width: 720px;
	margin: 0 auto 24px;
}
.p-probono-entry__caution-box {
	margin: 0;
	padding: 22px;
	background: #fff8ef;
	border: 1px solid #ffdcb4;
	border-radius: 10px;
}
.p-probono-entry__caution-title {
	margin-bottom: 14px;
	font-size: 15px;
	font-weight: 700;
	color: var(--probono-orange-dark);
}
.p-probono-entry__caution-content {
	margin: 0;
}
.p-probono-entry__id-toggle {
	margin: 12px 0 14px;
}
.p-probono-entry__form {
	max-width: 720px;
	margin: 0 auto;
	background: var(--probono-bg-alt);
	padding: 28px 22px;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.p-probono-entry__label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #222;
	margin-bottom: 10px;
}
.p-probono-entry__required {
	display: inline-block;
	margin-left: 6px;
	padding: 2px 8px;
	font-size: 10px;
	color: #fff;
	background: #d94848;
	border-radius: 3px;
	vertical-align: 1px;
	font-weight: 700;
}
.p-probono-entry__input,
.p-probono-entry__select,
.p-probono-entry__textarea {
	width: 100%;
	padding: 14px 16px;
	font-size: 14px;
	border: 1px solid var(--probono-border);
	border-radius: 8px;
	background: #fff;
	box-sizing: border-box;
	font-family: inherit;
	color: var(--probono-text);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.p-probono-entry__file {
	display: block;
	width: 100%;
	font-size: 14px;
	color: var(--probono-text);
}
.p-probono-entry__file::file-selector-button {
	margin-right: 14px;
	padding: 10px 16px;
	border: 0;
	border-radius: 6px;
	background: var(--probono-orange);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}
.p-probono-entry__file::-webkit-file-upload-button {
	margin-right: 14px;
	padding: 10px 16px;
	border: 0;
	border-radius: 6px;
	background: var(--probono-orange);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}
.p-probono-entry__input[readonly] {
	background: #f5f5f5;
	color: #555;
}
.p-probono-entry__input:focus,
.p-probono-entry__textarea:focus {
	outline: none;
	border-color: var(--probono-orange);
	box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.12);
}
.p-probono-entry__textarea {
	min-height: 160px;
	resize: vertical;
}
.p-probono-entry__checks {
	display: grid;
	gap: 8px;
	grid-template-columns: 1fr;
}
.p-probono-entry__checks--single {
	grid-template-columns: 1fr !important;
}
.p-probono-entry__experience-detail {
	margin-top: 14px;
}
.p-probono-entry__other-detail {
	margin-top: 14px;
}
.p-probono-entry__check label {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	background: #fff;
	border: 1px solid var(--probono-border);
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.6;
	transition: background 0.15s ease, border-color 0.15s ease;
}
.p-probono-entry__check label:hover {
	background: var(--probono-orange-tint);
	border-color: var(--probono-orange-soft);
}
.p-probono-entry__check input {
	width: 16px;
	height: 16px;
	accent-color: var(--probono-orange);
	flex-shrink: 0;
}
.p-probono-entry__check input:disabled {
	accent-color: #bdbdbd;
}
.p-probono-entry__check input:disabled ~ span {
	color: #777;
}
.p-probono-entry__coming-soon {
	margin-left: auto;
	font-size: 12px;
	font-weight: 700;
	color: #d32f2f !important;
	white-space: nowrap;
}
.p-probono-entry__submit {
	display: flex;
	justify-content: center;
	margin-top: 8px;
}
.p-probono-entry__submit .c-btn03 {
	width: 280px;
	max-width: 100%;
}
.p-probono-entry__submit .c-btn03 .c-btn03-body::after {
	display: none;
	content: none;
}
@media screen and (min-width: 768px) {
	.p-probono-entry {
		padding: 120px 20px 140px;
	}
	.p-probono-entry__form {
		padding: 44px 40px;
		gap: 26px;
	}
	.p-probono-entry__checks {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	.p-probono-entry__label {
		font-size: 15px;
	}
}

@media screen and (max-width: 767px) {
	.p-probono > section:not(.p-probono-mv) {
		padding-left: 12.5px;
		padding-right: 12.5px;
	}
	.p-probono-job__head {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 18px;
		gap: 12px 12px;
		align-items: center;
		padding: 18px 14px;
	}
	.p-probono-job__badge {
		width: fit-content;
		max-width: 100%;
		white-space: normal;
	}
	.p-probono-job__sub {
		grid-column: 1 / 2;
		line-height: 1.7;
		min-width: 0;
	}
	.p-probono-job__sub > span:last-child {
		display: block;
	}
	.p-probono-job__arrow {
		grid-column: 2 / 3;
		grid-row: 1 / span 2;
		justify-self: center;
	}
}
