@charset "UTF-8";

.item-sitemap-contents{
	margin-top: 20px;
    padding: 0px 40px;
}

.item-sitemap-contents h2{
    border-bottom: 2px solid #f4f2ee;
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 15px;
    position: relative;
}

.item-sitemap-contents h2:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    width: 150px;
    height: 2px;
    background: #7c7c7c;
}

	.item-sitemap-contents div{
	    display: flex;
	    flex-wrap: wrap;
	    align-items: flex-start;
	    margin-right: -20px;
	}
		.item-sitemap-contents ul{
			margin-right: 20px;
		    width: calc(33.3333333333% - 20px);
			margin-bottom: 8px;
		}
			.item-sitemap-contents li{
			    margin-right: 0;
			    width: 100%;
				margin-bottom: 8px;
			}
				.item-sitemap-contents li a{
					color: #093475;
				    display: flex;
				    align-items: center;
				    font-size: 16px;
					text-decoration: none;
				}
				.item-sitemap-contents li a:hover{
					text-decoration: underline;
				}
				
				.item-sitemap-contents li a:after{
				    content: "";
				    width: 7px;
				    height: 11px;
				    background: no-repeat center/auto;
					background: url("../img/common/arrow-sitemap_sml.svg") no-repeat center;
				    margin-left: 10px;
				    transition: all .3s ease;
				    flex-shrink: 0
				}