@charset "UTF-8";
body.fixed {
  position: fixed;
}

.header {
  width: 90%;
  max-width: 1180px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 40px;
  z-index: 999;
  opacity: 1;
}

@media screen and (max-width: 1080px) {
  .header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.header__logo {
  width: 280px;
  height: auto;
}

@media screen and (max-width: 1080px) {
  .header__logo {
    width: 270px;
  }
}

.header__logo h1 a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__logo h1 a:hover {
  opacity: .7;
}

.header__logo h1 a .svg {
  width: 100%;
  height: auto;
}

.header__nav {
  width: calc(100% - 460px);
  height: auto;
  margin-left: auto;
  margin-top: 5px;
}

.header__nav--lists {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__nav--lists > li {
  height: 40px;
  line-height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: 'Mulish';
  font-weight: 600;
}

.header__nav--lists > li.item__multi {
  position: relative;
}

.header__nav--lists > li.item__multi .item__second--level {
  position: absolute;
  top: 40px;
  width: 100%;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.header__nav--lists > li.item__multi .item__second--level li {
  position: relative;
}

.header__nav--lists > li.item__multi:hover .item__second--level {
  top: 40px;
  visibility: visible;
  opacity: 1;
}

.header__nav--lists > li a {
  display: block;
  width: 100%;
  height: auto;
  line-height: 40px;
  font-size: 14px;
}

.header__nav--lists > li a:hover {
  opacity: .7;
}

.header__nav--lists > li:hover {
  -webkit-transition: all .5s;
  transition: all .5s;
}

.header__nav--lists .item__second--level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.header__nav--contact {
  width: 40px;
  height: 40px;
  border: 0.5px solid #050505;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__nav--contact a {
  width: 100%;
  height: 100%;
}

.header__nav--contact a img {
  width: 20px;
  height: 20px;
  display: block;
  margin: auto;
}

.header .sp {
  display: none;
}

@media screen and (max-width: 1080px) {
  .header .pc {
    display: none;
  }
  .header .sp {
    width: 100%;
    display: none;
  }
  .header .sp .header__nav--lists {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .sp .header__nav--lists div {
    width: 50%;
    margin-top: 28px;
  }
  .header .sp .header__nav--lists div li {
    margin-top: 26px;
  }
}

@media screen and (max-width: 1080px) and (max-width: 480px) {
  .header .sp .header__nav--lists div li {
    margin-top: 16px;
  }
}

@media screen and (max-width: 1080px) {
  .header .sp .header__nav--lists div li a {
    font-size: 42px;
    font-weight: bold;
    color: #FDFDFD;
  }
}

@media screen and (max-width: 1080px) and (max-width: 480px) {
  .header .sp .header__nav--lists div li a {
    font-size: 22px;
  }
}

.header__translate {
  width: auto;
  height: 40px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 1.5%;
  margin-top: 5px;
}

@media screen and (max-width: 1080px) {
  .header__translate {
    display: none;
    width: 100%;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    border-top: 1px solid white;
    margin: 40px 0 0 0;
    padding-top: 52px;
    position: relative;
  }
  .header__translate::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 250px;
    border-bottom: 1px solid #FFCB05;
  }
}

@media screen and (max-width: 480px) {
  .header__translate {
    margin: 32px 0 0 0;
    padding-top: 42px;
  }
}

.header__translate form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1080px) {
  .header__translate form {
    display: none;
    width: 100%;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    position: relative;
  }
}

.header__translate form button {
  background: none;
  border: none;
  font-size: 14px;
  font-family: 'Mulish';
  font-weight: 600;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1080px) {
  .header__translate form button {
    font-size: 24px;
    color: white;
  }
}

@media screen and (max-width: 1080px) and (max-width: 480px) {
  .header__translate form button {
    font-size: 20px;
  }
}

@media screen and (max-width: 1080px) {
  .header__translate form button .ja {
    color: white;
  }
  .header__translate form button .en {
    color: #FDF5F5;
  }
}

.header__translate form button:first-child {
  margin-left: 12px;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .header__translate form button:first-child {
    margin-left: 20px;
  }
}

.header__translate form button:first-child::before {
  content: '/';
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 1080px) {
  .header__translate form button:first-child::before {
    top: 0;
    left: -14px;
  }
}

.header__translate a {
  font-size: 14px;
  font-family: 'Mulish';
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__translate a:first-child {
  margin-left: 12px;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .header__translate a:first-child {
    margin-left: 20px;
  }
}

.header__translate a:first-child::before {
  content: '/';
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 1080px) {
  .header__translate a:first-child::before {
    top: 0;
    left: -14px;
  }
}

.header__translate a .ja {
  margin-right: 4px;
}

.header__translate a .en {
  margin-left: 4px;
  color: #585858;
}

@media screen and (max-width: 1080px) {
  .header__translate a {
    font-size: 24px;
    color: white;
  }
}

@media screen and (max-width: 1080px) and (max-width: 480px) {
  .header__translate a {
    font-size: 20px;
  }
}

@media screen and (max-width: 1080px) {
  .header__translate a .ja {
    color: white;
  }
  .header__translate a .en {
    color: #FDF5F5;
  }
}

@media screen and (max-width: 1080px) {
  .header {
    /* ----------- ハンバーガー ----------- */
  }
  .header__btn {
    position: fixed;
    width: 45px;
    height: 32px;
    top: 10px;
    right: 0;
    cursor: pointer;
    z-index: 100;
  }
  .header__btn span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #050505;
    border-radius: 4px;
    display: inline-block;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .header__btn span:nth-of-type(1) {
    top: 0;
  }
  .header__btn span:nth-of-type(2) {
    width: 73%;
    top: 16px;
  }
  .header__btn span:nth-of-type(3) {
    width: 50%;
    bottom: 0;
  }
  .header .active span {
    background-color: white;
    width: 70%;
  }
  .header .active span:nth-of-type(1) {
    top: -5px;
    left: 6px;
  }
  .header .active span:nth-of-type(3) {
    bottom: -4px;
    left: 6px;
  }
  .header #menu::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 50px;
    height: 50px;
    margin: -27px 0 0 -27px;
    border-radius: 50%;
    border: 1px solid transparent;
    -webkit-transition: all .75s;
    transition: all .75s;
  }
  .header #menu.active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
  }
  .header #menu.active span:nth-of-type(2) {
    left: 60%;
    opacity: 0;
    -webkit-animation: active-menu-bar02 .8s forwards;
    animation: active-menu-bar02 .8s forwards;
  }
  @-webkit-keyframes active-menu-bar02 {
    100% {
      height: 0;
    }
  }
  @keyframes active-menu-bar02 {
    100% {
      height: 0;
    }
  }
  .header #menu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
  }
  .header #menu.active::after {
    -webkit-animation: active-menu .7s .25s forwards;
    animation: active-menu .7s .25s forwards;
  }
  @-webkit-keyframes active-menu {
    0% {
      border-color: transparent;
      -webkit-transform: rotate(0);
    }
    25% {
      border-color: transparent #fff transparent transparent;
    }
    50% {
      border-color: transparent #fff #fff transparent;
    }
    75% {
      border-color: transparent #fff #fff #fff;
    }
    100% {
      border-color: #fff;
      -webkit-transform: rotate(-680deg);
    }
  }
  @keyframes active-menu {
    0% {
      border-color: transparent;
      -webkit-transform: rotate(0);
              transform: rotate(0);
    }
    25% {
      border-color: transparent #fff transparent transparent;
    }
    50% {
      border-color: transparent #fff #fff transparent;
    }
    75% {
      border-color: transparent #fff #fff #fff;
    }
    100% {
      border-color: #fff;
      -webkit-transform: rotate(-680deg);
              transform: rotate(-680deg);
    }
  }
}

.header__sns {
  width: 100%;
  height: auto;
  margin-top: 40px;
  display: none;
}

.header__sns div, .header__sns a {
  line-height: 20px;
  color: #FDFDFD;
}

.header__sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__sns ul li {
  margin-right: 20px;
  position: relative;
}

.header__sns ul li:not(:last-child)::after {
  content: '/';
  color: #FDFDFD;
  position: absolute;
  top: 0;
  right: -14px;
}

.header__sns ul li a img {
  margin-left: 4px;
}

.visible .sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.visible .header__translate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.visible .header__translate form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.visible .header__nav {
  height: 100%;
}

.visible .header__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 480px) {
  .visible .header__sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .visible .header__sns ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 8px;
  }
  .visible .header__sns ul li {
    margin-bottom: 4px;
  }
}

.visible .svg path, .visible .svg text {
  fill: white;
}

.cover {
  display: block;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(3, 22, 37, 0.95);
  position: fixed;
  z-index: 30;
  -webkit-transition: .5s;
  transition: .5s;
}

#stalker {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 15px;
  height: 15px;
  background: rgba(195, 189, 238, 0.7);
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  pointer-events: none;
  z-index: 10;
}

@media screen and (max-width: 480px) {
  #stalker {
    display: none;
  }
}

_:lang(x) + _:-webkit-full-screen-document, #stalker {
  display: none;
}

.header.upMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    top: 40px;
  }
  to {
    top: -80px;
  }
}

@keyframes UpAnime {
  from {
    top: 40px;
  }
  to {
    top: -80px;
  }
}

.header.downMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    top: -80px;
  }
  to {
    top: 40px;
  }
}

@keyframes DownAnime {
  from {
    top: -80px;
  }
  to {
    top: 40px;
  }
}

#achieve {
  width: 100%;
  height: 100vh;
  background-color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

#achieve .gif {
  width: 120px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.isDisplay {
  display: none;
}
/*# sourceMappingURL=header.css.map */