@charset "UTF-8";

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

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

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

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

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

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

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

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

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

.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.inner {
    padding-right: 0;
    overflow-x: hidden;
}
.articleContents ul {
    display: none;
}

.articleContents ul.slick-initialized {
    display: block;
}

.articleContents li {
    width: 44vw;
    height: auto;
    margin-right: 2vw;
    display: flex !important;
    flex-direction: column;
}

.articleContents .slick-track {
    display: flex;
    flex-wrap: wrap;
}

.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.65rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    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.4rem;
    flex-direction: row;
    height: auto;
}

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

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

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

.cardContents {
    padding: 0;
}

.cardSlider {
    display: none;
}

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

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

.cardSlider .slick-slide {
    width: 46.2vw;
    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%;
}

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

.recommend {
    position: relative;
}

.recommendInner {
    width: 100%;
    overflow-x: hidden;
}

.recommend .articleContents {
}

.recommend .articleContents ul {
    display: flex;
    padding: 0 10px;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.recommend .articleContents li {
    background: #fff;
    width: 48.7%;
    margin: 0;
}

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

.recommend .articleContents li .itemInfo {
    margin: 0.4em 0.8em;
    font-size: 1.65rem;
}

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

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

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


.recommend .inner {
    padding: 0;
}

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

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

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

.recommendSlider .slick-track {
    background: #fff;
}

.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 .slick-arrow {
    width: 3rem;
    height: 3rem;
    z-index: 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: auto;
    bottom: -5.5rem;
}

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

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

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

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

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

.recommendSlider .slick-dots {
    padding: 0 3.5rem;
    bottom: -3.2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.recommendSlider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.recommendSlider .slick-dots li button {
    cursor: pointer;
    outline: none;
    width: 1.2rem;
    height: 1.2rem;
    opacity: .7;
    background: #555;
    border-radius: 50%;
    transition: .2s;
}

.recommendSlider .slick-dots li button:hover,
.recommendSlider .slick-dots li button:focus {
    opacity: .75;
    background: #e03b54;
}

.recommendSlider .slick-dots li.slick-active button {
    opacity: .75;
    background: #db022a;
    transform: scale(1.4);
}

.recommendSlider .slick-dots li button:before {
    content: none;
}

.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 {
    width: 100%;
    border-top: 1px solid rgb(0 0 0 / 5%);
    padding: 1.5rem 2%;
    font-size: 3.73vw;
}

.recommendSlider .logo {
    margin-bottom: 1em;
    height: 2.8em;
}

.recommendSlider .logo img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    font-family: 'object-fit: contain;';
}

.recommendSlider .ttl {
    font-size: 125%;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

.recommendSlider .detail {
    margin-bottom: 0.5em;
    line-height: 1.4;
    font-size: 90%;
}

.recommendSlider .summary {
    font-size: 155%;
    font-weight: bold;
    line-height: 1.3;
}

@supports (-webkit-line-clamp:2) {
    .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: 2;
    }
}

.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: 200%;
    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\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%;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 1px 1px 5px rgb(0 0 0 / 5%);
    z-index: 2;
}

.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;
}

.onair .inner {
    padding: 0 3rem;
}

.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: 0rem;
    padding-bottom: 1rem;
}

.onair li {
    position: relative;
}

.onair li.now:before {
    content: "";
    position: absolute;
    background: url("/images/timeline_now_sp.png") center top / contain no-repeat;
    top: 1.3em;
    left: -2.2em;
    width: 16.9rem;
    height: 7.9rem;
}

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

.onair li a {
    padding: 1.2rem 0 0.5rem 1rem;
    margin-left: 1.6rem;
    border-left: 1px solid #aaa;
    height: 100%;
    font-size: 1.6rem;
    font-weight: bold;
    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: 2;
    }
}

.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: 40.4vw;
    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: 480px) {
    .onair .slick-slide {
        width: 79.4vw;
    }
}

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

/*番組トピックス*/

#sectionTopics {
    position: relative;
    overflow: hidden;
}

#sectionTopics:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: url("/images/topics_michu01.png") no-repeat top right;
    background-size: 30% auto;
    top: 0;
    right: -3vw;
}

#sectionTopics .sectionTtl {
    position: relative;
}

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

/*ニュース*/

#sectionNews {
    background: #F4F4F4;
}

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

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

/*スポーツ*/

#sectionSports {
    position: relative;
    overflow: hidden;
}

#sectionSports:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: url("/images/sports_michu02.png?220915") no-repeat bottom left;
    background-size: 30% auto;
    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: 14.6vw;
    bottom: -0.15em;
    margin: auto;
    line-height: 1;
    color: #DEDEDE;
    opacity: 0.8;
    z-index: -1;
}

#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 center;
    background-size: 16% auto;
    top: 0;
    right: 0;
}

/*コンテンツ*/

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

#sectionContents:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: url("/images/contents_michu01.png?220915") no-repeat bottom center;
    background-size: 30% auto;
    bottom: -6vw;
    left: 0;
}

#sectionContents > *:first-of-type > .sectionTtl {
    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: 13.125vw;
    line-height: 1;
    color: #fff;
    z-index: -2;
}

/*アナウンサー*/

#sectionAna {
    overflow-x: hidden;
}
.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: 2vw;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 30%);
}
.announcerList .txt_content .name {
    font-size: 200%;
}
.announcerList .sns_list {
    display: none;
}

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

#uhbinfo {
    width: 90%;
    width: calc(100% - 20px);
    margin-top: 2rem;
    margin-left: 10px;
    margin-right: 10px;
    background: rgb(238 238 238 / 60%);
    padding: 2rem 1.5rem;
    font-size: 1.6rem;
}

#uhbinfo h3 {
    min-width: 7em;
    font-weight: bold;
    font-size: 1.6rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #cccccc;
}

#uhbinfo .info_body {
    width: 100%;
}

#uhbinfo li {
    width: 100%;
    margin: 0;
    padding: 1rem 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: 4rem 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: 2%;
    width: 46%;
    background: #fff;
}

.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: flex;
}

#sectionEvent .eventList li {
    overflow: hidden;
    position: relative;
    z-index: 0;
    width: 65vw;
    margin-right: 3vw;
}

#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 {
    display: none;
}

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

#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: 1.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.4rem;
    line-height: 1.3;
    display: flex;
    height: 100%;
    min-height: 10rem;
    margin-bottom: 0;
    flex-direction: row;
}

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

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

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

#sectionEvent .eventList .date div:last-of-type {
    font-size: 155%;
    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.6em;
    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: 77.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;
}