@charset "UTF-8";

/* ポップアップバナー用スタイル */
.popup_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 999999;
	display: flex;
	justify-content: center;
	align-items: center;
}

.popup_content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
}

.popup_image {
	max-width: 100%;
	height: auto;
	display: block;
}

.popup_link {
	display: block;
	text-decoration: none;
}

.popup_close {
	position: absolute;
	bottom: -35px;
	left: -10px;
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.3);
	font-size: 20px;
	cursor: pointer;
	padding: 5px 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: color 0.3s ease;
}

.popup_close:hover {
	color: rgba(255, 255, 255, 0.5);
}

.popup_close:focus {
	outline: 1px solid rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
	.popup_content {
		max-width: 95%;
	}
	
	.popup_close {
		font-size: 16px;
	}
}