/* Scss Document */
/* setting
**********************************************************************/
/* mixin
*********************************************************************/
/* media query */
.fade {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
}

.cover_w {
  position: relative;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cover_h {
  position: relative;
  width: auto;
  height: 100%;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.glow {
  text-shadow: 0px 0px 10px #ffffff, 0px 0px 10px #ffffff, 0px 0px 10px #ffffff, 0px 0px 10px #ffffff, 0px 0px 10px #ffffff, 0px 0px 8px #ffffff, 0px 0px 8px #ffffff, 0px 0px 8px #ffffff, 0px 0px 4px #ffffff, 0px 0px 4px #ffffff, 0px 0px 4px #ffffff;
}

.shadow {
  text-shadow: 0px 0px 10px #000, 0px 0px 8px #000;
}

/* mixin
*********************************************************************/
/* media query */
.area_sitemap {
  padding: 100px 10px;
}

.block_sitemap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.block_sitemap h1 {
  font-size: 3rem;
  line-height: 1.2em;
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: #888 dotted 1px;
}
@media all and (max-width: 828px) {
  .block_sitemap h1 {
    font-size: 2.4rem;
  }
}

.box_sitemap ul {
  font-size: 1.4rem;
  line-height: 1.4em;
  padding: 6px 0 16px 1em;
  display: inline-block;
  text-align: left;
}
.box_sitemap ul li {
  padding: 0 0 0 1em;
  margin: 15px 0;
  text-indent: -1em;
  line-height: 1em;
  display: block;
}
.box_sitemap ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f105";
  padding-right: 3px;
}
.box_sitemap ul li ul {
  padding: 0px 0 6px 1em;
  display: block;
}
.box_sitemap ul li ul li {
  padding: 0 0 0 0px;
  margin: 6px 0 0;
}
.box_sitemap ul li ul li::before {
  content: "- ";
}
