.c-trigger__language {
	background: url(../img/icon_select_language.svg) right center / 25px no-repeat;
	color: #413d3c;
	display: block;
	font-size: 21px;
	margin-left: 21px;
	margin-right: auto;
	padding-right: 35px;
	position: relative;
	width: fit-content;
	z-index: 5001;
}

@media (min-width: 961px) {
	.c-trigger__language {
		display: none;
	}
}

.c-drawer {
	align-items: center;
	background: #9cd113;
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0%;
	opacity: 0.9;
	position: fixed;
	top: -100%;
	transition: top 0.3s ease-in-out;
	width: 100%;
	z-index: 5000;
}
.c-drawer__content {
	color: white;
	cursor: pointer;
	font-size: 40px;
	font-weight: 500;
	text-align: center;
}

.c-drawer__index {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 40px;
	justify-content: center;
	line-height: 1.5;
}

.c-drawer.active {
	top: 50px; /* ドロワーを表示 */
}

.c-header__logo {
	color: #95c036;
	display: flex;
	justify-content: center;
	font-size: 34px;
	font-weight: bold;
	line-height: 0.6;
	margin: 0 auto;
	text-align: center;
	width: 566px;
}

.c-header__logo a {
	display: block;
	margin: auto;
	width: 376px;
}
.c-header__logo img {
	width: 100%;
}

@media (min-width: 961px) {
	.c-header__logo {
		font-size: 24px;
		width: 480px;
	}
	.c-header__logo a {
		width: 320px;
	}
}

/* メニュー */

.c-trigger {
	cursor: pointer;
	position: fixed;
	top: 15px;
	right: 20px;
	transition: all 0.3s;
	z-index: 6000;
}
@media (min-width: 961px) {
	.c-trigger {
		display: none;
	}
}

.c-trigger__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 30px;
}
.c-trigger__line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: rgba(0, 0, 0, 0.8);
	transition: all 0.5s;
}
.c-trigger--active .c-trigger__line {
	background-color: white;
}

.c-trigger__line:nth-of-type(1) {
	top: 0;
}
.c-trigger__line:nth-of-type(2) {
	top: 14px;
}
.c-trigger__line:nth-of-type(3) {
	bottom: 0;
}
.c-trigger--active .c-trigger__line:nth-of-type(1) {
	transform: translateY(14px) rotate(-330deg);
}
.c-trigger--active .c-trigger__line:nth-of-type(2) {
	opacity: 0;
}
.c-trigger--active .c-trigger__line:nth-of-type(3) {
	bottom: 0;
	transform: translateY(-14px) rotate(330deg);
}
.c-drawer__menu {
	align-items: center;
	background: #9cd113;
	color: white;
	display: flex;
	height: 100%;
	justify-content: center;
	opacity: 0.9;
	position: fixed;
	right: -100%;
	top: 0;
	transition: right 0.3s ease-in-out;
	width: 100%;
	z-index: 5000;
}
.c-drawer__menu ul {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.c-drawer__menu ul li {
	font-size: 30px;
	color: white;
}

.c-drawer__menu.active {
	right: 0;
}

/* PC表示 */

.c-global-navi {
	display: none;
}

@media (min-width: 961px) {
	.c-global-navi {
		align-items: center;
		display: flex;
		font-size: 16px;
		justify-content: space-between;
		max-width: 1280px;
		margin: auto;
		padding: 0 20px;
		width: 100%;
	}
	.c-global-navi ul {
		align-items: center;
		color: white;
		display: flex;
		gap: 20px;
	}
	.c-global-navi li {
		cursor: pointer;
		display: block;
		transition: all 0.3s;
	}
	.c-global-navi li:hover {
		color: #413d3c;
	}
	.c-global-navi a {
		transition: none;
	}
	.c-global-navi a:hover {
		opacity: 1;
	}
}
