@charset "utf-8";
/* 1カラム フッターサイトマップ */
.ly_sitemapPanel_wrapper {
  background: var(--subBgGreen);
  padding: 20px 0;
  box-sizing: border-box;
  margin-top: 30px;
}

.ly_sitemapPanel {
  max-width: 950px;
  width: 950px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  .ly_sitemapPanel_head {
    display: flex;
    align-items: baseline;

    & + .ly_sitemapPanel_body{
      margin-top: 20px;
    }
  }
  .ly_sitemapPanel_head_icon{

    & + .ly_sitemapPanel_head_txt {
      margin-left: 15px;
    }
  }

  .ly_sitemapPanel_head_txt {
    font-weight: bold;
    font-size: 18px;
  }

  .ly_sitemapPanel_body {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
  }
}

.ly_sitemapList {
  width: calc((100% - 45px) / 4);
  box-sizing: border-box;

    &.ly_sitemapList__child,
    &.ly_sitemapList__grand{
      width: 100%;
      padding-left: 2em;
    }

    & + .ly_sitemapList{
      padding-left:15px;
      border-left: 1px solid #ccc;
      
    }

    .ly_sitemapList_item {
      display: flex;
      width: 100%;
      flex-direction: column;
      box-sizing: border-box;

      & + .ly_sitemapList_item{
        margin-top: 5px;
      }
    }
    .ly_sitemapList_item_box {
      display: flex;

        & + .ly_sitemapList__child{
          margin-top: 5px;
      }
    }
    .ly_sitemapList_item_box_badge {
      display: flex;
      align-items: center;

      & + .ly_sitemapList_item_box_txt{
        margin-left: 10px;
      }
    }
  .ly_sitemapList_item_box_txt{
    color: var(--defaultTxtColor);
    cursor: pointer;

    &:link,
    &:visited,
    &:hover,
    &:active{
      color: var(--defaultTxtColor);
      text-decoration: none;
      cursor: pointer;
    }

    &:hover{
      text-decoration: underline;
    }
  }
}

.ly_sitemapPanel_wrapper + .ly_footer{
  margin-top: 0;
}