@charset "UTF-8";
/***** デフォルトはスマートフォン *****/
/* ハンバーガー */
.hamburger {
	position: fixed;
	top: 35px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	border: 1px solid black;
	background: transparent;
	cursor: pointer;
	z-index: 3;
	background-color: rgba(240, 255, 226, 0.753);
	backdrop-filter: blur(12px);
	padding: 10px;
	border-radius: 10px;

}
.hamburger span {
	display: block;
	width: 25px;
	height: 3px;
	background: rgb(0, 0, 0);
	border-radius: 2px;
	transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translateY(6px) translateX(5px);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translateY(-6px) translateX(5px);
}
/* メニュー（浮き表示） */
.temple-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.281);
	backdrop-filter: blur(12px);
	padding: 2rem 1rem;
	text-align: center;
	display: none;
	flex-direction: column;
	gap: 0.5rem;
	z-index: 2;
	
}
.temple-nav.active {
	display: flex;
}
.temple-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.temple-nav li {
	margin: 0.5rem 0;
}
.temple-nav a {
	color: rgb(0, 0, 0);
	text-decoration: none;
	font-size: 1.2rem;
	padding: 0.5rem 0.5rem;
	border-radius: 6px;
	transition: background 0.3s ease;
}
.temple-nav a:hover {
	background: rgba(255, 255, 255, 0.2);
}
.menu_lineheight{
	display: inline-block;
	line-height: 1.2rem;
}
.menu_subtitle{
	font-size: 16px;
}
/**==================================================**/
/**=		  画面サイズ768px以上の指定			  **/
/**==================================================**/
@media screen and (min-width:768px) {}

/**==================================================**/
/**=		  画面サイズ960px以上の指定			  **/
/**==================================================**/
@media screen and (min-width:960px) {
	.hamburger {
		display: none;
	}
	.temple-nav {
		position: static;
		display: block !important;
		backdrop-filter: none;
		background: none;
		padding: 0;
	}
	.temple-nav ul {
		display: flex;
		gap: 1rem;
		justify-content: flex-end;
		align-items: center;
	}
	.temple-nav li {
		margin: 0;
	}
	.temple-nav a{
		font-size: 0.7rem;
	}
}