@charset "UTF-8";

/**
 * header
 */

#header {
  #header-in {
    padding-top: 16px;
  }
}

.site_header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  .logo {
    img {
      max-width: 200px;
    }
  }
  .site_info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    img {
      max-width: 280px;
    }
  }
}

.site_search {
  border: 1px solid var(--c2);
  border-radius: 8px;
  overflow: hidden;
  input,
  input:focus {
    border: none;
    outline: none;
    padding: 6px;
    width: 330px;
  }
  #searchsubmit {
    background-image: url("../images/header/search_button.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 64px;
    height: 64px;
    border: none;
    cursor: pointer;
    text-indent: -9999px;
  }
}
.header_navi {
  width: 100%;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  container-type: inline-size;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--c2);
  margin-bottom: 16px;
  a {
    border-right: 1px solid var(--c2);
    display: flex;
    width: 14%;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.4cqw;
    padding: 12px 6px;
    span {
      color: #91754d;
    }
  }
  .menu {
    width: 20%;
  }
  .case {
    width: 12%;
  }
  .about {
    width: 30%;
  }
  .voice {
    width: 12%;
  }
  .faq {
    width: 14%;
  }
  .access {
    width: 12%;
    border-right: none;
  }
}

@media screen and (max-width: 1110px) {
}
@media screen and (max-width: 740px) {
  #header {
    height: 60px;
    #header-in {
      padding-top: 4px;
    }
  }
  .site_header {
    .logo {
      img {
        max-width: 189px;
      }
    }
  }
}
@media screen and (max-width: 639px) {
}
@media screen and (max-width: 500px) {
}
