@charset "utf-8";

.programBox {
	margin-bottom: 8rem;
}

.programBox:last-child {
	margin-bottom: 0;
}

.programBox .tit {
	font-size: 2.4rem;
	font-weight: bold;
	color: #222222;
	line-height: 1.6;
}

.programBox .tit + .desc {
	margin-top: 2rem;
}

.programBox .tit + .tit {
	margin-top: 0.5rem;
}

.programBox .desc {
	line-height: 2;
	margin-bottom: 4rem;
}

.programBox .discussion {
	display: flex;
	gap: 4rem;
	padding-top: 4rem;
	border-top: 1px dashed #04d1ac;
}

.programBox .discussion .txt {
	flex: 1;
	line-height: 2;
}

.programBox .discussion .personCard {
	flex-shrink: 0;
	width: 52%;
}

@media screen and (max-width: 1024px) {
    .programBox .tit {
    	font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
	.programBox {
		margin-bottom: 5rem;
	}

	.programBox .tit {
		font-size: min(4.8vw, 1.8rem);
	}

	.programBox .desc {
		margin-bottom: 3rem;
	}

	.programBox .discussion {
		flex-direction: column;
		padding-top: 3rem;
	}

	.programBox .discussion .personCard {
		width: 100%;
	}
}
