@charset "UTF-8";
/* リセット */
#event-calendar-root * {
  box-sizing: border-box;
}

/* メインコンテナ */
#event-calendar-root > div {
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: white;
}

/* ヘッダー */
#event-calendar-root .bg-red-600 {
  background-color: #2eb4a8;
  color: white;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  flex-shrink: 0;
}

.head {
  margin-top: 70px !important;
  margin-top: 70px !important;
  max-width: 100vw !important;
  margin: auto;
  width: 100%;
}

/* タブコンテナ */
#event-calendar-root .overflow-x-auto {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  overflow-x: auto;
  flex-shrink: 0;
  background-color: white;
  z-index: 10;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#event-calendar-root .overflow-x-auto::-webkit-scrollbar {
  display: none;
}

/* タブボタン */
#event-calendar-root button {
  flex-shrink: 0;
  min-width: 100px;
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

#event-calendar-root button.bg-red-600 {
  background-color: #f19d0c;
  color: white;
}

/* 休館日用の背景色 */
#event-calendar-root .closed-day-icon {
  background: #9ca3af !important; /* グレー */
}

#event-calendar-root button.bg-white {
  background-color: white;
  color: #4b5563;
}

#event-calendar-root button.bg-white:hover {
  background-color: #f9fafb;
}

/* スクロールコンテナ */
#event-calendar-root .overflow-y-auto {
  flex: 1;
  overflow-y: auto;
}

/* 月セクション */
#event-calendar-root .min-h-\[400px\] {
  min-height: 400px;
}

/* 月ヘッダー */
#event-calendar-root .bg-gray-100 {
  background-color: #f3f4f6;
  padding: 0.75rem 1rem;
}

#event-calendar-root .bg-gray-100 h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  max-width: 1200px;
  margin: auto;
}

/* イベントコンテナ */
#event-calendar-root .p-4 {
  padding: 1rem;
  max-width: 1200px;
  margin: auto;
}

#event-calendar-root .space-y-4 > * + * {
  margin-top: 1rem;
}

/* イベントカード */
#event-calendar-root .border {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* 日付表示 */
#event-calendar-root .bg-gray-50 {
  background-color: #f9fafb;
  padding: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

#event-calendar-root .bg-gray-50 span:first-child {
  font-size: 1.875rem;
  font-weight: bold;
  color: #374151;
}

#event-calendar-root .text-gray-500 {
  color: #6b7280;
  margin-left: 0.5rem;
}

/* カード内容 */
#event-calendar-root .flex {
  display: flex;
}

#event-calendar-root .items-center {
  align-items: center;
}

#event-calendar-root .gap-4 {
  gap: 1rem;
}

/* アイコン背景 */
#event-calendar-root .bg-gradient-to-br {
  width: 6rem;
  height: 6rem;
  background: #1fb5a8;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  flex-shrink: 0;
}

/* テキストエリア */
#event-calendar-root .flex-1 {
  flex: 1;
  min-width: 0;
}

#event-calendar-root .items-start {
  align-items: flex-start;
}

#event-calendar-root .justify-between {
  justify-content: space-between;
}

#event-calendar-root .gap-2 {
  gap: 0.5rem;
}

#event-calendar-root .font-bold {
  font-weight: bold;
}

#event-calendar-root .text-lg {
  font-size: 1.125rem;
}

#event-calendar-root .mb-1 {
  margin-bottom: 0.25rem;
}

#event-calendar-root .line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#event-calendar-root .text-sm {
  font-size: 0.875rem;
}

#event-calendar-root .text-gray-600 {
  color: #4b5563;
}

#event-calendar-root .mb-2 {
  margin-bottom: 0.5rem;
}

/* SVGアイコン */
#event-calendar-root svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #1fb5a8;
  flex-shrink: 0;
}

/* バッジ */
#event-calendar-root .inline-block {
  display: inline-block;
}

#event-calendar-root .text-white {
  color: white;
}

#event-calendar-root .text-xs {
  font-size: 0.75rem;
}

#event-calendar-root .px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

#event-calendar-root .py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

#event-calendar-root .px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

#event-calendar-root .rounded {
  border-radius: 0.25rem;
  padding: 6px;
}
#event-calendar-root .rounded img {
  width: 60px;
}

/* プラットフォーム情報 */
#event-calendar-root .space-y-1 > * + * {
  margin-top: 0.25rem;
}

/* 空メッセージ */
#event-calendar-root .text-center {
  text-align: center;
}

#event-calendar-root .py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}/*# sourceMappingURL=event-calendar.css.map */