/* ----------------
サンプルカラー
ブルー: #22559D;
------------------ */

.sitemaplist01 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.sitemaplist01__item {
  
}

.sitemaplist01__link {
  color: #22559D;
  font-size: 1.2em;
  font-weight: bold;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 5px;
  margin-left: 35px;
  position: relative;
  transition: .2s all ease-in-out;
}
.sitemaplist01__link::before {
  content: '';
  position: absolute;
  top: 51%;
  left: -35px;
  transform: translate(0, -50%);
  width: 18px;
  height: 18px;
  background-image: url('../img/sitemap/right_arrow_01.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.sitemaplist01__link:hover {
  opacity: .6;
}

/* 2カラム用flexbox */
.sitemap-flexbox {
  display: flex;
  justify-content: center;
}

.sitemap-flexbox .sitemaplist01__item {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .sitemap-flexbox {
    display: block;
  }

  .sitemap-flexbox .sitemaplist01__item {
    width: 100%;
  }
}


.sitemaplist02 {
  margin-left: 20px;
  margin-bottom: 5px;
  width: calc(50% - 35px);
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .sitemaplist02 {
    width: calc(100% - 35px);
    margin-left: 10px;
  }
}

.sitemaplist02__item {
  
}

.sitemaplist02__link {
  color: #22559D;
  font-weight: bold;
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 35px;
  margin-bottom: 10px;
  transition: .2s all ease-in-out;
  position: relative;
}
.sitemaplist02__link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translate(0, -50%);
  width: 25px;
  height: 25px;
  background-image: url('../img/sitemap/right_arrow_02.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.sitemaplist02__link:hover {
  opacity: .6;
}

.sitemaplist03 {
  margin-left: 25px;
}

.sitemaplist03__item {
  
}

.sitemaplist03__link {
  color: #22559D;
  display: inline-block;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-left: 35px;
  margin-bottom: 10px;
  transition: .2s all ease-in-out;
  position: relative;
}
.sitemaplist03__link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translate(0, -50%);
  width: 25px;
  height: 25px;
  background-image: url('../img/sitemap/right_arrow_02.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.sitemaplist03__link:hover {
  opacity: .6;
}

