@charset "utf-8";
.header {
  padding-top: 32px;
      position: absolute;
    z-index: 9999;
    width: 100%;
    background-color: #f8f8f87e;
}
.header__inner {
  padding: 0 clamp(2rem, -0.667rem + 5.56vw, 6rem);
}
.header1 {
      display: flex;
    justify-content: flex-end;
    column-gap: clamp(1.25rem, 0.417rem + 1.74vw, 2.5rem);
}
.header1__text {
      font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 500;
  color: #000007;
}
.header__toggle {
      position: relative;
    height: 40px;
    display: flex;
  transition: .5s;
}
.header-toggle__box {
      visibility: hidden;
  opacity: 0;
    position: absolute;
    top: 40px;
    left: -10px;
  transition: .5s;
}
.header__toggle:hover .header-toggle__box {
     visibility: visible;
  opacity: 1;
    background-color: #f8f8f87e;
    padding: 8px 24px 14px 14px;
    border-radius: 10px;
}
.header__item--sub {
        color: #000007;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    padding: 10px 0;
    white-space: nowrap;
    transition: .5s;
}
.header__item--sub:hover {
  opacity: 0.7;
}
.fixed-header {
      position: fixed;
    z-index: 9999;
    top: -70px;
    right: clamp(2rem, -1.833rem + 7.99vw, 7.75rem);
    width: clamp(2.625rem, 2.417rem + 0.43vw, 2.938rem);
    height: 42px;
    transition: .5s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  cursor:pointer;
}
.fixed-header__icon {
      width: 10px;
    height: 10px;
    border: 1px solid #000007;
    background-color: #000007;
    border-radius: 50%;
    transition: all 0.5s;
}
.fixed-header__text {
      font-family: "Tenor Sans", sans-serif;
    font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
    font-weight: 400;
    color: #000007;
    transition: all 0.5s;
}
.text__close {
   display: none;
}
#fixed-header.is-show {
  top: clamp(2rem, 1.417rem + 1.22vw, 2.875rem);
}

.hamBtn {
  display: none;
}

.fixed-header__icon.active {
    background-color: transparent;
  border: 1px solid #fff;
}
.fixed-header__text.active {
    display: none;
}
.text__close.active {
   display: block;
      font-family: "Tenor Sans", sans-serif;
    font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
    font-weight: 400;
    color: #fff;
}
  
.sp__menu {
    /*    background-image: url(https://araki-co.com/system_panel/uploads/images/hamBtn-bg.png);
    background-size: cover;*/
    background-color: transparent;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 100%;
    height: 100svh;
    transition: 1s;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    visibility: hidden;
    overflow: scroll;
    left: 0;
}
.sp__menu.active {
    transform: translateY(0%);
    visibility: visible;
    pointer-events: auto;
}
.sp-menu__inner {
    height: 100%;
    width: 50%;
    background-color: rgba(0,0,7,0.76);
        display: flex;
    justify-content: center;
    align-items: center;
}
.sp-menu__items {
        display: flex;
    flex-direction: column;
        margin-top: clamp(3.125rem, 1.042rem + 4.34vw, 6.25rem);
    row-gap: 56px;
}
.sp-menu__logo {
    width: clamp(17.125rem, 11.333rem + 12.07vw, 25.813rem);
}
.sp-menu__item {
        font-size: clamp(1.125rem, 0.542rem + 1.22vw, 2rem);
    font-weight: 400;
    font-family: "Noto Serif JP", serif;
    color: #fff;
}
.sp-menu__box {
      display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.sp-menu__item--sub {
        font-size: clamp(0.875rem, 0.708rem + 0.35vw, 1.125rem);
    font-weight: 400;
    color: #FFF;
}


.link__text {
    padding-bottom: 6px;
    position: relative;
    line-height: 1;
    width: fit-content;
}
.link__text::after {
      background-color: #000007;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    transform: translateX(-30%);
    opacity: 0;
    position: absolute;
    transition: all .5s;
    width: 100%;
}
.link__text--white::after {
      background-color: #fff;
}
.link__text:hover::after {
    transform: translateX(0%);
    opacity: 1;
}


@media (max-width: 767px) {
  .header1 {
    display: none;
  }
  .fixed-header {
    display: none;
  }
  .hamBtn {
      position: fixed;
    z-index: 9999;
    top: clamp(2rem, 1.417rem + 1.22vw, 2.875rem);
    right: clamp(2rem, -1.833rem + 7.99vw, 7.75rem);
    width: clamp(2.625rem, 2.417rem + 0.43vw, 2.938rem);
    height: 42px;
    transition: .5s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor:pointer;
  }
  
  .sp-menu__inner {
    width: 90%;
  }
  .sp-menu__content {
        display: flex;
    flex-direction: column-reverse;
    row-gap: 80px;
  }
  .sp-menu__items {
    margin: 0;
    row-gap: 40px;
  }
}

@media (max-width: 389px) {
  .sp-menu__logo {
    width: 250px;
  }
}