@charset "UTF-8";
/*数値の設定
------------------------------------------*/
/*上記数値の設定を呼び出しているmixin
------------------------------------------*/
/*
よく使用するmixin
------------------------------------------*/
body.overflowhidden {
  height: 100vh;
  overflow: hidden; }
body.nonpointer {
  cursor: none !important; }
  body.nonpointer a {
    cursor: none !important; }


#cursor {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  width: 120px;
  height: 120px;
  transition: transform .25s .1s, opacity .25s;
  color: #fff;
  background: #000;
  border-radius: 100%;
  text-align: center;
  font-size: 15px;
  letter-spacing: .1rem;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  box-shadow: 0px 0px 15px black; }
  #cursor::after {
    content: "";
    display: block;
    transition: transform 0.3s;
    font-family: "Material Symbols Outlined";
    font-weight: 100;
    font-size: 2.4rem;
    line-height: 1; }
  #cursor.is-active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1; }
  @media only screen and (max-width: 991px) {
    #cursor {
      display: none; } }

.loading-sec {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 100000;
  transition: 1.2s ease; }
  .loading-sec.loadanim .load-frame {
    border: 0vw solid #fff; }
  .loading-sec.loadanim .load-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
    user-select: none; }
  .loading-sec.loadend {
    opacity: 0;
    pointer-events: none;
    user-select: none; }
  .loading-sec .load-frame {
    width: 100%;
    height: 100%;
    border: 10vw solid #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: 1.2s ease; }
  .loading-sec .load-img {
    width: 100%;
    height: 100%; }
    .loading-sec .load-img:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0);
      z-index: 1;
      pointer-events: none;
      user-select: none;
      transition: 1.2s ease; }
    .loading-sec .load-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }

      @media only screen and (max-width:991px) {
        header #siteLogo a .subTitle {
          top: 10px;
      }
      }
.design-sec {
  width: 100%;
  position: relative; }

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: all .4s;
}
a:hover {
  text-decoration: underline;
}


  /* contents
  ==================================== */
.contents {
  padding: 220px 0 60px;
}
.inner {
  width: calc(100% - 60px);
  max-width: 1100px;
  margin: auto;
}
.main_title {
  text-align: center;
  font-size: 30px;
  letter-spacing: 0.2em;
}
.main_title .title_en {
  font-size: 16px;
  display: block;
}

@media only screen and (max-width:767px) {
  .contents {
    padding: 120px 0 40px ;
  }
  .main_title {
    font-size: 20px;
  }
}

/* sitemap_item
==================================== */
.sitemap_contents {
  margin-top: 150px;
}
.sitemap_item + .sitemap_item {
  margin-top: 100px;
}
.sitemap_title {
  position: relative;
  letter-spacing: 0.1em;
  padding: 20px ;
  background-color: rgba(163, 163, 163, .2);
  border-bottom: 1px solid #817f7f;
  margin-bottom: 20px;
}
.sitemap_title a {
  position: relative;
  color: #333;
  font-size: 20px;
}
.sitemap_title a:before {
  content: "";
  position: absolute;
  top: 44%;
  right: -10px;
  color: #000;
  font-size: 10px;
  line-height: 1;
  width: 5px;
  height: 5px;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  transform: rotate(45deg);
  transition: .4s;
}
.sitemap_title a:hover::before {
  right: -16px;
}
.sitemap_list {
  margin-top: 30px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
.sitemap_list li {
  width: 50%;
}
.sitemap_list li a {
  position: relative;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 0;
}
.sitemap_list li a:before {
  content: "";
  position: absolute;
  top: 45%;
  transform: translate(0, -50%);
  right: -10px;
  color: #333;
  font-size: 10px;
  line-height: 1;
  width: 5px;
  height: 5px;
  border-right: 1px solid #333;
  border-top: 1px solid #333;
  transform: rotate(45deg);
  transition: all .4s;
}
.sitemap_list li a:hover::before {
  right: -16px;
}

@media only screen and (max-width:768px) {
  .sitemap_contents {
    margin-top: 60px;
  }
  .sitemap_item + .sitemap_item {
    margin-top: 60px;
  }
  .sitemap_title {
    padding: 10px ;
    margin-bottom: 20px;
  }
  .sitemap_title a {
    font-size: 16px;
  }
  .sitemap_title a:before {
    top: 39%;
  }
  .sitemap_list {
    margin-top: 20px;
    padding-left: 10px;
    flex-direction: column;
    row-gap: 20px;
  }
  .sitemap_list li {
    width: 100%;
  }
  .sitemap_list li a {
    font-size: 14px;
    padding: 10px 0;
  }
  .sitemap_list li a:before {
    top: 43%;
  }
  
}