@charset "UTF-8";

/*------共通要素------*/

/*セクション・各タイトル*/

section {
    padding: 6rem 0;
    position: relative;
}

.sectionTtl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.articleContents + .sectionTtl,
section > *:nth-of-type(n+2) > .sectionTtl {
    margin-top: 6rem;
}

.sectionTtl img {
    height: 5.7rem;
    width: auto;
}

.sectionTtl img.michuIcon {
    height: auto;
    margin-right: 0.3em;
}

.sectionTtl > *:not(a) {
    font-size: 3.8rem;
    display: flex;
    align-items: center;
}

.sectionTtl > a {
    color: #222;
    transition: .3s;
    padding: 1rem 0;
}

.sectionTtl > a:hover {
    opacity: .8;
}

.sectionTtl > a i {
    margin-left: 0.6em;
}

/* inview.js設定 */

.fadeInUp{
    opacity: 0;
    transform: translateY(2rem);
    transition: 0.8s;
}
.fadeInUp.effected{
    opacity: 1;
    transform: translateY(0);
}

/*記事共通部分*/

.articleContents ul {
    display: flex;
    flex-wrap: wrap;
}

.articleContents li {
    width: 22.5%;
    margin-right: 3.3%;
    margin-bottom: 3.3%;
    display: flex;
    flex-direction: column;
}

.articleContents li:nth-child(4n) {
    margin-right: 0;
}

.articleContents li:nth-last-child(-n+4) {
    margin-bottom: 0;
}

.articleContents li a {
    color: #222;
    display: block;
    transition: .3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.articleContents li a:hover {
    color: #555;
}

.articleContents li figure {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgb(0 0 0 / 5%);
    margin-bottom: 1.5rem;
}

.articleContents li figure img {
    object-fit: cover;
    font-family: 'object-fit: cover;';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: .8s;
    transform: scale(1.01);
}

.articleContents li a:hover figure img {
    transform: scale(1.04);
    opacity: 0.9;
}

.articleContents li .itemInfo {
    font-size: 1.7rem;
    line-height: 1.3;
    margin-bottom: 1.7rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.articleContents li .ttl {
    font-weight: bold;
    margin-bottom: 1rem;
}

.articleContents .summary {
    margin-top: auto;
}
@supports (-webkit-line-clamp:3) {
    .articleContents li .ttl {
        -webkit-box-orient: vertical;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
    }
}

.articleContents li .author {
    display: flex;
    margin-top: auto;
    align-items: center;
    line-height: 1.3;
    font-size: 1.6rem;
    flex-direction: row;
    height: auto;
    font-weight: bold;
}

.articleContents li .author .authorImg {
    position: relative;
    width: 5rem;
    min-width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 1px solid rgb(0 0 0 / 20%);
    overflow: hidden;
    margin-right: 1rem;
}

.articleContents li .author .authorImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}

@media screen and (max-width: 1024px) {
    .articleContents li {
        width: 23.5%;
        margin-right: 2%;
        margin-bottom: 2.5%;
    }
    
    .articleContents li .itemInfo {
        font-size: 1.4rem;
    }

    .articleContents li .author {
        font-size: 1.2rem;
    }

    .articleContents li .author .authorImg {
        width: 3rem;
        min-width: 3rem;
        height: 3rem;
    }
}

/*カードスライダー*/

.cardContents {
    padding: 0;
}

.cardSlider {
    display: none;
}

.cardSlider.slick-initialized {
    display: block;
}

.cardSlider .slick-list {
    overflow: visible;
}

.cardSlider .slick-slide {
    width: 20vw;
    position: relative;
    z-index: 1;
    transition: .5s;
}

.cardSlider .slick-slide:hover {
    transform: scale(1.1);
    z-index: 5;
}

.cardSlider .slick-arrow {
    width: 3rem;
    height: 3rem;
    z-index: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cardSlider .slick-prev {
    left: 0;
}

.cardSlider .slick-next {
    right: 0;
}

.cardSlider .slick-arrow:before {
    content: "";
    display: block;
    width: 35%;
    height: 35%;
    border-top: #999 2px solid;
    border-right: #999 2px solid;
    transition: .3s;
}

.cardSlider .slick-prev:before {
    transform: rotate(225deg);
    margin-left: 12%;
}

.cardSlider .slick-next:before {
    transform: rotate(45deg);
    margin-right: 12%;
}

@media screen and (min-width: 1280px) {
    .cardSlider .slick-slide {
        width: 256px;
    }
}

@media screen and (max-width: 1024px) {
    .cardSlider .slick-slide {
        width: 25vw;
    }
}

/*-----おすすめ番組スライダー-----*/

.recommend {
    position: relative;
}

.recommend + #sectionTopics {
    padding-top: 3.5rem;
}

.recommendInner {
    width: 62.5%;
    overflow-x: hidden;
    max-width: 800px;
}

.recommend .articleContents {
    width: 33.6%;
    max-width: 430px;
}

.recommend .articleContents ul {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recommend .articleContents li {
    width: 100%;
    min-height: 47.5%;
    background: #fff;
    margin-right: 0;
}

.recommend .articleContents li:last-of-type {
    margin-top: auto;
}

.recommend .articleContents li figure {
    margin-bottom: 0;
    padding-top: 55%;
}

.recommend .articleContents li .itemInfo {
    margin: 0.5em 0.6em;
    font-size: 1.7rem;
    justify-content: center;
}

.recommend .articleContents li .summary {
    margin-top: 0;
    font-size: 78.5%;
    margin-bottom: 0.3rem;
}

.recommend .articleContents li .ttl {
    margin-bottom: 0;
}

@supports (-webkit-line-clamp:2) {
    .recommend .articleContents li .ttl {
        -webkit-line-clamp: 1;
    }
}

.recommend .inner {
    display: flex;
    justify-content: space-between;
}

.recommendSlider {
    display: none;
    position: relative;
    z-index: 1;
}

.recommendSlider.slick-initialized {
    display: block;
    margin-bottom: 1rem;
}

.recommendSlider .slick-list {
    overflow: visible;
}

.recommendSlider .slick-slide {
    opacity: 0.5;
    transition: opacity 0.4s;
    pointer-events: none;
}

.recommendSlider .slick-slide.slick-current,
.recommendSlider .slick-slide.is-active-next {
    opacity: 1;
    pointer-events: auto;
}

.recommendSlider a {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    color: #222;
}

.recommendSlider figure {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
}

.recommendSlider .itemInfo {
    padding: 0.8em 0.6em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.7rem;
}

.recommendSlider .detail {
    margin-bottom: 0.4em;
    line-height: 1.4;
}

.recommendSlider .summary {
    font-size: 149%;
    font-weight: bold;
    line-height: 1.3;
    /* margin: 0.5em 0; */
}

@supports (-webkit-line-clamp:1) {
    .recommendSlider .detail{
        -webkit-box-orient: vertical;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
    }
    .recommendSlider .summary {
        -webkit-box-orient: vertical;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
    }
}

.recommendSlider figure img {
    object-fit: cover;
    font-family: 'object-fit: cover;';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: .8s;
    transform: scale(1.01);
}

.recommendSlider a:hover figure img {
    transform: scale(1.04);
    opacity: 0.9;
}

.recommendBg {
    pointer-events: none;
    height: 150%;
    opacity: 0.2;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.recommendBg:after {
    content: "";
    background: linear-gradient(#fff 0, transparent 15%,transparent 85%,#fff);
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
}

.recommendBg .slick-list,
.recommendBg .slick-track {
    height: 100%;
}

.recommendBg img {
    object-fit: cover;
    font-family: 'object-fit: cover;';
    width: 100%;
    height: 100%;
    display: block;
    filter: blur(1rem);
}

@media screen and (max-width: 1279px) {
    .recommendSlider .itemInfo {
        font-size: 1.36vw;
    }

    .recommend .articleContents li .itemInfo {
        font-size: 1.45vw;
    }
}

@media screen and (max-width: 1024px) {
    .recommend .inner {
        flex-direction: column;
        padding: 0;
    }

    .recommend .articleContents,
    .recommend .recommendInner {
        width: 100%;
        max-width: none;
    }
    
    .recommend .articleContents ul {
        flex-direction: row;
        justify-content: space-between;
        margin-top: 2rem;
        padding: 0 10px;
    }

    .recommend .articleContents li {
        width: 48.7%;
        margin: 0;
        min-height: auto;
    }
    
    .recommendSlider .itemInfo {
        font-size: 2vw;
    }

    .recommend .articleContents li .itemInfo {
        font-size: 2.1vw;
    }
}

@media screen\0 {
    .recommendBg {display: none;}
}

.recommendNav {
    display: none;
    position: relative;
    z-index: 1;
}

.recommendNav.slick-initialized {
    display: block;
}

.recommendNav .slick-slide {
    opacity: 0.7;
    transition: opacity 0.4s;
    margin: 0 0.2%;
    position: relative;
    padding: 1rem 0 0rem;
}

.recommendNav .slick-slide::before{
    content:"";
    width: 1.7rem;
    height: 1rem;
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    background: linear-gradient(to bottom right, transparent 40%, rgb(0 0 0 / 5%) 50% ,#fff 53%) no-repeat top left / 50% 100%,
    linear-gradient(to bottom left,transparent 40%, rgb(0 0 0 / 5%) 50%, #fff 53%) no-repeat bottom right/50% 100%;
    z-index: 0;
    opacity: 0;
    transition: .5s .3s;
    z-index: 1;
}

.recommendNav .slick-slide.slick-current::before {
    opacity: 1;
    top: 0;
}

.recommendNav .slick-slide.slick-current,
.recommendNav .slick-slide.is-active-next {
    opacity: 1;
}

.recommendNav figure {
    background: #fff;
    width: 100%;
    padding-top: 75%;
    padding-top: 43%;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 1px 1px 5px rgb(0 0 0 / 5%);
}

.recommendNav figure img {
    object-fit: cover;
    font-family: 'object-fit: cover;';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: .8s;
    transform: scale(1.01);
    z-index: 2;
}

.recommendNav li:hover figure img {
    transform: scale(1.08);
    opacity: 0.9;
}


/*-----現在放送中の番組-----*/

.onair {
    width: 100%;
    /* overflow-x: hidden; */
    position: relative;
    overflow: hidden;
}

.onair:before {
    content: "";
    position: absolute;
    top: 2.9rem;
    right: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fdbaaa;
    background: linear-gradient(to right, #fdbaaa 0%, #be7ee0 33%, #174fd5 67%, #4bc0fd 100%);
}

.onair ul {
    display: none;
    padding-top: 0;
    padding-bottom: 3rem;
}

.onair li {
    position: relative;
}

.onair li.now:before {
    content: "";
    position: absolute;
    background: url("/images/timeline_now_pc.png?20240222") center top / contain no-repeat;
    top: 1.1rem;
    left: -4.6rem;
    width: 19rem;
    height: 8.9rem;
}

.onair li > span {
    font-size: 1.4rem;
    letter-spacing: .1em;
    margin-bottom: 1rem;
    font-weight: bold;
}

.onair li a {
    padding: 1.7rem 0 0.5rem 1rem;
    margin-left: 1.7rem;
    font-weight: bold;
    border-left: 1px solid #aaa;
    height: 100%;
    font-size: 1.5rem;
    text-decoration: none;
    color: #222;
    transition: .3s;
    position: relative;
    display: flex;
    align-items: center;
}
@supports (-webkit-line-clamp:2) {
    .onair li a span {
        -webkit-box-orient: vertical;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 1;
    }
}

.onair li a:before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 50%;
    position: absolute;
    top: -0.6rem;
    left: -0.6rem;
}

.onair li a:hover {
    opacity: .8;
}

.onair .slick-initialized {
    display: block;
}

.onair .slick-list {
    overflow: visible;
}

.onair .slick-slide {
    opacity: 0.5;
    transition: .8s;
    display: flex !important;
    flex-direction: column;
    height: auto;
    width: 22.8vw;
    pointer-events: none;
}

.onair .slick-track {
    display: flex;
}

.onair .slick-active {
    opacity: 1;
    pointer-events: auto;
}

.onair .slick-arrow {
    width: 3rem;
    height: 3rem;
    top: 3.3rem;
    z-index: 1;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: .3s;
}

.onair .slick-disabled {
    opacity: 0;
    visibility: hidden;
}

.onair .slick-prev {
    left: -3rem;
}

.onair .slick-next {
    right: -3rem;
}

.onair .slick-arrow:before {
    content: "";
    display: block;
    width: 35%;
    height: 35%;
    border-top: #fff 2px solid;
    border-right: #fff 2px solid;
    transition: .3s;
}

.onair .slick-prev:before {
    transform: rotate(225deg);
    margin-left: 12%;
}

.onair .slick-next:before {
    transform: rotate(45deg);
    margin-right: 12%;
}

@media screen and (max-width:1360px) {
    .onair .inner {
        padding: 0 3rem;
    }
}

@media screen and (max-width:1280px) {
    .onair li.now:before {
        background: url("/images/timeline_now_sp.png") center top / contain no-repeat;
        top: 1.3em;
        left: -2.2em;
        width: 16.9rem;
        height: 7.9rem;
    }
}

@media screen and (min-width: 1300px) {
    .onair .slick-slide {
        width: 310px;
    }
}

@media screen and (max-width: 1024px) {
    .onair .slick-slide {
        width: 29.4vw;
    }
}

/*-----セクション個別-----*/

/*番組トピックス*/

#sectionTopics {
    position: relative;
    overflow: hidden;
}
#sectionTopics .sectionTtl:before,
#sectionTopics:before,
#sectionTopics:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#sectionTopics:before {
    background: url("/images/topics_michu01.png") no-repeat top right;
    top: 0;
    right: -3vw;
}

#sectionTopics:after {
    background: url("/images/topics_michu02.png") no-repeat bottom left;
    top: 0;
    left: 1vw;
}

#sectionTopics .sectionTtl {
    position: relative;
}

#sectionTopics .sectionTtl:before {
    content: 'TOPICS';
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 168px;
    line-height: 1;
    color: #DDD;
    opacity: 0.2;
    z-index: -2;
}

@media screen and (max-width: 1280px) {
    #sectionTopics .sectionTtl:before {
        font-size: 13.125vw;
    }
}

/*ニュース*/

#sectionNews {
    background: #F4F4F4;
}

/*北海道チャンネル*/

#sectionHokkaidoch {
    background: url("/images/hokkaidoch_bg.jpg?20220927") no-repeat top center;
    background-size: cover;
}

/*スポーツ*/

#sectionSports {
    position: relative;
    overflow: hidden;
}
#sectionSports:before,
#sectionSports:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#sectionSports:before {
    background: url("/images/sports_michu01.png?220915") no-repeat top right;
    top: 5%;
    right: -3vw;
}

#sectionSports:after {
    background: url("/images/sports_michu02.png?220915") no-repeat bottom left;
    bottom: 5%;
    left: -3vw;
}

/*番組バナー*/

#sectionProgram {
    background:
    linear-gradient(135deg, #f4f4f4 30%, transparent 30%) -5px 0,
    linear-gradient(225deg, #f4f4f4 30%, transparent 30%) -5px 0,
    linear-gradient(315deg, #f4f4f4 30%, transparent 30%),
    linear-gradient(45deg, #f4f4f4 30%, transparent 30%);
    background-size: 10px 10px;
    background-color: #e5e5e5;
    overflow: hidden;
    position: relative;
    padding: 7rem 0;
}

#sectionProgram:before {
    content: 'UHB ORIGINAL';
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 168px;
    bottom: -0.15em;
    margin: auto;
    line-height: 1;
    color: #DEDEDE;
    opacity: 0.8;
    z-index: -1;
}

@media screen and (max-width: 1280px) {
    #sectionProgram:before {
        font-size: 13.125vw;
    }
}

#sectionProgram .cardSlider .slick-slide {
    padding: 1rem;
}

/*動画・見逃し*/

#sectionMovie {
    position: relative;
    overflow: hidden;
}
#sectionMovie:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: url("/images/movie_michu01.png?220915") no-repeat bottom right;
    top: 0;
    right: -10vw;
}

/*コンテンツ*/

#sectionContents {
    background: #F4F4F4;
    position: relative;
    overflow: hidden;
}

#sectionContents:before,
#sectionContents:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

#sectionContents:before {
    background: url("/images/contents_michu01.png?220915") no-repeat top left;
    top: 5%;
    left: -3vw;
}

#sectionContents:after {
    background: url("/images/contents_michu02.png?220915") no-repeat bottom right;
    bottom: 0;
    right: -3vw;
}

#sectionContents .sectionTtl:first-of-type {
    position: relative;
}

#sectionContents > *:first-of-type > .sectionTtl:before {
    content: 'CONTENTS';
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 168px;
    line-height: 1;
    color: #fff;
    z-index: -2;
}

@media screen and (max-width: 1280px) {
    #sectionContents > *:first-of-type > .sectionTtl:before {
        font-size: 13.125vw;
    }
}

/*アナウンサー*/

#sectionAna {
    overflow-x: hidden;
}

#sectionAna .cardSlider .slick-slide {
    width: 22vw;
}

@media screen and (min-width: 1280px) {
    #sectionAna .cardSlider .slick-slide {
        width: 256px;
    }
}
.announcerList {
    display: flex;
    flex-wrap: wrap;
}
.announcerList li {
    width: 25%;
    position: relative;
}
.announcerList li img {
    width: 100%;
}
.announcerList li a:hover {
    transition-duration: .2s;
}
.announcerList .txt_content {
    position: absolute;
    z-index: 1;
    bottom: 5%;
    left: 5%;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: 1.3;
    font-size: 1.2vw;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 30%);
}
@media screen and (min-width: 1280px) {
    .announcerList .txt_content {
        font-size: 14px;
    }
}
.announcerList .txt_content .name {
    font-size: 200%;
}
.announcerList .sns_list {
    display: none;
}


/*-----お知らせ-----*/

#uhbinfo {
    width: 100%;
    max-width: 1280px;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    background: rgb(238 238 238 / 60%);
    padding: 2.5rem 4rem;
    display: flex;
    font-size: 1.6rem;
}

@media screen and (max-width:1300px) {
    #uhbinfo {
        width: 90%;
        width: calc(100% - 20px);
        margin-left: 10px;
        margin-right: 10px;
    }
}

#uhbinfo h3 {
    min-width: 7em;
    font-weight: bold;
}

#uhbinfo .info_body {
    width: 100%;
}

#uhbinfo li {
    width: 100%;
    margin: 0;
    padding: 1.5rem 0;
    border-top: 1px dotted #cccccc;
    display: flex;
    flex-wrap: wrap;
}

#uhbinfo li:first-child {
    border-top: none;
    padding-top: 0;
}

#uhbinfo li:last-child {
    padding-bottom: 0;
}

#uhbinfo .date {
    font-size: 0.9em;
    opacity: 0.9;
    align-self: center;
    order: 2;
    margin-left: auto;
    margin-bottom: 0.5rem;
}

#uhbinfo .title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    order: 1;
}

#uhbinfo .text {
    order: 3;
    width: 100%;
}

#uhbinfo .text strong {
    font-weight: bold;
}

#uhbinfo .text u {
    text-decoration: underline;
}

#uhbinfo .text img {
    max-width: 100%;
}

/*-----バナーエリア-----*/

.bnArea {
    padding: 6rem 0;
}

#sectionAna + .bnArea {
    padding-top: 0;
}

.bnArea ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.bnArea ul + ul {
    margin-top: 3rem;
}

.bnArea ul li {
    margin: 0.5%;
    width: 15.6%;
    background: #fff;
}

.bnArea ul li:first-of-type:nth-last-of-type(6n+1),
.bnArea ul li:first-of-type:nth-last-of-type(6n+1) ~ li {
    margin: 0.6%;
}

.bnArea ul li img {
    width: 100%;
    vertical-align: bottom;
    transition: .3s;
}

.bnArea ul li a:hover img {
    opacity: 0.8;
}

#sectionEvent .category.music {
    background-color: #eaa200;
}

#sectionEvent .category.stage {
    background-color: #ef717b;
}

#sectionEvent .category.sport {
    background-color: #289a9a;
}

#sectionEvent .category.art {
    background-color: #454ebe;
}

#sectionEvent .category.movie {
    background-color: #a51900;
}

#sectionEvent .category.other {
    background-color: #069800;
}

#sectionEvent .eventList {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
}

#sectionEvent .eventList li {
    overflow: hidden;
    position: relative;
    z-index: 0;
    width: -webkit-fill-available;
    margin: 0;
}

#sectionEvent .eventList li:before, #sectionEvent .eventList li:after {
    content: "";
    position: absolute;
    z-index: 0;
}

#sectionEvent .eventList li:before {
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: -8rem;
    bottom: -8rem;
    left: -8rem;
    right: -8rem;
    filter: blur(4rem);
}

#sectionEvent .eventList li:after {
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #fff 20%, transparent);
    opacity: 0.8;
}

#sectionEvent .eventList li.spacer {
    background: #EBEBEB url("/images/event_spacer_michu.png") center center no-repeat;
}

#sectionEvent .eventList li.spacer:before, #sectionEvent .eventList li.spacer:after {
    content: none;
}

#sectionEvent .eventList figure {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
    background: #fff;
    border: none;
    margin-bottom: 0;
}

#sectionEvent .eventList figure img {
    object-fit: contain;
    font-family: 'object-fit: contain;';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: .8s;
    transform: scale(1.01);
}

#sectionEvent .eventList a {
    color: #222;
    display: flex;
    flex-direction: column;
    transition: .3s;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

#sectionEvent .eventList a:hover {
    color: #555;
}

#sectionEvent .eventList a:hover figure img {
    transform: scale(1.08);
    opacity: 0.9;
}

#sectionEvent .eventList .itemInfo {
    font-size: 1.6rem;
    line-height: 1.3;
    display: flex;
    height: 100%;
    padding: 1.5rem 0 0;
    min-height: 15rem;
    margin-bottom: 0;
    flex-direction: row;
}

#sectionEvent .eventList .dateWrap {
    font-size: 1.6rem;
    border-right: 1px solid rgb(0 0 0 / 30%);
    padding-right: 1em;
    margin-right: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#sectionEvent .eventList .dateWrap > * {
    min-width: 4.5em;
}

#sectionEvent .eventList .date div:first-of-type {
    font-size: 87.5%;
    line-height: 1;
}

#sectionEvent .eventList .date div:last-of-type {
    font-size: 175%;
    line-height: 1.3;
    display: flex;
    align-items: baseline;
}

#sectionEvent .eventList .date div:last-of-type span {
    font-size: 50%;
    margin-left: 0.3em;
}

#sectionEvent .eventList .date + .date:before {
    content: "";
    display: block;
    width: 0;
    height: 0.7em;
    border-left: 0.15em solid;
    margin: 0.2em auto 0.2em 2.5em;
}

#sectionEvent .eventList .dateWrap .indefinite {
    font-size: 87.5%;
    align-self: center;
    opacity: 0.8;
}

#sectionEvent .eventList .ttlWrap {
    font-weight: bold;
}

#sectionEvent .eventList .ttlWrap .tagWrap {
    margin-bottom: 1rem;
    display: inline-flex;
    font-size: 87.5%;
    color: #fff;
    line-height: 1;
}

#sectionEvent .eventList .tagWrap > div {
    padding: 0.3em 1em;
}

#sectionEvent .eventList .tagWrap .status {
    background: #444;
}

#sectionEvent .eventList .tagWrap > div:nth-of-type(n+2) {
    margin-left: 0.5rem;
}

@media screen and (max-width: 1024px) {
    #sectionEvent .eventList .itemInfo {
        font-size: 1.4rem;
    }
    
    #sectionEvent .eventList .dateWrap {
        font-size: 1.4rem;
    }
    
    #sectionEvent .eventList a {
        padding: 1rem;
    }
}