@charset "utf-8";

/*----------------------------------------------
	.l_all
---------------------------------------------*/
.l_all {
	overflow: hidden;
}

/*----------------------------------------------
	.l_wrap
---------------------------------------------*/
.l_wrap {
	width: 1260px;
	margin: auto;
}

.l_min_wrap {
	width: 800px;
	margin: auto;
}

@media screen and (max-width: 1280px) {
	.l_wrap {
		width: 95%;
	}
}

@media screen and (max-width: 960px) {
	.l_min_wrap {
		width: 95%;
	}
}

/*----------------------------------------------
	.l_header
---------------------------------------------*/
.l_header {
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
}

.l_header.is_header_rounded {
	top: 20px;
	left: 20px;
	width: calc(100% - 290px);
	padding: 10px 20px;
	border-radius: 100px;
}

.l_header_right {
	display: flex;
	justify-content: flex-end;
}

.l_header_contact a {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 99;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 230px;
	height: 80px;
	background: var(--main-color);
	border-radius: 100px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	font-size: 1.1em;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

@media (max-width: 1280px) {
	.l_header {
		font-size: 0.9em;
	}
}

@media (max-width: 1180px) {
	.l_header.is_header_rounded {
		width: calc(100% - 200px);
		padding: 5px 20px 5px 10px;
	}

	.l_header_contact a {
		width: 150px;
		height: 70px;
	}
}

@media (max-width: 960px) {
	.l_header.is_header_rounded {
		width: calc(100% - 100px);
		height: 60px;
	}

	.l_header_contact {
		display: none;
	}
}

/*  .l_logo
---------------------------------------------*/
.l_logo {
	width: 300px;
	margin-left: 10px;
}

.l_logo a {
	display: flex;
	align-items: center;
}

@media (max-width: 1210px) {
	.l_logo {
		width: 260px;
	}
}

@media (max-width: 1040px) {
	.l_logo {
		width: 200px;
	}
}

/*  .l_nav
---------------------------------------------*/
.l_nav_list {
	display: flex;
	align-items: center;
	height: 80px;
}

.is_header_rounded .l_nav_list {
	height: 60px;
}

.l_nav_list>li {
	margin-left: 30px;
}

.l_nav_list a {
	position: relative;
	text-decoration: none;
	color: var(--bk-color);
}

.l_nav_list a::after {
	position: absolute;
	right: 0;
	bottom: -10px;
	left: 0;
	opacity: 0;
	content: "";
	width: 6px;
	height: 6px;
	background-color: var(--bk-color);
	border-radius: 3px;
	margin: auto;
	transition: all 0.2s ease;
}

.l_nav_list a:hover::after {
	opacity: 1;
}

.l_nav_list .mypage a {
	padding: 10px 20px;
	background: var(--or);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	color: #fff;
}

.is_header_rounded .l_nav_list .mypage a {
	border-radius: 100px;
}

.l_nav_list .mypage a::after,
.l_nav_list .contact a::after {
	content: none;
}

.l_nav_list .contact {
	display: none;
}

.l_nav_contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	margin-left: 30px;
	padding: 0 30px;
	background: var(--key-color);
	color: #fff;
	text-decoration: none;
	text-align: center;
}

.menu-checkbox {
	display: none;
}

@media (max-width: 1400px) {
	.l_nav_list>li {
		margin-left: 10px;
	}
}

@media (max-width: 960px) {
	.l_nav_list {
		flex-direction: column;
	}

	.l_nav_list>li {
		margin-left: 0;
	}

	.l_nav_list a {
		color: var(--bk-color);
	}

	.l_nav_list .contact {
		display: block;
	}

	.l_nav_list .contact a {
		padding: 10px 20px;
		background: var(--main-color);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		color: #fff;
	}

	.is_header_rounded .l_nav_list .contact a {
		border-radius: 100px;
	}

	.drawer-menu {
		position: fixed;
		top: 0;
		right: 0;
		height: 100%;
		width: 0;
		transform: translateX(calc(100% + 100px));
		transition: all 0.5s ease-in-out 0s;
		background-color: #fff;
		z-index: 20;
	}

	.drawer-menu-list {
		margin-top: 100px;
	}

	.drawer-menu-item-link {
		display: block;
		text-align: center;
		color: #fff;
		margin-top: 20px;
	}

	.menu-checkbox:checked~.drawer-menu {
		width: 100%;
		transform: translateX(0);
	}

	.drawer-icon {
		cursor: pointer;
		position: fixed;
		top: 48px;
		right: 60px;
		justify-content: center;
		align-items: center;
		z-index: 30;
	}

	.drawer-icon span,
	.drawer-icon span:before,
	.drawer-icon span:after {
		content: "";
		display: block;
		height: 4px;
		width: 40px;
		border-radius: 3px;
		background-color: var(--main-color);
		position: absolute;
		transition: all 0.5s ease-in-out 0s;
	}

	.drawer-icon-02 span,
	.drawer-icon-02 span:before,
	.drawer-icon-02 span:after {
		background-color: var(--main-color);
		box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	}

	.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: var(--main-color);
	}

	.menu-checkbox:checked~.drawer-icon span::after {
		top: 0;
		transform: rotate(45deg);
		background-color: var(--main-color);
	}

	.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;
	}
}

/*----------------------------------------------
	.l_title
---------------------------------------------*/
.l_title {
	padding: 180px 0 80px;
	background-image: url(../images/title_bg.jpg);
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	color: var(--main-color);
	text-align: center;
}

.l_pagettl {
	font-size: 2.2em;
}

@media (max-width: 1180px) {
	.l_title {
		padding: 160px 0 60px;
	}
}

@media (max-width: 960px) {
	.l_title {
		padding: 140px 0 60px;
	}
}

@media (max-width: 768px) {
	.l_pagettl {
		font-size: 2em;
	}
}

/*----------------------------------------------
	.l_pagetop　必要なら復活
---------------------------------------------*/
.l_pagetop {
	position: sticky;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	margin: -50px 10px 0 auto;
	background: var(--main-color);
	border-radius: 50px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
	text-align: center;
	transform: translateY(-10px);
	cursor: pointer;
}

.l_pagetop img {
	width: 20px;
	transform: rotate(180deg);
}

/*----------------------------------------------
	.l_footer
---------------------------------------------*/
.l_footer {
	position: relative;
	background-color: var(--main-color);
	color: #fff;
	padding: 30px 0;
	font-size: 0.8em;
}

.l_footer .l_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.l_footer_link a {
	color: #fff;
}

.l_footer_link a:hover {
	text-decoration: none;
}

@media (max-width: 768px) {
	.l_footer {
		padding: 15px 0;
	}
}