@charset "utf-8";

/*----------------------------------------------
	ヘッダー
---------------------------------------------*/
.l_header {
	width: 100%;
	height: 100px;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(15px);
	border-radius: 0 0 20px 20px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.l_header_link,
.l_header_logo {
	display: block;
	width: auto;
	height: 60px;
}

@media (max-width: 1280px) {
	.l_header {
		height: 80px;
	}

	.l_header_link,
	.l_header_logo {
		height: 50px;
	}
}

@media (max-width: 500px) {
	.l_header {
		height: 60px;
		padding: 10px;
		border-radius: 0 0 10px 10px;
	}

	.l_header_link,
	.l_header_logo {
		height: 40px;
	}
}

/*----------------------------------------------
	l_topbtn
---------------------------------------------*/
.l_topbtn {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 999;
	transition: .3s;
	transform: translateY(100px);
}

.l_topbtn.is_active {
	transform: translateY(0);
}

.l_topbtn_link {
	background: var(--bk);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	border-radius: 50%;
}

.l_top_arrow {
	vertical-align: middle;
	color: var(--wh);
	line-height: 1;
	width: 1em;
	height: 1em;
	border-radius: 1px;
	border: 4px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(20%) rotate(-45deg);
}



.l_topbtn_link:hover {
	filter: brightness(120%);
}

@media (max-width: 1160px) {
	.l_topbtn_link {
		width: 40px;
		height: 40px;
	}

	.l_topbtn_link:hover {
		filter: none;
	}
}


/*----------------------------------------------
	フッター
---------------------------------------------*/
.l_footer {
	background: #1F2C5C;
	padding: 40px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.l_footer h2 {
	margin-bottom: 20px;
}

.l_footer_logolink {
	transition: .3s;
}

.l_footer_logolink:hover {
	opacity: 0.7;
}

.l_footer_copy {
	padding: 10px 0;
	display: block;
	width: 100%;
}

@media (max-width: 500px) {
	.l_footer_logo {
		height: 40px;
		width: auto;
	}

	.l_footer_btn {
		width: 150px;
		height: 40px;
	}

	.l_footer_btn_flex {
		border: 2px solid var(--bk);
		height: 35px;
	}

	.l_footer_btn_bg {
		height: 35px;
	}

	.l_footer_btn_wrap {
		width: 14px;
		height: 14px;
	}

	.l_footer_btn_arrow {
		width: 3px;
	}

}

@media (max-width: 1280px) {}

@media (max-width: 500px) {}