    
    .delay01 {
        animation-delay: 0.3s !important;
      }
      
      .delay02 {
        transition-delay: 0.6s !important;
      }
      
      .delay03 {
        animation-delay: 0.9s !important;
      }
      
      .delay04 {
        animation-delay: 1.2s !important;
      }
      
      .delay05 {
        animation-delay: 1.5s !important;
      }
      
      .delay06 {
        animation-delay: 1.8s !important;
      }
      .delay07 {
        animation-delay: 2.1s !important;
      }
      .delay08 {
        animation-delay:2.4s !important;
      }
      .delay09 {
        animation-delay: 2.7s !important;
      }
      
      .fadein01 {
        opacity: 0;
        transform: translate(-100px, 0);
        transition: all 1s;
      }
      
      .fadein02 {
        opacity: 0;
        transform: translate(0, 100px);
        transition: all 1s;
      }
      
      .fadein03 {
        opacity: 0;
        transform: translate(0, 0);
        transition: all 1s;
      }
      
      .fadein04 {
        opacity: 0;
        transform: translate(100px, 0);
        transition: all 1s;
      }
      
      .fadein05 {
        -moz-transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: all 1s;
      }
      .fadein05.scrollin {
        -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
      }
      .fadein.scrollin {
        opacity: 1;
        transform: translate(0, 0);
      }
       
/*========= ローディング画面のためのCSS ===============*/
/* Loading背景画面設定　*/

#splash {
  /*fixedで全面に固定*/
position: fixed;
z-index: 9999;
width: 100%;
height: 100%;
background:#333;
text-align:center;
color:#fff;
}

/* Loadingバー中央配置　*/
#splash_text {
position: absolute;
top: 50%;
left: 50%;
  z-index: 9999;
width: 100%;
transform: translate(-50%, -50%);
color: #036EB8;
font-weight: bolder;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
  height: 2px;
  margin-top: 1rem;
}
  
  
  /*========= 画面遷移のためのCSS ===============*/
  
  /*画面遷移アニメーション*/
  .splashbg{
      display: none;
  }
  
  
  @keyframes PageAnimeAppear{
    0% {
    opacity: 0;
    }
    100% {
    opacity: 1;
  }
  }
  
/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  /*
  IE11対策
  ----------------------------*/
  _:-ms-lang(x)::-ms-backdrop,
  .demo {
    display: -ms-grid;
    overflow: hidden;
  }
  /*----------------------------*/
  .demo{
    margin-top: -150px;
  }
  .demo_wrap {
    display: flex;
    overflow: hidden;
  }
  
  .demo_list {
    display: flex;
    list-style: none;
  }
  
  .demo_list--left{
  animation :infinity-scroll-left 95s infinite linear 0.5s both;
  }
  
  .demo_item {
    width: calc(100vw / 4);
    margin: 1rem;
  }
  .demo_item a{
    font-family: 'Anton', 'Noto Sans JP', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    font-size: 2.8rem;
    border-radius: 50%;
    color: transparent;
    -webkit-text-stroke: 1px white;
    background: #fff;
    overflow: hidden;
  }
  .demo_item a:before{
    content: "";
    padding-top: 100%;
  }
  .demo_item a:after{
    position: absolute;
content: "";
display: block;
width: 100%;
height: 100%;
top: 0;
z-index: -1;
-webkit-background-size: cover;
-moz-background-size: cover;
-ms-background-size: cover;
background-size: cover;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-ms-transition: all .3s ease-out;
transition: all .3s ease-out;
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
  }
  .demo_item a:hover{
    color: #fff;
    -webkit-text-stroke: 0;
  }
  .demo_item a:hover:after {
    opacity: .6;
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-filter: grayscale(0);
-moz-filter: grayscale(0);
-ms-filter: grayscale(0);
-o-filter: grayscale(0);
filter: grayscale(0);
    }
  .demo_item.service01 a:after{
    background: url(../images/service01.jpg) no-repeat center;
    background-size: cover;
  }
  .demo_item.service02 a:after{
    background: url(../images/service02.jpg) no-repeat center;
    background-size: cover;
  }
  .demo_item.service03 a:after{
    background: url(../images/service03.jpg) no-repeat center;
    background-size: cover;
  }
  .demo_item.service04 a:after{
    background: url(../images/service04.jpg) no-repeat center;
    background-size: cover;
  }

  
.TextTyping span {
    display: none;
  }
  
  /*文字列後ろの線の設定*/
  .TextTyping::after {
    content: "|";
    animation: typinganime .8s ease infinite;
  }
  
  @keyframes typinganime{
    from{opacity:0}
    to{opacity:1}
  }

  .popout {   
    display: block;
    overflow: hidden;  
    position: relative;         /* はみ出た分を非表示 */
  }
  .popoutInner{
    line-height: 0.9;
    position: relative; /* bottomを指定するために必要 */
    animation: popanime 1.5s ease-out forwards; /* 最後ゆっくりになるアニメを1秒かけて1回だけやったあと固定 */
    
  }
  .shiver .popoutInner{
    animation-delay: 800ms;
  }
  h3.popoutInner{
    line-height: 1;
  }
  @keyframes popanime {
    from {
      bottom: -200px;
    }
    to {
      bottom: 0px;
    }
  }

.active .slideIn{
  animation: slideIn 1s cubic-bezier(0.5, 1, 0.5, 1) 1 forwards;
  opacity: 0;
}
 
@keyframes slideIn {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.headerLogo a span {
  opacity: 0;
  display: block;
  width: 20px;
  height: 200px;
  position: absolute;
  top: -34px;
  left: -152px;
  background: rgba(255, 255, 255, 0.2);
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0.8) 90%,
    rgba(255, 255, 255, 0.0) 100%
  );
  background: -webkit-linear-gradient(
    top,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0.8) 90%,
    rgba(255, 255, 255, 0.0) 100%
  );
  background: -webkit-gradient(
    linear, left top, right top,
    color-stop(0%  ,rgba(255, 255, 255, 0.2)),
    color-stop(40% ,rgba(255, 255, 255, 0.5)),
    color-stop(90% ,rgba(255, 255, 255, 0.8)),
    color-stop(100%,rgba(255, 255, 255, 0.0))
  );
  background: -o-linear-gradient(
    top,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0.8) 90%,
    rgba(255, 255, 255, 0.0) 100%
  );
  background: -ms-linear-gradient(
    top,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0.8) 90%,
    rgba(255, 255, 255, 0.0) 100%
  );
  background: linear-gradient(
    top,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0.8) 90%,
    rgba(255, 255, 255, 0.0) 100%
  );
  -webkit-transition-property: left, top, opacity;
  -moz-transition-property: left, top, opacity;
  -ms-transition-property: left, top, opacity;
  -o-transition-property: left, top, opacity;
  transition-property: left, top, opacity;
  -webkit-transition-duration: 0.7s, 0.5s, 0.1s;
  -moz-transition-duration: 0.7s, 0.5s, 0.1s;
  -ms-transition-duration: 0.7s, 0.5s, 0.1s;
  -o-transition-duration: 0.7s, 0.5s, 0.1s;
  transition-duration: 0.7s, 0.5s, 0.1s;
  -webkit-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -ms-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}
.headerLogo a:hover span {
  opacity: 1;
  left:500px;
}

.marquee-anim{
  transition: all .3s;
}
.marquee-anim{
  font-size: 10rem;
  opacity: 1;
  animation: marquee 30s linear infinite;
  position: absolute;
  top: -9.7rem;
  left: 50%;
  display: flex;
  transform: translate(-50%, 0%);
  white-space: nowrap;
  opacity: 0.1;
}

@keyframes marquee{
  0%{transform: translate(-40%, 0%);}
  100%{
    tansform: translate(-60%, 0%);}
  }
.marquee-inline{
  display: block;
  padding-right: 0.5em;
  white-space: nowrap;
  text-align: center;
  white-space: nowrap;}