@charset "utf-8";

/* ===================================================================
BOOTH
=================================================================== */

/* BOOTH NAME
--------------------*/

.booth-name {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
}

/* BOOTH LIST
--------------------*/

.booth-list {
    margin: 40px 0 0;
}

.booth-list > ul {
    display: flex;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
    counter-reset: num;
}

.booth-list > ul > li {
    position: relative;
    width: 100%;
}

.booth-list > ul > li:before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 950px;
    height: calc(100% - 20px);
    background: #FFF;
    pointer-events: none;
    z-index: -1;
}

.booth-list-number {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    color: #FFF;
    font-size: 30px;
    font-family: "BIZ UDMincho", serif;
    font-style: normal;
	font-weight: 700;
    letter-spacing: 0.05em;
    background: #145D6E;
    pointer-events: none;
}

.booth-list-number.num8 {
    left: 70px;
}

/* BOOTH LIST INNER
--------------------*/

.booth-list-inner {
    display: flex;
    justify-content: center;
    padding: 70px 35px 50px 0;
}

/* BOOTH LIST IMG INNER
--------------------*/

.booth-list-img-inner {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 10px;
    width: 100%;
    max-width: 350px;
}

/* BOOTH LIST INFO
--------------------*/

.booth-list-info {
    width: calc(100% - 350px);
    margin: 0 0 0 45px;
    letter-spacing: 0.05em;
}

/* BOOTH LIST INFO START
--------------------*/

.booth-list-info-start {
    margin: 0 0 15px;
}

.b-c-t { line-height: 1.625; }
.b-c-t.pc-mt18 { margin: 18px 0 0; }
.b-c-t.pc-mt15 { margin: 15px 0 0; }
.b-c-t.pc-mt10 { margin: 10px 0 0; }
.b-c-t.pc-mt5 { margin: 5px 0 0; }

.b-t1 {
    font-size: 24px;
    font-weight: 700;
}

.b-t2 {
    font-size: 18px;
    font-weight: 700;
}

.b-link {
    display: inline-block;
    margin: 5px 0 0;
    color: #1D61BE;
    text-decoration: underline #1D61BE;
}

/* BOOTH LIST INFO END
--------------------*/

.booth-list-info-end {
    padding: 15px 0 10px;
    border-top: 1px solid #B5CDD3;
}

/* BOOTH LIST INFO PR
--------------------*/

.booth-pr {
    padding: 15px 0 0;
    border-top: 1px solid #B5CDD3;
}

@media screen and (max-width : 1023px) {

    /* ===================================================================
    BOOTH
    =================================================================== */

    /* BOOTH NAME
    --------------------*/

    .booth-name {
        font-size: 24px;
    }

    /* BOOTH LIST
    --------------------*/

    .booth-list > ul > li:before {
        display: none;
    }

    .booth-list-number {
        width: 58px;
        height: 58px;
    }

    .booth-list-number.num8 {
        top: 63px;
        left: 0;
    }

    /* BOOTH LIST INNER
    --------------------*/

    .booth-list-inner {
        flex-direction: column;
        padding: 0;
    }

    /* BOOTH LIST IMG
    --------------------*/

    .booth-list-img-inner {
        row-gap: 2px;
        max-width: 230px;
        margin: 0 auto;
    }

    /* BOOTH LIST INFO
    --------------------*/

    .booth-list-info {
        width: 100%;
        margin: -20px 0 0;
        padding: 30px 20px 20px;
        background: #FFF;
    }

    /* BOOTH LIST INFO START
    --------------------*/

    .booth-list-info-start {
        margin: 0 0 20px;
    }

    .b-c-t { line-height: 1.7; }
    .b-c-t.pc-mt20 { margin: 20px 0 0; }
    .b-c-t.pc-mt5 { margin: 5px 0 0; }
    
    .b-t1 {
        font-size: 22px;
    }
    
    .b-t2 {
        font-size: 16px;
    }

}