@charset "UTF-8";
@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    margin-top: 30px;
    margin-bottom: -30px;
  }
  70% {
    margin-top: 0;
    margin-bottom: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    margin-top: 30px;
    margin-bottom: -30px;
  }
  70% {
    margin-top: 0;
    margin-bottom: 0;
  }
  100% {
    opacity: 1;
  }
}
/* =========================================================
sitemap
========================================================= */
.sp-ui {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp-ui {
    display: block;
  }
}

.pc-ui {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc-ui {
    display: none;
  }
}

.section-sitemap {
  padding: 50px 50px 90px;
  margin: 40px auto;
}
@media only screen and (max-width: 767px) {
  .section-sitemap {
    padding: 30px;
    margin: 0 auto;
  }
}

/*タイトル*/
.sitemap-title-en {
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  line-height: 1.6;
  color: #b79e45;
  font-weight: 700;
  text-align: center;
}
.sitemap-title-en::after {
  display: block;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #b79e45;
  margin: 12px auto 0;
}

.sitemap-title {
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-top: 5px;
  color: #1a1a1a;
  text-align: center;
}

.not-found-text {
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .not-found-text {
    font-size: 3.4666666667vw;
    text-align: left;
    margin-top: 4vw;
  }
}

/*コンテンツエリア*/
.sitemap-block {
  margin-top: 40px;
}

.sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .sitemap {
    display: block;
  }
}

.sitemap-list {
  margin: -20px auto 0;
  width: 100%;
  max-width: 300px;
  padding-right: 60px;
}
.sitemap-list:last-of-type {
  padding-right: 0;
}
@media only screen and (max-width: 767px) {
  .sitemap-list {
    margin: 0 auto;
    padding-right: 0px;
    max-width: 670px;
  }
}

.sitemap-list-item {
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .sitemap-list-item {
    margin-top: 20px;
  }
}

.sitemap-list-box {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .sitemap-list-box {
    margin-top: 30px;
  }
  .sitemap-list-box::before {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #e9e9e9;
  }
}

.sitemap-item-heading {
  font-size: 1.4rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .sitemap-item-heading {
    margin-top: 30px;
  }
}

.sitemap-list-second-box {
  font-size: 1.1rem;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .sitemap-list-second-box {
    margin-top: 30px;
    padding-left: 10px;
    font-size: 1.2rem;
  }
}

.is-second::before {
  margin-right: 5px;
  content: "-";
}

.sitemap-item-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.sitemap-item-link::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #999;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.sitemap-item-link:hover::after {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}