@charset "utf-8";

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

.header__inner {
  width: 92vw;
  max-width: 1260px;
  padding: 10px 36px 12px 26px;
  margin: 0 auto;
  background: #fff;
  border-radius: 999px;
  border: 2px solid #7361a9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__left {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  /* position: relative;
  z-index: 4; */
}
.title {
  max-width: 227px;
  padding-top: 3px;
}
.hokkaido {
  width: 80px;
  padding-top: 10px;
}

.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: 14px;
}

.header__nav-list li {
  position: relative;
  padding-left: 20px;
}
.header__nav-list li::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../imgs/common/nav_dot.png) center center / cover;
  position: absolute;
  top: 13px;
  left: 3px;
}

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

.header__nav-listItem a {
  padding: 5px 5px 0 5px;
  font-size: 20px;
  font-family: "MFW-UDShinMGoPro-Heavy";
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.75;
  transition: 0.4s;
  color: #595757;
  /* border-bottom: 1px solid #fff; */
}

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

.ham {
  width: 26px;
  height: 20px;
  cursor: pointer;
  z-index: 9999;
  display: none;
}

.ham__lineWrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
}

.ham__lineWrapper span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #373838;
  border-radius: 999px;
  position: absolute;
  transition: 0.3s;
  border-radius: 999px;
}

.ham__lineWrapper span:nth-child(1) {
  transform: translate(0, -7px);
}

.ham__lineWrapper span:nth-child(2) {
}
.ham__lineWrapper span:nth-child(3) {
  transform: translate(0, 7px);
}

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

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

.ham.open .ham__lineWrapper span:nth-child(2) {
  opacity: 0;
}
.ham.open .ham__lineWrapper span:nth-child(3) {
  transform: rotate(-45deg);

  /* top: 50%; */
}

@media screen and (max-width: 1360px) {
  .ham {
    transform: unset;
  }
}

@media screen and (max-width: 1200px) {
  .header__inner {
    padding: 5px 17px 5px 18px;
  }
  .title {
    width: 180px;
  }
  .header__left {
    gap: 0;
  }
  .header__nav {
    padding: 0px 0px;
  }
}

@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 {
    width: 100%;
    max-width: 144px;
    margin: 0 auto;
  }
  .is-resize .header__navWrap {
    transition: none;
  }
  .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;
    justify-content: flex-start;
    max-width: 300px;
    min-height: 550px;
    padding: 60px 15px 0;
    margin: 0 auto;
  }
  .header__nav.open {
    display: block;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    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;
  }
}

@media screen and (max-width: 750px) {
  .header {
    top: 12px;
  }
  .title {
    width: 162px;
  }
  .hokkaido {
    width: 62px;
  }
  .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) {
  .title {
    width: 120px;
  }
  .hokkaido {
    padding-top: 5px;
  }
}

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