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

/*
==================================================

   URL input
   共通 スタイル

==================================================
*/



/*
==================================================
  基本設定
==================================================
*/

/* ----- 背景・テキスト ----- */
body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
padding: 0;
background-color: #ffffff;
color: #2a2a2a;
font-size: 100%;
font-family: sans-serif;
overflow-wrap: break-word;
word-wrap: break-word;
}

/* ----- リンクテキスト ----- */
a:link { color: #3366ff; }
a:visited { color: #336699; }
a:hover { color: #cc0000; }
a:active { color: #cc0000; }

/* ----- 行の高さ ----- */
* {
line-height: 100%;
}

/* ----- 画像の伸縮 ----- */
img {
width: inherit;
max-width: 100%;
height: auto;
width /***/:auto;
}



/*
==================================================
  フッタ
==================================================
*/

#footer {
width: 100%;
max-width: 700px;
margin: 0 auto;
padding: 20px 0;
text-align: center;
}

#footer div.site {
margin: 0 0 20px;
}

#footer ul {
display: flex;
justify-content: center;
column-gap: 15px;
margin: 0 auto 20px;
padding: 0;
list-style-type: none;
font-size: 13px;
}

#footer div.copy small {
font-size: 13px;
}


</pre></body></html>