@charset "UTF-8";

/**
 * オリジナルcss
 */

#header {
  width: 100%;
  z-index: 100;
  transition: 0.3s;
  height: 62px;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.08);
}

.admin-bar #header {
  margin-top: 32px;
}

#header-in {
  padding: 0 32px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  align-items: center;
  justify-content: space-between;
}

.site_info {
  text-align: center;
  width: fit-content;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  align-items: center;
  .logo {
    padding-top: 4px;
    margin-top: 0px;
    margin-bottom: 0;
    img {
      height: 53px;
      vertical-align: top;
    }
  }
  .site_description {
    font-size: 1.2rem;
    text-align: left;
  }
}

.header_navi_menu {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  list-style: none;
  li {
    height: 100%;
    position: relative;
    a {
      display: block;
      display: flex;
      color: var(--c1);
      justify-content: center;
      align-items: center;
      text-decoration: none;
      padding: 6px 0;
      font-size: 1.4rem;
      font-family: var(--mi);
    }
    .header_navi_menu_sub_menu {
      position: absolute;
      top: 100%;
      left: 0;
      opacity: 0;
      visibility: hidden;
    }
  }
  li:hover {
    .header_navi_menu_sub_menu {
      opacity: 1;
      visibility: visible;
    }
  }
  li.contact {
    a {
      padding: 16px 40px;
      color: #fff;
      background: var(--c1);
      border-radius: 8px;
    }
  }
  li.download {
    a {
      color: var(--c1);
      background: #fff;
      border: 1px solid var(--c1);
      padding: 16px 40px;
      border-radius: 8px;
    }
  }
}

@media screen and (max-width: 1320px) {
  #header-in {
    width: 100%;
  }
  .site_description {
    display: none;
  }
}
@media screen and (max-width: 1260px) {
  .header_navi_menu li {
    display: none;
  }

  .header_navi_menu li.contact,
  .header_navi_menu li.download,
  .header_navi_menu li.header_hm_button_wrap {
    display: block;
  }
}
@media screen and (max-width: 782px) {
  .admin-bar #header {
    margin-top: 46px;
  }
}
@media screen and (max-width: 740px) {
  #header.header_valid .logo_image_b {
    max-width: 88px;
  }
  .header_navi_menu {
    gap: 8px;
  }
  .header_navi_menu li.contact a,
  .header_navi_menu li.download a {
    font-size: 1rem;
    padding: 8px 12px;
  }
  .header_navi_menu li.download {
    margin-left: ;
  }
}

@media screen and (max-width: 639px) {
  #header {
    height: 48px;
  }
  #header-in {
    padding: 1px;
  }

  .site_info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 11px;
    .logo {
      order: 1;
      padding-top: 0;
      img {
        display: block;
        height: 33px;
      }
    }
  }

  .header_navi_menu li.header_contact {
    display: none;
  }
}
@media screen and (max-width: 500px) {
}
