/* ポップアップ全体のスタイル */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.25s ease-in-out;
}

/* ポップアップウィンドウ */
.popup-content {
	position: relative;
	padding: 0 0 2rem;
	background: #ddff4d;
	border-radius: 10px;
	max-width: 750px;
	transform: scale(0.8);
	transition: transform 0.25s ease-in-out;
	border-radius: 10px;
}

.popup-image img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.popup-btn {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.popup-btn-item {
	width: 25%;
	margin: 0 .5rem 0;
}

.b_p {
	border-radius: 10px;
	border: #e61f19 solid 2px;
}

.b_z {
	border-radius: 10px;
	border: #60c0bd solid 2px;
}

.popup-text {
	width: 100%;
	padding: 1.5rem 0 0;
	text-align: center;
	color: #000;
	font-size: 24px;
	font-weight: 900;
}

.popup-text span {
	padding: 2em 0 0;
	font-size: 70%;
	font-weight: 400;
}

.popup-close {
	position: absolute;
	top: -60px;
	right: -10px;
	width: 60px;
	height: 60px;
	cursor: pointer;
}

@media screen and (min-width: 1px) and (max-width: 767px) {

.popup-content {
	padding: 0 0 1.2rem;
	border-radius: 10px;
	max-width: 90%;
}

.popup-btn-item {
	width: 42%;
	margin: .5rem .5rem 0;
}

.b_p {
	border-radius: 5px;
	border: #e61f19 solid 1px;
}

.b_z {
	border-radius: 5px;
	border: #60c0bd solid 1px;
}

.popup-text {
	padding: 1em 0 0;
	font-size: 4vw;
}

.popup-text span {
	padding: 1.5em 0 0;
	font-size: 70%;
}

.popup-close {
	position: absolute;
	top: -52px;
	right: -5px;
	width: 50px;
	height: 50px;
	cursor: pointer;
}

}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.popup-content {
		padding: .5rem;
		border-radius: 10px;
		max-width: 80%;
	}
	
}