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

*{
	margin:0px;
	padding:0px;
}


body{
    margin:0;/*外側への余白*/
    padding:0;/*内側への余白*/
    font-size:12px;/*文字の大きさ*/
	text-align:center;
	background-color:#FEF7EF;
	
	



	
}

#wrapper{
    width:980px;/*横幅*/
    margin:0 auto;/*全体を中央配置*/
}

header{
	width:980px;
	height:300px;
	margin:-5px auto 0px;
	/*overflow:hidden;*/
}

header h1{
	font-size:18px;
	font-weight:bold;
	font-style:italic;
	float:left;
	margin-top:5px;
}

h2{
	margin:50px auto 15px;
}

#section{
	margin-top:10px;
	margin-left:35px;
	text-align:center;
	width:800px;
	height:100px;
	display:block;
}
#section h3{
	letter-spacing:0.2em;
	text-align:left;
}
	
	
span{/*spanは特に意味を持たないタグです。装飾用などに使用します*/
    font-size:10px;/*文字の大きさ*/
    color:#F00;/*文字の色*/

}

table{
    border-collapse:collapse;/*テーブルのうち枠線を重ねて表示*/
    width:100%;/*横幅*/
	margin:20px auto;
}

th{/*thは見出しセルです。*/
    border:solid 1px #999;/*ボーダーを上下左右に実線で,1px,で#999で*/
    background:#EEE;
    width:190px;/*横幅*/
    padding:5px;/*内側への余白上下左右5px*/
    text-align:left;/*文字を左寄せ*/
}

td{
    border:solid 1px #999;/*ボーダーを上下左右に実線で,1px,で#999で*/
    width:388px;/*横幅*/
    padding:5px;/*内側への余白上下左右5px*/
}

textarea{
    width:300px;/*横幅*/
    height:150px;/*高さ*/
}

.button{
    text-align:center;/*文字を中央寄せ*/
    padding:10px 0;/*内側への余白上下10px*/
}	

p{
	text-align:center;
	font-size:18px;
}

h4 a{
	display:block;
	width:120px;
	height:30px;
	font-size:12px;
	font-weight:bold;
	line-height:34px;
	text-align:center;
	margin-top:5px;
	margin-left:auto;
	margin-right:auto;
	background-color:#fff;
	color:#000000;
	box-shadow:3px 2px 4px #333;
	-moz-border-radius:10px 10px 10px 10px;
	-webkit-border-radius:10px 10px 10px 10px;
	border-radius:15px 15px 15px 15px;
	/*border:2px solid #F93;*/
	border:2px solid #0FF;
}

/**フッター**/
footer{
	width:980px;
	height:20px;
	clear:both;
	/*background:#F93;*/
	padding:10px;
	margin-top:25px;
	margin-bottom:15px;
	margin-left:auto;
	margin-right:auto;
	overflow:hidden;
	display:block;
	
	/*クリスマスバージョン*/
	display: inline-block;
font-size: 14px;
font-weight: bold;
color: #111;
text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.4), 0 1px 1px rgba(255, 255, 255, 0.5);
letter-spacing: 0;
border: none;
box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.4);
border-radius: 6px;
text-decoration: none;
padding: 15px 40px;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0.92, #23becc), color-stop(0.47, #fff), color-stop(0.08, #40ebff));
background: -webkit-linear-gradient(top, #40ebff 8%, #fff 47%, #23becc 92%);
background: -moz-linear-gradient(top, #40ebff 8%, #fff 47%, #23becc 92%);
background: -o-linear-gradient(top, #40ebff 8%, #fff 47%, #23becc 92%);
background: -ms-linear-gradient(top, #40ebff 8%, #fff 47%, #23becc 92%);
background: linear-gradient(to bottom, #40ebff 8%, #fff 47%, #23becc 92%);


	/*クリスマスバージョン*/
}</pre></body></html>