@charset "utf-8";

.nav_toziru {
  margin-left: 30px;
  margin-top: 25px;
  cursor: pointer;
}

.nav_toziru img {
  width: 26px;
}

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(MaterialIcons-Regular.eot);
  /* For IE6-8 */
  src:
    local("Material Icons"),
    local("MaterialIcons-Regular"),
    url(MaterialIcons-Regular.woff2) format("woff2"),
    url(MaterialIcons-Regular.woff) format("woff"),
    url(MaterialIcons-Regular.ttf) format("truetype");
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  word-wrap: normal;
  -moz-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
  direction: ltr;
  color: rgb(180, 180, 180);
}

.mdl-navigation {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.mdl-navigation__link {
  color: var(--font-color);
  text-decoration: none;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  opacity: 0.87;
  cursor: pointer;
}

.mdl-layout__drawer {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 260px;
  height: 100%;
  max-height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.2),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  border-right: 1px solid var(--border-gray-color);
  background: var(--main-color);
  transform: translateX(-270px);
  transform-style: preserve-3d;
  will-change: transform;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-property:
    transform,
    -webkit-transform;
  color: var(--font-color);
  overflow: visible;
  overflow-y: auto;
  z-index: 99;
}

.mdl-layout__drawer.is-visible {
  transform: translateX(0);
}

.mdl-layout__drawer.is-visible ~ .mdl-layout__content.mdl-layout__content {
  overflow: hidden;
}

.mdl-layout__drawer > * {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.mdl-layout__drawer > .mdl-layout__title,
.mdl-layout__drawer > .mdl-layout-title {
  margin-top: 28px;
  margin-left: 30px;
}

.mdl-layout__drawer .mdl-navigation {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-top: 16px;
}

.mdl-layout__drawer .mdl-navigation .mdl-navigation__link {
  display: block;
  flex-shrink: 0;
  padding: 10px 30px;
  margin: 0;
  color: var(--font-color);
}

.mdl-layout__drawer .mdl-navigation .mdl-navigation__link:hover {
  background-color: var(--border-gray-color);
}

.mdl-layout__drawer .mdl-navigation .mdl-navigation__link--current {
  background-color: var(--border-gray-color);
  color: var(--font-color);
}

.mdl-layout__drawer-button {
  display: block;
  position: absolute;
  height: 48px;
  width: 48px;
  flex-shrink: 0;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  font-size: 26px;
  font-family: Helvetica, Arial, sans-serif;
  margin: 8px 12px 8px 12px;
  top: 0;
  left: 0;
  color: var(--main-color);
  z-index: 4;
  line-height: 56px;
}

.mdl-layout__header {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 98;
}

.mdl-layout__obfuscator {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 98;
  visibility: hidden;
  transition-property: background-color;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@supports (pointer-events: auto) {
  .mdl-layout__obfuscator {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition-property: opacity;
    visibility: visible;
    pointer-events: none;
  }
  .mdl-layout__obfuscator.is-visible {
    pointer-events: auto;
    opacity: 1;
  }
}

/* スマホ用css設定 */
@media screen and (max-width: 750px) {
  .mdl-layout__drawer > .mdl-layout__title,
  .mdl-layout__drawer > .mdl-layout-title {
    line-height: 56px;
    padding-left: 16px;
  }

  .mdl-layout__drawer .mdl-navigation .mdl-navigation__link {
    padding: 10px 5%;
    font-size: 13px;
  }

  .mdl-layout__drawer-button {
    margin: 4px;
    color: rgba(0, 0, 0, 0.5);
  }
}

@media screen and (min-width: 751px) {
  .mdl-layout--fixed-drawer > .mdl-layout__drawer {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .mdl-layout__drawer-button {
    line-height: 54px;
  }
  .mdl-layout--no-desktop-drawer-button .mdl-layout__drawer-button,
  .mdl-layout--fixed-drawer > .mdl-layout__drawer-button,
  .mdl-layout--no-drawer-button .mdl-layout__drawer-button {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .mdl-layout__header {
    justify-content: center;
  }
}

@media screen and (max-width: 520px) {
  .nav_toziru {
    margin-left: 10%;
    margin-top: 25px;
  }

  .nav_toziru img {
    width: 23px;
  }

  .mdl-layout__drawer {
    width: 200px;
  }

  .mdl-layout__drawer .mdl-navigation {
    padding-top: 10px;
  }

  .logout-button {
    width: 150px;
    height: 36px;
    font-size: 13px;
    color: var(--font-color);
    background-color: var(--main-color);
    border-radius: 18px;
    border: 1px solid var(--gray-color);
    margin: 13px auto 0;
  }

  .mdl-layout__drawer-button {
    margin: 0px;
    color: rgba(0, 0, 0, 0.5);
  }
}
