@charset "utf-8";
/* CSS Document */

.sitemap_box {
display: flex;
justify-content: space-between;
}

.sitemap_box ul {
width: 46%;
}

.sitemap_box li {
color: #9A7D65;
font-weight: bold;
position: relative;
margin-bottom: 25px;
line-height: 160%;
padding-left: 30px;
}

.sitemap_box li a {
color: #9A7D65;
text-decoration: none;
}

.sitemap_box li:before {
content: "";
background: url(../images/slider_icon.png);
display: inline-block;
width: 22px;
height: 22px;
margin-right: 12px;
position: absolute;
top: 3px;
left: 0;
}

/* タブレットレイアウト : 768 px ～ 959 px*/
@media screen and (max-width:959px)
{



}


/* スマホ設定  768 以下*/
@media screen and (max-width:767px)
{
.sitemap_box {
display: block;
}

.sitemap_box ul {
width: 100%;
}
}








