@charset "UTF-8";

.carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 200px; /* ← 左右に余白を作って横の写真を見せる */
  box-sizing: border-box;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel-slide {
  min-width: 100%; /* ← これはそのまま */
  padding: 0 10px; /* ← スライド間の隙間 */
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px; /* ← 角を丸くするとおしゃれ */
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 18px;
}

.carousel-btn.prev { left: 210px; }
.carousel-btn.next { right: 210px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active { background: #333; }

section, .info-section {
    padding: 60px 40px;
    border-bottom: 1px solid #e0e0e0;
}

.info-table {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px 24px;
    padding: 0 40px;
    font-size: 20px;
    font-family: serif;
}
dt { font-weight: bold; color: #8b2500; }

.info-map-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0 40px 60px;
}

.info-map-wrap .info-table {
  flex: 1;
  padding: 0;
}

.map-section {
  flex: 1;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: -50px;
}

.osusume-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0 40px 60px;
}

.osusume-text {
  flex: 1;
}

.osusume-img-wrap {
  flex: 0 0 300px;
  text-align: center;
  position: relative;
  margin-left: 60px;
}

.osusume-img-wrap img {
  width: 100%;
  border-radius: 8px;
}

.img-caption {
  font-size: 30px;
  margin-top: 10px;
  color: #333;
}

.img-note {
  font-size: 18px;
  color: #999;
  text-align: right;
  margin-top: 2px;
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {

  /* カルーセル */
  .carousel-wrap {
    padding: 0; /* スマホでは覗き見なし */
  }
  .carousel-slide {
    padding: 0;
  }
  .carousel-slide img {
    border-radius: 0;
    aspect-ratio: 16 / 9;
  }

  .carousel-btn.prev { left: 10px; }

  .carousel-btn.next { right: 10px; }

  /* 店舗情報・マップ：縦並びに */
  .info-map-wrap {
    flex-direction: column;
    padding: 0 16px 40px;
  }
  .map-section {
    width: 100%;
    margin-top: 24px;
  }
  .info-table {
    font-size: 15px;
    padding: 0;
  }

  /* おすすめセクション：縦並びに */
  .osusume-wrap {
    flex-direction: column;
    padding: 0 16px 40px;
  }
  .osusume-img-wrap {
    flex: none;
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }
}
