/* PC */
.header{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 80px;
	background: rgba(255,255,255,0.5);
	padding-top: 20px;
}

.header_inner {
  	position: relative;
	padding-right: 50px;
	padding-top: 20px;
	margin-left: auto;
	margin-right: auto;
}

.logo{
	position: absolute;
	top: 0;
	left: 0;
	padding-left: 5%;
	padding-top: 20px;
	font-size: 1.2rem;
 	font-weight: 400;
	line-height: 1rem;
}

.logo a {
	color: #000;
	text-decoration: none;
}

.nav_list{
	text-align: right;
}

.nav_list li{
	display: inline-block;
	text-align: right;
	padding-left: 20px;
}

.nav_list li a{
	color: black;
	font-size: 0.8rem;
	font-weight: 400;
}

.nav_list li a:hover {
	opacity: 0.8;
}

#breadcrumbs {
	padding-left: 5%;
	padding-bottom: 10px;
	color: black;
	font-size: 0.8rem;
	font-weight: 400;
}

#breadcrumbs a {
	color: #000;
}

#breadcrumbs a:hover {
	opacity: 0.8;
}

/* header固定のため余白をつける。メニューのCSSには関係ない */
/*
.main{  
  margin-top: 60px;
}
*/

.hamburger-menu {
	display: none;
}

/* Mobile */
@media only screen and (max-width: 766px) {
  	/* ハンバーガーメニュー */
	.nav {
		display: none;
	}
	.hamburger-menu {
		display: block;
	}
	.hamburger-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%; /* leftの値を変更してメニューを画面外へ */
		z-index: 80;
		background-color: #EFEFEF;
		transition: all 0.5s;/* アニメーション設定 */
	}
	.hamburger-content ul {
		padding: 70px 10px 0;
	}
	.hamburger-content ul li {
		border-bottom: solid 1px #000;
		list-style: none;
	}
	.hamburger-content ul li a {
		display: block;
		width: 100%;
		font-size: 15px;
		box-sizing: border-box;
		color:#000;
		text-decoration: none;
		padding: 9px 15px 10px 0;
		position: relative;
	}
	.hamburger-content ul li a::before {
		content: "";
		width: 7px;
		height: 7px;
		border-top: solid 2px #000;
		border-right: solid 2px #000;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 16px;
	}

	.hamburger-btn {
		position: fixed;
		top: 10px;
		right: 10px;
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
		background-color: #EFEFEF;
	}
	.hamburger-btn span,
	.hamburger-btn span:before,
	.hamburger-btn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background-color: #000;
		position: absolute;
	}
	.hamburger-btn span:before {
		bottom: 8px;
	}
	.hamburger-btn span:after {
		top: 8px;
	}

	#hamburger-btn-check:checked ~ .hamburger-btn span {
		background-color: rgba(255, 255, 255, 0);/* メニューオープン時は真ん中の線を透明にする */
	}
	#hamburger-btn-check:checked ~ .hamburger-btn span::before {
		bottom: 0;
		transform: rotate(45deg);
	}
	#hamburger-btn-check:checked ~ .hamburger-btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}

	#hamburger-btn-check:checked ~ .hamburger-content {
		left: 0;/* メニューを画面内へ */
	}

	#hamburger-btn-check {
		display: none;
	}
}