@charset "utf-8";

/*----------------------------------------------
	ヘッダー
---------------------------------------------*/

.l_header {
	width: 100%;
	height: 80px;
	padding: 0 30px;
	background: var(--wh);
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: -5px 5px 10px 0px rgba(0, 0, 0, 0.2);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}

.l_header_right {
	display: flex;
	align-items: center;
	gap: 10px;
}

.l_header_btn {
	width: 340px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	transition: .3s;
	line-height: 1;
	color: var(--wh);
	gap: 3px;
}

.l_header_btn-01 {
	background: var(--red);
}

.l_header_btn-02 {
	background: var(--bl);
}

.l_header_btn-small {
	font-size: 1.6rem;
}

.l_header_btn-txt {
	font-size: 2.8rem;
}

.l_header_icon {
	height: 40px;
	width: auto;
}

.l_header_btn:hover {
	filter: brightness(120%);
}


@media (max-width: 1000px) {

	.l_header {
		height: 40px;
		padding: 0 10px;
	}


	.l_header_btn {
		width: 125px;
		height: 26px;
		border-radius: 5px;
		gap: 1px;
	}

	.l_header_btn-small {
		display: none;
	}

	.l_header_btn-txt {
		font-size: 1.2rem;
	}

	.l_header_icon {
		height: 10px;
	}





}

@media (max-width: 500px) {
	.l_header_right {
		gap: 5px;
	}
}



/*----------------------------------------------
	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(--red);
	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: var(--bl);
	padding: 40px 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.l_footer h2 {
	margin-bottom: 20px;
}

.l_footer_link {

	background: var(--wh);
	padding: 5px 60px;
	border-radius: 50px;
}

.l_footer_copy {
	padding: 10px 0;
	background: var(--dbl);
	display: block;
	width: 100%;
}

@media (max-width: 500px) {
	.l_footer_logo {
		height: 40px;
		width: auto;
	}

	.l_footer h2 {
		margin-bottom: 10px;
	}

}

/*----------------------------------------------
	404
---------------------------------------------*/

.l_sub {
	padding-top: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: calc(90vh);
}

.l_sub h2 {
	color: var(--nv);
	font-size: 4rem;
	margin-bottom: 20px;
}

.l_sub p {
	font-size: 1.8rem;
	line-height: 1.8;
}

.l_top_btn {
	height: 60px;
	width: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gr);
	color: var(--wh);
	font-size: 2.4rem;
	text-align: center;
	border-radius: 10px;
	transition: .3s;
}

.l_top_btn-02 {
	height: 60px;
	width: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bl);
	color: var(--wh);
	font-size: 2.4rem;
	text-align: center;
	border-radius: 10px;
	transition: .3s;
}

.l_top_btn:hover,
.l_top_btn-02:hover {
	filter: brightness(120%);
}


@media (max-width: 500px) {

	.l_sub {
		padding-top: 70px;
		height: calc(100vh);
	}

	.l_sub h2 {
		font-size: 3rem;
		margin-bottom: 10px;
	}

	.l_sub p {
		font-size: 1.6rem;
		line-height: 1.5;
	}


	.l_top_btn,
	.l_top_btn-02 {
		height: 40px;
		width: 250px;
		font-size: 1.4rem;
	}

}