@charset "utf-8";


.header {
  width: 100%;
  position:fixed;
  top: 0;
  left: 0;
  z-index: 5;
  transition: all 0.3s ease;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}


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);
}
  .inner-nav {
    padding-top: 35px;
    max-width: none;

  }

.header__wrapper {
  width: 100%;
  /* max-width: 1880px; */
  margin: 0 auto;
  height: 100%;
  padding: 60px 50px 20px 90px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__left {
  max-width: 227px;
  position: relative;
  z-index: 4;
}
.header__logoLink img {
  width: 100%;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  padding: 0px 0px 0px 42px;
  border-radius: 15px;
  transition: .3s;

}

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

.header__nav-list li {
  position: relative;
}

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

.header__nav-listItem a {
  padding: 5px 5px 0 5px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.75;
  letter-spacing: 0.15em;
  transition: .4s;
  border-bottom: 1px solid #fff;
}

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

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

.ham {
  width: 65px;
  height: 48px;
  cursor: pointer;
  z-index: 9999;
  display: block;
}

.ham__lineWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.ham__lineWrapper span {
  display: block;
  width: 65px;
  height: 4px;
  background-color: #000;
  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 .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: 1100px) { */

  .header__inner {
    display: block;
  }
  .header__spWrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__logoLink {
    display: block;
    width: 100%;
    margin: 0 auto;
  }


  .header__navWrap {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    padding-top: 67px;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -99;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}
.header__navWrap.panelactive{
	opacity: 1;
  pointer-events: all;
	z-index:999;
}
/*ナビゲーションの縦スクロール*/

.header__navWrap.panelactive .header__navScroll{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
  .header__nav {
    flex-direction: column;
    max-width: 300px;
    min-height: 550px;
    padding: 0 15px;
    margin: 0 auto;
  }
  .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;
  }


@media screen and (max-width: 1600px) {
.header__wrapper{
  padding: 30px 30px 20px 45px;
}
 .ham {
  width: 40px;
  height: 30px;
 }

.ham__lineWrapper span {
  width: 40px;
  height: 3px;
}

}

@media screen and (max-width: 1300px) {
  .header__wrapper {
    padding-left: 20px;
  }
  .header__left {
    max-width: 200px;
  }
  .header__logoLink img {
  width: 100%;
  /* min-width: 170px; */
}
  .header__nav {
    gap: 23px;
  }
  .header__nav-list {
    gap: 9px;
  }

.ham {
  width: 30px;
  height: 25px;
 }
  .ham__lineWrapper span {
        width: 30px;
        height: 3px;
  }
}



@media screen and (max-width: 1290px) {
  .header__nav {
    padding: 0px 0px ;
  }
  .header__nav-listItem a{
    font-size: 14px;
  }
}

@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;
  }

  .header__wrapper{
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .header__left {
    width: 142px;
  }
  .header__wrapper {
    padding: 20px 10px;
}
}




/* 
.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;
  }
}

