@charset "utf-8";

/*----------------------------------------------
	ヘッダー
---------------------------------------------*/
.l_header {
	width: calc(100% - 20px);
	height: 80px;
	padding: 15px 20px 15px 40px;
	background-color: var(--wh);
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.2);
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 99;
	border-radius: 50px;
	overflow: hidden;
}

.l_header_logo {
	height: 100%;
	width: auto;
}

.l_nav {
	display: flex;
	align-items: center;
	gap: 40px;
	height: 100%;
}

.l_nav_ul {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 40px;
}

.l_nav_list {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.l_nav_link {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bk);
	transition: .3s;
}

.l_nav_link:hover {
	color: var(--dpa);
}

.l_nav_contact {
	padding: 10px 10px 10px 20px;
	background: var(--navy);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 35px;
	color: var(--wh);
	border-radius: 50px;
	transition: .3s;
}

.l_nav_contact:hover {
	background: var(--dpa);
}

.l_nav_arrow {
	width: 30px;
	height: 30px;
}

.l_sptab_burger {
	display: none;
}


@media (max-width: 1150px) {

	.l_header {
		height: 60px;
		padding: 10px 10px 10px 20px;
		overflow: unset;
	}

	.l_nav {
		padding: 40px 0 30px;
		position: absolute;
		background-color: rgba(255, 255, 255, 0.9);
		box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
		border-radius: 20px;
		width: calc(100%);
		height: auto;
		top: 70px;
		left: 0px;
		transform: translateX(calc(100% + 20px));
		transition: .3s;
		flex-direction: column;
		justify-content: center;
		gap: 20px;
		z-index: -1;
		overflow: hidden;
	}

	.active .l_nav {
		transform: translateX(0);
	}

	.l_nav_ul {
		flex-direction: column;
		gap: 20px;
	}

	.l_nav_link {
		padding: 10px 40px;
		font-size: 1.6rem;
	}

	.l_nav_contact {
		margin-bottom: 20px;
		font-size: 1.6rem;
		padding: 10px 10px 10px 20px;
		border-radius: 30px;
	}

	.l_sptab_burger {
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		background: var(--navy);
		cursor: pointer;
	}

	.l_sptab_burger-top,
	.l_sptab_burger-middle,
	.l_sptab_burger-bottom {
		width: 20px;
		height: 2px;
		border-radius: 2px;
		position: absolute;
		transition: .3s;
	}

	.l_sptab_burger-top {
		background: var(--wh);
		transform: translateY(-7px);
	}

	.l_sptab_burger-middle {
		background: var(--wh);
	}

	.l_sptab_burger-bottom {
		background: var(--wh);
		transform: translateY(7px);
	}

	.active .l_sptab_burger-top {
		transform: rotate(45deg);
	}

	.active .l_sptab_burger-middle {
		opacity: 0;
	}

	.active .l_sptab_burger-bottom {
		transform: rotate(-45deg);
	}
}

/*----------------------------------------------
	l_topbtn
---------------------------------------------*/
.l_topbtn {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 999;
	transition: .3s;
	transform: translateY(100px);
}

.l_topbtn.is_active {
	transform: translateY(0);
}

.l_topbtn_link {
	background: var(--wh);
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
	border-radius: 50%;
}

.l_top_arrow {
	vertical-align: middle;
	color: var(--navy);
	line-height: 1;
	width: 1em;
	height: 1em;
	border-radius: 1px;
	border: 3px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateY(20%) rotate(-45deg);
}



.l_topbtn_link:hover {
	filter: brightness(120%);
}

@media (max-width: 1160px) {
	.l_topbtn_link {
		width: 40px;
		height: 40px;
	}

	.l_topbtn_link:hover {
		filter: none;
	}
}

/*----------------------------------------------
	お問い合わせ
---------------------------------------------*/
.l_contact {
	padding: 80px 0;
	border-radius: 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.l_contact_btn {
	width: 480px;
	height: 80px;
	background: var(--wh);
	box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.5);
	border-radius: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	font-size: 2.8rem;
	transition: .3s;
}

.l_contact_btn:hover {
	padding: 10px;
	background: #CCD6F8;
}

.l_contact_img-01 {
	width: 260px;
	height: auto;
	position: absolute;
	left: 80px;
	bottom: -40px;
	animation: contact_anime-01 2s infinite;
}

.l_contact_img-02 {
	width: 225px;
	height: auto;
	position: absolute;
	right: 100px;
	top: 40px;
	animation: contact_anime-02 2s infinite;
}

@keyframes contact_anime-01 {
	0% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(2deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

@keyframes contact_anime-02 {
	0% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(-2deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

@media (max-width: 1160px) {
	.l_contact_btn {
		width: 400px;
		height: 60px;
		font-size: 2.4rem;
	}

	.l_contact_img-01 {
		width: 140px;
		left: -20px;
		bottom: -20px;
	}

	.l_contact_img-02 {
		width: 125px;
		right: -10px;
		top: 20px;
	}
}

@media (max-width: 500px) {
	.l_contact {
		padding: 40px 0 120px;
		border-radius: 10px;
	}

	.l_contact_btn {
		width: 260px;
		height: 40px;
		font-size: 1.6rem;
	}

	.l_contact_arrow {
		width: 20px;
		height: 20px;
	}

	.l_contact_img-01 {
		width: 110px;
		left: -10px;
		bottom: -35px;
	}

	.l_contact_img-02 {
		width: 105px;
		right: -10px;
		top: 20px;
	}
}

/*----------------------------------------------
	フッター
---------------------------------------------*/
.l_footer {
	padding: 80px 0 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.l_footer_btn:hover .l_footer_btn_flex {
	transform: translateY(5px);
	background: var(--ye);
}

.l_footer_copy {
	font-size: 1.4rem;
}

@media (max-width: 500px) {
	.l_footer {
		padding: 40px 0 20px;
	}

	.l_footer_copy {
		font-size: 1rem;
	}
}

/*----------------------------------------------
	パンくず
---------------------------------------------*/
.l_bread {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
}

.l_bread a {
	color: var(--navy);
	transition: .3s;
}

.l_bread li {
	color: var(--navy);
}

.l_bread a:hover {
	color: var(--dpa);
}

.l_bread li+li:before {
	content: "＞";
	color: var(--navy);
	margin: .5em;
}