@charset "UTF-8";
/*Homeのみに対応するCSS*/
/*ローディング*/
#splash {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #222222;
  z-index: 9999999;
  text-align: center;
}

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

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

/*上に消えるエリア*/
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  bottom: 50%;
  left: 0;
  transform: scaleY(1);
  background-color: #FD96D5; /*伸びる背景色の設定*/
}

@keyframes PageAnime {
  0% {
    transform-origin: top;
    transform: scaleY(1);
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*下に消えるエリア*/
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 0;
  transform: scaleY(1);
  background-color: #97E6FD; /*伸びる背景色の設定*/
}

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

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

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fv {
  background-color: #222222;
  color: #FFFFFF;
  height: 100vh;
  position: relative;
}
.fv img {
  width: 80%;
  max-width: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media (min-width: 375px) and (max-width: 679px) {
  .fv img {
    height: auto;
    width: 90%;
  }
}
.fv .title_container {
  display: grid;
  place-items: center;
  height: 100vh;
}
.fv .title_container .title {
  font-family: "Bodoni Moda", serif;
  display: inline-block;
}
@media (min-width: 375px) and (max-width: 679px) {
  .fv .title_container .title {
    width: 80%;
  }
}
.fv .title_container .title h1 {
  font-size: 6rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  line-height: 1;
}
@media (min-width: 375px) and (max-width: 679px) {
  .fv .title_container .title h1 {
    font-size: 3rem;
  }
}
.fv .title_container .title h1:first-child {
  letter-spacing: 26px;
}
.fv .title_container .title h1:last-child {
  margin-top: 50px;
  margin-left: 100px;
  letter-spacing: 30px;
}
@media (min-width: 375px) and (max-width: 679px) {
  .fv .title_container .title h1:last-child {
    margin-left: 0;
    letter-spacing: 18px;
    font-size: 2rem;
  }
}
.fv p {
  font-family: "Bodoni Moda", serif;
  position: absolute;
  top: 26%;
  left: 56%;
  font-size: 1.2rem;
  letter-spacing: 3px;
}

.char {
  transform: translateY(100px);
  transition: transfrom 0.5s;
}

.service {
  background-color: #222222;
  color: #FFFFFF;
}
.service .wrapper .service_container {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 375px) and (max-width: 679px) {
  .service .wrapper .service_container {
    flex-direction: column;
  }
}
.service .wrapper .service_container .service_card {
  width: 30%;
  padding: 20px;
  background: #EEEEEE;
  color: #222222;
}
@media (min-width: 375px) and (max-width: 679px) {
  .service .wrapper .service_container .service_card {
    width: 92%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
.service .wrapper .service_container .service_card h2 {
  text-align: center;
}
.service .wrapper .service_container .service_card h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}
.service .wrapper .service_container .service_card a {
  display: block;
  position: relative;
  z-index: 30;
  text-align: center;
  background: #222;
  padding: 10px 20px;
  font-size: 1.6rem;
  color: white;
  border-radius: 30px;
}
.service .wrapper .service_container .service_card a:hover {
  letter-spacing: 0.25rem;
  transition: all 0.5s 0s ease;
}
.service .wrapper .service_container .service_card img {
  width: 98%;
  margin-bottom: 10px;
  transition: 0.5s;
}
.service .wrapper .service_container .service_card p {
  font-size: 1.6rem;
  color: #FFFFFF;
}

.works {
  background: linear-gradient(to bottom, #FD96D5, #97E6FD);
  color: #222222;
}
.works .card p {
  color: #222222;
}/*# sourceMappingURL=home.css.map */