@charset "UTF-8";


/*---------------------------------------------------------------*\
$header
\*---------------------------------------------------------------*/

header {
  width: 95%;
  margin: 0 auto;
  padding: 32px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: fixed;
  right: 0;
  left: 0;
}

header .pc_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .sp_header {
  display: none;
}

header .logo_header {
  width: 130px;
  position: relative;
}

header .logo_header a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

header .menu_header {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.07);
  padding: 12px 12px 12px 40px;
}

header .menu_header ul {
  display: flex;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

header .each_menu a {
  font-size: 15px;
}

header .button_header {
  width: 180px;
  height: 56px;
  border-radius: 80px;
}

header .button_header a {
  width: 100%;
  height: 100%;
}


@media screen and (max-width: 1080px) {

  header {
    padding: 16px 0 0;
  }

  header .pc_header {
    display: none;
  }

  header .sp_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  header .logo_header {
    width: 130px;
  }

  header .menu_icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 10px;
    cursor: pointer;
    gap: 4px;
  }

  header .menu_border {
    width: 18px;
    height: 1px;
    border-radius: 50px;
  }


  @media screen and (max-width: 600px) {

    header .logo_header {
      width: 100px;
      margin: 0 0 0 4px;
    }

    header .menu_icon {
      width: 48px;
      height: 48px;
    }
  }
}