@charset "UTF-8";
.heads {
  position: relative;
  height: 5.4166666667vw;
}

#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  transition: 1s;
  box-sizing: border-box;
  width: 100%;
  background: #ffffff;
}
#header .hpc {
  padding: 0;
  padding-left: 2.6041666667vw;
  box-sizing: border-box;
  height: 5.4166666667vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: 1s;
}
#header .hpc .logo {
  width: 15vw;
  height: 1.8vw;
}
#header .hpc .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#header .hpc .logo a svg {
  width: 100%;
  height: 100%;
}
#header .hpc .logo a svg path {
  fill: #1E2F40;
}
#header .hpc .logo a:hover {
  opacity: 0.8;
}
#header .hpc .header-menu {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  align-items: center;
  gap: 0 4.53125vw;
}
#header .hpc .header-menu #menu-header-menu {
  flex-wrap: wrap;
  gap: 0 4.0625vw;
}
#header .hpc .header-menu #menu-header-menu > li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
#header .hpc .header-menu #menu-header-menu > li a {
  width: 100%;
  display: block;
  color: #2B2E33;
  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: 700;
  font-style: normal;
  transition: 1s;
  position: relative;
}
#header .hpc .header-menu #menu-header-menu > li a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  border-radius: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #356CB4;
  transition: transform 0.3s;
  transform: scale(0, 1);
  transform-origin: center top;
}
#header .hpc .header-menu #menu-header-menu > li a:hover {
  color: #356CB4;
}
#header .hpc .header-menu #menu-header-menu > li a:hover::after {
  transform: scale(1, 1);
}
#header .hpc .header-menu #menu-header-menu > li a .txt-e {
  display: block;
  color: #1E2F40;
  transition: 1s;
}
#header .hpc .header-menu #menu-header-menu > li a:hover .txt-e {
  color: #2B2E33;
}
#header .hpc .header-menu .links {
  height: 100%;
}
#header .hpc .header-menu .links .txt-c {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #43B535;
  gap: 0.4vw;
  transition: 1s;
  width: 10.4166666667vw;
  height: 100%;
  border: solid 2px #43B535;
  box-sizing: border-box;
}
#header .hpc .header-menu .links .txt-c span {
  display: block;
  line-height: 1;
}
#header .hpc .header-menu .links .txt-c svg {
  display: flex;
  width: 1.85vw;
  height: 1.82vw;
  margin-bottom: 0;
}
#header .hpc .header-menu .links .txt-c svg path {
  transition: 1s;
}
#header .hpc .header-menu .links .txt-c:hover {
  background: #ffffff;
  color: #43B535;
}
#header .hpc .header-menu .links .txt-c:hover svg path {
  transition: 1s;
}
#header .hpc .header-menu .links .txt-c.web-price {
  background: #356CB4;
  border-color: #356CB4;
}
#header .hpc .header-menu .links .txt-c.web-price:hover {
  color: #356CB4;
  background: #ffffff;
}
#header .hpc .header-menu .links .txt-c.web-price:hover svg path {
  fill: #356CB4;
}
#header .hpc .header-menu .links .txt-c.video-price {
  background: #35B5AC;
  border-color: #35B5AC;
}
#header .hpc .header-menu .links .txt-c.video-price:hover {
  color: #35B5AC;
  background: #ffffff;
}
#header .hpc .header-menu .links .txt-c.video-price:hover svg path {
  fill: #35B5AC;
}
#header .hsp {
  display: none;
}
#header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* 必要に応じて背景色や影を追加 */
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* スムーズなアニメーション */
  -webkit-animation: slideDown 0.3s ease;
          animation: slideDown 0.3s ease;
}
@-webkit-keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
  .heads {
    height: initial;
    top: 0;
  }
  #header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    transition: 1s;
    box-sizing: border-box;
    width: 100%;
    background: #ffffff;
  }
  #header .hpc {
    display: none;
  }
  #header .hsp {
    display: block;
    transition: 0.5s;
  }
  #header .hsp .menu-bar {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    padding-right: 0;
    box-sizing: border-box;
    transition: 0.5s;
  }
  #header .hsp .menu-bar .logo {
    width: 165px;
    height: 18px;
    transition: 0.5s;
  }
  #header .hsp .menu-bar .logo a {
    display: flex;
    width: 100%;
    height: 100%;
  }
  #header .hsp .menu-bar .logo a svg {
    display: flex;
    width: 100%;
    height: 100%;
  }
  #header .hsp .menu-btn {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 11;
    background: transparent;
    transition: 0.5s;
  }
  #header .hsp .menu-btn div {
    height: 2px;
    width: 30px;
    background: #35B5AC;
    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% - 8px);
  }
  #header .hsp .menu-btn div:nth-of-type(3) {
    top: calc(50% + 8px);
  }
  #header .hsp .menu-btn.active {
    width: 60px;
    height: 60px;
  }
  #header .hsp .menu-btn.active div {
    width: 30px;
  }
  #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;
    width: 165px;
    height: 18px;
    top: 20px;
    left: 15px;
    transition: 0.5s;
  }
  #header .hsp .menu-btn-nav .logo a {
    display: flex;
    width: 100%;
    height: 100%;
  }
  #header .hsp .menu-btn-nav .logo a svg {
    display: flex;
    width: 100%;
    height: 100%;
  }
  #header .hsp .menu-btn-nav .menus {
    width: 90%;
    height: calc(100% - 60px);
    box-sizing: border-box;
    overflow-y: scroll;
    padding-top: 60px;
    margin: 0 auto;
  }
  #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: 100%;
    margin: 0 auto;
    border-radius: 0;
    border-bottom: solid 1px #2B2E33;
    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: #2B2E33;
    padding: 20px;
    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: none;
    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 .txt-a {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #35B5AC;
  }
  #header .hsp .menu-btn-nav .txt-a span {
    font-size: 16px;
    color: #ffffff;
  }
  #header .hsp .menu-btn-nav.active {
    opacity: 1;
    visibility: visible;
    right: 0; /* メニューを表示する */
  }
}
/*# sourceMappingURL=header_ver2.css.map */