<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 基本スタイル */

body {

color: #000000;
font-family:'メイリオ',Meiryo,'ＭＳ Ｐゴシック','ＭＳ ゴシック';
background-repeat:no-repeat;

/* グラデーション */

  background: -moz-linear-gradient(180deg, #d7e6e8, #FFF);
  background: -webkit-linear-gradient(180deg, #d7e6e8, #FFF);
  background: linear-gradient(0deg, #d7e6e8, #FFF);

}

html {
	min-height: 100%;
}

/* フォームのフォントの統一 */

button, input, select, textarea {
font-family : inherit;
font-size : 100%;
}


/* リンク */

.uline a:link { color: #000000; text-decoration:none;}
.uline a:visited { color: #aaaaaa; text-decoration:none;}
.uline a:active { color: #eeeeee; text-decoration:none;} /* クリックしている時 */
.uline a:hover {
	cursor: pointer;
	cursor: hand;
	color: #666666
	text-decoration:none;
	border:2px solid #666666;
	border-top:0;
	border-left:0;
	border-right:0;
	}

.bluelink a:link { color:#0000ff; }
.bluelink a:visited { color:#0000ff; }
.bluelink a:hover { color:#0000ff; }
.bluelink a:active { color:#0000ff; }


/* フェードイン */

body {
    animation: fadeIn 3.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 3.5s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}</pre></body></html>