@charset "UTF-8";
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  transition: 1s;
  box-sizing: border-box;
  width: 100%;
}
#header .hpc {
  padding: 0;
  padding-left: 2.6041666667vw;
  box-sizing: border-box;
  height: 6.5104166667vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #ffffff;
  box-shadow: 1px 1px 10px 2px rgba(26, 98, 113, 0.25);
  gap: 2.6041666667vw;
  transition: 1s;
}
#header .hpc .logo {
  width: 20.140624999999996vw;
  height: 3.854166666666667vw;
}
#header .hpc .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 100%;
}
#header .hpc .logo a img {
  width: auto;
}
#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 3.6458333333vw;
}
#header .hpc .header-menu #menu-header-menu {
  flex-wrap: wrap;
  gap: 0 3.6458333333vw;
}
#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: #6F9EED;
  font-size: 0.7291666667vw;
  font-family: "Noto Sans JP", "Zen Kaku Gothic New", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  transition: 1s;
}
#header .hpc .header-menu #menu-header-menu > li a .txt-e {
  display: block;
  color: #333333;
  transition: 1s;
}
#header .hpc .header-menu #menu-header-menu > li a:hover .txt-e {
  color: #6F9EED;
}
#header .hpc .header-menu .txt-c {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #6F9EED;
  gap: 0.5vw;
  transition: 1s;
  width: 10.4166666667vw;
  height: 100%;
  border: solid 2px #6F9EED;
  box-sizing: border-box;
}
#header .hpc .header-menu .txt-c span {
  display: block;
  line-height: 1;
}
#header .hpc .header-menu .txt-c svg {
  display: flex;
    margin-bottom: 0;
    width: 3vw;
    height: 1.7vw;

    
}
#header .hpc .header-menu .txt-c svg path {
  fill: #ffffff;
  transition: 1s;
}
#header .hpc .header-menu .txt-c:hover {
  background: #ffffff;
  color: #6F9EED;
}
#header .hpc .header-menu .txt-c:hover svg path {
  fill: #6F9EED;
  transition: 1s;
}
#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;
    border: none;
  }
  #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: 15px;
    box-sizing: border-box;
    transition: 0.5s;
  }
  #header .hsp .menu-bar .logo {
    width: 185px;
    height: 36px;
    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%;
  }
  #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: 32px;
    background: #6F9EED;
    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% - 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: 32px;
  }
  #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: 185px;
    height: 36px;
    position: absolute;
        top: 12px;
        left: 15px;


        
  }
  #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: 100%;
    height: calc(100% - 80px);
    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 #333333;
    box-sizing: border-box;
  }
  #header .hsp .menu-btn-nav .menus #menu-header-menu-sp li a {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 18px;
    color: #6F9EED;
    padding: 30px 15px;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
    flex-wrap: wrap;
    font-style: normal;
    box-sizing: border-box;
    font-family: "kozuka-gothic-pro", "Noto Sans JP", "Zen Kaku Gothic New", sans-serif;
    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: #6F9EED;
  }
  #header .hsp .menu-btn-nav .txt-a {
    width: 100%;
    height: 70px;
    border-radius: 0;
    border: none;
    display: flex;
    position: absolute;
    bottom: 0;
  }
  #header .hsp .menu-btn-nav.active {
    opacity: 1;
    visibility: visible;
    right: 0; /* メニューを表示する */
  }
  #header.fixed .hsp {
    background: #ffffff;
  }
}
/*# sourceMappingURL=header.css.map */