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

    main {
      background-color: #000;
    }

#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%;
}

  /* contents
  ==================================== */
.contents {
  padding: 180px 0 60px;
}
.inner {
  width: calc(100% - 60px);
  max-width: 1700px;
  margin: auto;
}
.main_title {
  color: #fff;
  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 0;
  }
}


/* achievement_wrap
====================================== */
.achievement_wrap {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  column-gap: 1.5%;
  row-gap: 30px;
}
.achievement_item {
  text-decoration: none;
  transition: opacity .4s ease-in-out ;
}
.achievement_item figure {
  overflow: hidden;
}
.achievement_item img {
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}
.achievement_item:hover {
  /* opacity: .7 ; */
}
.name {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.pager_area {
  padding: 120px 0;
}
.pager_wrap {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.pager_item {
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 25px;
  text-decoration: none;
  border: 1px solid #fff;
  text-align: center;
  font-family:  serif;
  transition: all .4s ease-in-out;
}
.pager_item.active {
  color: #000;
  background-color: #fff;
}
.pager_item:hover {
  color: #000;
  background-color: #fff;
}

@media only screen and (max-width:768px) {
  .achievement_wrap {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 1.5%;
    row-gap: 30px;
  }
  .pager_area {
    padding: 60px 0;
  }
}

