@charset "UTF-8";
.movie-schedule-wrapper * {
  padding: 0;
  box-sizing: border-box;
}

.wrap.subpage_wrap {
  margin: auto;
  max-width: 1200px;
}

.movie-schedule-wrapper .wrap.subpage_wrap {
  padding: 0 10px;
}

.movie-schedule-wrapper {
  background-color: #fff;
}

/* ヘッダータブ */
.header-tabs {
  display: flex;
  background-color: #fff;
  max-width: 1200px;
  margin: auto;
}

.header-tab {
  flex: 1;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  background-color: #dddddd;
  color: #333;
  padding: 15px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  color: #999;
  font-size: clamp(15px, 3.33vw, 24px);
}

.header-tab.active {
  color: #2c3e50;
  font-weight: bold;
  border-bottom-color: #48c9b0;
  background: rgba(72, 201, 176, 0.1);
}

.header-tab:hover {
  opacity: 0.8;
}

/* コンテンツエリア */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.schedule-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* 映画カード */
.movie-card {
  background-color: #fff;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.movie-content {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .movie-content {
    flex-direction: column;
  }
}
.movie-poster {
  flex-shrink: 0;
}

.movie-poster img {
  width: 250px;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.movie-info {
  flex: 1;
}

.free-badge {
  display: inline-block;
  background-color: #f4b446;
  color: #fff;
  padding: 8px 20px;
  margin-bottom: 15px;
  font-size: 14px;
}

.movie-title {
  font-size: clamp(18px, 3.33vw, 28px);
  font-weight: bold;
  margin-bottom: 20px;
}

.movie-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.info-row {
  display: flex;
  margin-bottom: 15px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .info-row {
    flex-direction: column;
  }
}
.info-label {
  background-color: #38b3a8;
  padding: 10px 20px;
  width: 120px;
  font-weight: bold;
  color: #fff;
}

.info-value {
  padding: 10px 20px;
  flex: 1;
}

.copyright {
  text-align: center;
  color: #666;
  margin: 20px 0;
  font-size: 14px;
}

.details-button {
  display: block;
  text-align: center;
  padding: 20px;
  border: 2px solid #1fb5a8;
  background-color: #fff;
  color: #1fb5a8;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s;
  border-radius: 60px;
}

.details-button:hover {
  background-color: #1fb5a8;
  color: #fff;
}

/* スケジュールタブ */
.schedule-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 30px;
  background-color: #fff;
}

.schedule-tab {
  flex: 1;
  text-align: center;
  padding: 40px 20px;
}

.schedule-tab.daily {
  background-color: #f5f5f5;
}

.schedule-tab.weekly {
  background-color: #999;
  color: #fff;
}

.schedule-tab-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.schedule-tab-subtitle {
  font-size: 14px;
}

/* 日付セレクター */
.date-selector-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.date-selector {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #999 #f0f0f0;
}

.date-selector::-webkit-scrollbar {
  height: 8px;
}

.date-selector::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.date-selector::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 4px;
}

.date-box {
  flex-shrink: 0;
  min-width: 140px;
  text-align: center;
  padding: 20px 10px;
  background-color: #f9fafb;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.date-box.today {
  background-color: #f4b446;
  color: #fff;
  padding: 5px 10px;
}

.date-box:not(.today):hover {
  background-color: #f0f0f0;
  border-color: #f4b446;
}

.date-box.selected:not(.today) {
  border-color: #f4b446;
  background-color: #f1f1f1;
}

.date-text {
  font-size: 16px;
  margin-bottom: 5px;
}

.special-text {
  font-size: 14px;
  margin-top: 10px;
}

.month-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
  font-weight: bold;
}

.today .month-label {
  color: #fff;
}

.scroll-hint {
  text-align: center;
  color: #666;
  font-size: 13px;
  margin-top: 10px;
}

/* スケジュールセクション */
.schedule-section {
  background-color: #f9fafb;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 4px;
}

#scheduleContainer {
  margin: initial !important;
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.schedule-title {
  font-size: 20px;
  font-weight: bold;
}

.new-badge {
  background-color: #d9534f;
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
}

.subtitle {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}

.showtime-grid {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .showtime-grid {
    flex-direction: column;
  }
}
.movie-thumb {
  width: 150px;
  flex-shrink: 0;
}

.movie-thumb img {
  width: 100%;
  height: auto;
}

.detail-link {
  display: block;
  text-align: center;
  padding: 10px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  margin-top: 10px;
}

.theater-slots {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.theater-slot {
  text-align: center;
  min-width: 120px;
}

.theater-name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.time-box {
  background-color: #2eb4a8;
  padding: 20px 10px;
  margin-bottom: 5px;
  border-radius: 10px;
}

.time-box.sold-out {
  background-color: #e0e0e0;
  cursor: not-allowed;
}

.time {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffffff;
}

.end-time {
  font-size: 14px;
  color: #ffffff;
}

.sold-out-text {
  color: #999;
  font-size: 12px;
  margin-top: 5px;
}

.late-show {
  font-size: 11px;
  color: #666;
  margin-top: 5px;
}

.schedule-page-title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.schedule-page-description {
  margin-bottom: 30px;
  color: #666;
}

.coming-soon-message {
  background-color: #fff;
  padding: 60px 40px;
  text-align: center;
  border-radius: 4px;
  font-size: 18px;
  color: #666;
}

.release-date {
  color: #d9534f;
  font-weight: bold;
  margin-bottom: 15px;
}

/* 団体貸切 */
.schedule-section.group-only {
  background: #ebfafd;
  border-top: 5px solid #2ba79c;
}

.schedule-section.group-only .time-box {
  background: #2ba79c;
  color: white;
}

.schedule-status {
  background: #d32f2f;
  color: white;
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  margin-top: 8px;
}

.public-only .schedule-status {
  background-color: #ff9b00; /* オレンジ色 */
  color: white;
}

/* 一般公開 */
.schedule-section:not(.group-only) {
  background: #fff7ea;
  border-top: 5px solid #edaf44;
}

.schedule-section:not(.group-only) .time-box {
  background: #edaf44;
  color: white;
}

/* 一般公開のラベル追加 */
.category-badge {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: bold;
}/*# sourceMappingURL=movie-schedule.css.map */