@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "Montserrat-ExtraBold";
  src: url("../fonts/Montserrat-ExtraBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "ZenKakuGothicNew-Bold";
  src: url("../fonts/ZenKakuGothicNew-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Regular";
  src: url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Medium";
  src: url("../fonts/NotoSansCJKjp-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Bold";
  src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Black";
  src: url("../fonts/NotoSansCJKjp-Black.woff2") format("woff2");
  font-display: swap;
}
/*	layout
------------------------------------ */
/* animation
例）animation: fadedown .5s ease-in-out;
遅延）animation-delay: 0.5s;
最後の状態維持）animation-fill-mode: forwards;
------------------------------------ */
@keyframes fadedown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(-5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  50% {
    transform: translateY(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes faderight {
  0% {
    transform: translateX(10px);
    opacity: 0;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes grad-fill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes floatY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--amp));
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*	font-size  cmn
------------------------------------ */
/*	cmn parts
------------------------------------ */
.md-inner {
  width: 100%;
  max-width: 1280px;
  margin: auto;
}

/* =========================================

  main layout  all

========================================= */
/* top-news  PC
------------------------------------ */
#top-news .news-inner {
  padding: 180px 0 220px;
}

/* top-greeting  PC
------------------------------------ */
#top-greeting .greeting-inner {
  padding-bottom: 160px;
}

/* top-service  PC
------------------------------------ */
#top-service .service-inner {
  padding: 170px 0 133px;
}

/* top-works  PC
------------------------------------ */
#top-works .works-inner {
  padding: 143px 0 103px;
}

/* top-information  PC
------------------------------------ */
#top-information .information-inner {
  padding: 128px 0 140px;
}
@media screen and (max-width: 1442px) {
  #top-information .information-inner {
    width: 83%;
  }
}

/* com-cmpany  PC
------------------------------------ */
.com-company .company-inner {
  max-width: 1200px !important;
  padding: 141px 0 147px;
}

/* =========================================

  sub layout  all

========================================= */
.sub .com-inner {
  max-width: 1080px;
}

/* about  PC
------------------------------------ */
#about .concept-inner {
  padding: 160px 0 144px;
}
#about .faq-inner {
  padding: 146px 0 120px;
}

/* works  PC
------------------------------------ */
#works .works-inner {
  padding-top: 145px;
}

/* information  PC
------------------------------------ */
#information .information-inner {
  padding-top: 145px;
}

/* company  PC
------------------------------------ */
#company .greeting-inner {
  padding: 160px 0 136px;
}
#company .staff-inner {
  padding: 128px 0 117px;
}

/* contact  PC
------------------------------------ */
#contact .contact-inner {
  padding: 160px 0 140px;
}
#contact .mail {
  margin: 0 auto 114px;
}
#contact .mail-inner {
  padding: 130px 0 120px;
}/*# sourceMappingURL=style.css.map */