.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 20px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  border-radius: 100px;
  border: 2px solid #f7f2ed;
  background: #fff;
  margin-top: 40px;
  padding: 15px 24px 15px 50px;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo a img:nth-of-type(1) {
  max-width: 70px;
}

.header-logo a img:nth-of-type(2) {
  max-width: 212px;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-menu a {
  color: #26292b;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  position: relative;
}

.header-menu a.current:after {
  content: '';
  position: absolute;
  background-color: #d44b25;
  width: 9px;
  height: 9px;
  left: 50%;
  transform: translateX(-50%);
  top: -12px;
  border-radius: 50%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-entry-btn a {
  max-width: 188px;
}

/* ハンバーガー共通 */
.header-hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.header-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #333;
  top: 50%;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-hamburger span:nth-child(1) {
  transform: translateY(calc(-50% - 9px));
}

.header-hamburger span:nth-child(2) {
  transform: translateY(-50%);
}

.header-hamburger span:nth-child(3) {
  transform: translateY(calc(-50% + 9px));
}

/* バツマーク */
.header-hamburger.active span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}

.header-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header-hamburger.active span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}

.gtranslate_wrapper {
  position: relative;
}

.gt_switcher {
  border-radius: 16px;
  width: 150px !important;
}

.gt_selected a:hover {
  background: #f4ede3 !important;
}

.gt_selected a {
  border: none !important;
  padding: 5px 10px !important;
  width: 150px !important;
}

.gt_selected {
  background: #f4ede3 !important;
}

.gt_option {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  border-radius: 16px;
  width: 150px !important;
  padding-top: 36px;
  border: none !important;
}

/* SPメニュー */
@media screen and (max-width: 1350px) {
  .header-inner {
    padding: 15px 20px;
    margin-top: 20px;
  }

  .header-logo a {
    gap: 5px;
  }

  .header-logo a img:nth-of-type(1) {
    max-width: 35px;
  }

  .header-logo a img:nth-of-type(2) {
    max-width: 100px;
  }

  .header-hamburger {
    display: block;
  }

  .header-nav {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    /* 以下は同じ */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding-top: 100px;
    gap: 30px;
  }

  .header-menu {
    flex-direction: column;
    gap: 20px;
  }

  .header-menu a {
    font-size: 14px;
  }

  .header-menu a.current:after {
    left: -20px;
    transform: none;
    top: 6.3px;
  }

  .header-nav.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.6s;
  }

  .header-right-sp {
    display: flex !important;
    align-items: center;
    gap: 14px;
  }

  .gt_switcher {
    width: 100px !important;
  }

  .gt_selected a {
    width: 100px !important;
  }

  .gt_option {
    width: 100px !important;
  }

  .header-lang-pc {
    display: none;
  }
}
