@charset "utf-8";

.header {
  width: 100%;
  position: fixed;
  z-index: 99;
  transition: all 0.3s ease;
}
.group .header {
  position: relative;
}

.header__wrapper {
  width: 100%;
  height: 100%;
  padding: 33px 40px 2px 37px;
}

.group .header__wrapper {
  position: absolute;
  padding-top: 35px;
}

.header__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header__left {
  max-width: 202px;
  position: relative;
  z-index: 99;
}
.group .header__left {
  max-width: 100%;
}
.header__logoLink img {
  width: 100%;
}
.header__menuLogo {
  max-width: 202px;
  width: 60%;
}
.header__menuLogoLink {
  display: block;
  width: 100%;
}
.header__nav {
  max-width: 416px;
  padding-top: 80px;
  padding-bottom: 70px;
  /* margin-left: auto; */
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.header__nav-list {
  width: fit-content;
}
.header__nav-listItem + .header__nav-listItem {
  margin-top: 40px;
}
.header__nav-listItem {
  /* width: 34%; */
}
.header__nav-listLink {
  display: block;
  width: fit-content;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
  color: #fff;
}
.header__nav-en {
  display: block;
  padding-top: 3px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #a0a0a0;
}
.header__copy {
  padding-top: 19px;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}

.header__nav-inner {
  width: calc(100% - 44px);
  max-width: 340px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.header__navWrap {
  width: 100%;
  max-width: 400px;
  height: 100%;
  padding-top: 40px;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #0f1c3e;
  z-index: 999;
  overflow: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  transform: translateX(100%);
  transition: 0.2s;
}
.header__navWrap::-webkit-scrollbar {
  display: none;
}
.header__navWrap.panelactive {
  transform: translateX(0);
}

.ham {
  /* width: 54px;
  height: 21px; */
  /* padding-right: 13px; */
  cursor: pointer;
  z-index: 9999;
  /* display: none; */
  font-size: 11px;
  position: relative;
}
.group .ham {
  position: fixed;
  top: 33px;
  right: 40px;
  transition: all 0.3s ease;
}
.group .ham.open {
  top: 33px !important;
  right: 40px !important;
}
.ham__menuIcon {
  display: block;
  width: 85px;
  height: 31px;
  background: url(../imgs/common/menu.png) center center / cover no-repeat;
}
.ham.open .ham__menuIcon {
  background: url(../imgs/common/close.png) center center / cover no-repeat;
}
.header__other {
  margin-bottom: 50px;
}
.header__otherLineWrap {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__otherTtl {
  min-width: fit-content;
  padding-right: 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #a0a0a0;
  position: relative;
}

.header__otherLine {
  display: block;
  width: 100%;
  height: 1px;
  background: #a0a0a0;
}
.header__otherGroupTxt {
  padding-left: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
}
.header__otherGroupTxt + .header__otherGroupTxt {
  margin-top: 10px;
}
.header__otherGroupTxt::before {
  display: block;
  content: "";
  width: 5px;
  height: 2px;
  background: #a0a0a0;
  position: absolute;
  top: 12px;
  left: 0;
}
.copy {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #a0a0a0;
}

@media screen and (max-width: 750px) {
  .header__wrapper {
    padding: 18px 18px 2px 21px;
  }
  .header__navWrap {
    padding-top: 25px;
  }
  .group .header__wrapper {
    padding: 25px 18px 2px;
  }
  .group .header__left {
    max-width: 222px;
  }
  .group .ham {
    top: 18px;
    right: 18px;
  }
  .group .ham.open {
    top: 18px !important;
    right: 18px !important;
  }
}

@media screen and (max-width: 375px) {
  .group .header__left {
    max-width: 59.199vw;
  }
  .group .header__menuLogo {
    max-width: 53.866vw;
  }
  .header__nav-listLink {
    font-size: 14px;
  }
}
