/* 予約カレンダー タブ機能 */

.reservation-tabs {
  text-align: center;
  margin-bottom: 20px;
}



.reservation-tabs button {
  padding: 12px 24px;
  margin: 0 10px;
  border: none;
  background-color: #f3f3f3;
  color: #555;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  outline: none;
}

.reservation-tabs button:hover {
  background-color: #ffe1de;
}

.reservation-tabs button.active {
  background-color: #ff717b;
  color: white;
  outline: none;
}

.reservation-content {
  text-align: center;
}

.reservation-content iframe {
  width: 60%;
  height: 210px;
  margin-bottom: 20px;
}


/* スマホ対応 */
@media screen and (max-width: 640px) {
  .reservation-tabs {
      display: flex;
      flex-direction: row; /* ← column から row に変更 */
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
      padding: 0 10px;
  }
  
  .reservation-tabs button {
      flex: 1;
      max-width: 55%;
      margin: 0;
      padding: 12px 10px;
      font-size: 14px;
      white-space: nowrap; /* ← 文字が折り返さないように */
  }
  
  .reservation-content iframe {
    width: 95%;
    height: 210px;
  }
}