/**
 * GMS ツアータグセクション
 */

.gms-tour-tags {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
}

.gms-tour-tags__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gms-tour-tags__section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 50px;
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__section {
    gap: 0;
    margin-bottom: 30px;
  }
}

/* LINE バナーカード: card-body なしなので画像だけが角丸カードになる */
.gms-tour-tags__card--line .gms-tour-tags__image-wrapper {
  aspect-ratio: auto;
}

.gms-tour-tags__card--line .gms-tour-tags__image {
  object-fit: contain;
}

.gms-tour-tags__section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  margin: 0 50px;
  width: calc(100% - 100px);
  max-width: calc(100% - 100px);
}

@media screen and (max-width: 840px) {
  .gms-tour-tags__section-header {
    margin: 0 30px;
    width: calc(100% - 60px);
    max-width: calc(100% - 60px);
  }
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__section-header {
    gap: 10px;
    margin: 0 20px;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }
}

.gms-tour-tags__section-title {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.gms-tour-tags__section-text {
  color: var(--s-color-6595484e, #008c38);
  font-family: var(--s-font-b7b51ded, "Noto Sans JP", sans-serif);
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

@media screen and (max-width: 840px) {
  .gms-tour-tags__section-text {
    font-size: 24px;
  }
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__section-text {
    font-size: 20px;
  }
}

.gms-tour-tags__section-line {
  background: var(--s-color-6595484e, #008c38);
  flex: 1;
  height: 2px;
  width: auto;
}

.gms-tour-tags__section-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--s-color-8ba294d6, #fff);
  height: 55px;
  padding: 0 20px;
  color: var(--s-color-6595484e, #008c38);
  font-family: var(--s-font-b7b51ded, "Noto Sans JP", sans-serif);
  font-weight: 700;
  text-decoration: none;
}

.gms-tour-tags__section-more:hover {
  background: var(--s-color-16b7a353, #e9f3e9);
  border-radius: 12px;
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__section-more {
    gap: 5px;
    height: 45px;
    padding: 0 10px;
    margin-right: -20px;
  }
}

.gms-tour-tags__section-more-text {
  font-size: 20px;
  line-height: 1.4;
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__section-more-text {
    font-size: 12px;
  }
}

.gms-tour-tags__section-more-icon {
  font-size: 24px;
}

.gms-tour-tags__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 20px;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  overflow-x: auto;
  overflow-y: hidden;
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__cards {
    gap: 15px;
  }
}

.gms-tour-tags__card {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
}

.gms-tour-tags__card:first-child {
  margin-left: 50px;
}

@media screen and (max-width: 840px) {
  .gms-tour-tags__card:first-child {
    margin-left: 30px;
  }
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__card:first-child {
    margin-left: 20px;
  }
}

.gms-tour-tags__card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--s-color-8ba294d6, #fff);
  border-radius: 24px;
  box-shadow: 0 5px 15px #bfbfbf;
  color: #333;
  text-decoration: none;
  overflow: hidden;
  width: 300px;
  max-width: 100%;
  height: 100%;
  transition: transform 200ms, box-shadow 200ms;
}

.gms-tour-tags__card-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 840px) {
  .gms-tour-tags__card-link {
    width: 260px;
  }

  .gms-tour-tags__card-link:hover {
    transform: translateY(0);
  }
}

.gms-tour-tags__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--s-color-dcb932e9, #ffc824);
  color: var(--s-color-8ba294d6, #fff);
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  z-index: 5;
}

.gms-tour-tags__image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: var(--s-color-8ba294d6, #fff);
}

.gms-tour-tags__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gms-tour-tags__card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px;
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__card-body {
    gap: 5px;
    padding: 15px 15px;
  }
}

.gms-tour-tags__card-title {
  font-family: var(--s-font-b7b51ded, "Noto Sans JP", sans-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__card-title {
    font-size: 14px;
  }
}

.gms-tour-tags__card-date,
.gms-tour-tags__card-org {
  font-family: var(--s-font-b7b51ded, "Noto Sans JP", sans-serif);
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  color: var(--gms-color-muted);
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__card-date,
  .gms-tour-tags__card-org {
    font-size: 10px;
  }
}

.gms-tour-tags__card--more {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
}

.gms-tour-tags__more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 100%;
  border: 2px solid var(--s-color-6595484e, #008c38);
  border-radius: 20px;
  padding: 0;
  color: var(--s-color-6595484e, #008c38);
  font-family: var(--s-font-b7b51ded, "Noto Sans JP", sans-serif);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  background: var(--s-color-8ba294d6, #fff);
  box-shadow: none;
  line-height: 1.4;
  text-align: center;
}

.gms-tour-tags__more-button:hover {
  background: var(--s-color-16b7a353, #e9f3e9);
}

@media screen and (max-width: 840px) {
  .gms-tour-tags__more-button {
    width: 260px;
  }
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__more-button {
    width: 260px;
    margin-right: 20px;
  }
}

.gms-tour-tags__subheader {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  margin: 0 50px;
  width: calc(100% - 100px);
  max-width: calc(100% - 100px);
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__subheader {
    margin: 0 20px;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }
}

.gms-tour-tags__subheader-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gms-tour-tags__subheader-icon {
  color: var(--s-color-6595484e, #008c38);
  font-size: 36px;
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__subheader-icon {
    font-size: 20px;
  }
}

.gms-tour-tags__subheader-text {
  color: var(--s-color-6595484e, #008c38);
  font-family: var(--s-font-b7b51ded, "Noto Sans JP", sans-serif);
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__subheader-text {
    font-size: 20px;
  }
}

.gms-tour-tags__subheader-line {
  flex: 1;
  height: 2px;
  background: var(--s-color-6595484e, #008c38);
}

.gms-tour-tags__pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0 50px;
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__pill-list {
    padding: 0 20px;
  }
}

.gms-tour-tags__pill-item {
  margin: 0;
}

.gms-tour-tags__pill {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--s-color-6595484e, #008c38);
  border-radius: 128px;
  padding: 15px 25px;
  color: var(--s-color-6595484e, #008c38);
  font-family: var(--s-font-b7b51ded, "Noto Sans JP", sans-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-decoration: none;
  background: var(--s-color-8ba294d6, #fff);
  box-shadow: 4px 4px 0 var(--s-color-6595484e, #008c38);
  transition: transform 200ms, box-shadow 200ms, background 200ms;
}

.gms-tour-tags__pill:hover {
  background: var(--s-color-16b7a353, #e9f3e9);
  box-shadow: 8px 8px 0 var(--s-color-6595484e, #008c38);
  transform: translateY(-6px);
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__pill {
    padding: 10px 10px;
    font-size: 14px;
  }
}

.gms-tour-tags__other,
.gms-tour-tags__regions {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.gms-tour-tags__other {
  margin-bottom: 80px;
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__other {
    margin-bottom: 40px;
  }
}

.gms-tour-tags__regions {
  margin-bottom: 80px;
}

@media screen and (max-width: 840px) {
  .gms-tour-tags__regions {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 540px) {
  .gms-tour-tags__regions {
    margin-bottom: 40px;
  }
}
