@charset "UTF-8";
.step01-popup,
.step03-popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	width: 80%;
	max-width: 400px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.4);
	z-index: 1001;
}

.popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 1000;
}

.popup-close {
	display: block;
	margin: 15px auto 0;
	padding: 8px 16px;
	background: #007bff;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

.popup-step01,
.popup-step03 {
	cursor: pointer;
	display: inline-block;
	padding: 5px 10px;
	background: #007bff;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 20px;
	font-weight: bold;
}
.sp-notes {
	display: none;
}
.entryInner {
	position: relative;
}
.popup-step01,
.popup-step03 {
	position: absolute;
	bottom: 48%;
	z-index: 2;
	left: 19%;
	cursor: pointer;
	width: 20px;
	height: 20px;
	background: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	color: var(--color-primary);
}
.popup-step03 {
	left: 70%;
}
.step01-popup {
	display: none;
}
p.popup-step01.lowcode,
p.popup-step03.lowcode {
	color: var(--color-lowcode) !important;
}
p.popup-step01.mix,
p.popup-step03.mix {
	color: var(--color-mix) !important;
}
@media (max-width: 768px) {
	.sp-notes {
		display: block;
		padding: 0 10px 0 0;
		font-size: 10px;
		text-align: right;
		margin: -8px 0 0;
	}
	.headerArea {
		height: 145px;
	}
	.HeroImg {
		margin-top: 140px;
	}
	.entryInner {
		position: relative;
	}
	.popup-step01,
	.popup-step03 {
		position: absolute;
		top: 370px;
		z-index: 1;
		cursor: pointer;
		width: 20px;
		height: 20px;
		background: #fff;
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
		border-radius: 10px;
		color: var(--color-primary);
	}
	.popup-step01 {
		top: 365px;
		left: 70%;
	}
	.popup-step03 {
		top: 59%;
		right: 4%;
	}
}

