/* ==============================
   店舗スライドショー（ループ固定版）
============================== */
.shop-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* 画像が常に枠内に収まる */
.shop-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* スライド全体が重なっていても高さ維持 */
.shop-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* 最初のスライドは常に表示（高さ維持用） */
.shop-slider .slide:first-child {
  position: relative;
}

/* 表示中スライド */
.shop-slider .slide.active {
  opacity: 1;
  z-index: 2;
}

/* スマホ対応 */
@media (max-width: 767px) {
  .shop-slider {
    margin-bottom: 10px;
  }
}




.prefecture-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px auto;
  padding: 10px;
}

.prefecture-nav button {
  background-color: #D70413;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.prefecture-nav button:hover {
  background-color: #c4334c;
}



.backtotop-area {
  text-align: center;
  margin: 40px 0 20px 0;
}

#backToTop {
  background-color: #D70413;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  opacity: 0;
}

#backToTop:hover {
  background-color: #b30210;
  transform: translateY(-2px);
}

