@charset "UTF-8";

/* 店舗情報
---------------------------------------------------------- */
section.c-shopList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
  row-gap: 10px;
  margin: 20px 0;
}
section.c-shopList > div {
  flex: 0 0 calc(50% - 5px);
  display: flex;
  justify-content: center;
  min-width: 0;
}
section.c-shopList > div:last-child {
  flex-basis: 100%;
}
/* バッジ（赤・青共通） */
.shopBadge_red, .shopBadge_blue {
  width: min(44vw, 190px);
  --labelH: 49%;
  aspect-ratio: 1 / 1;
  display: grid;
  grid-template-rows: 1fr var(--labelH);
  overflow: hidden;
  min-height: 0;
}
/* 1段目：写真 */
.shopBadge__photo {
  min-height: 0;
  align-self: stretch;
  background-size: cover;
  background-position: center;
}
/* 色（ラベル背景用の変数） */
.shopBadge_red {
  --labelBg: #e70013;
}
.shopBadge_blue {
  --labelBg: #0063b1;
}
/* 2段目：帯 */
/* 英語 + スマホ：さらに収まり優先 */
html[lang="en"] .shopBadge_red__label, html[lang="en"] .shopBadge_blue__label {
  font-size: clamp(0.9rem, calc(0.8rem + 0.6vw), 1.1rem);
  line-height: 1.1;
  padding: 0 10px;
}
/* カレンダーボタン
---------------------------------------------------------- */
html[lang="en"] .btn_calender_month_red,
html[lang="en"] .btn_calender_month_blue{
  font-size: 0.5rem;
  letter-spacing: 0;
}
/* PDFアイコン */
.icon_cal_pdf {
  position: absolute;
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  top: -11%;
  right: 0.2em;
  transform: none;
}
.btn_calender_container {
flex-wrap: nowrap;
  justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 .25rem .25rem;
}
.btn_calender_month_red {
	flex: 0 0 auto;
  white-space: nowrap;
  font-size: clamp(0.5rem, calc(0.464rem + 0.18vw), 0.6rem);
    padding: 0.45em 0.3em;
}
.btn_calender_month_blue {
	flex: 0 0 auto;
  white-space: nowrap;
  font-size: clamp(0.5rem, calc(0.464rem + 0.18vw), 0.6rem);
    padding: 0.45em 0.3em;
}

/* イベント周り
---------------------------------------------------------- */
.c-cardGrid {
  margin-bottom: 20px;
}
.c-card__price {
  font-size: 0.5rem;
}
.c-card__tax {
  display: block ;
  margin-left: 0 ;
  font-size: 0.4rem;
}

/* インフォメーション
---------------------------------------------------------- */
.Top_InfoZone {
  margin-bottom: 2em;
  padding: 1.2em 1em 3em;
}
.c-infoList {
  padding: 0;
}
.c-infoItem {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  row-gap: 8px;
  margin: 0 0 16px;
}
.c-infoLeft {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px 10px;
  flex-wrap: wrap;
}
.c-infoList__tag {
  width: fit-content;
  max-width: 100%;
  height: auto;
  padding: 0.35em 1em;
  font-size: 0.8rem;
  white-space: nowrap;
}
.c-infoItem .c-infoList__date {
  justify-content: flex-start;
  margin-top: 0;
  font-size: 0.6rem;
  line-height: 1.4;
}
.c-infoItem .c-infoList__text {
  grid-column: 1;
  grid-row: 2;
  padding-top: 0;
  font-size: 0.8rem;
  line-height: 1.6;
}
.c-infoItem .c-infoList__text a {
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
/* バナー
---------------------------------------------------------- */
.c-bannerGrid {
  /* 2つずつ（2列） */
  grid-template-columns: repeat(2, minmax(0, 190px));
  justify-content: center;
}