@charset "utf-8";

.agendaBox {
	margin-bottom: 6rem;
}

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

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

.agendaBox .desc {
	line-height: 1.8;
	margin-top: 1.5rem;
	margin-bottom: 3rem;
}

.cardGrid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.cardGrid .personCard {
	width: calc(50% - 1rem);
	align-items: flex-start;
}

.personCard .info {
	flex: 1;
}

.personCard .btnProfile {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 1.2rem;
	padding: 0.9rem 2rem;
	border-radius: 50px;
	background: #04d1ac;
	color: #ffffff;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	transition: all 0.2s;
}

.personCard .btnProfile .arrow {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 6px;
	border-color: transparent transparent transparent #ffffff;
}

@media screen and (min-width: 769px) {
	.personCard .btnProfile:hover {
		background: #00856d;
	}
}

.ctaGroup {
	margin-top: 8rem;
	text-align: center;
}

.ctaGroup a {
	display: block;
	max-width: 520px;
	margin: 0 auto 2rem;
	padding: 2rem;
	border-radius: 50px;
	color: #ffffff;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ctaGroup a:last-child {
	margin-bottom: 0;
}

.ctaGroup .btnRegister {
	background: linear-gradient(to bottom, #ffb03a, #ff9100);
	box-shadow: 0 6px 0 #ef7000;
}

.ctaGroup .btnLive {
	background: #04d1ac;
	box-shadow: 0 6px 0 rgba(0, 133, 109, 0.8);
}

.ctaGroup a:active {
	transform: translateY(4px);
}

.ctaGroup .btnRegister:active {
	box-shadow: 0 2px 0 #ef7000;
}

.ctaGroup .btnLive:active {
	box-shadow: 0 2px 0 rgba(0, 133, 109, 0.8);
}

@media screen and (min-width: 769px) {
	.ctaGroup .btnRegister:hover {
		transform: translateY(-4px);
		background: linear-gradient(to bottom, #ffc766, #ffa733);
		box-shadow: 0 10px 0 #ef7000, 0 16px 24px rgba(255, 145, 0, 0.4);
	}

	.ctaGroup .btnLive:hover {
		transform: translateY(-4px);
		background: #1fe0bf;
		box-shadow: 0 10px 0 rgba(0, 133, 109, 0.8), 0 16px 24px rgba(4, 209, 172, 0.4);
	}
}

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

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

	.agendaBox .desc {
		margin-bottom: 2rem;
	}

	.cardGrid {
		gap: 1.5rem;
	}

	.cardGrid .personCard {
		width: 100%;
	}

	.ctaGroup {
		margin-top: 5rem;
	}

	.ctaGroup a {
		font-size: 1.6rem;
		padding: 1.6rem;
	}

	.ctaGroup .btnRegister {
		box-shadow: 0 4px 0 #ef7000;
	}

	.ctaGroup .btnLive {
		box-shadow: 0 4px 0 rgba(0, 133, 109, 0.8);
	}

	.personCard .btnProfile {
		width: 100%;
		padding: 0.9rem 5px;
		font-size: min(3vw, 1.4rem);
		justify-content: center;
	}
}
