.l-nav {
	position: relative;
}

.p-nav__toggle {
	position: fixed;
	right: 50px;
	top: 50px;
	display: block;
	width: 42px;
	height: 42px;
	cursor: pointer;
	z-index: 205;
	transform: translateX(0);
	transition: all 0.5s;
	text-align: center;
}
@media (max-width: 736px) {
	.p-nav__toggle {
		right: 20px;
		top: 20px;
		transform: translateX(0) scale(0.6);
	}
}
.p-nav__toggle-circle {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 8px;
	height: 8px;
	background-color: #333333;
	transition: 0.3s ease all;
	border-radius: 100%;
}
.p-nav__toggle-circle:nth-child(2) {
	top: 0px;
	left: 21px;
}
.p-nav__toggle-circle:nth-child(3) {
	top: 0px;
	left: 42px;
}
.p-nav__toggle-circle:nth-child(4) {
	top: 21px;
}
.p-nav__toggle-circle:nth-child(5) {
	top: 21px;
	left: 21px;
}
.p-nav__toggle-circle:nth-child(6) {
	top: 21px;
	left: 42px;
}
.p-nav__toggle-circle:nth-child(7) {
	top: 42px;
}
.p-nav__toggle-circle:nth-child(8) {
	top: 42px;
	left: 21px;
}
.p-nav__toggle-circle:nth-child(9) {
	top: 42px;
	left: 42px;
}
.p-nav__toggle.is-active .p-nav__toggle-circle {
	top: 21px !important;
	left: 21px !important;
}
.p-nav__toggle-text {
	display: block;
	position: absolute;
	left: 0px;
	bottom: -40px;
	text-align: center;
	color: #333333;
	width: 100%;
	font-size: 15px;
	letter-spacing: 0.1em;
}

html:has(.p-nav__inner.is-active),
body:has(.p-nav__inner.is-active) {
	overflow: hidden !important;
}

.p-nav__inner {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 20;
	/* background: url(../img/common/bg-nav.jpg) right bottom no-repeat;
	background-size: cover; */
	width: 100%;
	height: 100%;
	display: none;
}
.p-nav__inner.is-out {
	animation-duration: 0.5s;
	animation-name: fade-in3;
}
.p-nav__inner.is-active {
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex-wrap: wrap;
	animation-duration: 0.5s;
	animation-name: fade-in2;
}
@keyframes fade-in2 {
	0% {
		opacity: 0;
		transform: scale(2);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes fade-in3 {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(2);
		display: none;
	}
}
@media (max-width: 736px) {
	.p-nav__inner {
		width: 100%;
		padding-top: 30px;
		/* background: url(../img/common/bg-nav-sp.jpg) right bottom no-repeat;
		background-size: cover; */
	}
}

.p-nav__list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 45px 80px;
}
.p-nav__list > li {
	box-sizing: border-box;
	position: relative;
}
.p-nav__list > li:nth-child(n + 3) {
	grid-column: 2;
}
.p-nav__list > li > a {
	display: block;
	position: relative;
	text-align: center;
	color: #333333;
	font-size: 2.2rem;
	transition: 0.3s ease;
	font-weight: normal;
}
.p-nav__list > li > a .u-en {
	display: block;
	font-weight: bold;
	text-align: center;
	font-size: 3.2rem;
	color: #333333;
	letter-spacing: 0.24em;
}
.p-nav__list > li > a:hover {
	opacity: 0.6;
}

/* .p-nav__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	max-width: 850px;
	margin: 0 auto;
}
.p-nav__list > li:nth-child(n + 3) {
	grid-column: 2;
}
@media (max-width: 736px) {
	.p-nav__list {
		display: block;
		padding: 10px 50px;
	}
	.p-nav__list > li:nth-child(n + 3) {
		grid-column: 1;
	}
}
.p-nav__item {
	font-size: 22px;
	color: #333;
	position: relative;
}
@media (max-width: 736px) {
	.p-nav__item {
		font-size: 1.4rem;
	}
}
.p-nav__item > a {
	position: relative;
	display: block;
	padding: 15px 45px;
	text-decoration: none;
	text-align: center;
	transition: 0.3s ease;
	color: #333;
}
@media (max-width: 736px) {
	.p-nav__item > a {
		padding: 15px 0px;
		text-align: left;
		font-size: 1.4rem;
	}
}
.p-nav__item > a:hover {
	opacity: 0.7;
}
.p-nav__item--head {

}
@media (max-width: 736px) {
	.p-nav__item--head {
		margin-top: 0;
	}
}
.p-nav__en {
	font-weight: 700 !important;
	font-size: 32px;
	letter-spacing: 0.24em;
	margin-bottom: 15px;
}
@media (max-width: 736px) {
	.p-nav__en {
		font-size: 20px;
	}
} */
.p-nav__list-sub {
	position: absolute;
	left: 50%;
	margin-left: -150px;
	top: 120px;
	width: 300px;
	background: rgba(226, 215, 201, 30%);
	padding: 1px 0;
}
.p-nav__list-sub .p-nav__item {
	font-size: 18px;
	margin: 45px auto;
	text-align: center;
}
.p-nav__list-sub .p-nav__item a {
	display: block;
	position: relative;
	text-align: center;
	color: #333333;
	font-size: 18px;
	transition: 0.3s ease;
	font-weight: normal;
}
.p-nav__list-sub .p-nav__en {
	display: block;
	font-weight: bold;
	text-align: center;
	font-size: 26px;
	color: #333333;
	letter-spacing: 0.24em;
}
@media (max-width: 736px) {
	.p-nav__inner {
		padding: 50px;

		box-sizing: border-box;
		width: 100%;
		height: 100%;
	}
	.p-nav__inner.is-active {
		display: block;
	}
	.p-nav__list {
		position: relative;
		display: block;
	}
	.p-nav__list > li {
		box-sizing: border-box;
		width: 100%;
		margin-bottom: 15px;
	}

	.p-nav__list > li > a {
		display: block;
		position: relative;
		text-align: left;
		color: #333333;
		font-size: 1.1rem;
		transition: 0.3s ease;
		font-weight: normal;
	}
	.p-nav__list > li > a .u-en {
		display: block;
		text-align: left;
		font-size: 2rem;
		color: #333333;
		letter-spacing: 0.24em;
	}
	.p-nav__list > li > a:hover {
		opacity: 0.6;
	}
	.p-nav__list-sub {
		position: relative;
		display: grid;
		left: 0;
		top: 0;
		margin: 20px 0;
		grid-template-columns: repeat(2, 1fr);
		padding: 20px 20px;
		grid-gap: 15px;
	}
	.p-nav__list-sub > li {
		margin: 0 !important;
	}
	.p-nav__list-sub > li > a {
		font-size: 11px !important;
		text-align: left !important;
	}
	.p-nav__list-sub .u-en {
		font-size: 15px !important;
		text-align: left !important;
	}
}

.nav-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../img/bg.jpg) 0 0 repeat;
	background-size: 1920px 1080px;
	opacity: 1;
}
.nav-stick-1 {
	position: absolute;
	right: 218px;
	top: 80px;
	background: url(../img/nav-stick-1.png) 0 0 no-repeat;
	background-size: contain;
	width: 315px;
	height: 166px;
}
.nav-stick-2 {
	position: absolute;
	left: 0px;
	bottom: 128px;
	background: url(../img/nav-stick-2.png) 0 0 no-repeat;
	background-size: contain;
	width: 415px;
	height: 304px;
}
.nav-stick-3 {
	position: absolute;
	right: 0px;
	bottom: 0px;
	background: url(../img/nav-stick-3.png) 0 0 no-repeat;
	background-size: contain;
	width: 379px;
	height: 310px;
}

@media (max-width: 736px) {
	.nav-stick-1 {
		position: absolute;
		left: auto;
		right: 0px;
		top: 40%;
		background: url(../img/nav-stick-1-sp.png) 0 0 no-repeat;
		background-size: contain;
		width: 157.5px;
		height: 140px;
	}
	.nav-stick-2 {
		position: absolute;
		left: auto;
		right: 0px;
		bottom: 0px;
		background: url(../img/nav-stick-2-sp.png) 0 0 no-repeat;
		background-size: contain;
		width: 125px;
		height: 123.5px;
	}
	.nav-stick-3 {
		display: none;
	}
}
