<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

html {
  overflow: hidden;
}

.header-wrap {
  height: 85px;
  display: flex;
  justify-content: flex-start;
}

ul {
  display: flex;
  margin-left: auto;  /* 右寄せ */
  align-items: center;  /* 上下中央 */
}

li {
  list-style: none;
  padding: 10px;
  width: 125px;
  text-align: center;
  /* 以下、微調整 */
  position: relative;
  left: -5px;
}

.work {
  padding-right: 45px;
}

.contact {
  background-color: #000;
  width: auto;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: underline;
}

.contact-color {
  color: #fff;  /* 問い合わせの文字色 */
}

.img-company-logo {
  width: 90px;
  height: 80px;
}

.img-company-name {
  width: 210px;
  height: 80px;
}

.spacer {
  width: 0%;
}

@media screen and (max-device-width: 740px) {
  ul {
    margin-left: 0;
    align-items: start;
    padding-inline-start: 0;
    margin-top: 10px;
  }

  li {
    width: auto;
    padding-left: 20px;
  }

  .img-company-logo {
    width: 118px;
    height: 100px;
  }

  .img-company-name {
    width: 264px;
    height: 100px;
  }

  .header-wrap {
    flex-wrap: wrap;
  }

  .spacer {
    width: 100%;
  }

  .header-link {
    font-size: 250%;
    justify-content: space-around;
    width: 100%;
  }

  .contact-color {
    padding-right: 10px;
  }

}
</pre></body></html>