@charset "UTF-8";
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  transition: 1s;
  box-sizing: border-box;
  width: 100%;
  transition: top 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
#header .hpc {
  box-sizing: border-box;
  transition: 1s;
  align-items: center;
  padding: 1.3020833333vw 6.25vw;
  justify-content: space-between;
}
#header .hpc .logo {
  width: 11.7708333333vw;
  height: 5.3020833333vw;
}
#header .hpc .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#header .hpc .logo a:hover {
  opacity: 0.8;
}
#header .hpc .header-menu {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  align-items: flex-start;
  position: absolute;
  top: 20.8333333333vw;
  left: 6.25vw;
  flex-wrap: wrap;
  flex-flow: column;
  gap: 1.5625vw;
  transition: 1s;
}
#header .hpc .header-menu #menu-header-menu {
  flex-wrap: wrap;
  flex-flow: column;
  gap: 1.5625vw;
  transition: 1s;
}
#header .hpc .header-menu #menu-header-menu > li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
#header .hpc .header-menu #menu-header-menu > li a {
  font-size: 0.8333333333vw;
  font-family: "toppan-bunkyu-mincho-pr6n", serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  display: block;
  transition: 1s;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  display: flex;
  color: #000000;
}
#header .hpc .header-menu #menu-header-menu > li a:hover {
  color: #567A27;
}
#header .hpc .header-menu .txt-c {
  width: 1.3541666667vw;
  height: 1.3541666667vw;
}
#header .hpc .header-menu .txt-c svg {
  display: flex;
  width: 100%;
  height: 100%;
}
#header .hpc .header-menu .txt-c svg path {
  fill: #000000;
}
#header .hsp {
  display: none;
}
#header.fixed {
  background: #FAF9F5;
  box-shadow: 0 0 3px #567A27;
}
#header.fixed .hpc {
  padding: 1vw 6.25vw;
}
#header.fixed .hpc .logo {
  width: 7.770833vw;
  height: 3.302083vw;
}
#header.fixed .hpc .header-menu {
  position: initial;
  flex-flow: row;
  align-items: center;
}
#header.fixed .hpc .header-menu #menu-header-menu {
  flex-flow: row;
}

@media screen and (max-width: 767px) {
  #header {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    border: none;
  }
  #header .hpc {
    display: none;
  }
  #header .hsp {
    display: block;
    transition: 0.5s;
  }
  #header .hsp .menu-bar {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    box-sizing: border-box;
    transition: 0.5s;
  }
  #header .hsp .menu-bar .logo {
    width: 115px;
    height: 52px;
    transition: 0.5s;
  }
  #header .hsp .menu-bar .logo a {
    display: flex;
    width: 100%;
    height: 100%;
  }
  #header .hsp .menu-bar .logo a img {
    width: 100%;
    height: 100%;
  }
  .txt-i {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 80px;
  }
  .txt-i svg {
    display: flex;
    width: 100%;
    height: 100%;
  }
  .txt-i svg path {
    fill: #7A7127;
  }
  #header .hsp .menu-btn {
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    position: relative;
    z-index: 11;
    transition: 0.5s;
  }
  #header .hsp .menu-btn div {
    background: #000000;
    height: 2px;
    width: 30px;
    border-radius: 4px;
    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% - 6px);
  }
  #header .hsp .menu-btn div:nth-of-type(3) {
    top: calc(50% + 6px);
  }
  #header .hsp .menu-btn.active div {
    width: 30px;
    transform-origin: center;
    transition: 0.5s ease-in-out;
  }
  #header .hsp .menu-btn.active div:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(210deg);
  }
  #header .hsp .menu-btn.active div:nth-of-type(2) {
    display: none;
  }
  #header .hsp .menu-btn.active div:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) rotate(-210deg);
  }
  #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(250, 249, 245, 0.8);
    -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: 115px;
    height: 52px;
    position: absolute;
    top: 6.5px;
    left: 4%;
  }
  #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: 100%;
    height: 100%;
  }
  #header .hsp .menu-btn-nav .menus {
    width: 90%;
    height: calc(100% - 120px);
    box-sizing: border-box;
    overflow-y: scroll;
    margin: 0 auto;
    margin-top: 90px;
  }
  #header .hsp .menu-btn-nav .menus #menu-header-menu-sp {
    padding: 0;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #header .hsp .menu-btn-nav .menus #menu-header-menu-sp li {
    width: 100%;
    margin: 0 auto;
    border-radius: 0;
    box-sizing: border-box;
  }
  #header .hsp .menu-btn-nav .menus #menu-header-menu-sp li a {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #000000;
    padding: 25px 15px;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    flex-wrap: wrap;
    font-style: normal;
    box-sizing: border-box;
    font-family: "toppan-bunkyu-mincho-pr6n", serif;
    font-weight: 400;
    font-style: normal;
    gap: 5px;
  }
  #header .hsp .menu-btn-nav .menus #menu-header-menu-sp li a::before {
    content: none;
  }
  #header .hsp .menu-btn-nav .menus #menu-header-menu-sp li a span {
    line-height: 1;
    font-size: 14px;
    color: #FFDA73;
    display: none;
  }
  #header .hsp .menu-btn-nav .txt-c {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    margin-top: 40px;
    color: #000000;
    padding: 0 15px;
    box-sizing: border-box;
  }
  #header .hsp .menu-btn-nav .txt-c span {
    font-size: 16px;
    color: #000000;
  }
  #header .hsp .menu-btn-nav .txt-c svg {
    display: flex;
    width: 30px;
    height: 30px;
  }
  #header .hsp .menu-btn-nav .txt-c svg path {
    fill: #000000;
  }
  #header .hsp .menu-btn-nav.active {
    opacity: 1;
    visibility: visible;
    right: 0; /* メニューを表示する */
  }
  #header.fixed {
    top: 0;
  }
  #header.fixed .hsp {
    background: rgba(250, 249, 245, 0.9);
    box-shadow: 0px 0px 4px 0px #7b7979;
  }
  #header.fixed .hsp .menu-bar {
    height: 65px;
  }
  #header.fixed .hsp .menu-btn-nav .logo {
    top: 6.5px;
  }
}
/*# sourceMappingURL=header.css.map */