/*----------------------------
top
----------------------------*/
.p-hero-slider__container::after {
    background: none;
}

/*----------------------------
sitemap
----------------------------*/
/* main list */
.p-sitemap__item > a {
    font-size: 1.625rem;
	position: relative;
    transition: all 0.2s ease;
}

.p-sitemap__item > a:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: -35px;
    width: 15px;
    height: 23px;
    margin-top: auto;
    margin-bottom: auto;
    background: url(/assets/sitemap/images/icon-arrow-black.svg) no-repeat 50% 50%;
    content: "";
    transition: all 0.2s ease;
}

.p-sitemap__item > a:hover {
    text-decoration: none;
}

.p-sitemap__item > a:hover:before {
    background: url(/assets/sitemap/images/icon-arrow-red.svg) no-repeat 50% 50%;
}

.p-sitemap__item--small > a {
    font-size: 1.0625rem;
}

.p-sitemap__item--small > a:before {
	right: -25px;
    width: 10px;
    height: 15px;
}

@media screen and (max-width: 1023px) {
    .p-sitemap__item > a {
        font-size: 1.25rem;
    }
    .p-sitemap__item > a:before {
		right: -26px;
        width: 11px;
        height: 18px;
    }
	.p-sitemap__item--small > a {
    	font-size: 1rem;
	}
	.p-sitemap__item--small > a:before {
    	right: -24px;
    	width: 9px;
    	height: 14px;
	}
}

@media screen and (max-width: 767px) {
    .p-sitemap__item > a {
        font-size: 1.125rem;
    }
    .p-sitemap__item > a:before {
        right: -25px;
        width: 10px;
        height: 16px;
    }
    .p-sitemap__item--small > a {
        font-size: 0.875rem;
    }
    .p-sitemap__item--small > a:before {
        right: -18px;
        width: 8px;
        height: 12px;
    }
}

/* sub list */
.p-sitemap__sub-list {
    gap: 20px;
}

.p-sitemap__sub-item {
	flex: 0 0 calc((100% - (20px * 3)) / 4);
	position: relative;
    padding: 0;
}

.p-sitemap__sub-item::after {
    content: none;
}

.p-sitemap__sub-item a {
    display: block;
    color: #b8194f;
    font-size: 1.0625rem;
    font-weight: bold;
    padding: 22px 50px 22px 20px;
    width: 100%;
    height: 100%;
    background: #f7f7f7;
    border-radius: 10px;
	transition: all 0.2s ease;
}

.p-sitemap__sub-item a:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 26px;
    height: 26px;
    margin-top: auto;
    margin-bottom: auto;
    background: url(/assets/smarton/images/icon-arrow-red.svg) #fff no-repeat 50% 50%;
	border-radius: 50%;
    content: "";
}

.p-sitemap__sub-item a:hover {
    color: #fff;
    background: #b8193f;
    text-decoration: none;
}

@media screen and (max-width: 1023px) {
	.p-sitemap__sub-item a {
    	font-size: 1rem;
    	padding: 18px 45px 18px 15px;

	}
	.p-sitemap__sub-item a:before {
    	right: 15px;
    	width: 23px;
    	height: 23px;
	}
}

@media screen and (max-width: 767px) {
	.p-sitemap__sub-list {
    	gap: 10px;
		margin-top: 10px;
	}
	.p-sitemap__sub-item {
    	flex-basis: 100%;
	}
    .p-sitemap__sub-item a {
        font-size: 0.875rem;
        padding: 15px 42px 15px 12px;
    }
	.p-sitemap__sub-item a:before {
        right: 12px;
    }
}