/* インデックスメニュー・PC用 */

BODY{
  line-height : 1.3;/* 子要素への引き継ぎ回避のために単位を指定しない */
  background-color : #000000;
  color :#ff80c0;
}
/* 全体のボックス */
.top{
  margin : auto;
  text-align:left;
  max-width:950px;
}

li{
  display : inline;
  font-size : 0.8rem;
  padding-right : 10px;
}
/* PC画面でのみ表示する要素 */
.pc {
	display:inline !important;
}
.sp {
	display:none! important;
}

/* スマホ画面でのみ表示する要素 */
@media screen and (max-width: 600px) {
.pc {
	display:none !important;
}
.sp {
	display:inline !important;
}
}
A{
  color : #ff80c0;
  text-decoration : none;
  font-weight : bold;
}
A:LINK{
  color : #ff80c0;
  text-decoration : none;
  font-weight : bold;
}
A:VISITED{
  color : #ff80c0;
  font-weight : bold;
  text-decoration : none;
}
A:HOVER{
  color : #ffffff;
  font-weight : bold;
  background-color : #ff0080;
}
