<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*
Name: モーダルウィンドウ
Author: monokus.jp

*/
.modal-overlay {
	position:		fixed;
	left:			0;
	top:			0;
	/*right:			0;
	bottom:			0; */
	display:		block;
	width:			100%;
	height:			100%;
	
	background:		rgba(0,0,0,0.6);
	z-index:		99999998;
}

	.modal-window {
		position:		fixed;
		left:			0;
		right:			0;
		top:			0;
		margin:			0 auto;
		
		max-width:		1250px; 
		min-width:		670px; 
		width:			94%;
	/*	max-width:		350px;
		min-width:		350px; */
	/*	height:			100px; */
		border-radius:	5px;
		overflow:		hidden;
		
		background:		#fff;
		z-index:		99999999;
	}
	.modal-title {
		border-top: #fff 1px solid;
		border-bottom: #cecece 1px solid;
		background:		#f3f3f3;
		padding:		8px 16px 6px;
		border-radius:	5px 5px 0 0;
		
		font-size:		16px;
		font-weight:	normal;
		line-height:	1.3em;
		color:			#444;
	}
	.modal-contents {
		padding:		8px 16px 6px;
		
		font-size:		15px;
		font-weight:	normal;
		line-height:	1.3em;
		color:			#444;
	}
		.modal-contents form {
		}
	/*	.modal-contents label {
			float:		left;
			width:		50%;
			padding:	0 0 4px;
		} */
	.modal-footer {
		border-top: #cecece 1px solid;
		background:		#f3f3f3;
		padding:		8px 16px 6px;
		border-radius:	0 0 5px 5px;
		
		font-size:		16px;
		font-weight:	normal;
		line-height:	1.3em;
		color:			#444;
	}
	.modal-footer .btn {
		margin:		0 auto;
	}
	/*
		.modal-footer a {
			display:		block;
			padding:		6px 0 5px;
			
			border-radius:		5px;
			box-shadow:			0 2px 2px rgba(0,0,0,0.1),
								2px 0 2px rgba(0,0,0,0.1),
								2px 2px 2px rgba(0,0,0,0.1),
								-2px -2px 2px rgba(0,0,0,0.1);
background-image:-moz-linear-gradient(50% 0% -90deg,rgb(244,244,244) 0%,rgb(222,222,222) 100%); 
background-image:-webkit-gradient(linear,50% 0%,50% 100%,color-stop(0, rgb(244,244,244)),color-stop(1, rgb(222,222,222)));
background-image:-webkit-linear-gradient(-90deg,rgb(244,244,244) 0%,rgb(222,222,222) 100%);
background-image:-o-linear-gradient(-90deg,rgb(244,244,244) 0%,rgb(222,222,222) 100%);
background-image:linear-gradient(180deg,rgb(244,244,244) 0%,rgb(222,222,222) 100%);
			
			font-size:		15px;
			font-weight:	bold;
			line-height:	1.1em;
			color:			#4B719F;
			text-shadow:	0 1px 2px rgba(255,255,255,0.8);
			
			text-decoration:	none;
			text-align:		center;
			position:		relative;
		}
*/</pre></body></html>