@charset "UTF-8";



/* ===================================

 =================================== */

.schedule-box {

}

.scheduleFilter {
    background: #EF7F27;
    padding: 10px 20px;
    /* position: sticky;
    top: 80px; */
}
.scheduleFilter__date {
    display: flex;
    justify-content: center;
    align-items: center;
}
.date-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.date-box__pre {

}

.date-box-button {
    margin-top: 3px;
    display: block;
    position: relative;
    width: 10px;
    height: 15px;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
}

.date-box-button::before,
.date-box-button::after {
    display: block;
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    left: 50%;
    width: 8.4px;
    height: 1px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform-origin: 0.5px 50%;
}

.date-box-button::before {
    transform: rotate(38.65deg);
}

.date-box-button::after {
    transform: rotate(-38.65deg);
}


.date-box-button.next-button {
    /* transform: rotate(180deg); */
    rotate: 180deg;
}


.date-box__date {

}
.date-box__date p {
    color: #fff;
    font-size: 25px;
}

.date-box__next {

}

/* ========================= */

.scheduleFilter__monthTabs {
    margin-top: 20px;
}
.monthTabs__list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: 10px;
}

.monthTabs__list li {
    display: block;
    text-align: center;
    color: #9d9d9d;
}
.monthTabs__list li a {
    display: block;
}
.monthTabs__list li.active {
    color: #EF7F27;
}

/* ========================= */


.scheduleBody {
    margin-top: 50px;
    /* padding-bottom: 100px; */
}
.schedule__items {

}
.schedule__items {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.schedule__items.is-fading {
  opacity: 0;
}


.schedule__item {
    display: flex;
    gap: 20px;
}


/* 最初の行に上線付与 */
.schedule__item:first-of-type .scheduleDay__list,
.schedule__item:first-of-type .scheduleDay__list.--empty {
    border-top: 1px solid #c7c7c7;
}

/* 土曜日のスタイル */
.schedule__item.--sat .left .date {
    color: #00488e;
}
/* 日曜日のスタイル */
.schedule__item.--sun .left .date {
    color: #a02a0e;
}

.schedule__item .left {
    width: 60px;
    flex-shrink: 0;
}
.schedule__item .left .date {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.schedule__item .left .date span {
    display: block;
    text-align: center;
    line-height: 1;
}
.schedule__item .left .date .date-day {
    font-size: 20px;
}
.schedule__item .left .date .date-dayOfTheWeek {
    font-size: 12px;
}

.schedule__item .right {
    flex: 1;
}
.scheduleDay {
    min-height: 70px;
}
.scheduleDay__list {

}
/* 投稿が0件の時のスタイル */
.scheduleDay__list.--empty {
    background: #f6f6f6;
    width: 100%;
    min-height: 70px;
    border-bottom: 1px solid #c7c7c7;
}

.scheduleDay__item {
    display: grid;
    grid-template-columns: 50px 200px 130px 1fr;
    align-items: center;
    padding: 10px;
    background: #fff;
    border-bottom: 1px solid #c7c7c7;
}



.scheduleDay__item .talent-image {
    
}
.scheduleDay__item .talent-image img {
    border-radius: 999px;
}

.scheduleDay__item .talent-name {
    padding-left: 20px;
}
.scheduleDay__item .post-category {
    
}
.post-category__inner {
    width: 100px;
    margin-inline: auto;
}

.scheduleDay__item .post-contents {
    font-size: 14px;
}
.scheduleDay__item .post-contents .title {
    
}
.scheduleDay__item .post-contents .info {
    
}


.schedule__bottom {
    margin-top: 60px;
    padding-bottom: 100px;
}
.schedule__bottom .scheduleFilter {
    background: #fff;
}
.schedule__bottom .date-box-button::before,
.schedule__bottom .date-box-button::after {
    display: block;
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    left: 50%;
    width: 8.4px;
    height: 1px;
    border-radius: 9999px;
    background-color: #333;
    transform-origin: 0.5px 50%;
}
.schedule__bottom .date-box__date p {
    color: #333;
    font-size: 25px;
}







/* ===================================
切り替え時のローディング
 =================================== */

.schedule__loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: #EF7F27; /* テーマ色などに調整 */
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}


@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}