@charset "UTF-8";
#header {
  position: fixed;
  width: 18.23%;
  height: 100svh;
  top: 0;
  left: -18.23%;
  z-index: 9;
  box-sizing: border-box;
  transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}
body.loading #header {
  opacity: 0;
  pointer-events: none;
}
#header.show {
  left: 0;
  opacity: 1;
}
#header .hpc {
  padding: 2.96875vw 1.25vw;
  box-sizing: border-box;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  height: 100svh;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#header .hpc::-webkit-scrollbar {
  display: none;
}
#header .hpc .logo .logo_icons {
  width: 7.3958333333vw;
  height: 7.5vw;
  margin: 0 auto;
  margin-bottom: 5px;
}
#header .hpc .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 4.6875vw;
  transition: 0.5s;
}
#header .hpc .logo a img {
  width: auto;
}
#header .hpc .logo a:hover {
  opacity: 0.7;
}
#header .hpc .header-menu {
  align-items: center;
  flex-flow: column;
  gap: 2.0833333333vw;
  margin-top: 1.6666666667vw;
}
#header .hpc .header-menu #menu-header-menu {
  flex-wrap: wrap;
  gap: 2.6041666667vw;
}
#header .hpc .header-menu #menu-header-menu > li {
  width: 100%;
  text-align: center;
}
#header .hpc .header-menu #menu-header-menu > li a {
  width: 100%;
  display: block;
  color: #000000;
  font-size: 1.05vw;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  transition: 0.5s;
}
#header .hpc .header-menu #menu-header-menu > li a:hover {
  color: #FED21D;
}
#header .hpc .header-menu .h_contact {
  width: 11.67vw;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: 0.5s;
}
#header .hpc .header-menu .h_contact:hover {
  opacity: 0.7;
}
#header .hpc .sns-link {
  align-items: center;
  width: 97.7%;
  margin: 0 auto;
  margin-top: 2.34375vw;
  justify-content: center;
  gap: 0.7vw;
}
#header .hpc .sns-link a {
  position: relative;
  display: flex;
  width: 2.5260416667vw;
  height: 2.5260416667vw;
  transition: 0.5s;
}
#header .hpc .sns-link a svg {
  display: flex;
  width: 100%;
  height: 100%;
}
#header .hpc .sns-link a:hover {
  opacity: 0.7;
}
#header .hsp {
  display: none;
}

@media screen and (max-width: 767px) {
  #header {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    width: 100%;
    height: initial;
    background: transparent;
    transition: opacity 0.3s ease;
    opacity: 1;
    border: none;
    left: 0;
    transition: none;
  }
  #header .hpc {
    display: none;
  }
  #header .hsp {
    display: block;
    transition: 0.5s;
  }
  #header .hsp .menu-bar {
    height: 89px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    padding-left: 18px;
    box-sizing: border-box;
    transition: 0.5s;
  }
  #header .hsp .menu-bar .logo {
    width: auto;
    height: 49px;
    transition: 0.5s;
  }
  #header .hsp .menu-bar .logo a {
    display: flex;
    width: 100%;
    height: 100%;
  }
  #header .hsp .menu-bar .logo a img {
    width: auto;
    height: 100%;
  }
  #header .hsp .menu-btn {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 11;
    background: transparent;
    transition: 0.5s;
  }
  #header .hsp .menu-btn div {
    height: 2px;
    width: 40px;
    background: #FED21D;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.6s ease;
  }
  #header .hsp .menu-btn div:nth-of-type(1) {
    top: calc(50% - 10px);
  }
  #header .hsp .menu-btn div:nth-of-type(3) {
    top: calc(50% + 10px);
  }
  #header .hsp .menu-btn.active {
    width: 50px;
    height: 50px;
  }
  #header .hsp .menu-btn.active div {
    width: 40px;
  }
  #header .hsp .menu-btn.active div:nth-of-type(1) {
    top: 50%;
    transform: translateX(-50%) rotate(-35deg);
  }
  #header .hsp .menu-btn.active div:nth-of-type(2) {
    display: none;
  }
  #header .hsp .menu-btn.active div:nth-of-type(3) {
    top: 50%;
    transform: translateX(-50%) rotate(35deg);
  }
  #header .hsp .menu-btn-nav {
    opacity: 0;
    visibility: hidden;
    transition: 0.7s;
    position: fixed;
    top: 0;
    right: -100%; /* 初期状態では非表示 */
    bottom: 0;
    width: 100%;
    height: 100%;
    max-width: initial;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(0.5rem);
            backdrop-filter: blur(0.5rem);
    box-sizing: border-box;
    z-index: 10;
  }
  #header .hsp .menu-btn-nav .logo {
    width: auto;
    height: 49px;
    position: absolute;
    top: 20px;
    left: 18px;
  }
  #header .hsp .menu-btn-nav .logo a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  #header .hsp .menu-btn-nav .logo a img {
    width: auto;
    height: 100%;
  }
  #header .hsp .menu-btn-nav .menus {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
    padding-top: 80px;
  }
  #header .hsp .menu-btn-nav .menus #menu-header-menu-sp {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #header .hsp .menu-btn-nav .menus #menu-header-menu-sp li {
    width: 80%;
    margin: 0 auto;
    border-radius: 0;
    border-bottom: solid 1px #FED21D;
    box-sizing: border-box;
  }
  #header .hsp .menu-btn-nav .menus #menu-header-menu-sp li a {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #000000;
    padding: 30px 15px;
    display: flex;
    align-items: center;
    font-family: "Noto Sans JP", "Zen Kaku Gothic New", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 700;
    box-sizing: border-box;
    gap: 10px;
  }
  #header .hsp .menu-btn-nav .menus #menu-header-menu-sp li a::before {
    content: "";
    background: url(../img/header_menu_arrow.svg) center no-repeat;
    background-size: cover;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    margin-right: 0.4vw;
  }
  #header .hsp .menu-btn-nav .sns-link {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  #header .hsp .menu-btn-nav .sns-link a {
    display: flex;
    width: 30px;
    height: 30px;
  }
  #header .hsp .menu-btn-nav .sns-link a svg {
    display: flex;
    width: 100%;
    height: 100%;
  }
  #header .hsp .menu-btn-nav.active {
    opacity: 1;
    visibility: visible;
    right: 0; /* メニューを表示する */
  }
  #header.fixed .hsp {
    background: #ffffff;
  }
  #header.fixed .hsp .menu-bar {
    height: 70px;
    padding: 0 15px;
    padding-left: 18px;
  }
  #header.fixed .hsp .menu-bar .logo {
    width: auto;
    height: 40px;
  }
  #header.fixed .hsp .menu-bar .menu-btn {
    width: 40px;
    height: 40px;
  }
  #header.fixed .hsp .menu-bar .menu-btn div {
    width: 35px;
  }
  #header.fixed .hsp .menu-btn-nav .logo {
    width: auto;
    height: 40px;
    position: absolute;
    top: 15px;
    left: 18px;
  }
  #header.fixed .hsp .menu-btn-nav .menus {
    width: 100%;
    height: calc(100% - 70px);
    box-sizing: border-box;
    overflow-y: scroll;
    padding-top: 70px;
  }
  #header.fixed .hsp .menu-btn-nav .menus #menu-header-menu-sp {
    padding: 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #header.fixed .hsp .menu-btn-nav .menus #menu-header-menu-sp li {
    width: 80%;
    margin: 0 auto;
    border-radius: 0;
    border-bottom: solid 1px #FED21D;
    box-sizing: border-box;
  }
  #header.fixed .hsp .menu-btn-nav .menus #menu-header-menu-sp li a {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #000000;
    padding: 30px 15px;
    display: flex;
    align-items: center;
    font-family: "Noto Sans JP", "Zen Kaku Gothic New", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 700;
    box-sizing: border-box;
    gap: 10px;
  }
}
/*# sourceMappingURL=header.css.map */