@charset "utf-8";
/* layout *************************************************************************/
#header {
  width: 100%;
  background: #000000;
  position: fixed;
  z-index: 100;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  column-gap: 32px;
  row-gap: 0;
}
.header-logo {
  width: 200px;
  padding-left: 32px;
  box-sizing: border-box;
}
.header-linksBox,
.header-links,
.header-ctas {
  display: flex;
}
.header-ctas img {
  height: 14px;
}
.header-linksBox a {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  height: 100px;
  line-height: 100px;
  letter-spacing: 0.05rem;
}
.header-links li a {
  padding: 0 1.5rem;
  box-sizing: border-box;
}
.header-link_concept,
.header-link_lineUp,
.header-link_aboutUs {
  border-right: solid 1px #fff;
}
.header-dl,
.header-mail {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.header-ctas a {
  padding: 0 32px;
  box-sizing: border-box;
}
.header-dl {
  background: #e61051;
}
.header-mail {
  background: #618eb6;
}

.hamburger,
.mobile-menu {
  display: none;
}
@media screen and (max-width: 1300px) {
  #header {
    width: 100%;
    background: #000000;
    position: fixed;
    z-index: 100;
  }
  .header-wrap {
    column-gap: 24px;
    row-gap: 0;
  }
  .header-logo {
    width: 150px;
    padding-left: 24px;
  }
  .header-ctas img {
    height: 12px;
  }
  .header-linksBox a {
    font-size: 0.9rem;
    height: 80px;
    line-height: 80px;
  }
  .header-links li a {
    padding: 0 1rem;
  }
  .header-dl,
  .header-mail {
    column-gap: 6px;
  }
  .header-ctas a {
    padding: 0 24px;
  }
}
@media screen and (max-width: 1024px) {
  #header {
    height: 60px;
  }
  .header-wrap {
    height: 60px;
  }
  .header-logo {
    width: 160px;
    padding-left: 24px;
  }
  .header-ctas img {
    height: 12px;
  }

  /*  */
  .header-linksBox {
    display: none;
  }
  .hamburger,
  .mobile-menu {
    display: block;
  }
  /* ハンバーガーアイコン */
  .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
  }
  .hamburger li {
    margin: 6px 0;
    transition: 0.3s ease-in-out;
  }
  .hamburger li:first-child {
    margin: 0 0 6px;
  }
  .hamburger li:last-child {
    margin: 6px 0 0;
  }
  .hamburger li span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 3px;
  }
  .hamburger.active {
    top: 27px;
  }
  .hamburger.active li:nth-child(2) {
    display: none;
  }
  .hamburger.active li:first-child {
    transform: rotate(-45deg) translateY(2px);
    margin: 0;
  }
  .hamburger.active li:last-child {
    transform: rotate(45deg) translateY(-2px);
    margin: 0;
  }

  /* モバイルメニュー初期状態 */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #000;
    color: #fff;
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    padding: 60px 0 20px;
  }
  .mobile-menu.active {
    right: 0;
  }
  .menu-links li,
  .menu-ctas li {
    margin: 0;
  }
  .menu-links {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .menu-links a {
    color: #fff;
    font-size: 1rem;
    border-bottom: 1px solid #fff;
    display: block;
    height: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.05rem;
    padding: 15px 0;
    margin: 15px 0;
  }
  .menu-links li:first-child a {
    margin: 0 0 15px;
  }
  .menu-links li:last-child a {
    border-bottom: 0 solid #fff;
    margin: 15px 0 0;
  }
  .menu-ctas a {
    display: flex;
    align-items: center;
    color: #fff;
    height: 30px;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    padding: 20px;
    column-gap: 12px;
  }
  .menu-ctas a img {
    height: 1rem;
    width: auto;
  }
  .menu-ctas .header-dl {
    background: #e60057;
  }

  .menu-ctas .header-mail {
    background: #5c91b8;
  }
}
