@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: rgb(255, 255, 255);
	backdrop-filter: blur(12px);
	padding: 10px;
	border-radius: 10px;

}

.hamburger span {
	display: block;
	width: 25px !important;
	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: rgb(255, 255, 255);
	backdrop-filter: blur(12px);
	padding: 2rem 1rem;
	text-align: center;
	display: none;
	gap: 1.5rem;
	z-index: 2;
}

.temple-nav.active {
	display: flex;
	align-items: center;
}

.temple-nav ul {
	display: block;
	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.15rem;
	padding: 0.5rem 1rem;
	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;
}

ul {
	padding: 0;
	list-style: none;
}

a {
	color: #333;
	text-decoration: none;
}

.list {
	display: flex;
	justify-content: center;
	gap: 10px;
	background-color: rgb(255, 255, 255);
}

.link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 10px 30px;
	transition: color .15s;
	font-size: 16px;
}

.link:hover,
.link:focus-within {
	color: rgb(0, 4, 255);
}

.link-hover::after {
	content: '▼';
	font-size: 10px;
}

.dropDown {
	position: absolute;
	bottom: 0;
	display: none;
	padding: 10px;
	background-color: #fff;
	box-shadow: 0px 3px 8px -2px #777;
	color: initial;
	transform: translate(0, 100%);
	z-index: 3;
}

.link:hover>.dropDown,
.link:focus-within>.dropDown {
	display: block;
}

.dropDown__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 16px;
}

.dropDown__link {
	padding: 10px 20px;
	transition: color .15s;
	display: inline-block;
	width: 12rem !important;
}

.dropDown__link:hover,
.dropDown__link:focus {
	color: rgb(0, 4, 255);
}

.inner img {
	max-width: 98%;
}

/**==================================================**/
/**=          画面サイズ600px以上の指定              **/
/**==================================================**/
@media screen and (min-width:600px) {}

/**==================================================**/
/**=          画面サイズ1024px以上の指定              **/
/**==================================================**/
@media screen and (min-width:1280px) {
	.hamburger {
		display: none;
	}

	.temple-nav {
		position: fixed;
		display: block !important;
		backdrop-filter: none;
		background: none;
		padding: 0;
	}

	.temple-nav ul {
		display: flex;
		gap: 2rem;
		justify-content: center;
	}

	.temple-nav li {
		margin: 0;
	}

	.inner img {
		max-width: 960px;
	}

}