@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

*,
*:before,
*:after {
  box-sizing: border-box;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: Noto Sans JP;
}

.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.button {
  appearance: none;
  color: #fff;
  background-color: #2fa0f6;
  min-width: 120px;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-align: center;
}

.button svg {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  fill: #fff;
}

.button span {
  display: none;
}

@media (min-width: 600px) {
  .button span {
    display: initial;
  }
}

.button--icon {
  min-width: initial;
  padding: 0.5rem;
}

.direct-message .menu-chat-list {
  position: relative;
}

.menu-chat-list {
  position: relative;
  top: -8px;
  left: -16px;
  fill: red;
}

.org-menu-chat-list {
  position: relative;
  top: -24px;
  left: -6px;
  fill: red;
}

.direct-message .notification-direct-message {
  width: 100%;
  position: absolute;
  top: -6px;
  right: -12px;
  fill: red;
}

/* header */
.header-company {
  width: 100%;
  padding: 5px 0;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 5000;
}

@media screen and (max-width: 480px) {
  .header-company {
    display: none;
  }
}

.header-company-logo {
  margin-left: 160px;
}

.header-company-logo-img {
  width: 114px;
  height: auto;
  margin-top: 5px !important;
}