@charset "UTF-8";
/* CSS Document */


/* 基本スタイル */
#top-head {
	position: fixed;
	top: 0;
	width: 100%;
	height: 105px;
	background: white;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-inner {
	width: 100%;
	max-width: 1600px;
	height: 105px;
	margin: 0 auto;
	padding: 10px 20px;
	display: flex;
	align-items: center;
gap: clamp(8px, 5vw, 32px);
}

/*ロゴ*/
h1 {
	order: 0;
	align-items: center;
}

h1 img {
	width: 120px;
}

/* 言語切替ボタン */
.lang-switcher {
	order: 2;
	margin-left: auto;
	margin-right: 20px;
}

.lang-switcher a {
	position: relative;
	padding-right: 2.4em;
	display: inline-block;
	font-size: 1.6rem;
	color: #333;
	text-decoration: none;
}

.lang-switcher a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0.6em;
	width: 20px;
	height: 20px;
	background: #000;
	border-radius: 50%;
	transform: translate(50%, -50%);
	z-index: 1;
}

.lang-switcher a::after {
	content: '';
	position: absolute;
	top: 45%;
	right: 0.6em;
	width: 8px;
	height: 8px;
	border-bottom: 2px solid white;
	border-right: 2px solid white;
	transform: translate(50%, -50%) rotate(45deg);
	/* 下向きのくの字 */
	z-index: 2;
}

/*寄付ボタン*/
.donate-btn {
	order: 1;
	position: relative;
	display: flex;
	width: 205px;
	height: 60px;
	margin-left: 5vw;
	background-color: #009BD9;
	color: white;
	font-size: 1.8rem;
	font-weight: bold;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border-radius: 15px;
	border: solid 1px #fff;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
	cursor: pointer;
}

.donate-btn a {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.donate-arrow-icon {
	position: relative;
	width: 20px;
	height: 20px;
}

.donate-arrow-icon::before {
	content: '';
	position: absolute;
	top: -5px;
	left: 0;
	width: 30px;
	height: 30px;
	background: white;
	border-radius: 50%;
	z-index: 0;
}

.donate-arrow-icon::after {
	content: '';
	position: absolute;
	top: 40%;
	left: 75%;
	width: 12px;
	height: 12px;
	border-right: 3px solid #009BD9;
	border-bottom: 3px solid #009BD9;
	transform: translate(-50%, -50%) rotate(45deg);
	z-index: 1;
}

/* グローバルナビ（PC） */
.hamburger {
	order: 3;
	display: none;
}

.nav-wrapper {
	align-items: center;
	margin-left: auto;
	display: flex;
	gap: 20px;
	width: 100%;
	max-width: 600px;
}
.nav-inner-wrapper{width: 100%;}

.nav-wrapper ul {
	display: flex;
	/*gap: clamp(8px, 5vw, 90px);*/
	list-style: none;
	margin: 0;
	padding: 0;
	height: 105px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.nav-wrapper li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #000;
	font-weight: 500;
}

.nav-arrow {
	position: relative;
	display: block;
	width: 20px;
	height: 20px;
	margin: 4px auto 0;
}

.nav-arrow::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	background: #B38745;
	border-radius: 50%;
	z-index: 0;
}

.nav-arrow::after {
	content: '';
	position: absolute;
	top: 40%;
	left: 45%;
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translate(-50%, -50%) rotate(45deg);
	z-index: 1;
}

@media (max-width: 1024px) {
.nav-wrapper{max-width: 300px; margin-left: 30px;}
}

/* モバイル対応 */
@media (max-width: 768px) {
	#top-head {
		height: 67px;
	}

	.header-inner {
		height: 67px;
		padding: 10px 0;
	}

	h1 {
		order: 0;
		padding: 0 10px;
	}

	h1 img {
		max-width: 90px;
	}

	/*言語切り替えボタン*/
	.lang-switcher {
		order: 1;
		margin-left: 20px;
		position: absolute;
		right:10%;
	}

	.lang-switcher a::before {
		right: 1.4rem;
	}

	.lang-switcher a::after {
		right: 1.4rem;
	}

	.lang-switcher a::before {
		width: 16px;
		height: 16px;
	}

	.lang-switcher a::after {
		width: 8px;
		height: 8px;
	}

	.lang-switcher a {
		font-size: 1.4rem;
	}

	/*ハンバーガーメニュー*/
	.hamburger {
		order: 2;
		display: block;
		position: relative;
		margin-left: auto;
		padding: 20px 15px;
		width: 67px;
		height: 67px;
		background-color: #b38745;
		z-index: 1001;
	}

	.hamburger div {
		position: relative;
		width: 100%;
		height: 100%;
	}

	.hamburger span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background: #fff;
		border-radius: 2px;
		opacity: 1;
		left: 0;
		margin-top: 2px;
		transition: all 0.3s ease-in-out;
	}

	.hamburger span:nth-child(1) {
		top: 0;
	}

	.hamburger span:nth-child(2) {
		top: 12.5px;
	}

	.hamburger span:nth-child(3) {
		top: 25px;
	}

	/* バツ印アニメーション（active時） */
	.hamburger.active span:nth-child(1) {
		top: 10px;
		transform: rotate(45deg);
	}

	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}

	.hamburger.active span:nth-child(3) {
		top: 10px;
		transform: rotate(-45deg);
	}

	.nav-wrapper {
		position: fixed;
		right: -100%;
		top: 67px;
		width: 100%;
		background: #d8cbb5;
		flex-direction: column;
		align-items: flex-start;
		padding: 1em;
		padding-top: 2em;
		transition: right 0.3s ease;
	}

	.nav-wrapper.active {
		right: 0;
		max-width: 100%;
	}

	.nav-inner-wrapper{width: 100%;}

	.nav-wrapper ul {
		flex-direction: column;
		height: 100%;
	}

	.nav-wrapper ul li {
		border-top: 1px solid #808080;
		width: 100%;
		padding: 0.5em 0;
	}

	.nav-wrapper ul li:last-child {
		border-bottom: 1px solid #808080;
		width: 100%;
	}

	.nav-arrow {
		margin: 0;
	}

	.nav-wrapper li a {
		flex-direction: row;
		justify-content: space-between;
	}


	/*寄付ボタン*/
	.donate-btn {
		width: 120px;
		height: 45px;
		font-size: 1.2rem;
		position: absolute;
		right: 30%;
	}

	.donate-arrow-icon {
		width: 16px;
		height: 14px;
	}

	.donate-arrow-icon::before {
		top: 0;
		left: 0;
		width: 16px;
		height: 16px;
	}

	.donate-arrow-icon::after {
		top: 45%;
		left: 50%;
		width: 8px;
		height: 8px;
		border-right: 2px solid #009BD9;
		border-bottom: 2px solid #009BD9;
	}

	.nav-wrapper .donate-btn-white{margin: 0 auto;}
	.nav-wrapper .donate-btn-white a::before{right: 10%;}
	.nav-wrapper .donate-btn-white a::after{right: 10%;}

}
@media (max-width: 480px) {
	.donate-btn {
		position: relative;
		margin-left: auto;
		right: auto
	}
		.lang-switcher {
			position: relative;
		margin-right: auto;
		margin-left: auto;
		right: auto
	}

}