@charset "UTF-8";
/*-----------------------------------
sitemap_block
-----------------------------------*/
.bl_sitemap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4vw;
}
/*下線と矢印ボタン
--------------------------*/
.el_lineArrow {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px;
  padding-right: 35px;
  border-bottom: solid 2px #f0f0f0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.el_lineArrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5em / 2);
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #8a8a8a;
  border-right: 2px solid #8a8a8a;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.el_lineArrow:hover {
  background-color: #f8f8f8;
  border-radius: 5px;
}
@media screen and (max-width: 940px) {
  .bl_sitemap {
      grid-template-columns: repeat(2, 1fr);
      gap: 4vw;
  }
}
@media screen and (max-width: 640px) {
  .bl_sitemap {
      grid-template-columns: repeat(1, 1fr);
      gap: 0;
  }
  .bl_sitemap a {
      border-bottom: solid 1px #f0f0f0;
  }
}
