@charset "UTF-8";
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * JTB ツアー検索 ナビゲーションモーダル
 * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
body.jtb-modal-open {
  overflow: hidden;
}

.js-tour-modal-trigger {
  cursor: pointer;
}

.jtb-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.jtb-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.jtb-nav-modal {
  width: 640px;
  height: 100%;
  max-height: 85vh;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.jtb-nav-modal.is-navigating {
  pointer-events: none;
}
.jtb-nav-modal button:focus {
  outline: 0;
}

.jtb-search-loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 50;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: jtb-loading-fadein 0.15s ease forwards;
}
.jtb-search-loading__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e8e0dc;
  border-top-color: #AA8420;
  border-radius: 50%;
  animation: jtb-spin 0.75s linear infinite;
}
.jtb-search-loading__text {
  margin-top: 14px;
  font-size: 1.3rem;
  color: #888;
  letter-spacing: 0.06em;
}

@keyframes jtb-loading-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes jtb-spin {
  to {
    transform: rotate(360deg);
  }
}
.jtb-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 1px solid #E5E5E5;
  background: #fff;
  flex-shrink: 0;
}

.jtb-nav-title {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.02em;
}

.jtb-nav-close {
  background: none;
  border: none;
  font-size: 22px;
  color: #888;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jtb-nav-close:hover {
  color: #333;
}

.jtb-nav-tabs {
  display: flex;
  flex-shrink: 0;
  align-items: flex-end;
  background: #F0EDE5;
  padding: 16px 16px 0;
  gap: 16px;
}

.jtb-tab-btn {
  flex: 1;
  padding: 10px 0 12px;
  background: #DDD;
  border: none;
  border-radius: 6px 6px 0 0;
  color: #AA8420;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 700;
}
.jtb-tab-btn:focus {
  outline: 0;
}
.jtb-tab-btn.active {
  background: #AA8420;
  color: #fff;
  z-index: 1;
}
.jtb-tab-btn:hover:not(.active) {
  background: #AA8420;
  color: #fff;
}

.jtb-nav-body {
  flex: 1;
  overflow-y: auto;
  background: #fff;
  position: relative;
}
.jtb-nav-body.is-sliding {
  overflow: hidden;
}
.jtb-nav-body::-webkit-scrollbar {
  width: 4px;
}
.jtb-nav-body::-webkit-scrollbar-track {
  background: #f5f5f5;
}
.jtb-nav-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.jtb-nav-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid #E5E5E5;
  background: #fff;
  flex-shrink: 0;
}

.jtb-nav-footer-btn {
  padding: 9px 22px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  color: #333333;
  border: 1px solid #333333;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.15s;
  font-weight: bold;
}
.jtb-nav-footer-btn:hover {
  background: #f5f5f5;
}

.jtb-nav-section-header {
  background: #F7F7F7;
  border-bottom: 1px solid #000;
  font-size: 16px;
  color: #000;
  padding: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.jtb-nav-concept-panel {
  border-bottom: 1px solid #E5E5E5;
}
.jtb-nav-concept-panel:last-child {
  border-bottom: none;
}
.jtb-nav-concept-panel-header {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  min-height: 60px;
  gap: 14px;
  cursor: pointer;
  user-select: none;
  transition: background 0.12s;
}
.jtb-nav-concept-panel-header:hover {
  background: #FAF8F0;
}
.jtb-nav-concept-panel-arrow {
  flex-shrink: 0;
  margin-left: auto;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}
.jtb-nav-concept-panel-body {
  display: none;
  background: #FAFAF8;
  border-top: 1px solid #f0ede8;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}
.jtb-nav-concept-panel-body.is-open {
  display: flex;
}
.jtb-nav-concept-panel-body img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  aspect-ratio: 500/220;
}
.jtb-nav-concept-panel-body h2 {
  font-family: "Noto Serif JP", "Noto Serif CJK JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .jtb-nav-concept-panel-body h2 {
    font-size: 22px;
  }
}
.jtb-nav-concept-panel-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.jtb-nav-concept-toggle-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.jtb-icon-question {
  display: block;
  width: 24px;
  height: 24px;
}

.jtb-nav-list-item {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #E5E5E5;
  cursor: pointer;
  transition: background 0.12s;
}
.jtb-nav-list-item:last-child {
  border-bottom: none;
}
.jtb-nav-list-item:hover {
  background: #FAF8F0;
}
.jtb-nav-list-item {
  text-decoration: none;
  color: inherit;
}
.jtb-nav-list-item--all .jtb-nav-list-name {
  font-weight: 600;
}

.jtb-nav-list-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(100% - 100px);
}
.jtb-nav-list-left-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jtb-nav-list-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.jtb-icon-map {
  height: 51px;
}

.jtb-nav-list-text {
  flex: 1;
  min-width: 0;
}

.jtb-nav-list-name {
  color: #000;
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.jtb-nav-list-sub {
  font-size: 12px;
  color: #888;
  margin-top: 3px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.jtb-nav-list-sub--wrap {
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.jtb-nav-list-count {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
  flex-shrink: 0;
}

.jtb-nav-list-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 10px;
}

.jtb-nav-theme-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #E5E5E5;
  cursor: pointer;
  transition: background 0.12s;
}
.jtb-nav-theme-item:last-child {
  border-bottom: none;
}
.jtb-nav-theme-item:hover {
  background: #FAF8F0;
}
.jtb-nav-theme-item {
  min-height: 60px;
  gap: 14px;
}

.jtb-nav-theme-thumb {
  flex-shrink: 0;
  overflow: hidden;
}

.jtb-nav-theme-text {
  flex: 1;
  min-width: 0;
}

.jtb-nav-theme-name {
  color: #000;
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}

.jtb-nav-theme-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.jtb-nav-concept-list-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #E5E5E5;
  cursor: pointer;
  transition: background 0.12s;
}
.jtb-nav-concept-list-item:last-child {
  border-bottom: none;
}
.jtb-nav-concept-list-item:hover {
  background: #FAF8F0;
}
.jtb-nav-concept-list-item {
  gap: 14px;
}

.jtb-nav-concept-list-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 48px;
}

.jtb-nav-concept-list-text {
  flex: 1;
}

.jtb-nav-concept-list-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.jtb-nav-concept-thumb {
  overflow: hidden;
}
.jtb-nav-concept-thumb img {
  margin: 0;
}

.jtb-nav-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: #fff;
  border: none;
  border-bottom: 1px solid #E5E5E5;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
  color: #000;
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
.jtb-nav-cta-banner:hover {
  background: #FAF8F0;
}

.jtb-nav-cta-button-banner {
  display: flex;
  width: calc(100% - 32px);
  padding: 8px 16px;
  justify-content: space-between;
  align-items: center;
  border-radius: 100px;
  background: #AA8420;
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.1);
  border: none;
  margin: 30px 16px 16px;
  color: #fff;
  font-family: "Noto Serif CJK JP";
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
}
.jtb-nav-cta-button-banner:hover {
  color: #333;
  background: #FAF8F0;
}
.jtb-nav-cta-button-banner:hover .jtb-nav-cta-chevron {
  background-color: #333;
}

.jtb-nav-cta-chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: #fff;
  mask: url(../image/icon_chevron.svg) no-repeat center;
  mask-size: contain;
}

.jtb-nav-primavera-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid #E5E5E5;
  cursor: pointer;
  transition: background 0.12s;
}
.jtb-nav-primavera-row:hover {
  background: #FAF8F0;
}

.jtb-nav-primavera-label {
  color: #000;
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.jtb-icon-chevron,
.jtb-icon-target-blank {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin: 0;
}

.jtb-icon-globe,
.jtb-icon-japan {
  display: block;
}

.jtb-nav-thumb-gradient {
  width: 100%;
  height: 100%;
  display: block;
}

.jtb-grad-chikyu {
  background: linear-gradient(135deg, #5B8DB8, #2C5F82);
}

.jtb-grad-yume {
  background: linear-gradient(135deg, #D4A5A5, #A05050);
}

.jtb-grad-gran {
  background: linear-gradient(135deg, #8B8B6B, #5A5A40);
}

.jtb-grad-parthenon {
  background: linear-gradient(135deg, #C4B5A0, #8B7355);
}

.jtb-grad-turkey {
  background: linear-gradient(135deg, #C4844A, #8B4513);
}

.jtb-grad-hiking {
  background: linear-gradient(135deg, #6BAA8E, #3A7A5E);
}

.jtb-grad-nature {
  background: linear-gradient(135deg, #7BC47F, #3E7D42);
}

.jtb-grad-unknown {
  background: linear-gradient(135deg, #8E8EC4, #4A4A8B);
}

.jtb-grad-train {
  background: linear-gradient(135deg, #C4C46B, #8B8B30);
}

.jtb-grad-history {
  background: linear-gradient(135deg, #C4A26B, #8B6930);
}

.jtb-grad-food {
  background: linear-gradient(135deg, #C46B6B, #8B3030);
}

.jtb-grad-art {
  background: linear-gradient(135deg, #C46BA8, #8B3070);
}

.jtb-grad-sports {
  background: linear-gradient(135deg, #6BA8C4, #30708B);
}

.jtb-grad-sakura {
  background: linear-gradient(135deg, #F5ADCB, #C45A85);
}

.jtb-grad-matsuri {
  background: linear-gradient(135deg, #F5C87A, #C47A1A);
}

.jtb-grad-seasons {
  background: linear-gradient(135deg, #A8D87A, #5A9A1A);
}

.jtb-grad-onsen {
  background: linear-gradient(135deg, #7AD8D0, #1A8A82);
}

.jtb-grad-ressha {
  background: linear-gradient(135deg, #7AA8D8, #1A5A9A);
}

.jtb-grad-nihon {
  background: linear-gradient(135deg, #D8A87A, #9A5A1A);
}

.jtb-grad-shizen {
  background: linear-gradient(135deg, #A8D87A, #3A7A1A);
}

.jtb-slide-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background: #fff;
  will-change: transform;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 768px) {
  .jtb-nav-modal {
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    position: fixed;
    bottom: 0;
    left: 0;
  }
  .jtb-nav-overlay {
    align-items: flex-end;
  }
}
.trc-card {
  position: relative;
  list-style: none;
  background: #fff;
  width: 100%;
  margin-bottom: 24px;
}

.trc-card__inner {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
}
.trc-card__inner:hover {
  opacity: 0.85;
}

.trc-card__img-wrap {
  position: relative;
  flex: 0 0 31.67%;
  max-width: 380px;
  overflow: hidden;
}
.trc-card__img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.trc-card__brand {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: inline-block;
  padding: 8px;
  background: #333;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.trc-card__body {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 2px;
  min-width: 0;
}

.trc-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trc-card__private {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid #715a55;
  border-radius: 20px;
  background: transparent;
  font-size: 1.5rem;
  font-weight: 700;
  color: #715a55;
  line-height: 1;
  margin: 0;
}

.trc-card__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #715a55;
  line-height: 40px;
  margin: 0;
}

.trc-card__subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 32px;
  margin: 0;
}

.trc-card__price {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
.trc-card__price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  line-height: 20px;
  margin: 0;
}
.trc-card__price-note {
  font-size: 1.3rem;
  font-weight: 400;
  color: #333;
  line-height: 20px;
  margin: 0;
}

.trc-card__departure {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trc-card__dep-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f2efef;
}

.trc-card__dep-label {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #999;
  line-height: 1;
}

.trc-card__dep-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trc-card__dep-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trc-card__dep-date {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  line-height: 1;
}

.trc-card__dep-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  box-sizing: border-box;
}
.trc-card__dep-tag--confirmed {
  background: #AA8420;
  color: #fff;
  border: 1px solid #AA8420;
}
.trc-card__dep-tag--scheduled {
  background: #fff;
  color: #AA8420;
  border: 1px dashed #AA8420;
}
.trc-card__dep-tag--none {
  background: #fff;
  color: #999;
  border: 1px solid #cfcfcf;
}

.trc-card__tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.trc-card__tags-left,
.trc-card__tags-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.trc-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.trc-card__tag-icon {
  display: block;
  flex-shrink: 0;
}
.trc-card__tag--bestseller {
  background: #da7517;
}
.trc-card__tag--firstclass {
  background: linear-gradient(to bottom, #ada87e 0%, #b9b391 49.5%, #787153 61.5%, #433c2d 100%);
}
.trc-card__tag--departure {
  background: #2768bc;
}
.trc-card__tag--special {
  background: linear-gradient(to bottom, #aca87d 0%, #b9b391 49.5%, #777152 61.5%, #423c2d 100%);
  font-size: 1.2rem;
  padding: 7px 8px;
}

.trc-card__fav {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  z-index: 1;
}
.trc-card__fav:hover .trc-card__fav-bg {
  fill: #715a55;
}

.trc-card__premium-bus {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  background: #3e2713;
}
.trc-card__premium-bus-icon {
  flex-shrink: 0;
}
.trc-card__premium-bus-text {
  color: #f1cf56;
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}
.trc-card__premium-bus-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f1cf56;
  color: #3f2813;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

@media (max-width: 767px) {
  .trc-card__inner {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  .trc-card__img-wrap {
    flex: none;
    max-width: 100%;
    width: 100%;
    max-height: 220px;
  }
  .trc-card__title {
    font-size: 1.8rem;
    line-height: 30px;
  }
  .trc-card__subtitle {
    font-size: 1.4rem;
    line-height: 26px;
  }
  .trc-card__price-amount {
    font-size: 1.6rem;
  }
  .trc-card__fav {
    bottom: 16px;
    right: 16px;
  }
}
.trc-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
}

.trc-heading-tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 100px;
  background: #ffffff;
}

.trc-heading-suffix {
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .trc-heading-tag {
    font-size: 1.5rem;
    padding: 5px 10px;
  }
  .trc-heading-suffix {
    font-size: 1.5rem;
  }
}
.trc-result-heading {
  font-family: "Noto Serif CJK JP", "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  line-height: 1.44;
  margin: 0;
}

.trc-result-count {
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin: 0 0 16px;
}

.trc-result-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.trc-result-actions__filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border: 1px solid #51362d;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  font-size: 1.6rem;
  font-weight: 700;
  color: #51362d;
  line-height: 1;
  cursor: pointer;
  outline: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
@media (max-width: 767px) {
  .trc-result-actions__filter {
    padding: 12px;
    font-size: 1.4rem;
  }
}
.trc-result-actions__sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  line-height: 1;
}
@media (max-width: 767px) {
  .trc-result-actions__sort {
    padding: 12px;
    font-size: 1.4rem;
  }
}
.trc-result-actions__sort .JTBGH-ly_Sort {
  display: flex;
  align-items: center;
  margin: 0;
}
@media (max-width: 767px) {
  .trc-result-actions__sort .JTBGH-ly_Sort {
    margin-bottom: 0 !important;
  }
}
.trc-result-actions__sort .JTBGH-ly_Sort .JTBGH-ly_Sort__label:first-child {
  display: none;
}
.trc-result-actions__sort .JTBGH-ly_Sort .JTBGH-ly_Sort__label {
  margin: 0;
}
.trc-result-actions__sort .JTBGH-ly_Sort select {
  border: none;
  background: transparent;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  padding: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.trc-active-conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 16px;
}
.trc-active-conditions__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f5f0ee;
  border: 1px solid #c9b8b1;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 1.3rem;
  color: #51362d;
  line-height: 1.4;
}
.trc-active-conditions__label {
  font-weight: 700;
}
.trc-active-conditions__label::after {
  content: "：";
}
.trc-active-conditions__value {
  font-weight: 400;
}

nav#local_nav .local-nav__container .rrg_navi_menu_item.local-nav__item .local-nav__link {
  padding: 23px 19px 28px;
}
nav#local_nav .local-nav__container .rrg_navi_menu_item.local-nav__item.parent .parent_btn {
  padding: 23px 36px 28px 19px;
}

.rrg_navi .local_head_OfficialLine {
  padding-left: 0;
  padding-right: 0;
}
.rrg_navi .local_head_OfficialLine_button {
  width: 136px;
}

.jtb-refine-section-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px 16px;
  background: #FAFAFA;
  border-bottom: 1px solid #e8e0dc;
}
.jtb-refine-section-bar--filter {
  padding-top: 32px;
}

.jtb-refine-section-label {
  font-size: 1.6rem;
  font-weight: 700;
  color: #999;
  line-height: 1;
}

.jtb-refine-section-sub {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.4;
  text-align: right;
}

.jtb-refine-reset-link {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 1;
}

.jtb-refine-cond-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #e8e0dc;
  cursor: default;
}
.jtb-refine-cond-row:hover {
  background: transparent;
}

.jtb-refine-cond-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

.jtb-refine-cond-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jtb-refine-bottom {
  padding: 16px;
  border-top: 1px solid #e8e0dc;
  background: #fff;
  position: sticky;
  bottom: 0;
  z-index: 3;
}

.jtb-refine-count {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  text-align: right;
  margin: 0 0 12px;
}

.jtb-refine-btn-row {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.jtb-refine-btn {
  padding: 9px 22px;
  font-size: 13px;
  font-family: inherit;
  background: #fff;
  color: #333333;
  border: 1px solid #333333;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.15s;
}
.jtb-refine-btn:hover {
  background: #f5f5f5;
}
.jtb-refine-btn:disabled {
  cursor: default;
  pointer-events: none;
  background: #ccc;
  color: #fff;
  border: 1px solid transparent;
}

.jtb-refine-radio-group {
  background: #fff;
}

.jtb-refine-radio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  min-height: 56px;
  background: #fff;
  cursor: pointer;
  transition: background 0.12s;
  border-bottom: 1px solid #e8e0dc;
}
.jtb-refine-radio-header:hover {
  background: #faf7f5;
}

.jtb-refine-radio-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.jtb-refine-radio-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
  margin: 0;
}
.jtb-refine-radio-arrow.is-open {
  transform: rotate(270deg);
}

.jtb-refine-radio-list {
  display: none;
  flex-direction: column;
  border-left: 8px solid #CCC;
  background-color: #f7f5ec;
}
.jtb-refine-radio-list.is-open {
  display: flex;
}

.jtb-refine-radio-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  cursor: pointer;
  transition: background 0.12s;
  margin: 0;
  border-bottom: 1px solid #e8e0dc;
}
.jtb-refine-radio-item:hover {
  background: #FAF8F0;
}
.jtb-refine-radio-item.is-selected .jtb-refine-radio-indicator {
  border-color: #AA8420;
}
.jtb-refine-radio-item.is-selected .jtb-refine-radio-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #AA8420;
}

.jtb-refine-radio-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.jtb-refine-radio-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.jtb-refine-radio-indicator {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
  position: relative;
  transition: border-color 0.15s;
}

.jtb-refine-radio-name {
  flex: 1;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.jtb-refine-radio-logo {
  flex: 1;
  min-width: 0;
}
.jtb-refine-radio-logo img {
  display: block;
  max-height: 32px;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}

.jtb-refine-radio-desc {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.4;
}

.jtb-refine-radio-count {
  font-size: 1.2rem;
  color: #888;
  white-space: nowrap;
  flex-shrink: 0;
}

.jtb-refine-accordion {
  display: flex;
  flex-direction: column;
}

.jtb-refine-accordion-panel {
  border-bottom: 1px solid #e8e0dc;
}
.jtb-refine-accordion-panel:last-child {
  border-bottom: none;
}

.jtb-refine-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  min-height: 56px;
  background: #fff;
  cursor: pointer;
  transition: background 0.12s;
  border-bottom: 1px solid #e8e0dc;
}
.jtb-refine-accordion-header:hover:not(.is-disabled) {
  background: #faf7f5;
}
.jtb-refine-accordion-header.is-disabled {
  cursor: default;
  opacity: 0.4;
}

.jtb-refine-accordion-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}

.jtb-refine-accordion-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
  margin: 0;
}
.jtb-refine-accordion-arrow.is-open {
  transform: rotate(270deg);
}

.jtb-refine-accordion-body {
  border-top: 1px solid #f0ede8;
}

.jtb-refine-accordion-item {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid #f0ede8;
  cursor: pointer;
  transition: background 0.12s;
  justify-content: space-between;
}
.jtb-refine-accordion-item:last-child {
  border-bottom: none;
}
.jtb-refine-accordion-item:hover {
  background: #FAF8F0;
}

.jtb-refine-accordion-item-name {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  line-height: 1.4;
}

.jtb-refine-accordion-item--all .jtb-refine-accordion-item-name {
  font-weight: 700;
}

.jtb-price-slider-wrap {
  padding: 20px 24px 24px;
  border-top: 1px solid #f0ede8;
  border-bottom: 1px solid #f0ede8;
  background-color: #f7f5ec;
}

.jtb-price-slider__display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
}

.jtb-price-slider__label-min,
.jtb-price-slider__label-max {
  min-width: 70px;
  text-align: center;
  color: #AA8420;
}

.jtb-price-slider__sep {
  color: #999;
  font-weight: 400;
}

.jtb-price-slider__track-container {
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.jtb-price-slider__track {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #e0dbd6;
  border-radius: 2px;
}

.jtb-price-slider__fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: #AA8420;
  border-radius: 2px;
}

.jtb-price-range-input {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
  margin: 0;
  padding: 0;
  outline: none;
}
.jtb-price-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #AA8420;
  cursor: pointer;
  pointer-events: auto;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: background 0.15s, transform 0.1s;
}
.jtb-price-range-input::-webkit-slider-thumb:hover {
  background: #8B6914;
  transform: scale(1.15);
}
.jtb-price-range-input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #AA8420;
  cursor: pointer;
  pointer-events: auto;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: background 0.15s;
  box-sizing: border-box;
}
.jtb-price-range-input::-moz-range-thumb:hover {
  background: #8B6914;
}
.jtb-price-range-input::-moz-range-track {
  background: transparent;
  height: 4px;
}

.jtb-price-slider__ticks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 10px 0;
}
.jtb-price-slider__ticks span {
  font-size: 1.1rem;
  color: #aaa;
}
.jtb-price-slider__ticks .jtb-price-slider__note {
  flex: 1;
  text-align: center;
  white-space: nowrap;
}

.jtb-price-slider__apply {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 12px 16px;
  background: #AA8420;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.02em;
}
.jtb-price-slider__apply:hover {
  background: #8B6914;
}

.jtb-saikou-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  cursor: pointer;
  background: #fff;
  transition: background 0.12s;
  user-select: none;
}
.jtb-saikou-toggle:hover {
  background: #faf7f5;
}
.jtb-saikou-toggle__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
}
.jtb-saikou-toggle__switch {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #ccc;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.jtb-saikou-toggle__switch.is-on {
  background: #AA8420;
}
.jtb-saikou-toggle__switch.is-on .jtb-saikou-toggle__thumb {
  left: 22px;
}
.jtb-saikou-toggle__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  transition: left 0.2s ease;
}

.jtb-brand-radio-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid #e8e0dc;
  cursor: pointer;
  transition: background 0.12s;
  margin-bottom: 0;
}
.jtb-brand-radio-item:hover {
  background: #FAF8F0;
}

.jtb-brand-radio-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.jtb-brand-radio-logo {
  flex: 1;
  min-width: 0;
}
.jtb-brand-radio-logo img {
  display: block;
  max-height: 34px;
  width: auto;
  margin: 0;
}

.jtb-brand-radio-name {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.jtb-brand-radio-indicator {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #ccc;
  position: relative;
  transition: border-color 0.15s;
}
.jtb-brand-radio-indicator[aria-checked=true] {
  border-color: #AA8420;
}
.jtb-brand-radio-indicator[aria-checked=true]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #AA8420;
}

.jtb-brand-radio-desc {
  font-size: 13px;
  color: #000;
  line-height: 1.7;
}

.jtb-brand-radio-list {
  border-left: 8px solid #CCC;
  background-color: #f7f5ec;
}

/* テーマから探す（テキスト＋枠線カード） */
.brandtop-search-theme-items {
  gap: 16px;
  justify-content: flex-start;
}

.brandtop-search-theme-item {
  flex-basis: calc((100% - 48px) / 4);
}

@media screen and (max-width: 768px) {
  .brandtop-search-theme-item {
    flex-basis: calc((100% - 16px) / 2);
  }
}
.brandtop-search-theme-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  min-height: 88px;
  padding: 20px 16px;
  border: 2px solid #333;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

@media screen and (max-width: 768px) {
  .brandtop-search-theme-link {
    font-size: 15px;
    min-height: 72px;
  }
}
.brandtop-search-theme-link:hover {
  background-color: rgba(142, 122, 93, 0.4);
  color: inherit;
}

/*# sourceMappingURL=tour-search-modal.css.map */
