@charset "utf-8";

/* *****************************************************************************

  sitemap style

***************************************************************************** */
/* sitemap-box */
.sitemap-box{
  display: flex;
  flex-wrap: wrap;
}
.sitemap-box > .-box{
  width: 50%;
  margin-top: 6rem;
}
.sitemap-box > .-box:nth-child(odd){
  padding-right: 2rem;
}
.sitemap-box > .-box:nth-child(even){
  padding-left: 2rem;
}
.sitemap-box > .-box:nth-child(-n+2){
  margin-top: 0;
}

@media screen and (max-width: 760px){
  /* sitemap-box */
  .sitemap-box > .-box:nth-child(odd){
    padding-right: 1rem;
  }
  .sitemap-box > .-box:nth-child(even){
    padding-left: 1rem;
  }
}

@media screen and (max-width : 420px){
  /* sitemap-box */
  .sitemap-box{
    display: block;
  }
  .sitemap-box > .-box{
    width: 100%;
  }
  .sitemap-box > .-box:nth-child(2){
    margin-top: 6rem;
  }
  .sitemap-box > .-box:nth-child(odd){
    padding-right: 0;
  }
  .sitemap-box > .-box:nth-child(even){
    padding-left: 0;
  }
}

/* category-name */
.category-name{
  font-family: "FOT-UD角ゴ_ラージ Pr6N DB";
  font-size: 1.6rem;
  line-height: 2rem;
  white-space: nowrap;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #d3d4d8;
}
.category-name > a{
  display: inline-block;
  padding-left: 3rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: url(/assets/images/arrow-circle-blue.svg) left 0.2rem no-repeat;
  background-size: 1.8rem auto;
}
.category-name > a:hover{
  color: #3959cc;
}

@media screen and (max-width : 760px){
  /* category-name */
  .category-name{
  }
}

/* sitemap-list */
.sitemap-list > .-item{
  font-family: "FOT-UD角ゴ_ラージ Pr6N DB";
  font-size: 1.6rem;
  line-height: 1.75;
  white-space: nowrap;
}
.sitemap-list > .-item{
  margin-top: 0.5rem;
}
.sitemap-list > .-item:nth-child(1){
  margin-top: 0;
}
.sitemap-list > .-item > a{
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sitemap-list > .-item > a:hover{
  color: #3959cc;
}
