/**
 * GMS ヘッダーナビゲーション
 */

.gms-header {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.12);
  height: 100px;
  padding: 0 20px;
  width: 100%;
  max-width: 100%;
  z-index: 5;
  position: relative;
}

@media screen and (max-width: 840px) {
  .gms-header {
    height: 120px;
  }
}

@media screen and (max-width: 540px) {
  .gms-header {
    height: 68px;
    padding: 0;
  }
}

/* ロゴリンク */
.gms-header__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: transparent;
}

/* ロゴ画像 */
.gms-header__logo {
  width: 340px;
  height: auto;
  max-width: 100%;
}

@media screen and (max-width: 840px) {
  .gms-header__logo {
    width: 254px;
  }
}

@media screen and (max-width: 540px) {
  .gms-header__logo {
    width: 200px;
  }
}

/* ナビゲーション */
.gms-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
  position: absolute;
  right: 10px;
  top: 0;
  height: 100px;
  background: transparent;
}

@media screen and (max-width: 840px) {
  .gms-header__nav {
    gap: 5px;
  }
}

@media screen and (max-width: 540px) {
  .gms-header__nav {
    right: 0;
    bottom: 0;
    height: 100%;
  }
}

/* ナビリンク共通 */
.gms-header__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 55px;
  padding: 0 20px;
  background: transparent;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s;
}

.gms-header__nav-link:hover {
  background: var(--s-color-16b7a353, rgba(255, 255, 255, 0.1));
}

@media screen and (max-width: 840px) {
  .gms-header__nav-link {
    padding: 0 10px;
  }
}

/* デスクトップ用リンク */
.gms-header__nav-link--desktop {
  display: flex;
}

@media screen and (max-width: 840px) {
  .gms-header__nav-link--desktop {
    display: none;
  }
}

/* モバイル用リンク */
.gms-header__nav-link--mobile {
  display: none;
}

@media screen and (max-width: 840px) {
  .gms-header__nav-link--mobile {
    display: flex;
  }
}

/* ナビテキスト */
.gms-header__nav-text {
  color: var(--s-color-6595484e, #333);
  font-family: var(--s-font-b7b51ded, sans-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

@media screen and (max-width: 840px) {
  .gms-header__nav-link--mobile .gms-header__nav-text {
    display: none;
  }

  .gms-header__search-link .gms-header__nav-text {
    display: none;
  }
}

/* ナビアイコン */
.gms-header__nav-icon {
  color: var(--s-color-6595484e, #333);
  font-size: 24px;
}

/* 区切り線 */
.gms-header__divider {
  width: 1px;
  height: 30px;
  background: var(--s-color-6595484e, #333);
}

/* 検索リンク */
.gms-header__search-link {
  display: flex;
}

/* ツアー詳細専用の戻る導線 */
.gms-header--detail .gms-header__back-link {
  align-items: center;
  bottom: 28px;
  color: var(--s-color-6595484e, #008c38);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  left: 20px;
  position: absolute;
  text-decoration: none;
  width: 44px;
}

.gms-header--detail .gms-header__back-link:hover {
  background: var(--s-color-16b7a353, #e9f3e9);
  border-radius: 999px;
}

.gms-header__back-icon {
  font-size: 24px;
}

@media screen and (max-width: 540px) {
  .gms-header--detail .gms-header__back-link {
    bottom: auto;
    height: 68px;
    left: 10px;
    top: 0;
    width: 48px;
  }

  .gms-header--detail .gms-header__back-link:hover {
    background: transparent;
    border-radius: 0;
  }
}
