.l-sticky-menu {
	position: sticky;
	bottom: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: var(--color-white);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
}
@media screen and (max-width: 768px) {
	.l-sticky-menu {
		background-color: var(--color-black)
	}
}
.l-sticky-menu__inner {
	max-width: 1020px;
	height: 58px;
	padding: 15px 20px;
	margin: 0 auto;
	display: flex;
    justify-content: space-between
}
@media screen and (max-width: 768px) {
	.l-sticky-menu__inner {
		height: auto;
		padding: 0 0 5px;
		display: block;
	}
}
.l-sticky-menu__nav {
	display: flex;
	justify-content: center;
	height: 100%;
	padding: 0;
	margin: 0 -12px;
	list-style: none;
	gap: 25px
}
@media screen and (max-width: 768px) {
	.l-sticky-menu__nav {
		justify-content: space-between;
		max-width: 375px;
		padding: 0 20px;
		margin: 0 auto;
		gap: 30px
	}
	.l-sticky-menu__nav--col5 {
		justify-content: center;
		padding: 10px 0 0
	}
}
.l-sticky-menu__item_hedding {
	display: flex;
	align-items: center;
	transition: .4s ease
}
.l-sticky-menu__item_hedding > p {
	font-family: "Hiragino Kaku Gothic W4 JIS2004", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", Meiryo, sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--color-black);
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.l-sticky-menu__item_hedding {
		background: var(--color-white) url(/customer/common2024/images/icon_arrow_right.svg) no-repeat right 20px center;
		background-size: auto 12px;
		padding: 10px 20px
	}
}
@media(hover: hover) {
	.l-sticky-menu__item_hedding:hover {
		opacity: .7
	}
}
.l-sticky-menu__item {
	padding: 0 12px;
	text-align: center;
	min-width: 175px
}
.l-sticky-menu__item:last-of-type {
	min-width: 140px;
}
@media screen and (max-width: 768px) {
	.l-sticky-menu__item {
		padding: 0 10px;
		min-width: auto;
		width: auto
	}
	.l-sticky-menu__item--narrow {
		padding: 0 6px
	}
	.l-sticky-menu__nav--col5 .l-sticky-menu__item {
		padding: 0 2px
	}
	.l-sticky-menu__nav--col5 .l-sticky-menu__item--narrow {
		padding: 0 2px
	}
}
@media screen and (max-width: 768px) {
	.l-sticky-menu__item:last-of-type {
		min-width: auto;
	}
	.l-sticky-menu__item p {
		line-height: 1.2;
	}
}
.l-sticky-menu__link {
	display: flex;
	align-items: center;
	transition: opacity .4s ease
}
@media(hover: hover) {
	.l-sticky-menu__link:hover {
		opacity: .7
	}
}
@media screen and (max-width: 768px) {
	.l-sticky-menu__link {
		flex-direction: column;
	}
}
.l-sticky-menu__link > img {
	max-height: 30px;
	margin-right: 10px
}
.l-sticky-menu__link > p {
	font-family: "Hiragino Kaku Gothic W4 JIS2004", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", Meiryo, sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--color-black);
	text-decoration: none;
}
@media screen and (max-width: 768px) {
	.l-sticky-menu__link > img {
		max-height: 28px;
		margin-right: 0;
		margin-bottom: 4px
	}
	.l-sticky-menu__nav--col5 .l-sticky-menu__link > p {
		transform: scale(0.9);
		color: var(--color-white);
		font-size: 9px;
	}
	.l-sticky-menu__icon--pc {
		display: none
	}
}
@media screen and (min-width: 769px) {
	.l-sticky-menu__icon--sp {
		display: none
	}
}

.l-sticky-menu__toTop {
	background-color: #454545;
	position: absolute;
	top: 9px;
	right: 20px;
	width: 40px;
	height: 40px;
	transition: .4s ease;
}
  
@media screen and (max-width: 769px) {
	.l-sticky-menu__toTop {
	  position: absolute;
	  top: -45px;
	  width: 30px;
	  height: 30px;
	}
}
@media(hover: hover) {
	.l-sticky-menu__toTop:hover {
		opacity: .7
	}
}
.l-sticky-menu__toTop > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	transition: 4s ease;
}
.l-sticky-menu__toTop > a > img {
	width: 50%;
} 