/* ボディ */
body
{
	margin: 0 ;	/* スペース */
	padding: 0 ;	/* 余白 */
	font-size: 15px ;	/* 文字サイズ */
	line-height: 1.618 ;	/* 行の高さ */
}

/* スマホだけに適用するCSS */
@media screen and ( max-width:479px )
{
	/* ボディ */
	body
	{
		font-size: 13px ;	/* 文字サイズ */
	}
}

a{
	text-decoration: none;		
}


a:link{
	text-decoration:none;
	color: #333333;
}

a:visited{
	text-decoration:none;
	color: #333333;
}

a:hover{
	color: #000000;
	text-decoration:none;
}

h1{
	font-size: 16px;
	margin: 0px;
	padding-left: 0px;
}


img {
max-width : 100% ;
height : auto ;
}

/*-- PC版表示CSS  --*/
.pc_area{
  display:block;
}
.phone_area{
  display:none;
}

/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 768px){
  .pc_area{
    display:none;
  }
  .phone_area{
    display:block;
  }
}


.nav-list {
  display: table;
  padding: 0;
  list-style: none;
  text-align: center;
  background-color: #ffff00;
  color: #ffffff;
  font-size: 80px;
  opacity: 0.8;
  margin-bottom: 0px;
}
.nav-item {
  display: table-cell;
  padding: 4px 0px;
}

.nav-list {
  table-layout: fixed;
  width: 100%;
}

.nav-list {
  border-collapse: collapse;
}
.nav-item {
  border: solid 1px gray;
}

.global-nav {
  position: fixed;
  left: 0;
  bottom: 0;
}

.footer {
  margin-bottom: 190px;
}