@charset "UTF-8";
/*--------------------------------------------------------------------
inview js Animaion
----------------------------------------------------------------------*/
.box--effectBlur {
  overflow: hidden;
  opacity: 0;
}

/*effectBlur*/
.effectBlur {
  -webkit-animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: text-focus-in 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  /* ----------------------------------------------
  * Generated by Animista on 2018-11-27 15:52:19
  * w: http://animista.net, t: @cssanimista
  * ---------------------------------------------- */
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
/*fade_in_up*/
.box--fade_in_up {
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transform: translateY(80px);
      -ms-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.fade_in_up {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
}

/*--------------------------------------------------------------------
mixin
----------------------------------------------------------------------*/
@-webkit-keyframes img_hover_anim {
  0% {
    -webkit-filter: brightness(1) blur(0);
            filter: brightness(1) blur(0);
  }
  30% {
    -webkit-filter: brightness(0.6) blur(0);
            filter: brightness(0.6) blur(0);
  }
  100% {
    -webkit-filter: brightness(1) blur(0);
            filter: brightness(1) blur(0);
  }
}
@keyframes img_hover_anim {
  0% {
    -webkit-filter: brightness(1) blur(0);
            filter: brightness(1) blur(0);
  }
  30% {
    -webkit-filter: brightness(0.6) blur(0);
            filter: brightness(0.6) blur(0);
  }
  100% {
    -webkit-filter: brightness(1) blur(0);
            filter: brightness(1) blur(0);
  }
}
.box--slide_in {
  width: 1px;
  opacity: 0;
}

.slide_in {
  -webkit-animation: slide_in 0.8s ease-in-out forwards;
          animation: slide_in 0.8s ease-in-out forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes slide_in {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes slide_in {
  0% {
    width: 0%;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
/*--------------------------------------------------------------------
body
----------------------------------------------------------------------*/
/*--------------------------------------------------------------------
wrapper
----------------------------------------------------------------------*/
#wrapper {
  width: 100%;
  display: block;
  position: relative;
  min-height: 1280px;
  background: url("../images/bg_page.jpg") center top no-repeat;
  background-size: 100%;
  /*←common.cssに記述されたpagefade用の指定でnoneになっているとswiperの挙動がうまくいかないので、blockを指定してnoneを上書きし、swiperを挙動させるようにしている*/
}

/*--------------------------------------------------------------------
contents
----------------------------------------------------------------------*/
#header {
  width: 100%;
}

/*--------------------------------------------------------------------
hero
----------------------------------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  /* Hack for IE11. Because background-clip is unsupported for IE. */
}
/*--------------------------------------------------------------------
contact
----------------------------------------------------------------------*/
.sectionBox_contact {
  position: relative;
  height: 600px;
}

.contactBox {
  margin-top: 80px;
  width: 100%;
  padding: 100px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  /*一応BOX内の文字も中央寄せ*/
  z-index: 1;
}

.imgBox img {
  width: 300px;
  display: inline-block;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}
@media screen and (min-width: 960px) {
  .imgBox img:hover {
    opacity: 0.5;
    -webkit-transform: scale(0.98);
        -ms-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
}

.imgBox:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #777;
  margin: 6px auto;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

.imgBox:hover:after {
  width: 296px;
  opacity: 0.5;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.box_btnBack {
  margin-top: 0;
}

/*--------------------------------------------------------------------
Media Query
----------------------------------------------------------------------*/
@media screen and (max-width: 960px) {
  #wrapper {
    background: none;
  }

  .imgBox img {
    width: 80%;
  }
}