@charset "UTF-8";



/* common */
#wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}
* {
	font-family: 'Noto Sans JP', sans-serif;
}
.hvr:hover {
	opacity: 0.9;
}
#contents {
	width: 100%;
	position: relative;
}



/* ヘッダーPC */
@media screen and (min-width: 1200px) {
	header {
		width: 100%;
		height: 80px;
		background: rgba(255,255,255,0.8);
		box-sizing: border-box;
		padding: 0 30px 0 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99;
	}
	header h2 {
		width: 220px;
		line-height: 0;
	}

	#spMenu,#panel_menu {
		display: none !important;
	}
	#pc_menu ul {
		display: flex;
	}
	#pc_menu ul li {
		font-size: 100%;
		line-height: 1;
		margin: 0 20px 0 0;
		padding: 0 20px 0 0;
		border-right: 1px #000000 solid;
	}
	#pc_menu ul li:last-child {
		margin: 0 !important;
		padding: 0 !important;
		border-right: none !important;
	}
	#pc_menu ul li a {
		color: #000000;
	}
	#pc_menu ul li a br {
		display: none;
	}
	#pc_menu ul li a:hover {
		text-decoration: underline;
	}
	#nav_sp {
		display: none;
	}
}



/* ヘッダータブレット */
@media screen and (max-width: 1199px) and (min-width: 768px) {
	header {
		width: 100%;
		height: 80px;
		background: rgba(255,255,255,0.8);
		box-sizing: border-box;
		padding: 0 30px 0 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99;
	}
	header h2 {
		width: 180px;
		line-height: 0;
	}
	header h2 img {
		width: 100%;
		height: auto;
	}

	#pc_menu {
		display: none !important;
	}
	#panel_menu {
		width: 80%;
		height: 100vh;
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 15;
		overflow: hidden;
		background: rgba(255,255,255,0.95);
		box-sizing: border-box;
		padding: 100px 0 0 40px;
	}
	#panel_menu ul li {
		font-size: 100%;
		line-height: 1.4;
		margin: 0 0 30px;
	}
	#panel_menu ul li a br {
		display: none;
	}
	#panel_menu ul li a {
		color: #000000;
	}
	#panel_menu ul li a:hover {
		text-decoration: underline;
	}
}



/* ヘッダースマホ */
@media screen and (max-width: 767px) {
	header {
		width: 100%;
		height: 50px;
		background: rgba(255,255,255,0.8);
		display: flex;
		justify-content: space-between;
		align-items: center;
		box-sizing: border-box;
		padding: 0 3%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10;
	}
	header h2 {
		width: 140px;
		line-height: 0;
	}
	header h2 img {
		width: 100%;
		height: auto;
	}

	#pc_menu {
		display: none !important;
	}
	#panel_menu {
		width: 80%;
		height: 100vh;
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 15;
		overflow: hidden;
		background: rgba(255,255,255,0.95);
		box-sizing: border-box;
		padding: 60px 0 0 20px;
	}
	#panel_menu ul li {
		font-size: 100%;
		line-height: 1.6;
		margin: 0 0 30px;
	}
	#panel_menu ul li a {
		color: #000000;
	}
	#panel_menu ul li a:hover {
		text-decoration: underline;
	}
}



/* ハンバーガーボタン */
@media screen and (max-width: 1199px) {
	#spMenu {
		display: block;
		width: 30px;
		height: 30px;
	}
	#panel-btn{
		display: inline-block;
		position: relative;
		width: 30px;
		height: 30px;
		z-index: 20;
		cursor: pointer;
	}
	#panel-btn-icon{
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 30px;
		height: 3px;
		margin: -1px 0 0 -15px;
		background: #000;
		transition: .2s;
	}
	#panel-btn-icon:before,#panel-btn-icon:after{
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 30px;
		height: 3px;
		background: #000;
		transition: .3s;
	}
	#panel-btn-icon:before{
		margin-top: -11px;
	}
	#panel-btn-icon:after{
		margin-top: 8px;
	}
	#panel-btn .close{
		background: transparent;
	}
	#panel-btn .close:before, #panel-btn .close:after{
		margin-top: 0;
	}
	#panel-btn .close:before{
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	#panel-btn .close:after{
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
}


