@charset "utf-8";

header {
	padding: 5% 8% 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 7;
	pointer-events: none;
}
.ham {
  width: 30px;
  height: 30px;
  margin-left: auto;
  position: relative;
  display: block;
  z-index: 10;
  pointer-events: auto;
}
.ham span {
  width: 30px;
  height: 1px;
  background-color: #f5f5f5;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  display: block;
  transition: 0.1s;
}
.ham span:nth-child(1){
  top: 12px;
}
.ham span:nth-child(2) {
  bottom: 10px;
}
.ham.open span:nth-child(1) {
  transform: translate(-50%,-50%) rotate(12deg);
  top: 50%;
}
.ham.open span:nth-child(2) {
  transform: translate(-50%,-50%) rotate(-12deg);
  top: 50%;
  bottom: initial;
}

.rd span {
	background-color: #CF3714;
}



.headerNav__bg {
	background-color: rgba(0,0,0,.6);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100svh;
	overflow-x: scroll;
	display: none;
	z-index: 6;
	pointer-events: auto;
}
header nav {
	background-color: #C8832F;
	color: #F5F5F5;
	width: 70%;
	margin-left: auto;
	min-height: 100svh;
	position: relative;
	padding: 12rem 0 0 4rem;
}
header nav li {
	font-family: 'Shippori Mincho', serif;
	font-size: 1rem;
	line-height: 1.2rem;
	position: relative;
	margin-bottom: 2rem;
}
header nav li span {
	display: block;
	font-size: 0.8rem;
}
header nav li.current::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #f5f5f5;
	position: absolute;
	left: -8%;
	top: 12%;
}
header nav p {
	font-size: 0.8rem;
	padding-top: 2rem;
	font-family: "Yellowtail", serif;
}

.headerNav__img--1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 60%;
}

.headerNav__img--2 {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 80%;
	z-index: 2;
}
.headerNav__img img {
	width: 100%;
}
.headerNav__square {
	background: #CF3714;
	width: 28vw;
	height: 45vw;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
}



@media screen and (max-width: 1200px) {

}
@media screen and (max-width: 960px) {

}
@media screen and (max-width: 750px) {

}
@media screen and (max-width: 480px) {

}
@media screen and (max-width: 375px) {

}