@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "NotoSansCJKjp-Regular";
  src: url("../fonts/NotoSansCJKjp-Regular.otf");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Medium";
  src: url("../fonts/NotoSansCJKjp-Medium.otf");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Bold";
  src: url("../fonts/NotoSansCJKjp-Bold.otf");
  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: 160px 0 150px;
}

/* top-about  PC
------------------------------------ */
#top-about .about-inner {
  padding: 130px 0 110px;
}

/* top-wb  PC
------------------------------------ */
#top-wb .wb-inner {
  padding: 190px 0 177px;
}

/* top-reason  PC
------------------------------------ */
#top-reason .reason-inner {
  padding: 55px 0 66px;
}

/* top-voice  PC
------------------------------------ */
#top-voice .voice-inner {
  padding: 130px 0 137px;
}

/* top-faq  PC
------------------------------------ */
#top-faq .faq-inner {
  padding: 127px 0 135px;
}

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

  sub layout  all

========================================= */
/* wb  PC
------------------------------------ */
#wb .about-inner {
  padding: 113px 0 120px;
}
#wb .reason-inner {
  padding: 35px 0 100px;
}
#wb .flow-inner {
  padding: 110px 0;
}

/* faq  PC
------------------------------------ */
#faq .faq-inner {
  padding: 125px 0 120px;
}

/* voice  PC
------------------------------------ */
#voice .voice-inner {
  padding: 115px 0 97px;
}

/* about  PC
------------------------------------ */
#about .about-inner {
  padding: 120px 0;
}
#about .company-inner {
  padding-bottom: 50px;
}/*# sourceMappingURL=style.css.map */