@charset "utf-8";

:root {

}

@media screen and (max-width:480px) {
	:root {

		/* マップ */
		--Iframe_aspect-ratio: 4 / 3;

	}
}

@media screen and (min-width:481px) and (max-width: 768px) {
	:root {

		/* マップ */
		--Iframe_aspect-ratio: 4 / 3;

	}
}

@media screen and (min-width:769px) and ( max-width:1024px) {
	:root {

		/* マップ */
		--Iframe_aspect-ratio: 4 / 3;

	}
}

@media screen and (min-width:1025px) and ( max-width:1440px) {
	:root {

		/* マップ */
		--Iframe_aspect-ratio: 16 / 4.5;

	}
}

@media screen and (min-width:1440px) {
	:root {
		
		/* マップ */
		--Iframe_aspect-ratio: 16 / 4.5;

	}
}








/* マップ */

iframe.access {
	margin: var(--Width_M);
	padding: 0;

	border-radius: var(--Border-radius_S);
	aspect-ratio: var(--Iframe_aspect-ratio);
	filter: saturate(10%);
}

iframe.access:hover {
	filter: saturate(100%);
}







