/* リセットCSS */
* {
    margin: 0;
    padding: 0;
}

html, body {
    scrollbar-gutter: stable;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

br.pc{
    display: none;
  }
  @media (min-width: 768px) {
  br.smp{
    display: none;
  }
  }

/* ヘッダー */
main{
    line-height: 1.4;

}
header{
    background-color: #fff;
}



.page-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 30px 0 20px;
    background-color: #fff;
}

/* SPOT */

.spot-video {
    background-color: #fff;
    margin: 30px 10px;
    border-radius: 15px;
    padding: 30px 0;
}
.spot-video h2{
    margin-bottom: 10px;
}
.video-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
}

.video-slide .video-card {
    background-color: #fff;
    box-shadow: 1px 8px 8px #d2d2d2;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    margin: 0;
    width: 100%;
}


.video-thumb img {
    width: 100%;
    border-radius: 10px;
    display: block;
}
.video-thumb .lazy{
    aspect-ratio: 16/9;
    border-radius: 10px;
}


.video-text {
    font-size: 1rem;
    color: #222;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.video-carousel .slick-track {
    padding-bottom: 30px;

}
.player-section .lazy-img{
    height: 380px;
}

@media (min-width: 768px) {
    .spot-video {
        margin: 30px auto;
        max-width: 1200px;
    }

    .video-carousel {
        max-width: 1200px;
    }

    .video-slide .video-card {
        padding: 13px;
        box-sizing: border-box;
        margin: 0 10px;
        width: 100%;
    }

    .video-thumb img {
        width: 100%;
        border-radius: 10px;
        display: block;
    }

    .video-date {
        font-size: 0.9rem;
        margin: 8px 0 4px;
    }

    .video-text {
        font-size: 1rem;
        color: #222;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}



/* スケジュールタブ */
.schedule-tabs {
    display: flex;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 0 10px;
}

.tab-button {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    color: #745399;
    cursor: pointer;
    border-bottom: 1px solid #745399;
}

.tab-button.active {
    border-bottom:5px solid #5d4b8c;
    
    font-weight: bold;
}


.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    padding: 0 10px;
}
@media (min-width: 768px) {
    main{
        line-height: inherit;
    }
.page-title {
    font-size: 32px;
    padding: 60px 0 20px;
}
.tab-button {
    font-size: 18px;
}

}
/* 日程選択 */
.day-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.day-button {
    padding: 8px 0px;
    border: 2px solid #A48B78;
    border-radius: 5px;
    background-color: #fff;
    color: #A48B78;
    font-weight: bold;
    font-size: .9rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.day-button::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #C99B20 0%, #AA7701 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;

}
.day-button:hover::before,
.day-button.active::before {
    opacity: 1;
}
.day-button span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.day-button:hover,
.day-button.active {
    color: #fff;
    padding-top: 10px;
}


.day-button:hover span,
.day-button.active span {
    color: #fff;
}

.day-button.active {
    background: none;
    border: none;

}
.day-label {
    font-weight:600;
}

.day-date {
    font-size: 12px;
    font-weight: 600;
}

.day-button:active .day-label {
    color: #fff;
}
.day-button:active .day-date {
    color: #fff;
}

/* DAYブロック */
.day-block {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

.day-block.active {
    display: block;
}
p.note{
    font-size: .75rem;
    max-width: 1200px;
    margin:0 auto 40px;
}
.sat{
    color: #36367e;
    text-decoration: none;
    -webkit-text-decoration: none;
}

.sun{
    color:#B22222;
    text-decoration: none;
    -webkit-text-decoration: none;
}
.day-button:hover span.sat,
.day-button.active span.sat {
    color: #36367e;
}

.day-button:hover span.sun,
.day-button.active span.sun {
    color:#B22222;
}
@media (min-width: 768px) {
    .schedule-tabs {
       max-width: 1200px;
        margin: 0 auto 40px; 
    }
    .day-button{
        padding: 10px 0;
    }
    .day-button.active{
        padding-top: 12px;
    }
    
    .day-selector {
        max-width: 1200px;
        margin: 0 auto 20px;
    }
    .day-date, .day-label {
        font-size: 16px;
        margin-bottom: 5px;
    }
    p.note{
        margin-bottom: 60px;
    }
}
/* セッションコンテナ */
.session-container {
    margin-bottom: 40px;
    border-radius: 8px;
    position: relative;
    padding: 3px 0 5px;
    position: relative;
    box-shadow: 3px 3px 8px #b5b5b5;
}

.session-container.morning {
    background: linear-gradient(to bottom, #FAF4D4, #FFDE7B);
}

.session-container.evening {
    background: linear-gradient(to bottom, #D3D4E9, #506BB6);
}

/* DAYタブ */
.day-tab {
    position: absolute;
    top: -25px;
    left: 0;
    padding: 15px 22px 10px 13px;
    font-weight: bold;
    font-size: 14px;
    z-index: 2;
}
.day-tab span{
    display: inline-block;
    transform: rotate(-20deg);
    font-style: italic;
  }

.morning .day-tab {
background: url(img/bg_tab_day.png) no-repeat top center;
background-size: contain;
color:#AA7701 ;
}
.evening .day-tab {
    background: url(img/bg_tab_ev.png) no-repeat top center;
    background-size: contain;
        color: #745399;

    }
    @media (min-width: 768px) {
.day-tab {
font-size: 18px;
padding: 20px 20px 10px 15px;
}
    }
/* セッションタイトル */
.session-header {
    margin-bottom: 0;
    padding: 12px 15px;
    border-radius: 0;
    text-align: center;
}

.morning .session-header {
    background-color: transparent;
}

.evening .session-header {
    background-color: transparent;
}


.session-name {
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    -webkit-text-decoration: none;
}

.session-name::after {
    content: '';
    display: inline-block;
    width:20px;
    height: 20px;
    background: url(img/ico_day.svg) no-repeat right center;
    background-size: contain;
    vertical-align:middle;
    margin-left: 5px;
}

.evening .session-name::after {
    background: url(img/ico_evening.svg) no-repeat right center;
    background-size: contain;}

.sun-icon, .moon-icon {
    font-size: 18px;
    margin-left: 10px;
}

@media (min-width: 768px) {
    .session-container{
        margin-bottom: 60px;
    }
.session-header {
    padding: 22px 15px;
}
.session-name{
    font-size: 1.5rem;
}
.session-name::after{
    width: 30px;
    height: 30px;
}

}

/* スケジュールテーブル */
.schedule-table {
    background-color: white;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 0 10px 30px;
    border-radius: 6px;
}


.table-header {
    display: grid;
    grid-template-columns: 0.8fr 1.3fr 0.5fr 1fr 0.5fr;
    background-color: #000;
    color: white;
    font-size: 12px;
    padding: 10px 0;
}

.header-cell {
    text-align: center;
    padding: 0 5px;
}

.table-row {
    display: grid;
    grid-template-columns: 0.8fr 1.3fr 0.5fr 1fr 0.5fr;
    padding: 15px 0 0;
    border-bottom: 1px solid #eee;
    font-size: .9rem;
    position: relative;
    align-items: center;
}
.table-row.final .time,.table-row.final .event,.table-row.final .round{
    display: inline-block;
    background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-size: 100% 100%;
  background-repeat: no-repeat;
    background: linear-gradient(90deg, #C99B20 0%, #AA7701 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    width: fit-content;
    margin: 0 auto;
}

.event-schedule-table td.final{
    background: linear-gradient(90deg, #C99B20 0%, #AA7701 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}
.table-row.final .event{
    margin: inherit;
}

.cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px 15px;
    text-align: center;
}
.cell.event{
    justify-content: flex-start;
}

.time {
    font-weight: bold;
    color: #333;
}
.gender{
    background-color: #B22222;
    color: #fff;
    border-radius: 9999px;
    align-self: center;
    padding-bottom: 0;
    margin-bottom: 15px;
}
.mix{
    background: linear-gradient(90deg, #040454 0%, #040454 50%,#B22222 51%, #B22222 100%);
   

}
.male {
    background-color:#040454 ;
}


/* 見どころトグルボタン */
.highlight-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.magnifier-icon {
    width: 22px;
    height: auto;
    transition: all 0.2s;
    vertical-align: sub;
}

.toggle-btn:hover .magnifier-icon {
    opacity: 1;
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .schedule-table {
        margin: 0 30px 30px;
    }
    .table-header{
        font-size:1rem ;
        padding: 20px 0;
        grid-template-columns: 0.9fr 1.3fr 0.3fr 0.9fr 0.6fr;
    }
    .table-row {
    font-size: 1rem;

    }
    .table-row {
        grid-template-columns: 0.9fr 1.3fr 0.3fr 0.9fr 0.6fr;
    }

.gender{
    padding: 3px 5px;
}
}

/* 注目コメント */
.highlight-comment {
    grid-column: 1 / -1;
    padding: 0 12px;
    background-color: #D9D9D9;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
}

.highlight-comment.expanded {
    opacity: 1;
    padding-top: 12px;
    padding-bottom: 12px;

    background-color: #D9D9D9;
}



.highlight-inner {
    font-size: 13px;
    line-height: 1.5;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    
}
.highlight-inner h3{
  color: #C99B20;
  margin-bottom: 5px;
}
.highlight-copy{
font-weight: 600;
font-size: 1rem;
margin-bottom: 5px;
}

.highlight-copy img{
    width: 20px;
    vertical-align: middle;
    margin-right: 3px;
}

/* 種目別日程 */
.event-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 10px;
}

.category-button {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #A48B78;
    border-radius: 6px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s 0s ease;
}




.category-button:hover {
    background-color: #745399;
    border-color: #745399;
    box-shadow: 0 5px 15px rgba(116, 83, 153, 0.3);
}

.category-button.active {
    background-color: #745399;
    border-color: #745399;
}

.category-button span {
    font-size: .75rem;
    color:#A48B78;
    font-weight: bold;
    padding: 10px 0;
    transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-button:hover span,
.category-button.active span {
    color: #fff;
    position: relative;
    z-index: 1;
}

.category-button img {
    width: 100%;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 60px;
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: filter 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-button.active .category-icon,
.category-button:hover .category-icon {
    filter: brightness(1.1);
}

/* カテゴリの内容 */
.category-content {
    display: none;
    margin-bottom: 30px;
}

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

.category-title {
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.event-schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    font-size: .75rem;
    background-color: #fff;
    border-collapse: collapse;
    border-radius: 10px 10px 0 0;
}

.col-event  { width: 30%; }
.col-round { width: 30%; }
.col-day   { width: 40%; }
@media screen and (min-width: 768px) {
  .col-event  { width: 40%; }
  .col-round { width: 30%; }
  .col-day   { width: 30%; }
}

.event-schedule-table th,
.event-schedule-table td {
    padding: 4px;
    text-align: center;
    vertical-align: middle;
    overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.event-schedule-table th {
    color: white;
    font-weight: bold;
    background-color: #000;
    padding: 10px 4px;

}
.event-schedule-table th:first-child{
    border-radius: 10px 0 0 0;

}
.event-schedule-table th:last-child{
    border-radius: 0px 10px 0 0;

}


.event-name {
    text-align: left;
    padding-left: 15px;
    font-weight: bold;
    color: #333;
}
#event-schedule .event-name{
    line-height: 1.4;
}
#event-schedule .event-name .male{
    background-color: initial;
    color: #000080;
}
#event-schedule .event-name .female{
    color:#B22222;
}

.session-link {
    background-color: #FAF4D4;
    border-radius: 4px;
    text-align: left;
    background-color: #F8E272;
    border: 3px solid #EBB400;
    display: block; 
  width: auto;
  max-width: 100%;
}


.session-link span{
position: relative; display: block;
text-box: trim-both cap alphabetic;
margin: 14px 7px;
}
.session-link.morning span::after{
    position: absolute;
    right: 0;
    top: 0;
    margin: auto;
    bottom: 0;
    content: '';
    display: block;
    width: 100%;
    height: 22px;
    background: url(img/ico_day.svg) no-repeat right center;
    background-size: contain;

}
.session-link.evening span::after{
    position: absolute;
    right: 0;
    top: 0;
    margin: auto;
    bottom: 0;
    content: '';
    display: block;
    width: 100%;
    height: 22px;
    background: url(img/ico_evening.svg) no-repeat right center;
    background-size: contain;

}
.session-link span.sat{
    color: #000080 ;
    display: inline;
    font-weight: 500;
    margin: 0;
}
.session-link span.sat::after{
    content: none;
}
.session-link span.sun{
    margin: 0;
    color:#B22222;
    display: inline;
    font-weight: 500;
}
.session-link span.sun::after{
    content: none;
}

.session-link.evening {
    background-color: #E1E3FD;
    border: 3px solid #CACAED;
    border-radius: 4px;
}
.event-divider {
    border-bottom: 1px solid #ccc;
    margin: 10px 0;
}

@media (min-width: 768px) {
    .event-schedule-table{
        font-size: 1rem;
    }
    .event-schedule-table td{
        padding: 7px 4px;
    }
    .event-categories{
        margin: 0 auto 20px;
        max-width: 880px;
    }
    .category-content{
        margin: 0 auto 30px;
        max-width: 880px;
    }
    .category-button span{
        font-size: 1rem;
    }
    .event-schedule-table th{
        padding: 20px 0;
    }
    .highlight-inner{
        padding: 12px 20px;
    }
    .highlight-inner h3{
        font-size: 1rem;
    }
    .highlight-copy{
        font-size: 1.1rem;
    }
    .highlight-txt{
        font-size: 1rem;
    }

    .event-schedule-content .note{
        max-width: 880px;
    }
    .session-link span{
        margin: 14px 10px;
    }
}

/*///////////////// SPOT ////////////////*/

.spot-video {
    margin: 0px 10px;
    border-radius: 15px;
    padding: 0 ;
  }
  .spot-video h2{
    margin-bottom: 10px;
  }
  
  .spot-video .video-slide {
    flex: unset !important;
    min-width: unset !important;
  }
  .spot-video .swiper-container {
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
  }
  .spot-video .swiper-wrapper {
    display: flex;
  }
  .spot-video .swiper-slide {
    flex-shrink: 0 !important;
  }
  .spot-video .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-width:360px ;
  }
  
  
  .video-slide .video-card {
    background-color: #fff;
    box-shadow: 1px 8px 8px #d2d2d2;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
    min-height: calc(175vw / 12);
  }
  
  .video-thumb img {
    width: 100%;
    border-radius: 10px;
    display: block;
  }
  .video-thumb .lazy{
    aspect-ratio: 16/9;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
  }
  
  .video-text {
    font-size: 1rem;
    color: #222;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: 10px;
    font-size: .8rem;
    font-weight: 500;
  }
  .spot-video .video-thumb{
    position: relative;
  }
  
  .spot-video .video-thumb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 50px;
    background: #ff0000;
    border-radius: 10px; 
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  
  .spot-video .video-thumb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-35%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    z-index: 3;
  }
  
  @media (min-width: 768px) {
    .spot-video {
        margin: 30px auto;
        max-width: 1180px;
    }
    .spot-video .swiper-wrapper {
        margin-left: -8px;
      }
       .spot-video .swiper-wrapper .swiper-slide:last-child {
        margin-right: 0 !important;
      }
      .spot-video .swiper-container {
          padding:0 10px 20px;
        }
  
    .video-slide .video-card {
        padding: 13px;
        box-sizing: border-box;
        width: 100%;
        max-width: 384px;
        min-height: inherit;
    }
  
    .video-thumb img {
        width: 100%;
        border-radius: 10px;
        display: block;
    }
  
    .video-date {
        font-size: 0.9rem;
        margin: 8px 0 4px;
    }
  
    .video-text {
        font-size: 1rem;
        color: #222;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
  
  }
 
  

 /************* 放送スケジュール *************/
 .onair{
    border-radius: 6px;
    margin: 0 10px 10px;
 }
 .onair dl {
    text-align: center;
    font-weight: bold;
    font-size: .9em;
}
.onair dt {
    background-color: #000;
    border-radius: 6px 6px 0 0;
    color: #fff;
    padding: 5px 0;
}
.onair dd {
    background-color: #fff;
    border-radius: 0 0 6px 6px;
    padding: 5px 0;
}
.onair.bs_highlight {
    margin: 0 0 40px;
}
.onair span{
    margin: 10px 0 10px;
    display: inline-block;
}
.onair a.cal_btn {
    background-color: #745399;
    color: #fff;
    padding:6px 10px;
    border-radius: 3px;
    font-size: .8em;
}


@media (min-width: 768px) {
    .onair{
        margin: 0 30px 20px;
    }
    .onair dl{
        font-size: 1em;
    }
    .onair dt, .onair dd{
        padding: 10px 0;
    }
    .onair.bs_highlight {
        margin: 0 0 60px;
    }
    .onair span{
        margin: 18px 0 10px;
    }
    .onair a.cal_btn{
        padding:8px 10px;

    }
}
 /************* 結果ボタン *************/
 .table-header {
    grid-template-columns: 0.8fr 1.2fr 0.6fr 1fr 0.7fr;
}
 .table-row:has(.result){
    grid-template-columns: 0.7fr 1.2fr 0.4fr 1fr 0.7fr;
 }
 .result a {
    background: linear-gradient(90deg, #C99B20 0%, #AA7701 100%);
    color: #fff;
    padding: 2px 9px;
    border-radius: 99px;
    font-weight: bold;
}
.cell{
    padding: 0 5px;
}
.gender{
    margin-bottom: 0;
}
.gender span{
    padding: 2px 5px;
}
.table-row{
    padding: 12px 0;
}

@media (min-width: 768px) {
    .table-header{
       grid-template-columns: 0.7fr 1fr 0.3fr 0.9fr 0.9fr;   }
    .table-row:has(.result){
       grid-template-columns: 0.7fr 1fr 0.3fr 0.9fr 0.9fr;   }
     .gender span {
        padding: 4px 5px;
    }
    .result a{
        padding: 8px 40px;
    }

}
 /************* 見どころまとめて表示 *************/
 .midokoro{
    margin: 0 10px 30px;
    background-color: #D9D9D9;
    padding: 12px;
    font-size: .9em;
    line-height: 1.5;
    border-radius: 6px;
}
.midokoro_inner{
    background-color: #fff;
    border-radius: 6px;
    padding: 12px;
}
.midokoro h3{
    color: #C99B20;
    margin-bottom: 5px;
    font-size: 1.2em;
}
.midokoro h4{
    color: #745399;
    margin-bottom: 5px;
    font-size: 1.1em;
    position: relative;
  padding-left: .8em;
}
.midokoro h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid #745399; /* 三角の色 */
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  .midokoro-event {
    padding: 10px 0;
}
.midokoro-event:not(:last-child){
    border-bottom: 1px solid #d9d9d9;
}
.midokoro-copy{
    font-weight: bold;
}
.midokoro-copy img{
    width: 20px;
    vertical-align: middle;
    margin-right: 3px;
}
@media (min-width: 768px) {
    .midokoro{
        margin: 0 30px 30px;
        font-size: 1em;
    }
    .midokoro_inner{
        padding: 12px 20px;
    }
    .midokoro h3{
    font-size: 1.1em;
    }
    .midokoro-copy{
        margin-bottom: 5px;
    }
}
  /*/////////// ユニウェブ ///////////*/

  [data-uniweb--contrast-modified] .session-link.morning span::after{
    position: absolute;
    right: 0;
    top: 0;
    margin: auto;
    bottom: 0;
    display: block;
    width: 20%;
    height: 22px;
    background: #fff url(img/ico_day.svg) no-repeat right center;
    background-size: contain;

}
[data-uniweb--contrast-modified] .session-link.evening span::after{
    position: absolute;
    right: 0;
    top: 0;
    margin: auto;
    bottom: 0;
    display: block;
    width: 20%;
    height: 22px;
    background:#fff url(img/ico_evening.svg) no-repeat right center;
    background-size: contain;

}

.accessibility--FITT .table-row.final .time, .accessibility--FITT .table-row.final .event, .accessibility--FITT .table-row.final .round,.accessibility--FIH .table-row.final .time, .accessibility--FIH .table-row.final .event, .accessibility--FIH .table-row.final .round,.accessibility--FITT .event-schedule-table td.final,.accessibility--FIH .event-schedule-table td.final{
    background-color: #AA7701;
}

.accessibility--FIH .gender,.accessibility--FIH .male,.accessibility--FIH .mix,.accessibility--FITT .gender,.accessibility--FITT .male, .accessibility--FITT .mix{
    color: #000;
    background-color: initial;
    background: none;
}
.accessibility--FIH .day-button:hover::before, .accessibility--FIH .day-button.active::before,.accessibility--FITT .day-button:hover::before, .accessibility--FITT .day-button.active::before{
    background-color: #AA7701;
}

.accessibility--FIH .event-categories .category-icon .uniweb--itt-text,.accessibility--FITT .event-categories .category-icon .uniweb--itt-text{
    color: #A48B78; 
    font-size: .7em;
}

.accessibility--FIH .category-button:hover span.uniweb--itt-text,.accessibility--FIH .category-button.active span.uniweb--itt-text,.accessibility--FITT .category-button:hover span.uniweb--itt-text,.accessibility--FITT .category-button.active span.uniweb--itt-text{
    position: absolute;
}

.accessibility--FIH .magnifier-icon,.accessibility--FITT .magnifier-icon{
    width: 100%!important;
    height: 22px!important;
}
.accessibility--FIH .magnifier-icon .uniweb--itt-text,.accessibility--FITT .magnifier-icon .uniweb--itt-text{
    align-items: flex-start!important;
    word-wrap: initial;
    overflow: initial;
    border-radius: initial;
    width: 100%!important;
}
.accessibility--FIH .table-row,.accessibility--FITT.table-row{
    grid-template-columns: 0.8fr 1.3fr 0.5fr 1fr 0.8fr;
}
.accessibility--FIH .cell.highlight-toggle .uniweb--itt-text,.accessibility--FITT .cell.highlight-toggle .uniweb--itt-text{
    display: inline;
    padding: 0 0px 15px;
}
.accessibility--FITT .result a,.accessibility--FIH .result a {
    color: #AA7701;
}

[data-uniweb--contrast-modified] .mix{
    background: none;
}
@media (min-width: 768px) {
    [data-uniweb--contrast-modified] .session-link.morning span::after{
        width: 10%;
    }
    [data-uniweb--contrast-modified] .session-link.evening span::after{
        width: 10%;
    }
    .accessibility--FIH .magnifier-icon,.accessibility--FITT .magnifier-icon{
        width: 80px!important;
        height: 40px!important;
        
    }
    .accessibility--FIH .cell.highlight-toggle .uniweb--itt-text,.accessibility--FITT .cell.highlight-toggle .uniweb--itt-text{
        padding: 4px!important;
    }


}
