/* ハンバーガーメニュー */
header .humberger_menu {
}

header #header_navi_toggle,
header #header_navi_toggle span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

header #header_navi_toggle {
  box-sizing: border-box;
  position: absolute;
  padding: 0;
  width: 60%;
  height: 50px;
  top: 0.7vw;
  right: 10px;
  max-width: 3em;
  z-index: 9;
}

header #header_navi_toggle span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #ffffff;
	border-radius: 4px;
  z-index: 6;
}

header #header_navi_toggle span:nth-of-type(1) {
	top: 12px;
}

header #header_navi_toggle span:nth-of-type(2) {
	top: 28px;
}

header #header_navi_toggle span:nth-of-type(3) {
	bottom: 12px;
}

header #header_navi_toggle p {
  position: absolute;
  bottom: -10px;
  width: 100%;
  text-align: center;
  color: #424344;
  font-size: 1.3vw;
}

header #header_navi_toggle.active span:nth-of-type(1) {
	-webkit-transform: translateY(16px) rotate(-45deg);
	transform: translateY(16px) rotate(-45deg);
}

header #header_navi_toggle.active span:nth-of-type(2) {
	opacity: 0;
}

header #header_navi_toggle.active span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(45deg);
	transform: translateY(-9px) rotate(45deg);
}

header #header_navi_toggle.active img {
	opacity: 0;
}

header #header_navi_toggle.active p {
	opacity: 0;
}

#header_navi {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(230, 230, 230, 0.5);
	z-index: 5;
}

#header_navi ul {
	width: 65%;
	height: 100%;
	margin-left: auto;
	padding-top: 100px;
	background-color: #000000;
}

#header_navi ul li {
	text-align: center;
}

#header_navi ul li a {
	color: #ffffff;
	font-size: 24px;
	padding: 15px 10px;
}

/* ヘッダー */
header {
	display: none;
  position: fixed;
  z-index: 999;
  box-sizing: border-box;
	width: 100%;
}

header a {
	color: #ffffff;
}

.now_on {
	color: #d9be00!important;
}

.header_area_pc,
.header_area_sp {
  width: 100%;
	background-color: #000000;
	align-items: center;
}

.header_area_sp {
	display: none;
}

.header_logo {
	width: 10%;
}

.header_menu {
	width: 40%;
	justify-content: space-between;
	text-align: center;
}

.header_menu p {
	color: #ffffff;
}

.header_menu p a {
	padding: 1.5em;
	display: flex;
	align-items: center;
	font-size: 0.8vw;
}

.header_menu .separate {
	width: 1em;
	display: flex;
	align-items: center;
}

/* フッター */
footer {
	position: absolute;
	background-color: #000000;
	width: 100%;
	padding: 50px 0;
}

footer h1,
footer p,
footer a {
	color: #ffffff;
}

.footer_area {
	width: 70%;
	margin: auto;
	justify-content: space-between;
}

.footer_left {
	width: 30%;
	justify-content: space-between;
}

.footer_right {
	width: 65%;
	position: relative;
}

.footer_left .footer_head {
	width: 45%;
	text-align: right;
}

.footer_right .footer_head {
	width: 20%;
	text-align: center;
}

.footer_head h1 {
	color: #d9be00;
	font-size: 1vw;
	line-height: 2;
	letter-spacing: 2px;
}

.footer_menu {
	width: 50%;
}

.footer_menu ul {
	width: 100%;
}

.footer_menu ul li {
	width: 100%;
	margin-bottom: 1em;
}

.footer_menu a {
	font-size: 1vw;
	display: block;
	box-sizing: border-box;
	line-height: 2;
	letter-spacing: 2px;
	width: fit-content;
	padding: 0 1em;
}

.footer_contact {
	position: relative;
	width: 75%;
}

.footer_contact h1 {
	font-size: 1.5vw;
	line-height: 1.5;
	letter-spacing: 3px;
}

.footer_contact p {
	font-size: 1vw;
	line-height: 2;
	letter-spacing: 2px;
}

.footer_right .copyright {
	position: absolute;
	bottom: 1em;
	right: 0;
}

.footer_right .copyright p {
	font-size: 1vw;
	letter-spacing: 2px;
}

@media screen and (max-width: 768px) {

  /* ハンバーガーメニュー */
  header #header_navi_toggle span {
  }

  header #header_navi_toggle span:nth-of-type(1) {
  	top: 9px;
  }

  header #header_navi_toggle span:nth-of-type(2) {
  	top: 22px;
  }

  header #header_navi_toggle span:nth-of-type(3) {
  	top: 34px;
  }

  header #header_navi_toggle p {
    bottom: 5px;
    font-size: 2vw;
  }

  #header_navi {
    background-color: rgba(230, 230, 230, 0.8);
  }

  #header_navi ul {
  	padding-top: 60px;
  }

  #header_navi ul li a {
    font-size: 4vw;
    padding: 2vh;
    font-weight: bold;
  }

	.header_area_pc {
		display: none;
	}

	.header_area_sp {
		display: flex;
		position: fixed;
		top: 0;
	}

	.header_logo {
		width: 35%;
		margin: 0.5em;
	}

	.footer_area {
    width: 80%;
	}

	.footer_left,
	.footer_right {
    width: 100%;
		margin: auto;
	}

	.footer_left .footer_head,
	.footer_right .footer_head {
    width: 50%;
		margin: auto;
    text-align: center;
	}

	.footer_menu {
		margin: auto;
	}

	.footer_head h1,
	.footer_menu a {
		font-size: 3vw;
		width: auto;
	}

	.footer_menu ul li {
		text-align: center;
	}

	.footer_contact {
    width: 95%;
		position: unset;
	}

	.footer_contact h1 {
    font-size: 3.5vw;
		line-height: 2;
	}

	.footer_contact p {
    font-size: 2.3vw;
	}

  .copyright.sp_on {
    width: 100%;
    line-height: 3;
    text-align: center;
  }

  .copyright.sp_on p {
    font-size: 2vw;
  }

}