@charset "utf-8";
/* CSS Document */
.l-container {
	width: 100%;
}
.c-breadcrumb {
	max-width: 128rem;
	margin: 0 auto;
}

#menuWrap.active {
	height: calc(var(--height-ticker) + var(--height-header-primary));
}
#stickyMenu {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	transition: opacity .5s ease, transform .5s ease;
}
#stickyMenu.fixed {
	position: fixed;
	top: calc(var(--height-ticker) + var(--height-header-primary) + 10px);
	left: 0;
	z-index: 2;
	background: #f7f2ed;
	animation: fadeDown .5s ease forwards;
}
@keyframes fadeDown{
	from{
		opacity: 0;
		transform: translateY(10px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}

#stickyMenu li {
	width: 16.3%;
	display: flex;
	position: relative;
}
#stickyMenu li.new:before {
	content: "";
	position: absolute;
	top: -.5rem;
	left: -.5rem;
	width: 4.5rem;
	height: 4.5rem;
	background: url(../images/housecleaning/hc_icon_new.svg) 0px 0px / 100% no-repeat;
	z-index: 1;
}
#stickyMenu li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	font-size: 2.5rem;
	font-weight: bold;
	background: #fff;
	box-sizing: border-box;
	color: #1E66B4;
	padding: 0 0 .5rem;
	transition: all .3s ease;
}
#stickyMenu li a:hover {
	opacity: 1;
	background: #1E66B4;
	color: #fff;
}
#stickyMenu li img.hc_icon01 {
	width: 7.5rem;
	margin: 0 auto .5rem;
}
#stickyMenu li img.hc_icon02 {
	width: 5.5rem;
	margin: 0 auto;
}
#stickyMenu li img.hc_icon03 {
	width: 5.5rem;
	margin: .5rem auto 0;
}
#stickyMenu li img.hc_icon04 {
	width: 4.0rem;
	margin: .5rem auto 0;
}
#stickyMenu li img.hc_icon05 {
	width: 7.0rem;
	margin: .5rem auto 0;
}
#stickyMenu li img.hc_icon06 {
	width: 14.0rem;
	margin: 0 auto .5rem;
}


@media screen and (max-width: 767px) {
.c-breadcrumb {
	max-width: 100rem;
}
#menuWrap.active {
	height: 20rem;
}
#stickyMenu {
	flex-wrap: wrap;
}
#stickyMenu li {
	width: 32.0%;
	margin-bottom: 1rem;
}
#stickyMenu li.new:before {
	top: 0;
	left: 0;
	width: 3.25rem;
	height: 3.25rem;
}
#stickyMenu li a {
	font-size: 1.4rem;
	padding: 0;
}
#stickyMenu li img.hc_icon01 {
	width: 4.5rem;
	margin: 0 auto .5rem;
}
#stickyMenu li img.hc_icon02 {
	width: 3.5rem;
	margin: 0 auto;
}
#stickyMenu li img.hc_icon03 {
	width: 3.5rem;
	margin: .5rem auto 0;
}
#stickyMenu li img.hc_icon04 {
	width: 2.5rem;
	margin: .5rem auto 0;
}
#stickyMenu li img.hc_icon05 {
	width: 4.5rem;
	margin: .5rem auto 0;
}
#stickyMenu li img.hc_icon06 {
	width: 9.0rem;
	margin: 0 auto .5rem;
}

}


/*コンテンツ*/
.main-container {
	margin-top: 5rem;
}


@media screen and (max-width: 767px) {
.main-container {
	margin-top: 2rem;
}
.cms-content {
	z-index: auto;
}
}

