@charset "utf-8";
/* CSS Document */
.scroll-fadeup {
	--ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
	opacity: 0;
	translate: 0 13%;
}
.scroll-fadeup.isActive {
	opacity: 1;
	translate: 0;
	transition-duration: 1.8s;
	/* transition-timing-function: opacity var(--ease-out-cubic), translate var(--ease-out-quint); */
}
.scroll-diagonal {
	clip-path: polygon(0 0, 0 0, calc(30% * -1) 100%, calc(30% * -1) 100%);
}
.scroll-diagonal.isActive {
	animation: scroll-diagonal .8s linear 0.2s both;
}
@keyframes scroll-diagonal {
	from {
		clip-path: polygon(0 0, 0 0, calc(30% * -1) 100%, calc(30% * -1) 100%);
	}
	to {
		clip-path: polygon(0 0, calc(100% + 30%) 0, 100% 100%, calc(30% * -1) 100%);
	}
}
#pm25ans {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.5;
}
#mini-hd {
	overflow-y: auto;
	overscroll-behavior-y: contain;
	/* position: relative; */
}
/*============================
#js-hamburger
============================*/
#mini-hd #js-nav {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100dvh;
	display: flex;
	align-items: center;
	/* justify-content: center; */
	transition: opacity 0.3s ease;
	z-index: 1;
	box-sizing: border-box;
	gap: 0;
	pointer-events: none;
	opacity: 0;
	overflow-y: auto;
	transform: translate3d(0, 0, -1px);
	background-image: url("../img/nav-bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 10001;
}
#mini-hd #js-nav.is-active {
	opacity: 1;
	pointer-events: auto;
}
#mini-hd .hamburger {
	width: 50px;
	height: 50px;
	position: fixed;
	cursor: pointer;
	z-index: 20;
	right: 8px;
	/* z-index: 9999; */
}
#mini-hd #js-hamburger-close.hamburger {
	width: 50px;
	height: 50px;
	position: fixed;
	cursor: pointer;
	z-index: 20;
	right: 8px;
	top: 0;
	z-index: 10002;
}
#mini-hd .hamburger span {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 60%;
	height: 3px;
	background: #C08251;
	transition: 0.3s;
}
#mini-hd .hamburger span:nth-child(1) {
	top: 31%;
}
#mini-hd .hamburger span:nth-child(2) {
	top: 50%;
}
#mini-hd .hamburger span:nth-child(3) {
	top: 67%;
}
/* 開いたときのアニメーション */
#mini-hd #js-hamburger-close.hamburger span:nth-child(1) {
	transform: rotate(45deg);
	top: 50%;
	background: #fff;
}
#mini-hd #js-hamburger-close.hamburger span:nth-child(2) {
	opacity: 0;
}
#mini-hd #js-hamburger-close.hamburger span:nth-child(3) {
	transform: rotate(-45deg);
	top: 50%;
	background: #fff;
}
#mini-hd .js-nav-bg {
	width: 60%;
	background: rgb(0 0 0 / 70%);
	height: 100%;
}
#mini-hd #js-nav-list {
	width: 40%;
	background: rgb(77 47 36 / 95%);
	margin: 0 0 0 auto;
	height: 100%;
	padding: 50px;
	box-sizing: border-box;
	min-width: 570px;
}
#mini-hd #js-nav-list .nav-detail {
	margin-bottom: 40px;
}
#mini-hd #js-nav-list .nav-detail.no-link{
    opacity: 0.6;
    pointer-events: none;
}
#mini-hd #js-nav-list .nav-detail a {
	color: #fff;
	text-decoration: none
}
#mini-hd #js-nav-list .nav-detail a .en {
	font-size: 24px;
	font-weight: 600;
	margin: 0 auto 10px;
	font-family: var(--font-en-1);
	font-style: italic;
	line-height: 1.2;
	letter-spacing: -0.001em;
}
#mini-hd #js-nav-list .nav-detail a .jp {
	font-size: 12px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	#mini-hd .js-nav-bg {
		display: none;
	}
	#mini-hd #js-nav-list {
		width: 100%;
		min-width: 100%;
	}
}