@charset "utf-8";

.header {
  width: 100%;
  position: fixed;
  z-index: 99;
  transition: all 0.3s ease;
}
/* .header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
} */
/* header.header__fixed {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 10;
} */

body.fixed {
  height: 100%;
  overflow: hidden;
}

.inner-nav {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 67px;
  background-color: rgba(255, 255, 255, 0.9);
}

.header__wrapper {
  width: 100%;
  height: 100%;
  padding: 27px 30px 10px 37px;
}

.header__wrapper .inner-1260 {
  width: 92%;
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__left {
  max-width: 175px;
  position: relative;
  z-index: 9999;
}
.header__logoLink img {
  width: 100%;
  /* min-width: 227px; */
}
.header__navWrap.sp-menu {
  display: none;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 33px; */
  /* padding: 0px 0px 0px 42px; */
  border-radius: 15px;
  transition: 0.3s;
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 27px;
}

.header__nav-list li {
  position: relative;
}

.header__nav-list li:last-child {
  margin-right: 0;
}

.header__nav-listItem a {
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 2;
  transition: 0.4s;
  /* border-bottom: 1px solid #fff; */
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.header__nav-listItem a:hover {
  /* border-bottom: 1px solid #000; */
  color: #bfff0d;
}

.insta__link {
  display: block;
  width: 24px;
  padding-top: 5px;
}
.mih__link {
  display: block;
  width: 191px;
}

.ham {
  /* width: 54px;
  height: 21px; */
  padding-right: 13px;
  cursor: pointer;
  z-index: 9999;
  display: none;
  font-size: 11px;
  position: relative;
}
/* .ham__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
} */
/* .ham__menu,
.ham__close {
  transition: opacity 0.3s;
  text-align: center;
  
} */
.ham__menuIcon {
  display: block;
  width: 47px;
  height: 39px;
  background: url(../imgs/common/menu_sp.png) center center / cover no-repeat;
}
.ham.open .ham__menuIcon {
  background: url(../imgs/common/close_sp.png) center center / cover no-repeat;
}
/* 初期状態：MENU表示 */
.ham__menu {
  opacity: 1;
  pointer-events: auto;
}
.ham__close {
  opacity: 0;
  pointer-events: none;
}
/* 開いてるとき：CLOSE表示 */
.ham.open .ham__menu {
  opacity: 0;
  pointer-events: none;
}
.ham.open .ham__close-icon {
  opacity: 1;
  pointer-events: auto;
}

.ham__close-icon {
  position: relative;
  width: 34px;
  height: 11px;
  margin-bottom: 8px;
  opacity: 0;
}

.ham__close-icon::before,
.ham__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform-origin: center;
}

.ham__close-icon::before {
  transform: rotate(15deg);
}

.ham__close-icon::after {
  transform: rotate(-15deg);
}
/* .ham__lineWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.ham__lineWrapper span {
  display: block;
  font-size: 11px;
  width: 32px;
  height: 3px;
  background-color: #372828;
  position: absolute;
  left: 50%;
  transition: 0.3s;
} */

/* .ham__lineWrapper span:nth-child(1) {
  transform: translateX(-50%);
  top: 0px;
}

.ham__lineWrapper span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.ham__lineWrapper span:nth-child(3) {
  transform: translateX(-50%);
  bottom: 0px;
} */

/* .ham.open {
  width: 32px;
  height: 21px;
} */

/* .ham.open .ham__lineWrapper span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(33deg);
  top: 50%;
}

.ham.open .ham__lineWrapper span:nth-child(2) {
  opacity: 0;
}
.ham.open .ham__lineWrapper span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-33deg);
  top: 50%;
} */

.nav__listWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 30px;
}

.nav__list--heading {
  text-align: center;
}

.nav__listContents {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.nav__listItem {
  text-align: center;
}

.nav__listBtn {
  padding-top: 33px;
}

.nav__listItem.lst {
  margin-bottom: 0;
}
.nav__listItem.mg-btm {
  margin-bottom: 30px;
}

.nav__listLink {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  padding: 5px 0;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 1360px) {
  .ham {
    transform: unset;
  }
}

@media screen and (max-width: 975px) {
  .header__wrapper {
    padding: 7px 15px 10px 15px;
  }
  .header__nav-list {
    gap: 6px;
  }
}

@media screen and (max-width: 850px) {
  .header__inner {
    display: block;
  }
  .header__spWrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__logoLink {
    width: 100%;
    max-width: 144px;
    margin: 0 auto;
  }

  .header__wrapper {
    padding: 18px;
    padding-right: 2px;
  }
  .header__navWrap.pc-menu {
    display: none;
  }
  .header__navWrap.sp-menu {
    display: block;
  }
  .header__navWrap {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    padding-top: 142px;
    background-color: #2e6f53;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -99;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .is-resize .header__navWrap {
    transition: none;
  }
  .header__navWrap.panelactive {
    opacity: 1;
    pointer-events: all;
    width: 100%;
    height: 100vh; /* 全画面の高さ */
    overflow-y: auto; /* 縦スクロール */
  }
  /*ナビゲーションの縦スクロール*/

  .header__navWrap.panelactive .header__navScroll {
    /*ナビの数が増えた場合縦スクロール*/
    /* position: fixed; */
    /* z-index: 999;  */
    /* width: 100%; */
    /* height: 100vh; */
    /* max-height: calc(100vh - 60px);; */
    /* overflow: auto; */
    /* -webkit-overflow-scrolling: touch; */
  }
  .header__nav {
    /* flex-direction: column;
    justify-content: flex-start;
    max-width: 375px;
    min-height: 550px;
    padding: 0 18px;
    margin: 0 auto; */
    margin-bottom: 63px;
  }
  .header__nav.open {
    display: block;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .insta__link {
    margin: 0 auto 15px;
  }
  .mih__link {
    margin: 0 auto;
  }

  .ham {
    display: block;
  }

  .inner-nav {
    padding-top: 35px;
    max-width: none;
  }

  /* 追加SPだけの */
  .header__spInner {
    max-width: 375px;
    min-height: 550px;
    padding: 0 18px;
    margin: 0 auto;
  }
  .header__nav-list-sp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 54px;
  }
  .header__nav-listItem-sp {
    width: 48%;
  }
  .header__nav-listLink-sp {
    display: block;
    width: fit-content;
    font-family: "NHaasGroteskDSPro-55Rg";
    font-size: 29px;
    color: #bfff0d;
  }
  .header__nav-jp-sp {
    display: block;
    font-size: 12px;
    color: #fff;
  }
  .header__menuBox {
    padding: 13px 0 21px;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
  }
  .header__menuLeft {
    width: 24%;
    font-weight: 400;
    font-size: 14px;
  }
  .header__menuRight {
    width: 76%;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5384;
  }
  .copy {
    margin-top: 23px;
    font-size: 10px;
    font-family: "NHaasGroteskDSPro-55Rg";
    color: rgba(255, 255, 255, 0.51);
  }
}

@media screen and (max-width: 750px) {
  .nav__listContents {
    max-width: 360px;
  }
  .nav__list--type01 {
    max-width: 150px;
  }
  .nav__list--type02 {
    max-width: 95px;
  }
  .nav__listLink {
    font-size: 20px;
    padding: 0;
  }
  .nav__listItem:not(:last-child) {
    margin-bottom: 7px;
  }
  .nav__listItem--type01 {
    margin-bottom: 14px !important;
  }
  .nav__listItem.lst {
    margin-bottom: 9px;
  }
  .nav__listItem.mg-btm {
    margin-bottom: 25px;
  }

  .parent {
    padding-top: 10px;
    padding-left: 11px;
  }
  .parent__item {
    font-size: 13px;
  }
  .lang__list--item .btn::after {
    right: 9px;
  }
}

@media screen and (max-width: 480px) {
  .header__left {
    max-width: 150px;
  }
}

@media screen and (max-width: 500px) {
  .nav__listContents {
    max-width: 280px;
  }
}

/* 
.header_bg {
  background: #323232;
  width: 100%;
  height: 80px;
}
.header_contents {
  width: 100%;
  max-width: 1024px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_contents h1 {
  font-size: 22px;
  margin: 0 0 0 40px;
}
.header_nav_lists {
  display: flex;
}
.header_nav_lists li {
  margin: 0 40px 0 0;
}
.nav_link {
  font-size: 18px;
}
.responsive_btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 40px 0 0;
  cursor: pointer;
  position: relative;
  z-index: 10;
} */
/* .menu_line {
  background: #e61010;
  border-radius: 5px;
  width: 100%;
  height: 5px;
  margin: 4px 0;
} */
@media screen and (max-width: 768px) {
  .responsive_btn {
    display: flex;
  }
  .header_bg {
    position: relative;
  }

  .header_nav_lists {
    display: block;
    text-align: center;
  }
  .header_nav_lists li {
    margin: 0 0 40px;
    text-align: center;
  }
  .nav_link {
    font-size: 20px;
  }
}
