<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

			@media screen and (max-width: 639px) {
				
			.for_map a {
				margin: 29px 20px 0px 145px; /*右寄せ、縦中央は苦労した。marginと下のtopがの兼ね合いなど難しい*/
				width: 122px;
				height: 27px;
				position: absolute; /*縦方向位置決めるため必要。親にはposition: relative;必要。https://so-zou.jp/web-app/tech/css/sample/image-position.htm*/
				top: 0;
				/*position: absolute;*/
				background: url("../images2/buttons/menu_buttons/map/mobile_map_all.png") no-repeat;
				display: block;
				/*text-indent: -9999px;*/
				}
			}
			
			@media screen and (min-width: 640px) {
				
			.for_map a {
				margin: 0px 0px 0px 0px;
				width: 152px;
				height: 34px;
				background: url("../images2/buttons/menu_buttons/map/map_all.png") no-repeat;
				display: block;
				text-indent: -9999px;
				}
			}</pre></body></html>