.no-scroll {
	overflow: hidden;
}
.follow_modal_overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}
.follow_modal {
	background-color: #fff;
	padding: 50px 40px;
	border-radius: 8px;
	width: 90%;
	max-width: 400px;
	position: relative;
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.close_button {
	position: absolute;
	right: 10px;
	top: 20px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.line {
	position: absolute;
	width: 24px; 
	height: 3px;
	background-color: #666;
	display: block;
}
.line:nth-child(1) {
	transform: rotate(45deg);
}
.line:nth-child(2) {
	transform: rotate(-45deg);
}

.follow_modal .follow_modal_text{
	font-size: 16px;
	font-weight: 500;
}
.follow_modal .benefit_group{
	margin: 30px 0 30px 25px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}
.follow_modal .benefit_item{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.follow_modal .benefit_item img{
	width: 24px;
}
.follow_modal .benefit_text{
	font-size: 15px;
	font-weight: 400;
}

@media screen and (max-width: 756px) {
	.follow_modal .follow_modal_text{
		font-size: 15px;
		font-weight: 500;
	}
	.follow_modal {
		padding: 50px 30px;
	}
	.follow_modal .benefit_group{
		margin: 30px 0 30px 5%;
	}
	.follow_modal .benefit_text{
		font-size: 14px;
		font-weight: 400;
	}
}