.header {
  width: 100%;
  padding: 16px 20px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fix-header {
  position: fixed;
  background-color: #FFFFFF;
  transition: all .6s;
}

/* ロゴ */
/* -------------------------------------- */
.header-inner-logo {
  width: 140px;
  height: auto;
  cursor: pointer;
  transition: opacity .3s;
}

.header-inner-logo__img {
  width: 100%;
}

.header-inner-logo:hover {
  opacity: .7;
}

/* ハンバーガーメニュー */
/* -------------------------------------- */
.header-inner-trigger {
  display: none;
}

.header-inner-hamburger__icon--open,
.header-inner-hamburger__icon--close {
  cursor: pointer;
}

.header-inner-trigger:checked~.header-inner-hamburger .header-inner-hamburger__icon--open {
  display: none;
}

.header-inner-hamburger__icon--close {
  display: none;
}

.header-inner-trigger:checked~.header-inner-hamburger .header-inner-hamburger__icon--close {
  display: block;
}

/* ナビゲーション */
/* -------------------------------------- */
.header-inner-nav {
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  width: 100%;
  height: calc(100% - 64px);
  top: 64px;
  right: -200%;
  padding: 32px 16px;
  transition: right .3s;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 36px;
}

.header-inner-trigger:checked~.header-inner-nav {
  right: 0;
}

.header-inner-nav__link {
  position: relative;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  color: #2E2E2E;
  letter-spacing: 0.04em;
  transition: opacity .3s;
}

.header-inner-nav__link:hover {
  opacity: .7;
}

/* ボタン */
/* -------------------------------------- */
.site-btn-sets>.site-btn--black+.site-btn--black {
  margin-top: 8px;
}

@media screen and (min-width: 1024px) {
  .only-sp {
    display: none;
  }

  .header {
    width: 100%;
    padding: 40px 16px;
    margin: 0 auto;
  }

  .header-inner {
    gap: 16px;
    max-width: 1392px;
    margin: 0 auto;
  }

  /* ロゴ */
  /* -------------------------------------- */
  .header-inner-logo {
    width: 240px;
    height: 44.57px;
  }

  /* ナビゲーション */
  /* -------------------------------------- */
  .header-inner-nav {
    position: relative;
    height: initial;
    top: initial;
    right: initial;
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    max-width: 924px;
    width: 100%;
    background: transparent;
  }

  /* ボタン */
  /* -------------------------------------- */
  .site-btn-sets {
    display: flex;
    gap: 10px;
  }

  .site-btn-sets>.site-btn>.btn-arrow {
    display: none;
  }

  .site-btn-sets>.site-btn {
    width: 122px;
    height: 48px;
    padding: 16px 0;
    justify-content: center;
  }

  .site-btn-sets>.site-btn--black+.site-btn--black {
    margin-top: 0;
  }
}