@charset "utf-8";
/* デフォルトは表示（通常アクセス時は何もしない） */
.l_wrapper {
	opacity: 1;
}
#l_loader {
	display: none; /* 通常時は消しておく */
}

/* ハッシュがある時だけJSでこのクラスをhtml等に付与する */
.is-hash-access .l_wrapper {
	opacity: 0;
}
.is-hash-access #l_loader {
	display: flex; /* ハッシュがある時だけ表示 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 9999;
	justify-content: center;
	align-items: center;
}

/* 読み込み完了後のアニメーション */
.is-hash-access .is-loaded .l_wrapper {
	opacity: 1;
	transition: opacity 0.5s ease;
}
.is-hash-access #l_loader.is-hide {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}
/*----------------------------------------------
	.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 {
	display: flex;
	position: fixed;
	top: 20px;
	right: 0;
	left: 0;
	z-index: 99;
	width: calc(100% - 40px);
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 10px;
	justify-content: space-between;
	align-items: center;
}
/*  .l_logo
---------------------------------------------*/
.l_logo {
	width: auto;
	margin-left: 20px;
	font-size: 0;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 20px;
	
	font-size: 1.125em;
	line-height: auto;
	font-weight: 500;
	color: var(--bk-color);
	transition: all .5s ease;
}
.l_logo:hover {
	opacity: .6;
}
/*  .l_nav
---------------------------------------------*/
.l_nav {
	font-size: 0.9em;
}
.l_nav_list {
	display: flex;
}
.l_nav_list > li {
	margin-left: 40px;
}
.l_nav_list a {
	position: relative;
	display: block;
	padding: 1.2em 0 1em;
	color: var(--bk-color);
	transition: 0.3s;
}
.l_nav_list a:hover {
	opacity: 0.5;
}
.l_nav_list a.l_nav_entry {
	padding: 1.2em 2em 1em;
	background: var(--key-color);
	border-radius: 0 10px 10px 0;
	color: #fff;
	font-weight: 600;
}
.menu-checkbox {
	display: none;
}
@media screen and (max-width: 1280px) {
	.l_nav_list > li {
		margin-left: 30px;
	}
}
@media screen and (max-width: 1080px) {
	.l_nav_list > li {
		margin-left: 20px;
	}
}
@media screen and (max-width: 960px) {
	.l_header {
		padding: 10px;
	}
	.l_logo {
		margin-left: 0;
	}
	.l_nav {
		font-size: 1em;
	}
	.l_nav_list {
		flex-direction: column;
	}
	.l_nav_list > li {
		margin-left: 0;
	}
	.l_nav_list a.l_nav_entry {
		border-radius: 0;
	}
	.drawer-menu {
		position: fixed;
		top: -20px;
		left: calc(100% + 20px);
		height: 100vh;
		width: 100vw;
		background-color: rgba(var(--rgb-main-color), 0.95);
		z-index: 20;
		transition: all 0.5s ease-in-out 0s;
	}
	.drawer-menu-list {
		margin-top: 100px;
	}
	.drawer-menu-item {
		border-top: 1px solid rgba(255, 255, 255, 0.5);
	}
	.drawer-menu-item-link {
		display: block;
		padding: 1em;
		text-align: center;
		color: #fff !important;
	}
	.menu-checkbox:checked ~ .drawer-menu {
		left: -20px;
	}
	.drawer-icon {
		cursor: pointer;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		justify-content: center;
		align-items: center;
		z-index: 30;
		width: 70px;
		height: 100%;
		margin: auto;
		background: var(--key-color);
		border-radius: 0 10px 10px 0;
		transition: 0.5s;
	}
	.drawer-icon span,
	.drawer-icon span:before,
	.drawer-icon span:after {
		content: "";
		display: block;
		height: 3px;
		width: 30px;
		background-color: #fff;
		position: absolute;
		inset: 0;
		margin: auto;
		transition: all 0.5s ease-in-out 0s;
	}
	.drawer-icon span::before {
		top: initial;
		bottom: 10px;
	}
	.drawer-icon span::after {
		top: 10px;
		bottom: initial;
	}
	.menu-checkbox:checked ~ .drawer-icon {
		background: transparent;
	}
	.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-checkbox:checked ~ .menu-background {
		display: block;
		opacity: 0.3;
	}
}

@media screen and (max-width: 640px) {
	.l_header {
		top: 10px;
		width: calc(100% - 20px);
		border-radius: 5px;
	}
	.drawer-icon {
		border-radius: 0 5px 5px 0;
	}
	.drawer-menu {
		top: -10px;
	}
	.menu-checkbox:checked ~ .drawer-menu {
		left: -10px;
	}
}

@media screen and (max-width: 400px) {
	.l_logo span {
		display: none;
	}
}
/*----------------------------------------------
	.l_page
---------------------------------------------*/
.l_page_head {
	padding: 180px 0 100px;
	background: var(--main-color);
}
.l_page_ttl {
	font-size: 2em;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 640px) {
	.l_page_head {
		padding: 120px 0 60px;
	}
	.l_page_ttl {
		font-size: 1.4em;
	}
}
/*----------------------------------------------
	.l_pagetop　必要なら復活
---------------------------------------------*/
.l_pagetop {
	position: fixed;
	z-index: 3;
	right: 10px;
	bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	background: rgba(var(--rgb-key-color), 1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 60px;
	transition: background-color 0.3s;
	cursor: pointer;
}
.l_pagetop::before,
.l_pagetop::after {
	position: absolute;
	inset: 0;
	content: "";
	width: 16px;
	height: 2px;
	margin: auto;
	background: #fff;
}
.l_pagetop::before {
	left: 10px;
	transform: rotate(45deg);
}
.l_pagetop::after {
	right: 10px;
	transform: rotate(-45deg);
}
.l_pagetop:hover {
	background: rgba(var(--rgb-key-color), 0.5);
}
@media screen and (max-width: 640px) {
	.l_pagetop {
		position: fixed;
		width: 40px;
		height: 40px;
	}
	.l_pagetop::before,
	.l_pagetop::after {
		width: 10px;
	}
	.l_pagetop::before {
		left: 6px;
	}
	.l_pagetop::after {
		right: 6px;
	}
}
/*----------------------------------------------
	.l_footer
---------------------------------------------*/
.l_footer {
	background-color: var(--bk-color);
	color: #fff;
}
.l_footer a {
	color: #fff;
	transition: 0.3s;
}
.l_footer a:hover {
	opacity: 0.5;
}
.l_f_top,
.l_f_btm {
	display: flex;
	justify-content: space-between;
}
.l_f_top {
	align-items: end;
}
.l_f_btm {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.l_f_logo {
	width: 100%;
	max-width: fit-content;
	margin-bottom: 30px;
}
.l_f_name {
	font-weight: 900;
}
.l_f_links {
	display: flex;
	justify-content: flex-end;
	font-size: 0.9em;
}
.l_f_links li {
	margin-left: 30px;
}
.l_f_btm {
	font-size: 0.8em;
}
/*  .l_copyright
---------------------------------------------*/
.l_copyright {
	text-align: right;
}
@media screen and (max-width: 960px) {
	.l_f_links {
		display: none;
	}
}
@media screen and (max-width: 640px) {
	.l_f_top {
		justify-content: center;
	}
	.l_f_logo {
		width: 40vw;
		margin: auto;
	}
	.l_f_name {
		text-align: center;
	}
}
