/* FVメイン */
#fvContainer {
  width: 100%;
  height: 100vh;
}

.bgContainer {
  width: 100%;
  height: 100%;
}

#fvContainer .bgContainer {
  background: url(../img/01.png) center center / cover no-repeat;
}
#serviceContainer .bgContainer {
  background: url(../img/02.png) center center / cover no-repeat;
}
#portfolioContainer .bgContainer {
  background: url(../img/03.png) center center / cover no-repeat;
}
#contactContainer .bgContainer {
  background: url(../img/04.png) center center / cover no-repeat;
}

.contentsContainer {
  width: 90%;
  max-width: 960px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.title {
  width: 388.5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#serviceContainer .title, #contactContainer .title {
  right: 0;
  color: #fff;
}

.title h1, .title h2 {
  font-size: 38px;
  letter-spacing: 4px;
  position: relative;
}

.title h1::after, .title h2::after {
  content: "";
  display: block;
  width: 71px;
  height: 4.5px;
  background: #000;
}
#serviceContainer h2::after, #contactContainer h2::after {
  background: #fff;
}

.title p {
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-top: 20px;
}

.number {
  font-size: 60px;
  font-family: 'Rajdhani', sans-serif;
  margin-top: 70px;
}
#fvContainer .number {
  margin-top: 15px;
}

.more {
  width: 200px;
  height: 50px;
  line-height: 50px;
  margin-top: 20px;
  border: 1px solid #fff;
  background: #fff;
  font-family: 'Rajdhani', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.more::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #595958;
  position: absolute;
  top: 0;
  left: -100%;
  transition: 0.3s;
}
.more:hover::before {
  left: 0;
}

.more a {
  display: block;
  color: #000;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}
.more:hover a {
  color: #fff;
}

#portfolioContainer .more {
  background: #000;
  border: 1px solid #000;
}
#portfolioContainer .more::before {
  background: #fff;
}
#portfolioContainer .more a {
  color: #fff;
}
#portfolioContainer .more:hover a {
  color: #000;
}


/* サービス */
#serviceContainer {
  width: 100%;
  height: 100vh;
  background: #595958;
}

#serviceContainer .contentsContainer > img {
  width: 36%;
  max-width: 400px;
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* ポートフォリオ */
#portfolioContainer {
  width: 100%;
  height: 100vh;
}


/* コンタクト */
#contactContainer {
  width: 100%;
  height: 100vh;
  background: #595958;
}