@charset "UTF-8";

/*----------------------------------------------
	ヘッダー
---------------------------------------------*/
.l_header {
	height: 60px;
	width: 100%;
	padding: 10px 20px;
	background: var(--wh);
	box-shadow: -5px 5px 10px 0px rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: space-between;
	position: fixed;
	z-index: 999;
}

.l_header_logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.l_header_link {
	display: block;
	height: 30px;
	width: auto;
}

.l_header_link svg {
	display: block;
	height: 100%;
	width: auto;
}

.l_header_link:hover {
	opacity: 0.5;
}

.l_header_btn {
	width: 185px;
	height: 40px;
	background: var(--lime);
	color: var(--wh);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	font-size: 1.8rem;
}

.l_header_btn:hover {
	background: var(--bl);
	color: var(--wh);
}

@media (max-width: 500px) {
	.l_header {
		height: 40px;
		width: 100%;
		padding: 5px 10px;
	}

	.l_header_link {
		height: 20px;
	}

	.l_header_link:hover {
		opacity: 0.5;
	}

	.l_header_btn {
		width: auto;
		height: 30px;
		padding: 0 10px;
		font-size: 1.4rem;
	}

	.l_header_link svg {
		width: auto;
	}
}



/*----------------------------------------------
	l_topbtn
---------------------------------------------*/
.l_topbtn {
	position: fixed;
	bottom: 10px;
	right: 20px;
	z-index: 999;
}

.l_topbtn_link {
	background: var(--lime);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: .3s;
}

.l_topbtn_up {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	width: 10px;
	height: 10px;
	border: 2px solid var(--wh);
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(25%) rotate(-45deg);
}

.l_topbtn_link:hover {
	background: var(--bl);
}

@media (max-width: 500px) {
	.l_topbtn {
		bottom: 0px;
		right: 0px;
	}

	.l_topbtn_link {
		width: 30px;
		height: 30px;
		border-radius: 5px 0 0 0;
	}

	.l_topbtn_up {
		width: 8px;
		height: 8px;
	}
}

/*----------------------------------------------
	l_footer
---------------------------------------------*/

.l_footer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px 0;
}

.l_footer_box {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.l_footer_link:hover {
	opacity: 0.5;
}

@media (max-width: 800px) {
	.l_footer_box {
		gap: 20px;
	}

	.l_footer_link {
		height: 30px;
		width: auto;
	}

	.l_footer_link svg {
		height: 100%;
		width: auto;
	}
}

@media (max-width: 500px) {
	.l_footer_box {
		gap: 10px;
	}

	.l_footer_link {
		height: 25px;
		width: auto;
	}
}