@charset "utf-8";
/* CSS Document */

#page_t {
margin-bottom: 80px;
height: 220px;
display: flex;
align-items: center;
background: url("images/page_title.png") no-repeat top center;
background-size: auto 100%;
}

h2 {
width: 90%;
max-width: 1050px;
margin: 0 auto;
color: #FFFFFF;
text-align: center;
font-size: 160%;
}

#contents {
width: 90%;
max-width: 1050px;
margin: 0 auto;
}

section {
margin-bottom: 80px;
}

#contents .sitemap {
display: flex;
justify-content: space-between;
}

#contents .sitemap ul {
width: 47%;
}

#contents .sitemap li {
margin-bottom: 20px;
padding: 15px 20px 15px 40px;
color: #4A725E;
line-height: 160%;
border-radius: 5px;
font-weight: bold;
font-size: 110%;
background: url("images/top_menu_icon.png") no-repeat 15px 20px #F7F3EA;
}

#contents .sitemap li ul {
width: 100%;
margin-top: 10px;
}

#contents .sitemap li li {
margin-bottom: 5px;
padding: 0 0 0 20px;
font-size: 92%;
font-weight: normal;
background: none;
color: #333333;
position: relative;
}

#contents .sitemap li li:before {
content: '';
display: inline-block;
border-style: solid;
border-width: 4px 0 4px 4px;
border-color: transparent transparent transparent #333333;
width: 0;
height: 0;
position: absolute;
top: 50%;
left: 7px;
transform: translateY(-50%);
}

/* タブレットレイアウト : 768 px ～ 959 px*/
@media screen and (max-width:959px)
{

}


/* スマホ設定  768 以下*/
@media screen and (max-width:767px)
{
#page_t {
margin-bottom: 60px;
height: 160px;
}

h2 {
font-size: 130%;
}

#contents .sitemap {
display: block;
}

#contents .sitemap ul {
width: 100%;
}
}
















