/**
 * GMS ツアーカード
 */

/* カードアイテム */
.gms-tour-card {
  align-content: flex-start;
  align-items: flex-start;
  background: var(--s-color-8ba294d6, #fff);
  border: 0 solid var(--s-color-6595484e, #008c38);
  border-radius: 24px;
  box-shadow: 0 5px 15px #bfbfbf;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  list-style: none;
  overflow: hidden;
  padding: 0;
  width: calc(33.33% - 13.33px);
  max-width: calc(33.33% - 13.33px);
  transition: box-shadow 0.2s, transform 0.2s;
}

.gms-tour-card:hover {
  box-shadow: 8px 8px 0 var(--s-color-6595484e, #008c38);
  transform: translate(0, -8px);
}

@media screen and (max-width: 840px) {
  .gms-tour-card {
    width: 33.33%;
    max-width: 33.33%;
  }

  .gms-tour-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translate(0, 0);
  }
}

@media screen and (max-width: 540px) {
  .gms-tour-card {
    width: calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }
}

/* カードリンク */
.gms-tour-card__link {
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  width: 100%;
}

/* NEW!バッジ */
.gms-tour-card__badge {
  align-content: center;
  align-items: center;
  background: var(--s-color-dcb932e9, #ffc824);
  border-radius: 96px;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 50px;
  justify-content: center;
  left: 10px;
  margin: 0;
  position: absolute;
  top: 10px;
  width: 50px;
  z-index: 5;
}

.gms-tour-card__badge-text {
  color: var(--s-color-8ba294d6, #fff);
  font-family: var(--s-font-b7b51ded, 'Noto Sans JP', sans-serif);
  font-size: 14px;
  font-weight: 700;
  height: auto;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  width: auto;
}

/* 画像ラッパー */
.gms-tour-card__img-wrapper {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 0;
  position: relative;
  width: 100%;
}

/* 画像 */
.gms-tour-card__img {
  height: auto;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 426 / 240;
  object-fit: cover;
}

/* コンテンツ */
.gms-tour-card__content {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-start;
  padding: 20px;
}

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

/* タグリスト */
.gms-tour-card__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gms-tour-card__tag {
  background: var(--gms-color-tag-bg);
  border-radius: 999px;
  color: var(--gms-color-tag-text);
  font-family: var(--s-font-b7b51ded, 'Noto Sans JP', sans-serif);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  padding: 4px 10px;
}

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

/* タイトル */
.gms-tour-card__title {
  color: #333;
  font-family: var(--s-font-b7b51ded, 'Noto Sans JP', sans-serif);
  font-size: 16px;
  font-weight: 700;
  height: auto;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  width: auto;
}

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

/* 日時 */
.gms-tour-card__datetime {
  color: var(--gms-color-muted);
  font-family: var(--s-font-b7b51ded, 'Noto Sans JP', sans-serif);
  font-size: 12px;
  font-weight: 400;
  height: auto;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  width: auto;
}

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

/* 主催者 */
.gms-tour-card__org {
  color: var(--gms-color-muted);
  font-family: var(--s-font-b7b51ded, 'Noto Sans JP', sans-serif);
  font-size: 12px;
  font-weight: 400;
  height: auto;
  line-height: 1.4;
  margin: 0;
  text-align: left;
  width: auto;
}

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