@charset "utf-8";



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

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #EFA228;
}

.header .inner {
  padding-left: 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .h_menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.header .h_menu a,
.header .h_menu .parent-link>a {
  display: block;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.625rem + 0.31vw, 1rem);
  color: #000;
}

.header .other {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 23%;
  justify-content: flex-end;

}



.header .h_menu .parent-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.header .h_menu .parent-link .arrow {
  width: 8px;
  aspect-ratio: 1/1;
  background: url(/system_panel/uploads/images/20260827102817859060.svg) no-repeat center/contain;
}

.header .h_menu .parent-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 16px;
}


.header .h_menu .child-link .arrow {
  width: 17px;
  aspect-ratio: 1/1;
  background-image: url(/system_panel/uploads/images/20260827103412538862.svg);
}

.header .h_menu .child-link {
  position: absolute;
  left: 0;
  top: calc(100% + 16px);
  width: 198px;
  pointer-events: none;

}

.header .h_menu .parent-link:hover .child-link {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 3px;
}

.header .h_menu .parent-link .child-link a {
  opacity: 0;
  transition: .4s ease;
}

.header .h_menu .parent-link:hover .child-link a {
  opacity: 1;
  pointer-events: auto;
}

.header .h_menu .parent-link:hover .child-link a:hover {
  opacity: 50%;
  transition: .4s ease;
}





.header .h_menu .child-link>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 20px;
  background-color: #FFF;
}





.header .c-link {
  width: 30%;
  max-width: 133px;
  border-radius: 0px 0px 0px 20px;
  background: #efa228;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 17px 0 18px;
}

.header .c-link .link-text {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.5rem + 0.31vw, 0.875rem);
  text-align: center;
  color: #fff;
}

.header .tel-link {
  display: grid;
  gap: 3px 6px;
  align-items: center;
  grid-template-areas: "icon tel"
    "time time";
  grid-template-columns: auto 1fr;
}

.header .tel-link .icon {
  grid-area: icon;
}

.header .tel-link .link-text {
  grid-area: tel;
  font-family: var(--noto);
  font-weight: 600;
  font-size: clamp(1.125rem, 0.625rem + 0.63vw, 1.375rem);
  color: #000;
}

.header .tel-link .time {
  grid-area: time;
  font-family: var(--noto);
  font-weight: 500;
  font-size: 9px;
  color: #000;
  white-space: nowrap;
}




.h_logo {
  max-width: 297px;
  width: 14%;
  z-index: 99;
}

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

.hamburger,
.navigation {
  display: none;
}




@media (max-width: 1280px) {
  .header .inner {
    padding-left: 1%;
  }

  .header .h_menu .parent-link {
    gap: 8px;
  }

  .header .h_menu {
    gap: 10px;
  }
}

@media (max-width: 1180px) {

  .header::before {
    content: none;
  }

  .header .h_menu,
  .header .other {
    display: none;
  }







  .hamburger {
    width: 50px;
    height: 50px;
    border-radius: 0px 0px 0px 20px;
    background: #efa228;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 100;
    position: relative;
  }

  .hamburger .text {
    margin-top: auto;
  }

  .hamburger .text::after {
    content: "MENU";
    font-weight: 500;
    font-size: 9px;
    text-align: center;
    color: #fff;

  }

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

  .hamburger .line1 {
    top: 7px;
  }

  .hamburger .line2 {
    top: 16px;
  }

  .hamburger .line3 {
    top: 25px;
  }

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

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

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

  .hamburger.active .text::after {
    content: "Close";
  }


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

  .navigation a {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #cecece;
        padding: 24px 26%;
  }

  .navigation .parent-link>a {
    padding: 0;
    border-bottom: none;
  }

  .navigation .tit-ja {
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #000;
  }

  .navigation .tit-en {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #c10500;
  }



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



  .navigation a .arrow {
    width: 20px;
    aspect-ratio: 1/1;
    background: url(/system_panel/uploads/images/20260827123153367397.svg) no-repeat center/contain;
  }


  .parent-link {
    padding: 0;
    border-bottom: 1px solid #cecece;
  }

  .parent-link .child-link {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    visibility: hidden;

    transition:

      max-height 0.5s ease,

      opacity 0.35s ease,

      visibility 0.35s ease;

  }

  .parent-link.is-open .child-link {

    max-height: 1000px;

    opacity: 1;

    visibility: visible;

  }

  .parent-link .parent-link .arrow {

    transition: transform 0.35s ease;

  }

  .parent-link.is-open .parent-link .arrow {

    transform: rotate(180deg);

  }

  .parent-link {
    padding: 24px 0 8px;
    position: relative;
  }

  .parent-link .arrow {
    position: absolute;
    width: 22px;
    aspect-ratio: 1/1;
    top: 28px;
    right: 15%;
  }

  .child-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 12px;
    border-bottom: none;
    padding: 10px 0;
  }

  .child-link a:last-child {
    padding-bottom: 30px;
  }

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

  .navigation .other {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .header .tel-link {
    grid-template-columns: max-content max-content;
    justify-content: center;
  }

  .header .tel-link .icon {
    margin-left: auto;
  }


  .header .tel-link .link-text {
    text-align: left;
  }

  .header .c-link {
    flex-direction: row;
    align-items: center;
    border-radius: 6px;
    background: #efa228;
    max-width: 194px;
    width: 100%;
    gap: 10px;
  }

  .header .c-link .icon {
    width: 20px;
    height: auto;
  }



}

@media (max-width: 767px) {
  .header .inner {
    padding-left: 5%;
  }

  .h_logo {
    max-width: 159px;
    width: 100%;
  }


  .navigation a {
    padding: 20px 4%;
  }

  .navigation .menu-inner .list {
    margin-bottom: 27px;
  }

  .navigation .other {
    gap: 24px;
  }

  .navigation .other a {
    border-bottom: none;
  }

  .header .tel-link {
    padding: 0;
  }

  .header .c-link {
    padding: 14px 0;
  }

}





/* 管理画面用 */

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


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

.gjs-dashed .navigation .menu-inner {
  height: 60vh;
  padding-bottom: 300px;
}

.gjs-dashed .header .h_menu .parent-link .child-link a {
  opacity: 1;
  pointer-events: all;
}