/* 企画一覧ページのスタイル */

/* フィルター部分 */
.filter-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-section h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.filter-controls label {
  color: #fff;
  font-weight: bold;
}

.search-container {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  padding: 0;
  /* box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08); */
  display: flex;
  align-items: center;
  height: 36px;
}

.search-container input[type="text"] {
  width: 100%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 8px 12px;
  font-size: 14px;
  height: 100%;
  box-sizing: border-box;
  border-radius: 5px;
}

/* 
.search-container input[type="text"]:focus {
  outline: none;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 2px #007bff;
} */

.filter-controls select {
  padding: 8px 12px;
  border: none;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  height: 36px;
  box-sizing: border-box;
}

.filter-controls select:focus,
.filter-controls input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #007bff;
}

.search-button {
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 14px;
  height: 36px;
  box-sizing: border-box;
}

.search-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.detail-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

/* 企画グリッド */
.kikaku-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* 企画カード */
.kikaku-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.kikaku-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* 企画画像 */
.kikaku-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.kikaku-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kikaku-card:hover .kikaku-image img {
  transform: scale(1.05);
}

.no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-weight: bold;
}

/* 企画情報 */
.kikaku-info {
  padding: 20px;
}

.kikaku-place {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 4px 8px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}

.kikaku-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.3;
}

.kikaku-organization {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 10px;
}

.kikaku-description {
  font-size: 0.9em;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* ソーシャルリンク */
.social-links {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.social-link {
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.social-link.instagram {
  background: #E4405F;
  color: #fff;
}

.social-link.instagram:hover {
  background: #d73349;
}

.social-link.twitter {
  background: #1DA1F2;
  color: #fff;
}

.social-link.twitter:hover {
  background: #0d8bd9;
}

/* 詳細リンク */
.detail-link {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
  color: #fff;
  text-decoration: none;
}

/* 結果なしメッセージ */
.no-results {
  text-align: center;
  padding: 40px;
  color: #fff;
}

.no-results p {
  font-size: 1.1em;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .kikaku-grid {
    grid-template-columns: 1fr;
  }

  .filter-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-controls label {
    margin-bottom: 5px;
  }

  .filter-controls select,
  .filter-controls input {
    margin-bottom: 10px;
  }
}

.samune {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*タイムテーブル生成部分*/


h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ffeb57;
  text-shadow: 0 0 8px #fff;
}

/* ──────────────
   11/1・11/2 横並び
──────────────── */
.timetable-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.day {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  width: 360px;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.day h2 {
  text-align: center;
  color: #ffda57;
  border-bottom: 1px solid #fff;
  padding-bottom: .5rem;
}

.event-card {
  display: block;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  margin: 1rem 0;
  padding: 1rem;
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}
.event-card:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.03);
}

.time {
  font-weight: bold;
  color: #ffd65c;
}
.title {
  font-size: 1.1rem;
  margin: .3rem 0;
}
.desc {
  font-size: 0.9rem;
  color: #ddd;
}
.place {
  font-size: 0.8rem;
  text-align: right;
  color: #9ed0ff;
}

/* ──────────────
   終日開催（下部配置）
──────────────── */
.allday {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.allday h2 {
  text-align: center;
  color: #ffda57;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: .5rem;
  margin-bottom: 1rem;
}

.allday-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.allday-card {
  display: block;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: white;
  width: 280px;
  transition: 0.3s;
}
.allday-card:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

.allday-title {
  font-weight: bold;
}
.allday-desc {
  font-size: 0.85rem;
  color: #d0e0ff;
  margin-top: .3rem;
}

/* ──────────────
   レスポンシブ対応
──────────────── */
@media (max-width: 900px) {
  .timetable-row {
    flex-direction: column;
    align-items: center;
  }
  .day {
    width: 90%;
  }
  .allday-wrap {
    flex-direction: column;
    align-items: center;
  }
  .allday-card {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {

.timetable-pic{
  width: 60%;
  max-width: 300px;
}
}
@media screen and (min-width: 768px) {
  .timetable-pic{
    width: 60%;
    max-width: 400px;
  }
}
.timetable-picture{
  text-align: right;
  padding: 1% 0 0 0;
  margin-bottom: 2rem;
}
.timetable-samune{
  width: 20%;
}
.pic{
  text-align: right;
}

/*ももかちゃん関連部分*/
.momoka_ad{
  text-align: right;
}
.momoka_adpic{
  width: 20%;
  margin: 5%;
  position: relative;
  z-index: 1;
}




