@charset "utf-8";


/* 展示会情報 ▼▼ */
@media screen and (max-width: 767px) {
    .contents__wrap {
        width: 100%;
    }
}

.sec-exhibition {
    padding: 0 40px 0 0;
}

@media screen and (max-width: 1300px) {
    .sec-exhibition {
        padding: 0;
    }
}

.exhibition__ttl {
    margin-bottom: 15px;
}

.exhibition__explain {
    position: relative;
    margin-bottom: 40px;
}

.exhibition__arrow {
    display: none;
    position: absolute;
    bottom: -35px;
    left: 0;
    font-size: 12px;
}
.exhibition__arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 25px;
    height: 1px;
    transform: translateY(-50%);
    background: var(--txtMainColor);
}
.exhibition__arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -29px;
    width: 8px;
    height: 8px;
    transform: translateY(-50%) rotate(45deg);
    border: solid 1px var(--txtMainColor);
    border-left: none;
    border-bottom: none;
}

@media screen and (max-width: 1255px) {
    .exhibition__arrow {
        display: block;
    }
}

.exhibition__list {
    overflow-x: scroll;
}

@media screen and (max-width: 1300px) {
    .exhibition__list {
        margin-right: -24px;
    }
}

.exhibition__list__inner {
    width: 100%;
    min-width: 839px;
    border-collapse: collapse;
}
@media only screen and (max-width: 1300px) {
    .exhibition__list__inner {
        width: 860px;
    }
    
}

.exhibition__list__ttl,
.exhibition__list__data {
    border: solid 1px #DBDBDB;
    font-size: 14px;
    letter-spacing: 0.03em;
    padding: 0 9px 0 16.5px;
    color: var(--txtMainColor);
}

.exhibition__list__ttl {
    height: 46px;
    font-weight: 700;
    line-height: 1.2em;
    white-space: nowrap;
    background: #ebebeb;

}

.exhibition__list__data {
    height: 66px;
    font-weight: 500;
    line-height: 1.71em;
}

.exhibition__list__data.special {
    height: 33px;
}

.exhibition__list__data.mark::before {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: 0 3px 0 0;
    transform: translateY(-10%) rotate(45deg);
    background: var(--txtMainColor);
}

.exhibition__list__ttl.area,
.exhibition__list__data.area {
    width: 10.8%;
    text-align: left;
    padding: 0 3px 0 16px;
}

.exhibition__list__ttl.date,
.exhibition__list__data.date {
    width: 15.7%;
}

.exhibition__list__ttl.name,
.exhibition__list__data.name {
    width: 30.1%;
}

.exhibition__list__ttl.venue,
.exhibition__list__data.venue {
    width: 21.9%;
}

.exhibition__list__ttl.exhibitors,
.exhibition__list__data.exhibitors {
    width: 20.7%;
}

.exhibition__list__data a {
    display: block;
    width: fit-content;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--accentColor);
}
/* 展示会情報 ▲▲ */