


/*
 * .hero-stage（front-page.php）が hero の sticky の基準ブロックになる。
 * これで intro の終わりでKVが画面外へ送り出され、
 * news / goods / access の裏に残らなくなる。
 * .hero-stage に position や z-index を付けると重ね合わせコンテキストが生まれ、
 * hero(1)・intro(3) と news(100) の階層が崩れるので付けないこと。
 */
.hero {
  z-index: 1;
  overflow: hidden;
  position: relative;
  background: #f0eced;
}

.hero {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0;
}
.kv {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 64.375rem;
  margin-bottom: 1rem;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}
.kv img {
  display: block;
  width: 100%;
  height: auto;
}


/* イントロ */
.intro {
  position: relative;
  z-index: 3;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
  background: transparent;
  color: #fff;
  padding: 2.75rem 1.25rem 2.75rem;
  text-align: center;
}
.intro::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--red);
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 8rem)); */
}
.intro > * {
  position: relative;
  z-index: 1;
}
.intro h1 {
  margin: 0 0 1.875rem;
  font-size: 1.5rem;
  line-height: 1.8;
}
.intro p {
  margin: 0 auto;
  max-width: 42.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.65;
}



/* ニュース一覧 */
.news{
  z-index: 100;
  position: relative;
  color: #000;

}
.news__inner {
  /* 内寸1300pxに左右20pxの余白を足した幅 */
  max-width: 83.75rem;
  margin: 3.25rem auto;
  padding: 0 1.25rem;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.75rem;
  row-gap: 2.25rem;
  margin-top: 2.9375rem;
}
.news__more {
  margin-top: 4.5rem;
  text-align: center;
}
.news__empty {
  margin: 0;
  text-align: center;
}

/* カード：白の半透明＋やわらかい影 */
.news-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 2.9375rem;
  align-content: start;
  padding: 1.875rem 1.625rem;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
  color: inherit;
  text-decoration: none;
}
.news-card--featured {
  column-gap: 2.5rem;
  padding: 2.5rem 3.125rem;
}
.news-card__thumb {
  width: 15rem;
  height: 15rem;
  overflow: hidden;
  background: #b9b9b9;
}
.news-card--featured .news-card__thumb {
  width: 27.5rem;
  height: 27.5rem;
}
.news-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card__date {
  display: block;
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.news-card--featured .news-card__date {
  font-size: 1.25rem;
}
.news-card__title {
  /* 2行を超えたら省略する */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.75rem 0 0;
  color: var(--red);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
.news-card--featured .news-card__title {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.75;
}
.news-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin: 0.8125rem 0 0;
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
}

/* ボタン：右端に白60%のシェブロンを重ねる */
.arrow-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 3.125rem;
  margin-top: 2.0625rem;
  overflow: hidden;
  background: var(--red);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
}
.arrow-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  /* 高さに追従させて45度を保つ */
  aspect-ratio: 68 / 50;
  /* 頂点はモック実測に合わせて 31.5 / 55.5（右端から36.5 / 12.5）。
     右へ寄せすぎると右上・右下の角が塗り潰されてデザインと変わるので注意 */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 50'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='.6' stroke-width='12'%3E%3Cpolyline points='4.5,-2 31.5,25 4.5,52'/%3E%3Cpolyline points='28.5,-2 55.5,25 28.5,52'/%3E%3C/g%3E%3C/svg%3E")
    no-repeat right center / auto 100%;
}
.news-card--featured .arrow-btn {
  width: 21.25rem;
  max-width: 100%;
  margin: 3.4375rem auto 0;
}
.arrow-btn--wide {
  width: 25.5rem;
  max-width: 100%;
  height: 3.75rem;
  margin: 0 auto;
  font-size: 1.25rem;
}



/* 店舗情報 */
.shops {
  display: grid;
  grid-template-columns: repeat(2, minmax(16.25rem, 29.375rem));
  justify-content: center;
  gap: 1.75rem;
  margin: 2.625rem auto -7.25rem;
}
.shop {
  min-height: 19.375rem;
  padding: 1.6875rem 1.375rem 1.375rem;
  border-radius: 0.375rem;
  background: #fff;
  box-shadow: 0 0.375rem 0.625rem rgba(73, 0, 9, 0.16);
  color: var(--red);
}
.shops > .new-open {
  grid-column: 1 / -1;
  margin: 0;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}
.shop .opening {
  margin: 0.25rem 0 0;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
}
.shop h2 {
  margin: 0 0 0.75rem;
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.shop .label {
  margin: 0 0 1.5rem;
  padding: 0.375rem;
  transform: skew(-10deg);
  background: var(--red);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  font-family: "Corporate Logo Ver2", "IBM Plex Sans JP", sans-serif;
}
.shop .label span {
  display: block;
  transform: skew(10deg);
}
.shop address {
  margin: 0.25rem 0;
  color: var(--ink);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
}
.store-photo {
  position: relative;
  z-index: 2;
  margin-top: -8rem;
  min-height: clamp(29.875rem, 44vw, 53rem);
  background: image-set(
      url("img/shop-bg.webp") type("image/webp"),
      url("img/shop-bg.jpg") type("image/jpeg")
    )
    center calc(50% + var(--parallax-y, 0px)) / cover no-repeat;
}




/* セクション見出し（GOODS / ACCESS 共通） */
.section-title {
  margin: 0 0 clamp(1.75rem, 3vw, 3.5rem);
  color: var(--red);
  /* 下限の rem もルートに追従して縮むので、素の16px基準より大きめに取る */
  font-size: clamp(2.25rem, 2.6vw, 3.125rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: center;
}
.section-title--light {
  color: #fff;
}


/* ===== STORE INTRODUCTION ===== */
/* 斜辺の角度はモック実測の 154 / 1920 = 8.02vw で固定し、幅が変わっても同じ傾きにする */
.store-intro {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
  padding-bottom: clamp(5rem, 14vw, 16rem);
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8.02vw), 0 100%);
  
}
.store-intro__title {
  position: absolute;
  /* 写真側の clip-path が重ね合わせコンテキストを作るので、明示的に上へ出す */
  z-index: 1;
  top: clamp(1rem, 3.54vw, 4.25rem);
  right: 0.75rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: clamp(2.1875rem, 4.06vw, 4.875rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}
.store-intro__photo {
  margin-top: clamp(3rem, 6.2vw, 7.4375rem);
  min-height: clamp(11rem, 28.2vw, 33.8125rem);
  clip-path: polygon(0 0, 100% 8.02vw, 100% 100%, 0 100%);
  background: image-set(
      url("../img/shop-bg.webp") type("image/webp"),
      url("../img/shop-bg.jpg") type("image/jpeg")
    )
    center calc(36% + var(--parallax-y, 0px)) / cover no-repeat;
}
.store-intro__inner {
  /* 内寸1600pxに左右20pxの余白を足した幅 */
  max-width: 102.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.store-intro__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.125rem;
  margin: clamp(2rem, 3.55vw, 4.25rem) 0 0;
  padding: 0;
  list-style: none;
}
.store-feature {
  display: flex;
  flex-direction: column;
}
.store-feature__thumb {
  aspect-ratio: 500 / 329;
  overflow: hidden;
  background: #bababa;
}
.store-feature__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.store-feature__body {
  /* 画像より左右15pxずつ内側に置く（470 / 500） */
  flex: 1;
  width: 94%;
  margin: -1.3rem auto 0;
  padding: 1.3125rem 1.375rem 1.5rem;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
}
.store-feature__title {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
.store-feature__text {
  margin: 0.875rem 0 0;
  color: var(--ink);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.72;
}


/* ===== GOODS ===== */
.goods {
  position: relative;
  z-index: 3;
  /* STORE INTRODUCTION の斜辺に少し重ねる */
  margin-top: -6vw;
  padding: clamp(2.5rem, 5vw, 6rem) 0 clamp(3rem, 5vw, 6rem);
}
.goods__inner {
  max-width: 83.75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.goods__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.goods__empty {
  margin: 0;
  text-align: center;
}
/* 絞り込みの結果が0件のときだけ出す。mixitup-container-failed は MixItUp が付ける */
.goods__empty--filtered {
  display: none;
}
.goods__list.mixitup-container-failed + .goods__empty--filtered {
  display: block;
  margin-top: 1.5rem;
}
.goods__more {
  margin-top: clamp(2rem, 3.5vw, 4.5rem);
  text-align: center;
}
.goods-card__link {
  display: block;
  overflow: hidden;
  padding-bottom: 1.25rem;
  border-radius: 0 0 0.375rem 0.375rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
  color: inherit;
  text-decoration: none;
}
.goods-card__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: #b9b9b9;
}
.goods-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.goods-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  padding: 0.875rem 1rem 0;
}
.goods-badge {
  padding: 0.1875rem 0.625rem;
  background: var(--red);
  color: #fff;
  font-size: max(0.8125rem, 11px);
  font-weight: 700;
}
.goods-card__release {
  padding: 0.1875rem 0.5rem;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: max(0.8125rem, 11px);
  font-weight: 700;
}
.goods-card__name {
  /* 2行を超えたら省略する */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0.625rem 0 0;
  padding: 0 1rem;
  color: var(--red);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
}
.goods-card__price {
  margin: 0.625rem 0 0;
  padding: 0 1rem;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: right;
}

/*
 * カードの中身（画像 / バッジ / 商品名 / 価格 の4段）を subgrid で親グリッドの行に乗せる。
 * こうすると商品名が1行でも2行でも段の位置が全カードで揃い、白いパネルの高さも同じになる。
 * li（.goods-card）→ a（.goods-card__link）の2階層あるので、両方を subgrid にする。
 * 価格が未入力のカードは4段目が空になるだけで、上3段の位置はずれない。
 * subgrid 未対応のブラウザでは丸ごと無視され、従来どおりの表示になる。
 */
@supports (grid-template-rows: subgrid) {
  .goods-card,
  .goods-card__link {
    display: grid;
    grid-row: span 4;
    grid-template-rows: subgrid;
    /* 親の gap がカードの中の段間にも入ってしまうので打ち消す */
    row-gap: 0;
  }
}


/* ===== ACCESS ===== */
.access {
  position: relative;
  z-index: 3;
  padding: clamp(2.5rem, 5vw, 6rem) 0 clamp(3rem, 6vw, 7rem);
  background-color: var(--red);
}

/* 固定ページ /store/ は背景を敷かず、NEWS一覧と同じ地のまま出す */
.access--plain {
  background-color: transparent;
}
/* 固定ページはPCでも1カラム */
.access--plain .access__list {
  grid-template-columns: minmax(0, 1fr);
}
/*
 * 1カラムぶん横幅に余裕があるので、写真は最大350pxまで大きくする。
 * それより狭いときは 30vw でウィンドウ幅に追従して縮む。
 * 写真の列幅で決めて、写真自体は width:100% で追従させる。
 */
.access--plain .access-card {
  grid-template-columns: min(350px, 30vw) minmax(0, 1fr);
}
.access--plain .access-card__thumb {
  width: 100%;
}
.access__inner {
  max-width: 83.75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.access__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
/* li はカード（a または div）の入れ物。高さを揃えるため伸ばしておく */
.access__item {
  display: grid;
}
.access-card {
  display: grid;
  /* 写真は最大250px。それより狭いときは 19vw でウィンドウ幅に追従して縮む */
  grid-template-columns: min(250px, 19vw) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 0.375rem;
  background: #FFF;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
  /* アンカーで飛んできたとき天井にぴったり付かないように */
  scroll-margin-top: 1.25rem;
}
/* トップのカードは固定ページの該当店舗へのリンクになる */
.access-card--link {
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.2s ease;
}
.access-card--link:hover {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.35);
}
.access-card__thumb {
  /* 幅は .access-card の1列目で決まるので、写真はそれに追従させる */
  width: 100%;
  /* 写真の比率はデザインに合わせて 250:210 */
  aspect-ratio: 250 / 210;
  overflow: hidden;
  background: #b9b9b9;
}
.access-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.access-card__name {
  margin: 0;
  color: var(--red);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
.access-card__address {
  margin: 0.75rem 0 0;
  color: var(--ink);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}
.access-card__address p {
  margin: 0;
}
/* 固定ページの本文 */
.page-content {
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
}
.page-content > *:first-child {
  margin-top: 0;
}
.page-content a {
  color: var(--red);
}
.page-content img {
  max-width: 100%;
  height: auto;
}

/* 掲載情報：dt を見出し、dd を値として横並びにする */
.access-card__info {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  margin: 0.5rem 0 0;
}
.access-card__info-label,
.access-card__info-body {
  margin: 0;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}
.access-card__info-body p {
  margin: 0;
}

/* Googleマップの埋め込み。iframe の width/height 属性を打ち消して横幅に合わせる */
.access-card__map {
  margin-top: 0.75rem;
}
.access-card__map iframe {
  /* カード幅いっぱいだと縦横比指定では高くなりすぎるので高さを固定する */
  display: block;
  width: 100%;
  height: 20rem;
  border: 0;
}
.access-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  margin: 0.75rem 0 0;
}
.access-card__link {
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: underline;
}


/* 下層ページの共通の囲み。トップの .goods と違い、斜辺への食い込み（負のmargin）は付けない */
.goods-archive {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 5vw, 6rem) 0 clamp(3rem, 6vw, 7rem);
}
.goods-archive__inner {
  max-width: 83.75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}


/* ===== NEWS 一覧・詳細（下層ページ） ===== */
.news-archive,
.news-single {
  /* 背面の水玉より前に出す */
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 5vw, 6rem) 0 clamp(3rem, 6vw, 7rem);
}
.news-archive__inner {
  max-width: 83.75rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* 絞り込み：現在地は塗り、それ以外は白地に赤枠 */
.tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}
.tag-filter__item {
  display: grid;
  place-items: center;
  min-height: 2.5rem;
  padding: 0.25rem 1.125rem;
  border: 1px solid var(--red);
  background: #fff;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.tag-filter__item.is-current,
.tag-filter__item:hover,
.tag-filter__item:focus-visible {
  background: var(--red);
  color: #fff;
}

/* 一覧：点線で区切る */
.news-archive__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px dotted #d9d9d9;
}
.news-item {
  border-bottom: 2px dotted #d9d9d9;
}
.news-item__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 0;
  color: inherit;
  text-decoration: none;
}
.news-item__thumb {
  width: 13.125rem;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #e0e0e0;
}
.news-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-item__title {
  margin: 0.625rem 0 0;
  color: #333;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.news-item__date {
  margin: 0.375rem 0 0;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
.news-archive__empty {
  margin: 0;
  text-align: center;
}

/* タグ：赤枠の角丸ピル */
.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-tags__item {
  padding: 0.1875rem 0.75rem;
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  font-size: max(0.75rem, 11px);
  font-weight: 700;
  line-height: 1.4;
  background-color: #fff;
}

/* ページャー */
.pagination {
  margin-top: clamp(2rem, 3.5vw, 3.5rem);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.page-numbers {
  display: grid;
  place-items: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.5rem;
  border: 1px solid var(--red);
  background: #fff;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.page-numbers.current,
.page-numbers:hover {
  background: var(--red);
  color: #fff;
}
.page-numbers.dots {
  border-color: transparent;
  background: transparent;
}
/* GOODS一覧のページ送りはJSが button で作るので、ボタン既定の見た目を打ち消す */
button.page-numbers {
  font-family: inherit;
  line-height: 1.3;
  cursor: pointer;
}
/* 一覧の頭出しでヘッダーの内側に潜り込まないように */
.goods__list {
  scroll-margin-top: 1.25rem;
}

/* 詳細 */
.news-single__article{
  background-color: #fff;
  padding: 1.25rem;
  border-radius: 0.375rem;
  box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.15);
  
}
.news-single__inner {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.news-single__title {
  margin: 0;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.news-single__date {
  margin: 0.5rem 0 0;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
.news-single__thumb {
  margin-top: 1.5rem;
  overflow: hidden;
  background: #e0e0e0;
}
.news-single__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.news-single__content {
  margin-top: 1.75rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
}
.news-single__content > *:first-child {
  margin-top: 0;
}
.news-single__content a {
  color: var(--red);
}
.news-single__content img {
  max-width: 100%;
  height: auto;
}
.news-single__back {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}

/* 角丸ボタン（戻る） */
.pill-btn {
  display: inline-grid;
  place-items: center;
  min-width: 12.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.pill-btn:hover,
.pill-btn:focus-visible {
  opacity: 0.8;
}


/* ===== グッズのモーダル ===== */
/*
 * modaal の既定は overlay:999 / wrapper:9999。
 * その間に .global-header(1000) が入るため、ヘッダーだけ背景の上に残ってしまう。
 * オーバーレイをヘッダーより上・モーダル本体より下に置く。
 */
.modaal-overlay {
  z-index: 9998;
}

/* modaal本体の余白を詰め、白い枠を消して中身だけ見せる */
.goods-modaal .modaal-container {
  /* modaal の親は内容で幅が決まるため、max-width だけだと
     「親は中身に合わせる／中身は親100%」で循環して画面幅を超える。
     ビューポート基準（modaalの左右padding 25px分を引く）で頭打ちにする */
  max-width: min(46rem, calc(100vw - 50px));
  background: transparent;
  box-shadow: none;
}
.goods-modaal .modaal-content-container {
  padding: 0;
}

/* 画像エリア：左右に矢印、中央にスライダー */
.goods-modal__stage {
  /* 画像が1枚のときは矢印を出さないので、grid の列指定ではなく
     flex の中央揃えにして、矢印の有無で位置がずれないようにする */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 4vw, 3rem);
}
.goods-modal__slider {
  /* 最大560px。狭いときは縮む */
  flex: 0 1 560px;
  /* フレックスアイテムの min-width は既定が auto で、中身（Swiperが
     スライドに付けるインラインwidth）の幅より縮めなくなる。
     0 にしないとモーダル全体が画面幅より広がってしまう */
  min-width: 0;
  overflow: hidden;
}
.goods-modal__slide {
  aspect-ratio: 1;
  background: #b9b9b9;
}
.goods-modal__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 矢印：Swiperの既定スタイルを使わず白い山形を自前で描く */
.goods-modal__nav {
  flex: none;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.goods-modal__nav::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  border-top: 7px solid color(srgb 1 1 1 / 0.6);
  border-right: 7px solid color(srgb 1 1 1 / 0.6);
}
.goods-modal__nav--prev::before {
  transform: rotate(-135deg);
}
.goods-modal__nav--next::before {
  transform: rotate(45deg);
}
.goods-modal__nav:hover {
  opacity: 0.7;
}

/* ページャーの丸 */
.goods-modal__dots {
  position: static;
  margin-top: 0.75rem;
  text-align: center;
}
.goods-modal__dots .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.25rem;
  background: #fff;
  opacity: 0.5;
}
.goods-modal__dots .swiper-pagination-bullet-active {
  opacity: 1;
}

/* 商品情報：白いパネル。PCは1カラムで、価格はバッジの並びに入れる */
.goods-modal__body {
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem 1.5rem;
  border-radius: 0.375rem;
  background: #fff;
}
/* バッジの並びはカードから流用しているので、カード用の内側余白だけ打ち消して商品名と左端を揃える */
.goods-modal__info .goods-card__meta {
  padding: 0;
}
.goods-modal__name {
  margin: 0.625rem 0 0;
  color: var(--red);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
.goods-modal__desc {
  margin-top: 0.625rem;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
}
.goods-modal__desc p {
  margin: 0;
}
/*
 * 価格はPC用（バッジの並び）とSP用（情報の下）の2か所に出力し、表示を切り替える。
 * 並ぶ位置がまったく違うので、1か所のまま動かすより切り替えたほうが崩れにくい。
 */
.goods-modal__price {
  margin: 0;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
  margin-left: auto;
}
.goods-modal__price--block {
  display: none;
}


/* ===== タブレット（1024px以下） ===== */
/* メディアクエリ内の rem は初期値16px基準で評価されるので 64rem = 1024px 固定 */
@media (max-width: 64rem) {
  /* 2カラムだとテキスト側が200px弱まで痩せるので1カラムにする */
  .news__grid {
    grid-template-columns: minmax(0, 1fr);
  }
  /* 4カラムだとカードが狭すぎるので2カラムにする */
  .goods__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media (max-width: 40.625rem) {
  /* SPは1カラム。カード内も画像を上に積む */
  .news__grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 1.25rem;
    margin-top: 1.25rem;
  }
  .news-card,
  .news-card--featured {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 1.25rem;
    padding: 1.25rem;
  }
  .news-card__thumb,
  .news-card--featured .news-card__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  /*
   * SPではルートが13pxまで縮むので、rem値を 16/13 倍して
   * 従来どおりの実寸（px）で表示されるようにしている。
   */
  .news-card__date {
    font-size: 1.25rem;
  }
  .news-card--featured .news-card__date {
    font-size: 1.375rem;
  }
  .news-card__title,
  .news-card--featured .news-card__title {
    margin-top: 0.75rem;
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .news-card__text {
    margin-top: 0.75rem;
    font-size: 1.25rem;
  }
  .arrow-btn {
    margin-top: 1.25rem;
    font-size: 1.25rem;
  }
  .news-card--featured .arrow-btn {
    width: 100%;
    margin: 1.25rem auto 0;
  }
  .news__more {
    margin-top: 2.5rem;
  }
  .arrow-btn--wide {
    font-size: 1.375rem;
  }

  /*
   * 店舗写真：SPでは幅に対して高さを確保する。
   * cover の基準が「幅で合わせる」から「高さで合わせる」に変わるため、
   * 全景が圧縮されずに左右がトリミングされ、中央だけが拡大表示される。
   * 斜辺（clip-path）はPCと同じ 8.02vw のまま。
   */
  .store-intro__photo {
    min-height: 70vw;
    background-size: 250%;
  }
  /* STORE INTRODUCTION：3枚を縦積み */
  .store-intro__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
  .store-feature__title {
    font-size: 1.375rem;
  }
  .store-feature__text {
    font-size: 1.25rem;
  }



  /* GOODS：商品グリッドは2カラムのままにする */
  .goods__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .goods-card__meta {
    padding: 0.625rem 0.75rem 0;
    gap: 0.25rem;
  }
  .goods-badge,
  .goods-card__release {
    font-size: 0.875rem;
  }
  .goods-card__name,
  .goods-card__price {
    padding: 0 0.75rem;
  }
  .goods-card__name {
    font-size: 1.125rem;
  }
  .goods-card__price {
    font-size: 1.0625rem;
  }

  /* NEWS一覧：サムネを小さくして横並びを維持する */
  .news-item__link {
    gap: 0.875rem;
    padding: 1.25rem 0;
  }
  .news-item__thumb {
    width: 7.5rem;
  }
  .news-item__title {
    font-size: 1.25rem;
  }
  .news-item__date {
    font-size: 1.0625rem;
  }
  .tag-filter {
    gap: 0.5rem;
  }
  .tag-filter__item {
    min-height: 2.25rem;
    padding: 0.25rem 0.75rem;
    font-size: 1.0625rem;
  }
  .news-single__title {
    font-size: 1.5rem;
  }
  .news-single__date,
  .news-single__content {
    font-size: 1.0625rem;
  }
  .pill-btn {
    font-size: 1.1875rem;
  }

  /* モーダル：矢印と余白を詰める */
  .goods-modal__stage {
    gap: 0.25rem;
  }
  .goods-modal__body {
    padding: 1rem;
  }
  /* SPは従来どおり、情報の下に価格を置く */
  .goods-modal__price--meta {
    display: none;
  }
  .goods-modal__price--block {
    display: block;
    margin-top: 0.5rem;
  }
  .goods-modal__name {
    font-size: 1.25rem;
  }
  .goods-modal__desc,
  .goods-modal__price {
    font-size: 1.0625rem;
  }

  /* ACCESS：1カラム＋カード内も縦積み */

  .access__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
  .access-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
  /* 固定ページのPC用の列指定を打ち消して、SPは従来どおり縦積みにする */
  .access--plain .access-card {
    grid-template-columns: minmax(0, 1fr);
  }
  /* SPは指定なしのまま（画像本来の比率で横幅いっぱい） */
  .access-card__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
  }
  .access-card__map iframe {
    height: 14rem;
  }
  .access-card__name {
    font-size: 1.375rem;
  }
  .access-card__address,
  .access-card__info-label,
  .access-card__info-body,
  .access-card__link {
    font-size: 1.0625rem;
  }

  .hero {
    min-height: 0;
    padding: 0;
  }
  .kv {
    margin-top: 2rem;
    margin-bottom: 2.25rem;
  }
  .intro {
    padding-top: 2.125rem;
  }
  .shops {
    grid-template-columns: minmax(0, 24.375rem);
    margin-bottom: -4.6875rem;
    gap: 1.125rem;
  }
  .shop {
    min-height: 12.8125rem;
    padding: 1.375rem 1.125rem;
  }
  .store-photo {
    min-height: 20.625rem;
    background-position: 48% calc(50% + var(--parallax-y, 0px));
  }
  .intro h1 {
    font-size: 1.5rem;
  }
  .sp-only {
    display: block;
  }
  .intro p {
    font-size: 1.25rem;
  }
  .shop .opening {
    font-size: 1.375rem;
  }
  .shops > .new-open {
    font-size: 2.5rem;
  }
  .shop h2 {
    font-size: 2.5rem;
  }
  .shop .label {
    font-size: 1.5rem;
  }
  .shop address {
    font-size: 1.0625rem;
  }


}

/* スクロール連動のパララックス */
.kv,
.store-photo {
  will-change: transform, background-position;
}
