@charset "UTF-8";
header{
	position: absolute;
	}

#anchor{
	width: 1200px;
	haight: 60px;
	margin: 40px auto 0;
	padding: 10px 0;
	background: var(--colwhite);
	border-radius: 10px;
	box-shadow: 0px 0px 15px -5px #000000;
	}

#anchor ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
	list-style-type: none;
	}
#anchor li {
	width: calc(100% / 5);
	padding: 0 10px;
	border-right: 1px solid #dddddd;
	}

#anchor li:last-of-type{
	border-right: none;
	}

#anchor ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 100%;
	height: 40px;
	font-size: 1.125em;
	line-height: 1.3;
	font-weight: bold;
	color: var(--colred);
	margin: 0 auto;
	}
#anchor ul li a:hover{
	color: var(--colwhite);
	background: #dd5a60;
	text-decoration: none;
	border-radius: 5px
	}

#anchor ul li a.sp{
	display: none;
	}

.fixed{
	position: fixed;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
  }

/* Media Queries
==========================================================================*/
@media screen and (max-width:1200px) {
#anchor{
	width: calc(100% - 80px);
	}
}

@media screen and (max-width:767px) {
.inner.md80{
	margin-top: 20px;
	margin-bottom: 40px;
	}
#anchor{
	margin: 0 auto;
	padding: 5px 0;
	width: calc(100% - 20px);
	}
#anchor li {
	padding: 0 5px;
	}
#anchor ul li a{
	font-size: 0.875em;
	}
#anchor ul li a.sp{
	display: flex;
	}
#anchor ul li a.pc{
	display: none;
	}
.fixed{
	top: 10px;
  }
}
