@charset "UTF-8";

/* .m-container
---------------------------------------------------------------------------- */
.m-container {
    margin: 0 auto;
    position: relative;
    max-width: 1220px;
    padding: 0 30px;
}

.m-content {
    margin: 0 auto;
    position: relative;
    max-width: 1140px;
    padding: 0 30px;
}

@media screen and (max-width: 767px){


  .m-container {
      padding: 0 15px;
  }

  .m-content {
      padding: 0 15px;
  }


}




/* タイトル系
---------------------------------------------------------------------------- */
.m-heading {
  font-size: 1.2rem;
  margin: 0 0 50px;
}
.m-heading span {
  display: inline-block;
  padding: 0 0 40px;
  position: relative;
}

.m-heading span::before {
  position: absolute;
  content: "";
  background: #DDDDDD;
  width: 1px;
  height: 25px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}


/* 落ちてくる黒ライン */
.m-heading span::after {
  position: absolute;
  content: "";
  background: #2A2A2A;
  width: 1px;
  height: 13px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(-25px);
  animation: line-drop 1.5s ease-in-out infinite;
}

/* keyframes */
@keyframes line-drop {
  0% {
    transform: translateX(-50%) translateY(-25px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
}

@media screen and (max-width: 767px){

  .m-heading {
      text-align: center;
      margin: 0 0 60px;
  }
}


/* ボタン系
---------------------------------------------------------------------------- */
.m-button01 {
}

@media screen and (max-width: 767px){
}


/* パーツ系
---------------------------------------------------------------------------- */
.pic-inner {
  position: relative;
  overflow: hidden;
}

.pic-inner img {
  display: block;
  width: 100%;
  height: auto;
}

/* カーテン初期状態 */
.curtain {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 2;
  transform: translateX(0);
}

@keyframes curtainSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

/* wow.jsが animated を付けたときに効く */

.curtain-slide.animated .curtain {
  animation-name: curtainSlide;
  animation-duration: 1.3s;
  animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
  animation-fill-mode: forwards;
  animation-delay: inherit;
}




/* その他
---------------------------------------------------------------------------- */

@media screen and (max-width: 767px){
}
