@charset "utf-8";
/*----------------------------------------------
	.l_all
---------------------------------------------*/
.l_all {
	overflow: hidden;
}
/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
	width: 1260px;
	margin: auto;
}
.l_wrap_sm {
	width: 900px;
	margin: auto;
}
@media screen and (max-width: 1280px) {
	.l_wrap {
		width: 95%;
	}
}
@media screen and (max-width: 960px) {
	.l_wrap_sm {
		width: 95%;
	}
}
/*----------------------------------------------
	.l_header
---------------------------------------------*/
.l_header {
	position: absolute;
	justify-content: space-between;
	display: flex;
	align-items: center;
	top: 0;
	right: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	max-width: 1920px;
	margin: auto;
	padding: 40px 40px 0;
}
.l_header.shadow {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/*  .l_logo
---------------------------------------------*/
.l_logo {
	width: 20%;
	max-width: 200px;
}
@media screen and (max-width: 1024px) {
	.l_logo {
		max-width: 120px;
	}
}
@media screen and (max-width: 640px) {
	.l_logo {
		width: 25%;
		max-width: 90px;
	}
}

/*----------------------------------------------
	.l_page_ttl
---------------------------------------------*/
.l_page_ttl {
	width: calc(100% - 40px);
	margin: 0 auto;
	padding: 140px 100px 40px;
	background: linear-gradient(135deg, var(--grad-bl-pk));
	border-radius: 40px;
	color: #fff;
	text-align: center;
	line-height: 1.4;
}
.l_page_ttl h1 {
	font-size: 2em;
}
@media screen and (max-width: 640px) {
	.l_page_ttl {
		padding: 100px 40px 10px;
	}
	.l_page_ttl h1 {
		font-size: 1.4em;
	}
}
/*----------------------------------------------
	.l_pagetop　必要なら復活
---------------------------------------------*/
.l_pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99;
	text-align: center;
}
.l_pagetop a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border-radius: 60px;
	color: #fff;
	font-size: 0.8em;
	text-decoration: none;
}
.l_pagetop a::before,
.l_pagetop a::after {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 60px;
	transition: 0.2s;
}
.l_pagetop a::before {
	background: var(--bk-color);
}
.l_pagetop a::after {
	background: linear-gradient(90deg, var(--grad-main));
}
.l_pagetop a:hover::before {
	top: 5px;
	left: 5px;
}
/*----------------------------------------------
	.l_footer
---------------------------------------------*/
.l_footer {
	background-color: var(--bk-color);
	padding: 40px 0;
	color: #fff;
	text-align: center;
}
.l_footer a {
	color: #fff;
}
.l_f_nav {
	margin: 10px 0 30px;
	font-size: 0.8em;
}
/*  .l_copyright
---------------------------------------------*/
.l_copyright {
	font-size: 0.8em;
	text-align: center;
}
@media (max-width: 1024px) {
	.l_f_logo img {
		max-width: 120px;
	}
}
@media (max-width: 768px) {
	.l_f_logo img {
		max-width: 90px;
	}
}
@media (max-width: 640px) {
	.l_footer {
		padding: 30px 0;
	}
	.l_f_nav {
		margin: 10px 0 20px;
	}
}
