@charset "utf-8";
/*----------------------------------------------
	.l_all
---------------------------------------------*/
.l_all {
	overflow: hidden;
}
/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
	width: 1260px;
	margin: auto;
}
@media screen and (max-width: 1280px) {
	.l_wrap {
		width: 95%;
	}
}
/*----------------------------------------------
	.l_header
---------------------------------------------*/
.l_header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 40px;
}
/*  .l_logo
---------------------------------------------*/
.l_logo {
	position: relative;
	z-index: 2;
	width: 15%;
	min-width: 90px;
	max-width: 160px;
}
@media (max-width: 768px) {
	.l_header {
		padding: 20px;
	}
}

/*----------------------------------------------
	.l_page
---------------------------------------------*/
.l_page_title {
	margin: 60px 0;
	font-weight: 900;
	text-align: center;
}
.l_page_cont .wp-block-button {
	max-width: 400px;
	width: 80%;
}
.l_page_cont .wp-block-button a {
	position: relative;
	display: block;
	padding: 0.5em 1em;
	background: transparent;
	border-color: var(--main-color);
	border-width: 5px;
	border-style: solid;
	border-radius: 100px;
	color: var(--bk-color);
	font-weight: 900;
	text-decoration: none;
	transition: 0.4s;
}
.l_page_cont .wp-block-button a::before,
.l_page_cont .wp-block-button a::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 100px;
	transition: 0.4s;
}
.l_page_cont .wp-block-button a::before {
	z-index: -1;
	background: linear-gradient(#fff, var(--main-color));
}
.l_page_cont .wp-block-button a::after {
	z-index: -2;
	background: var(--main-color);
	transform: scale(1.02, 1.04);
}
.l_page_cont .wp-block-button a:hover::before {
	opacity: 0;
}
@media (max-width: 640px) {
	.l_page_cont .wp-block-button a {
		border-width: 2px;
		font-size: 1.4em;
	}
}
/*----------------------------------------------
	.l_pagetop
---------------------------------------------*/
.l_pagetop {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 10;
}
.l_pagetop a::before,
.l_pagetop a::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	aspect-ratio: 1 / cos(30deg);
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	margin: auto;
}
.l_pagetop a::before {
	width: 22px;
	background: var(--bk-color);
}
.l_pagetop a::after {
	width: 20px;
	background: var(--key-color);
}
.l_pagetop a {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	background: var(--main-color);
	border: 1px solid var(--bk-color);
	border-radius: 60px;
	box-shadow: 3px 3px 0 var(--key-color);
	transition: all 0.4s ease;
}
.l_pagetop a:hover {
	opacity: 0.5;
}
/*----------------------------------------------
	.l_footer
---------------------------------------------*/
.l_footer {
	padding: 60px 0;
	background-color: var(--bk-color);
	font-size: 0.8em;
	color: #fff;
	text-align: center;
}
.l_footer_logo img {
	width: 15%;
	min-width: 80px;
	max-width: 140px;
}
.l_footer_link {
	margin: 20px 0 40px;
}
.l_footer_link a {
	color: #fff;
}
.l_footer_link a:hover {
	text-decoration: none;
}
@media (max-width: 640px) {
	.l_footer {
		padding: 30px 0;
	}
	.l_footer_link {
		margin: 10px 0 20px;
	}
}
