@charset "UTF-8";
html {
  overflow-x: hidden;
}

body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img {
  width: 100%;
  vertical-align: bottom;
}

.mv-box {
  position: relative;
}

.mv-box p.spred {
  position: absolute;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

@media (max-width: 767px) {
  .mv-box p.spred {
    width: 20%;
  }
}

.mv-box p.spred img {
  max-width: 100%;
  width: auto;
}

@media (max-width: 1400px) {
  .mv-box p.spred img {
    width: 20%;
  }
}

@media (max-width: 767px) {
  .mv-box p.spred img {
    width: auto;
  }
}

.mv-box p.spred.on {
  opacity: 1;
}

.mv-box .logo-box {
  position: absolute;
  z-index: 1;
  left: 5%;
  top: 32%;
  width: 40vw;
}

.mv-box .logo-box .title-wrap {
  position: relative;
}

.mv-box .logo-box .title-wrap h1 {
  width: 100%;
}

.mv-box .logo-box .title-wrap h2 {
  width: 45%;
  position: absolute;
  top: 60%;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.mv-box .logo-box .title-wrap h2.on {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.mv-box .logo-box .clip {
  width: 100px;
  position: absolute;
  left: 80%;
  top: 50%;
}

@media (max-width: 767px) {
  .mv-box .logo-box .clip {
    width: 50px;
  }
}

.mv-box .key-wrap {
  position: absolute;
  right: 5%;
  bottom: 20%;
  min-width: 300px;
}

@media (max-width: 767px) {
  .mv-box .key-wrap {
    min-width: initial;
    width: 100px;
  }
}

.sec04 {
  max-width: 80%;
  margin: 10% auto;
}

@media (max-width: 767px) {
  .sec04 {
    width: 80%;
    margin-top: 10%;
    margin-bottom: 10%;
  }
}

.sec04:hover {
  opacity: 0.8;
}

.sec07 {
  max-width: 80%;
  margin: 10% auto;
}

@media (max-width: 767px) {
  .sec07 {
    width: 80%;
    margin-top: 10%;
    margin-bottom: 10%;
  }
}

.sec07:hover {
  opacity: 0.8;
}

.fade-box-left {
  -webkit-transform: translate3d(-10px, 40px, 0);
          transform: translate3d(-10px, 40px, 0);
}

.fade-box-left img {
  opacity: 0;
}

.fade-box-left.on {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fade-box-left.on img {
  -webkit-transition: opacity .9s ease;
  transition: opacity .9s ease;
  opacity: 1;
}

.fade-box-right {
  -webkit-transform: translate3d(10px, 40px, 0);
          transform: translate3d(10px, 40px, 0);
}

.fade-box-right img {
  opacity: 0;
}

.fade-box-right.on {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.9s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.fade-box-right.on img {
  -webkit-transition: opacity .9s ease;
  transition: opacity .9s ease;
  opacity: 1;
}

.about-box {
  padding: 5% 10%;
  position: relative;
  -webkit-transition: ease .2s;
  transition: ease .2s;
  overflow: hidden;
}

.about-box:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background-image: url(../images/about_bg.png);
  background-size: cover;
  width: 100%;
  height: 0;
  /*アニメーション*/
  -webkit-transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

.about-box.on:before {
  height: 100%;
}

.about-box.on p {
  position: relative;
  z-index: 3;
}

.contact-box {
  width: 70%;
  margin: 10% auto;
  /* ボタンをキラッとさせる */
  /* 以下変更部分 */
}

@media (max-width: 767px) {
  .contact-box {
    width: 90%;
    margin: 10% auto;
  }
}

.contact-box a {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.contact-box a::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
  /* transitionは削除 */
}

.contact-box a:hover::before {
  -webkit-animation: shine 0.5s;
  animation: shine 0.5s infinite;
}

@-webkit-keyframes shine {
  100% {
    left: 100%;
  }
}

@keyframes shine {
  100% {
    left: 100%;
  }
}

.gaiyo {
  width: 70%;
  margin: 5% auto 12%;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  letter-spacing: 0.3em;
}

@media (max-width: 767px) {
  .gaiyo {
    width: 90%;
    letter-spacing: 0.05em;
    margin-top: 10%;
  }
}

.gaiyo h2 {
  font-size: 40px;
  min-height: 1em;
}

@media (max-width: 767px) {
  .gaiyo h2 {
    font-size: 16px;
  }
}

.gaiyo h2.on:after {
  content: '';
  border-right: 1px solid;
  -webkit-animation: flashing 0.4s linear infinite;
          animation: flashing 0.4s linear infinite;
}

@-webkit-keyframes flashing {
  0% {
    opacity: 0;
  }
}

@keyframes flashing {
  0% {
    opacity: 0;
  }
}

.gaiyo h3 {
  font-size: 26px;
}

@media (max-width: 767px) {
  .gaiyo h3 {
    font-size: 16px;
  }
}

.gaiyo table {
  line-height: 2;
  margin-top: 2%;
  margin-bottom: 5%;
}

@media (max-width: 767px) {
  .gaiyo table {
    width: 95%;
    padding: 0;
  }
}

.gaiyo table th {
  font-size: 20px;
  white-space: nowrap;
  padding: 5px;
}

@media (max-width: 767px) {
  .gaiyo table th {
    font-size: 13px;
    white-space: normal;
    width: 20%;
    padding: 0;
  }
}

.gaiyo table td {
  font-size: 20px;
  padding: 5px;
  display: inline;
}

@media (max-width: 1400px) {
  .gaiyo table td {
    width: 80%;
    display: table-cell;
  }
}

@media (max-width: 767px) {
  .gaiyo table td {
    font-size: 13px;
    width: 80%;
    display: table-cell;
  }
}

.gaiyo .ceo {
  font-size: 20px;
}

@media (max-width: 767px) {
  .gaiyo .ceo {
    font-size: 13px;
    line-height: 1.5;
  }
}

.gaiyo .caution {
  font-size: 14px;
  margin-top: 10%;
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .gaiyo .caution {
    font-size: 11px;
    margin-top: 15%;
  }
}

.clip {
  display: inline-block;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}

.clip.on {
  -webkit-animation: fuwafuwa2 0.1s infinite ease-in-out;
          animation: fuwafuwa2 0.1s infinite ease-in-out;
}

@-webkit-keyframes fuwafuwa2 {
  0% {
    -webkit-transform: translate(0, 0) rotate(-90deg);
            transform: translate(0, 0) rotate(-90deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(270deg);
            transform: translate(0, 0) rotate(270deg);
  }
}

@keyframes fuwafuwa2 {
  0% {
    -webkit-transform: translate(0, 0) rotate(-90deg);
            transform: translate(0, 0) rotate(-90deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(270deg);
            transform: translate(0, 0) rotate(270deg);
  }
}

.reveal-text,
.reveal-text::after {
  -webkit-animation-delay: var(--animation-delay, 2s);
          animation-delay: var(--animation-delay, 2s);
  -webkit-animation-iteration-count: var(--iterations, 1);
          animation-iteration-count: var(--iterations, 1);
  -webkit-animation-duration: var(--duration, 800ms);
          animation-duration: var(--duration, 800ms);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.reveal-text,
.reveal-text::after {
  -webkit-animation-delay: var(--animation-delay, 2s);
          animation-delay: var(--animation-delay, 2s);
  -webkit-animation-iteration-count: var(--iterations, 1);
          animation-iteration-count: var(--iterations, 1);
  -webkit-animation-duration: var(--duration, 800ms);
          animation-duration: var(--duration, 800ms);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
          animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.reveal-text.on {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  -webkit-animation-name: clip-text;
          animation-name: clip-text;
  cursor: default;
}

@media (max-width: 767px) {
  .reveal-text.on {
    white-space: normal;
  }
}

.reveal-text.on::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  pointer-events: none;
  -webkit-animation-name: text-revealer;
          animation-name: text-revealer;
}

@-webkit-keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}

@-webkit-keyframes text-revealer {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

@keyframes text-revealer {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}

br.sp-break {
  display: none;
}

@media (max-width: 767px) {
  br.sp-break {
    display: block;
  }
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg {
  height: 2px;
}

/*割れる画面のアニメーション*/
.loader_cover {
  width: 100%;
  height: 50%;
  background-color: black;
  -webkit-transition: all 0.2s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transition: all 0.2s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

/*上の画面*/
.loader_cover-up {
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

/*下の画面*/
.loader_cover-down {
  position: absolute;
  bottom: 0;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

/*クラス名がついたらY軸方向に0*/
.coveranime {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

/*動画表示のモーダルの余白を変更したい場合*/
.modaal-video .modaal-inner-wrapper {
  padding: 0;
}

/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

.modaal-overlay {
  background: black !important;
}

.to-right {
  background-image: url("../images/pic_02.jpg");
  width: 5000%;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-animation: moving 100s linear infinite;
          animation: moving 100s linear infinite;
  min-height: 503px;
  background-repeat: repeat-x;
  background-size: contain;
}

@media (max-width: 767px) {
  .to-right {
    height: 200px;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    background-image: url("../images/pic_02.jpg");
    background-repeat: repeat-x;
  }
}

@-webkit-keyframes moving {
  100% {
    -webkit-transform: translateX(-3000px);
            transform: translateX(-3000px);
  }
}

@keyframes moving {
  100% {
    -webkit-transform: translateX(-3000px);
            transform: translateX(-3000px);
  }
}

@media (max-width: 767px) {
  @-webkit-keyframes moving {
    100% {
      -webkit-transform: translateX(-1000vw);
              transform: translateX(-1000vw);
    }
  }
  @keyframes moving {
    100% {
      -webkit-transform: translateX(-1000vw);
              transform: translateX(-1000vw);
    }
  }
}

.to-right2 {
  background-image: url("../images/pic_10.jpg");
  width: 5000%;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-animation: moving 100s linear infinite;
          animation: moving 100s linear infinite;
  min-height: 518px;
  background-repeat: repeat-x;
  background-size: contain;
}

@media (max-width: 767px) {
  .to-right2 {
    height: 200px;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    background-image: url("../images/pic_10.jpg");
    background-repeat: repeat-x;
  }
}

@keyframes moving {
  100% {
    -webkit-transform: translateX(-3000px);
            transform: translateX(-3000px);
  }
}

@media (max-width: 767px) {
  @-webkit-keyframes moving {
    100% {
      -webkit-transform: translateX(-1000vw);
              transform: translateX(-1000vw);
    }
  }
  @keyframes moving {
    100% {
      -webkit-transform: translateX(-1000vw);
              transform: translateX(-1000vw);
    }
  }
}

.to-right3 {
  background-image: url("../images/pic_12.jpg");
  width: 5000%;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-animation: moving 100s linear infinite;
          animation: moving 100s linear infinite;
  min-height: 950px;
  background-repeat: repeat-x;
  background-size: contain;
}

@media (max-width: 767px) {
  .to-right3 {
    height: 200px;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    background-image: url("../images/pic_12.jpg");
    background-repeat: repeat-x;
  }
}

@keyframes moving {
  100% {
    -webkit-transform: translateX(-3000px);
            transform: translateX(-3000px);
  }
}

@media (max-width: 767px) {
  @-webkit-keyframes moving {
    100% {
      -webkit-transform: translateX(-1000vw);
              transform: translateX(-1000vw);
    }
  }
  @keyframes moving {
    100% {
      -webkit-transform: translateX(-1000vw);
              transform: translateX(-1000vw);
    }
  }
}

.to-right4 {
  background-image: url("../images/pic_06.jpg");
  width: 5000%;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-animation: moving 100s linear infinite;
          animation: moving 100s linear infinite;
  min-height: 360px;
  background-repeat: repeat-x;
  background-size: contain;
}

@media (max-width: 767px) {
  .to-right4 {
    height: 200px;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    background-image: url("../images/pic_06.jpg");
    background-repeat: repeat-x;
  }
}

@keyframes moving {
  100% {
    -webkit-transform: translateX(-3000px);
            transform: translateX(-3000px);
  }
}

@media (max-width: 767px) {
  @-webkit-keyframes moving {
    100% {
      -webkit-transform: translateX(-1000vw);
              transform: translateX(-1000vw);
    }
  }
  @keyframes moving {
    100% {
      -webkit-transform: translateX(-1000vw);
              transform: translateX(-1000vw);
    }
  }
}

#stalker {
  pointer-events: none;
  position: fixed;
  top: -25px;
  left: -25px;
  width: 50px;
  height: 50px;
  border: 1px solid #a6a4a4;
  border-radius: 50%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  z-index: 999;
  opacity: 0.8;
}

@media (max-width: 1400px) {
  #stalker {
    opacity: 0;
  }
}
/*# sourceMappingURL=style.css.map */