<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 ===============*/
#header{
  height: 60px;/*高さ指定*/
  width:100%;/*横幅指定*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background:#4682b4;
  color:#fff;
  text-align: center;
  padding: 10px;
}

/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed{
  position: fixed;/*fixedを設定して固定*/
    z-index: 999;/*最前面へ*/
    top:0;/*位置指定*/
    left:0;/*位置指定*/
}

#header h1{
  font-size:1.2rem;
}
/*========= レイアウトのためのCSS ===============*/

small{
  background:#333;
  color:#fff;
  display: block;
  text-align: center;
  padding:20px;
}

.pink{
color:#ff2476;
}

nav ul{
	font-family: 'IM Fell DW Pica SC', serif;
	font-size: 1.2em;
	letter-spacing: 0.1em;
	list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li a{
  display: block;
  text-decoration: none;
  color: #e6dfcf;
  padding:10px;
  transition:all 0.3s;
}

nav ul li.current a,
nav ul li a:hover{
/*  color:#fff; */
transform:translate(0px,5px);
}

@media screen and (max-width: 550px){
nav ul{
	font-size: 1.0em;
	letter-spacing: 0em;
}
}



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