@charset "utf-8";



.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: var(--default);
}

.header.hide {
  transform: translateY(-100%);
}

.header.scroll-header {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}



.header .inner {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 80px;
}

.header .h_menu {
  display: flex;
  align-items: center;
  gap: 11%;
  width: 100%;
  justify-content: flex-end;
  font-weight: 500;
  font-size: clamp(1rem, 0.975rem + 0.13vw, 1.125rem);
  color: #fff;
}

.header.scroll-header .h_menu,
.header.has-fv .h_menu {
  color: #1f1f1f;
}

.header .h_menu .parentlink {
  position: relative;
}

.header .h_menu .parentlink::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 12px;
}

.header .h_menu .parentlink>a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header .h_menu .parentlink>a::after {
  content: "+";
  display: inline-block;
}

.header .h_menu .childlink {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  width: 213px;
  pointer-events: none;
}



.header .h_menu .parentlink .childlink a {
  clip-path: inset(0 100% 0 0);
  transition: .4s ease;
}

.header .h_menu .parentlink:hover .childlink a {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}

.header .h_menu .parentlink:hover .childlink>a:nth-child(1) {
  transition-delay: 0.05s;
}

.header .h_menu .parentlink:hover .childlink>a:nth-child(2) {
  transition-delay: 0.15s;
}

.header .h_menu .parentlink:hover .childlink>a:nth-child(3) {
  transition-delay: 0.25s;
}

.header .h_menu .childlink>a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(0.875rem, 0.85rem + 0.13vw, 1rem);
  padding: 12px 0 12px 19px;
  background-color: #051C33;
  color: #FFF;
}

.header .h_menu .childlink>a::before {
  content: "＞";
  display: inline-block;
}

.header .contact-link {
  width: 100%;
  max-width: 175px;
  display: flex;
  align-items: center;

  background-color: #051C33;

}

.header .contact-link a {
  padding: 13px 30px;
  color: #FFF;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}

.header .contact-link .icon {
  display: none;
}



.h_logo {
  max-width: 72px;
  width: 100%;
  z-index: 99;
}

.h_logo img {
  width: 100%;
  height: auto;
}

.hamburger,
.navigation {
  display: none;
}




@media (max-width: 1180px) {}

@media (max-width: 1024px) {
  .header .inner {
    padding-top: 16px;
    gap: 0;
  }

  .header .contact-link {
    padding: 0;
    width: 44px;
    height: 40px;
    margin-left: auto;
    margin-right: 4px;
    justify-content: center;
  }

  .header .contact-link a {
    padding: 0;
  }

  .header .contact-link p {
    display: none;
  }

  .header .contact-link .icon {
    display: block;
    width: 22px;
    height: auto;
  }

  .header .h_menu {
    display: none;
  }

  .navigation {
    width: 100vw;
  }

  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 40px;
    background-color: #041C33;
    cursor: pointer;
    z-index: 100;
    position: relative;
  }

  .hamburger .line {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 21px;
    height: 1px;
    background-color: #fff;
    transition: var(--default);
  }

  .hamburger .line1 {
    top: 12px;
  }

  .hamburger .line2 {
    top: 20px;
  }

  .hamburger .line3 {
    top: 27px;
  }

  .hamburger.active .line1 {
    top: 20px;
    transform: rotate(45deg);
  }

  .hamburger.active .line2 {
    opacity: 0;
  }

  .hamburger.active .line3 {
    top: 20px;
    transform: rotate(-45deg);
  }


  .navigation .menu-inner {
    padding: 40px 0;
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 18px;
    width: 90%;
    margin: 0 auto;
  }

  .navigation a {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
    font-weight: 400;
    font-size: 16px;
    padding-bottom: 18px;
    color: #fff;
    border-bottom: .5px solid #FFF;
  }

  .navigation a::before {
    content: "＞";
    display: inline-block;
  }

  .navigation {
    display: block;
    position: absolute;
    pointer-events: none;
    top: var(--header-height);
    right: -100%;
    width: 100%;
    transition: all 0.8s;
    overflow: auto;
    background-color: #041D33;
    height: calc(100dvh - var(--header-height));
  }

  .navigation .childlink>a::before {
    content: "-";
  }

  .navigation .parentlink {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: .5px solid #FFF;
  }

  .navigation .childlink {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-left: 1em;
  }

  .navigation .childlink>a,
  .navigation .parentlink>a {
    padding-bottom: 0;
    border-bottom: none;
  }

  .navigation.active {
    right: 0;
    pointer-events: all;
  }
}

@media (max-width: 767px) {


  .h_logo {
    max-width: 34px;
  }






}





/* 管理画面用 */

.gjs-dashed .fixed-menu {
  top: 100px;
}


.gjs-dashed .navigation {
  right: 0;
  top: 200px;
  pointer-events: all;
}