@charset "UTF-8";
@media screen and (max-width: 768px) {
  /* max-widthは「ブラウザ幅が最大でも○px」の時（主にスマホ版） */
  .fv {
    height: 60vh;
  }
  .fv img {
    width: 80%;
    height: 50vh;
    top: 10%;
    left: 10%;
  }
  .news {
    padding: 2rem;
  }
  .news ul {
    font-size: 1.2rem;
  }
  .business {
    padding: 3rem 0 5rem;
  }
  .business .item {
    width: 90%;
    margin: 0 auto;
  }
  .client {
    padding: 3rem 3rem;
  }
  .client .client-list_box .client-list .client-name {
    font-size: 1rem;
    width: calc(100% / 2);
  }
  .about {
    height: 40vh;
  }
  .about .about-bg {
    background-size: 200px auto;
  }
  .about .about-text {
    font-size: 1.3rem;
  }
  .about .about-text p {
    padding-bottom: 1rem;
  }
  .contact {
    padding: 3rem;
  }
  .contact .sec-contact_inner .information {
    font-size: 1.3rem;
    white-space: nowrap;
    display: grid;
    grid-template-columns: auto 1fr;
    line-height: 2rem;
    padding-top: 1rem;
  }
}

/* @media */
