@charset "UTF-8";
/*------------------------------
トップページコンテンツ
------------------------------*/
/*-----ファーストビュー-----*/
.fv {
  background: #ffffff;
  position: relative;
  margin-bottom: 50px;
  overflow: hidden;
}
.fv #slider {
  width: 90%;
  height: 92vh !important;
  margin: 0 auto;
}
.fv #title {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 99;
  text-align: center;
  color: #000000;
  transform: translateX(-50%);
}

/*-----scrolldownアニメーション-----*/
.scrolldown {
  width: 75px;
  height: 75px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
  background-color: #E7010D;
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
}
@media screen and (min-width: 768px) {
  .scrolldown {
    width: 90px;
    height: 90px;
  }
}
.scrolldown .arrowInner {
  margin: 20% 0;
}
@media screen and (min-width: 768px) {
  .scrolldown .arrowInner {
    margin: 10% 0;
  }
}
.scrolldown .arrowInner p {
  text-align: center;
  color: #ffffff;
  margin: 20% 0;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .scrolldown .arrowInner p {
    font-size: 0.95rem;
  }
}
.scrolldown .arrow {
  display: block;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  margin: auto;
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 16px solid #ffffff;
}
@media screen and (min-width: 768px) {
  .scrolldown .arrow {
    width: 15px;
    height: 20px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #ffffff;
  }
}
.scrolldown:hover, .scrolldown:active {
  background-color: #E7010D;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(180deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(180deg) translate(0px, -20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(180deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(180deg) translate(0px, -20px);
    opacity: 0;
  }
}
/*-----天窓について-----*/
.business-toppage h2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 85px;
  height: 80px;
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5%;
}
@media screen and (min-width: 576px) {
  .business-toppage h2 {
    width: 100px;
    height: 90px;
  }
}
.business-toppage p {
  padding-bottom: 30px;
}

/*-----施工例-----*/
.slider img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media screen and (min-width: 576px) {
  .slider img {
    height: 250px;
  }
}

.slider .slick-slide {
  margin: 0 10px;
}

/*-----ローディング画面-----*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #EAEAEA;
  z-index: 9999999;
  text-align: center;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  background: #ffffff;
  padding: 5% 5% 4%;
}
#splash-logo img {
  max-width: 300px;
}

body {
  background: #EAEAEA;
}

body.appear {
  background: #ffffff; /*画面を開いた後の背景色を指定*/
}

/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/*右に消えるエリア*/
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: scaleX(1);
  background: #EAEAEA;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*左に消えるエリア*/
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  transform: scaleX(1);
  background: #EAEAEA;
}

@keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=top.css.map */