/* ===========================
   HERO
=========================== */
.schedule-hero {
  background: url("../images/schedule-hero.jpg") center/cover no-repeat;
  padding: 140px 20px;
  text-align: center;
  color: #fff;
}

.schedule-hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.schedule-hero p {
  font-size: 20px;
  margin-top: 10px;
  opacity: 0.9;
}

/* 画面全体の黒透過レイヤー */
.opening-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65); /* ← 黒透過レイヤー */
  backdrop-filter: blur(4px);   /* ← 高級感のあるぼかし */
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 中央のメッセージ */
.opening-message {
  font-size: 32px;
  letter-spacing: 0.18em;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 22px 40px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(6px);
}



/* ===========================
   今日の出店情報
=========================== */
.today-info {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
}

.today-info h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.today-box {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0,0,0,0.08);
  text-align: center;
}

.today-box p {
  font-size: 20px;
  margin: 10px 0;
}

.today-box .map-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #333;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.today-box .map-btn:hover {
  background: #555;
}

/* 休業日のデザイン */
.today-box.closed {
  background: #f8d7da;
  color: #721c24;
  border-left: 6px solid #c82333;
}


/* ===========================
   Googleカレンダー
=========================== */
.calendar-area {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}

.calendar-area h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.calendar-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,0,0,0.1);
}

.calendar-wrap iframe {
  width: 100%;
  height: 700px;
}

/* SPは高さを調整 */
@media (max-width: 900px) {
  .calendar-wrap iframe {
    height: 500px;
  }
}


/* ===========================
   よく出店する場所
=========================== */
.spot-list {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 20px;
}

.spot-list h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.spot-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0,0,0,0.08);
  text-align: center;
  padding-bottom: 20px;
}

.spot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.spot-item h3 {
  margin-top: 15px;
  font-size: 22px;
}

.spot-item p {
  margin: 10px 20px;
  opacity: 0.8;
}

.spot-map {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 22px;
  background: #333;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.spot-map:hover {
  background: #555;
}

/* SP：縦並び */
@media (max-width: 900px) {
  .spot-grid {
    grid-template-columns: 1fr;
  }
}


/* ===========================
   出店依頼バナー
=========================== */
.request-banner {
  margin: 100px 0;
  padding: 0 20px;
}

.request-banner a {
  display: block;
  background: url("../images/request-bg.jpg") center/cover no-repeat;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 16px;
  text-decoration: none;
  position: relative;
}

/* 黒レイヤー */
.request-banner a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: 16px;
}

.request-banner a:hover {
  opacity: 0.9;
}

.request-banner a span {
  position: relative;
  z-index: 2;
}


/* ===========================
   RESPONSIVE（共通）
=========================== */
@media (max-width: 900px) {
  .schedule-hero h1 {
    font-size: 32px;
  }

  .schedule-hero p {
    font-size: 16px;
  }
}
