/* sp */
@media screen and (max-width:640px) {
	.popup {
		display: none;
		position: fixed;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 90%;
		z-index: 1100;
	}
	.popup__link {
		display: block;
	}
	.popup__bnr {
		display: block;
	}
	.popup__bnr img {
		max-width: 100%;
		height: auto;
	}
	.popup__close {
		display: inline-block;
		position: absolute;
		top: 0;
		right: 0;
		transform: translate(0, -100%);
		width: fit-content;
		padding: 10px;
		background: #eee;
		cursor: pointer;
	}
	.overlay {
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 1000;
		background: rgba(0, 0, 0, 0.2);
	}
	.contactSPfloating {
		z-index: 1200;
	}
}

/* pc */
@media screen and (min-width:641px) {
	.popup {
		display: none;
		position: fixed;
		left: 50%;
		top: 45%;
		transform: translate(-45%, -50%);
		width: 400px;
		z-index: 1100;
	}
	.popup__link {
		display: block;
	}
	.popup__bnr {
		display: block;
	}
	.popup__bnr img {
		max-width: 100%;
		height: auto;
	}
	.popup__close {
		display: inline-block;
		position: absolute;
		top: 0;
		right: 0;
		transform: translate(0, -100%);
		width: fit-content;
		padding: 10px;
		background: #eee;
		cursor: pointer;
	}
	.overlay {
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 1000;
		background: rgba(0, 0, 0, 0.2);
	}
	.contactPCfloating {
		z-index: 1200;
	}
}
