@charset "utf-8";
/*----------------------------------------------
	.l_all
---------------------------------------------*/
.l_all {
	position: relative;
	overflow: hidden;
	z-index: 2;
}
/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
	width: 1000px;
	margin: auto;
}
.l_wrap_md {
	width: 900px;
	margin: auto;
}
.l_wrap_sm {
	width: 690px;
	margin: auto;
}
@media screen and (max-width: 1280px) {
	.l_wrap,
	.l_wrap_md,
	.l_wrap_sm {
		width: 90%;
	}
	.l_wrap_md .l_wrap_sm {
		width: 100%;
	}
}
/*----------------------------------------------
	.l_header
---------------------------------------------*/
.l_header {
	padding: 25px 0 30px;
	text-align: center;
}
/*  .l_logo
---------------------------------------------*/
.l_logo {
	line-height: 1;
	font-size: 1em;
}
.l_logo img {
	max-width: calc(100% - 160px);
}
@media screen and (max-width: 768px) {
	.l_header {
		padding: 20px 0;
	}
}

/*----------------------------------------------
	.l_nav
---------------------------------------------*/
.l_nav {
	padding: 20px 0;
	font-size: 1.1em;
}
.l_nav_list {
	display: flex;
	justify-content: center;
}
.l_nav_list > li {
	position: relative;
	margin: 0 10px;
}
.l_nav_list > li:not(:last-child)::after {
	position: absolute;
	top: 0;
	right: -10px;
	bottom: 0;
	content: "";
	width: 1px;
	height: 60%;
	margin: auto;
	background: var(--bk-color);
}
.l_nav_list a {
	position: relative;
	text-decoration: none;
	color: var(--main-color);
	font-weight: 600;
}
.l_nav_list a::after {
	position: absolute;
	top: -10px;
	right: 0;
	left: 0;
	opacity: 0;
	content: "";
	width: 6px;
	height: 6px;
	background-color: #222;
	border-radius: 3px;
	margin: auto;
	transition: all 0.2s ease;
}
.l_nav_list .current a::after {
	opacity: 1;
	background-color: var(--main-color);
}
.l_nav_list a:hover::after {
	opacity: 1;
}
.menu-checkbox {
	display: none;
}
@media (max-width: 768px) {
	.l_nav_list {
		flex-direction: column;
	}
	.l_nav_list a {
		color: #fff;
	}
	.l_nav_list a::after,
	.l_nav_list .current a::after {
		top: -5px;
		background-color: #fff;
	}
	.drawer-menu {
		position: fixed;
		top: 0;
		right: 0;
		height: 100%;
		width: 100%;
		transform: translateX(100%);
		transition: all 0.5s ease-in-out 0s;
		background-color: rgba(var(--key-rgb-color), 0.9);
		z-index: 20;
	}
	.drawer-menu-list {
		margin-top: 100px;
	}
	.drawer-menu-item-link {
		display: block;
		text-align: center;
		font-size: 20px;
		color: #fff;
		margin-top: 20px;
	}
	.menu-checkbox:checked ~ .drawer-menu {
		transform: translateX(0);
	}
	.drawer-icon {
		cursor: pointer;
		position: fixed;
		top: 36px;
		right: 60px;
		justify-content: center;
		align-items: center;
		z-index: 30;
		background-color: #fff;
	}
	.drawer-icon span,
	.drawer-icon span:before,
	.drawer-icon span:after {
		content: "";
		display: block;
		height: 3px;
		width: 40px;
		border-radius: 3px;
		background-color: var(--key-color);
		position: absolute;
		transition: all 0.5s ease-in-out 0s;
	}
	.drawer-icon span::before {
		bottom: 12px;
	}
	.drawer-icon span::after {
		top: 12px;
	}
	.menu-checkbox:checked ~ .drawer-icon {
		background-color: #3584bb;
	}
	.menu-checkbox:checked ~ .drawer-icon span {
		background-color: rgba(255, 255, 255, 0);
	}
	.menu-checkbox:checked ~ .drawer-icon span::before {
		bottom: 0;
		transform: rotate(-45deg);
		background-color: #fff;
	}
	.menu-checkbox:checked ~ .drawer-icon span::after {
		top: 0;
		transform: rotate(45deg);
		background-color: #fff;
	}
	.menu-background {
		display: none;
		position: fixed;
		z-index: 10;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
		opacity: 0;
		transition: all 0.5s ease-in-out 0s;
	}
	.menu-checkbox:checked ~ .menu-background {
		display: block;
		opacity: 0.3;
	}
}
@media (max-width: 460px) {
	.drawer-icon {
		top: 30px;
		right: 50px;
	}
}
/*----------------------------------------------
	.l_main
---------------------------------------------*/
.l_main {
	padding: 120px 0;
}
@media screen and (max-width: 768px) {
	.l_main {
		padding: 80px 0;
	}
}
@media screen and (max-width: 640px) {
	.l_main {
		padding: 40px 0;
	}
}
/*----------------------------------------------
	.l_page_head
---------------------------------------------*/
.l_page_head {
	position: relative;
}
.l_page_ttl img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto;
	height: 60px;
	max-height: 40%;
	margin: auto;
}
.l_page_bg img {
	width: 100%;
}
@media screen and (max-width: 640px) {
	.l_page_bg img {
		height: 100px;
		object-fit: cover;
	}
}
/*----------------------------------------------
	.l_pagetop　必要なら復活
---------------------------------------------*/
.l_pagetop {
	position: fixed;
	right: 10px;
	bottom: 10px;
	width: 60px;
	height: 60px;
}
.l_pagetop img {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 768px) {
	.l_pagetop {
		width: 40px;
		height: 40px;
	}
}
/*----------------------------------------------
	.l_footer
---------------------------------------------*/
.l_footer {
	background-color: var(--bw-color);
	padding: 60px 0;
	text-align: center;
}
.l_footer a {
	color: var(--bk-color);
}
.l_footer_logo {
	font-size: 1.33em;
}
.l_footer_nav {
	display: flex;
	justify-content: center;
	margin-top: 5px;
}
.l_footer_nav li {
	position: relative;
	margin: 0 10px;
}
.l_footer_nav li:not(:last-child)::after {
	position: absolute;
	top: 0;
	right: -10px;
	bottom: 0;
	content: "";
	width: 1px;
	height: 50%;
	margin: auto;
	background: #fff;
}
/*  .l_copyright
---------------------------------------------*/
.l_copyright {
	padding: 0 0 10px;
	background-color: #e3d5c9;
	font-size: 0.67em;
	color: var(--main-color);
	text-align: center;
}
@media (max-width: 768px) {
	.l_footer {
		padding: 40px 0;
	}
}
@media (max-width: 640px) {
	.l_footer {
		padding: 20px 0;
	}
	.l_footer_nav {
		display: none;
	}
}
