/* ============================================================
   TICKET Page Styles
   ============================================================ */


/* ------------------------------------
   背景レイヤー（ページ固有）
   ------------------------------------ */


/* ページ固有レイアウト */
.p-tickets-star-wrapper .ly-container {
    padding-top: 50px;
}

.p-tickets-star-wrapper .p-tickets__char--01 img {
    top: -7.188rem;
    right: -2.625rem;
    position: absolute;
    z-index: 3;
}

.p-ticket__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    position: relative;
    z-index: 20;
}

.p-ticket__box {
    background: #fff;
    border: 4px solid #000;
    border-radius: 40px;
    padding: 29px 55px;
    width: 56%;
    text-align: center;
    position: relative;
    z-index: 5;
}

.p-ticket__venue-title {
    font-size: 33px;
    font-weight: 900;
    margin-bottom: 17px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.1em;
}

.p-ticket__table-wrapper {
    margin-bottom: 30px;
    overflow-x: auto;
}

.p-ticket__table {
    width: 100%;
    border-collapse: collapse;
    font-weight: 700;
}

.p-ticket__table th,
.p-ticket__table td {
    border: 2px solid #000;
    padding: 12px 8px;
    text-align: center;
    line-height: 1.4;
}

.p-ticket__table td {
    background-color: #fff;
    font-size: 18px;
    color: #000;
}

.p-ticket__table .row-label {
    font-size: 14px;
    width: 20%;
}

.p-ticket__note {
    font-size: 11px;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 30px;
    font-weight: 900;
    color: #000;
}

.p-ticket__note p {
    margin-bottom: 5px;
}

.p-ticket__buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 252px;
    height: 41px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid #000;
    border-radius: 999px;
    text-decoration: none;
    color: #000;
    font-weight: 900;
    font-size: 16px;
    position: relative;
    transition: 0.3s;
    letter-spacing: 0.05em;
}

.p-ticket__buy-btn::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #000;
    margin-left: 10px;
    margin-bottom: -3px;
}

.p-ticket__buy-btn:hover {
    background: #000;
    color: #fff;
}

.p-ticket__buy-btn:hover::after {
    border-color: transparent transparent transparent #fff;
}

.p-ticket__note-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #ff72aa;
    margin-left: 5px;
    vertical-align: middle;
}

.p-ticket__table tr {
    background: #232323;
    color: #FFFFFF;
}

@media screen and (max-width: 1280px) {
    .p-tickets-star-wrapper .ly-container {
        padding: 60px 20px;
    }

    .p-tickets-star-wrapper .p-ticket__box {
        padding: 40px 20px;
    }

}

@media screen and (max-width: 781px) {

    .p-ticket__box {
        margin: 0 80px 0 80px;
        width: auto;
    }

}

@media screen and (max-width: 781px) {

    .p-tickets-star-wrapper .p-ticket__venue-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .p-tickets-star-wrapper .p-ticket__table-wrapper {
        margin: 0;
        padding: 0;
        overflow-x: auto;
    }

    .p-tickets-star-wrapper .p-ticket__table {
        display: grid;
        grid-template-columns: 126px 213px 213px;
        grid-template-rows: 53px 70px 70px 70px 70px;
        border: 2px solid #000;
        border-bottom: none;
        width: 100%;
        height: 335px;
        margin: 0 auto;
    }

    .p-tickets-star-wrapper .p-ticket__table thead,
    .p-tickets-star-wrapper .p-ticket__table tbody,
    .p-tickets-star-wrapper .p-ticket__table tr {
        display: contents;
    }

    .p-tickets-star-wrapper .p-ticket__table th,
    .p-tickets-star-wrapper .p-ticket__table td {
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        width: 100%;
        padding: 10px 4px;
        white-space: normal;
        line-height: 1.4;
    }

    .p-tickets-star-wrapper .p-ticket__table th:first-child {
        background-color: #fff;
    }

    .p-tickets-star-wrapper .p-ticket__table td {
        font-size: 20px;
    }

    .p-tickets-star-wrapper .p-ticket__table .row-label {
        width: 100%;
        font-size: 21px;
        background-color: #FFFFFF;
        font-weight: bold;
        letter-spacing: 2.1px;
    }

    .p-tickets-star-wrapper .p-ticket__table th:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2;
    }

    .p-tickets-star-wrapper .p-ticket__table th:nth-child(2) {
        grid-area: 2 / 1 / 3 / 2;
    }

    .p-tickets-star-wrapper .p-ticket__table th:nth-child(3) {
        grid-area: 3 / 1 / 4 / 2;
    }

    .p-tickets-star-wrapper .p-ticket__table th:nth-child(4) {
        grid-area: 4 / 1 / 5 / 2;
    }

    .p-tickets-star-wrapper .p-ticket__table th:nth-child(5) {
        grid-area: 5 / 1 / 6 / 2;
    }

    .p-tickets-star-wrapper .p-ticket__table tbody tr:nth-child(1) td:nth-child(1) {
        grid-area: 1 / 2 / 2 / 3;
    }

    .p-tickets-star-wrapper .p-ticket__table tbody tr:nth-child(1) td:nth-child(2) {
        grid-area: 2 / 2 / 3 / 3;
    }

    .p-tickets-star-wrapper .p-ticket__table tbody tr:nth-child(1) td:nth-child(3) {
        grid-area: 3 / 2 / 4 / 3;
    }

    .p-tickets-star-wrapper .p-ticket__table tbody tr:nth-child(1) td:nth-child(4) {
        grid-area: 4 / 2 / 5 / 3;
    }

    .p-tickets-star-wrapper .p-ticket__table tbody tr:nth-child(1) td:nth-child(5) {
        grid-area: 5 / 2 / 6 / 3;
    }

    .p-tickets-star-wrapper .p-ticket__table tbody tr:nth-child(2) td:nth-child(1) {
        grid-area: 1 / 3 / 2 / 4;
    }

    .p-tickets-star-wrapper .p-ticket__table tbody tr:nth-child(2) td:nth-child(2) {
        grid-area: 2 / 3 / 3 / 4;
    }

    .p-tickets-star-wrapper .p-ticket__table tbody tr:nth-child(2) td:nth-child(3) {
        grid-area: 3 / 3 / 4 / 4;
    }

    .p-tickets-star-wrapper .p-ticket__table tbody tr:nth-child(2) td:nth-child(4) {
        grid-area: 4 / 3 / 5 / 4;
    }

    .p-tickets-star-wrapper .p-ticket__table tbody tr:nth-child(2) td:nth-child(5) {
        grid-area: 5 / 3 / 6 / 4;
    }



    .p-tickets-star-wrapper .p-ticket__buy-btn {
        width: 260px;
        height: 48px;
        font-size: 18px;
    }

    .p-ticket__table th {
        background-color: #282A2B;
        color: #ffffff;
        font-size: 20px;
    }
}

@media screen and (max-width: 450px) {
    .sec-ticket .common_box .common_box_item {
        padding: 0px;
    }

    .p-tickets-star-wrapper .p-ticket__table {
        grid-template-columns: 23% 38.5% 38.5%;
        grid-template-rows: 40px 55px 55px 55px 55px;
        height: auto;
    }

    .p-tickets-star-wrapper .p-ticket__table td {
        font-size: 12px;
        padding: 2px 2px;
    }

    .p-tickets-star-wrapper .p-ticket__table .row-label {
        font-size: 12px;
        letter-spacing: 0px;
    }

    .p-ticket__table th {
        font-size: 12px;
        padding: 2px 2px;
    }

    .sec-ticket .common_box .common_box_item {
        padding: 1rem 2rem;
    }
}

.p-tickets-star-wrapper .p-tickets__chara--01 img.char-left,
.p-tickets-star-wrapper .p-tickets__chara--01 img.char-right {
    position: absolute;
    z-index: 3;
}

.p-tickets-star-wrapper .p-tickets__chara--01 .char-left {
    width: 100%;
    height: auto;
}

.p-tickets-star-wrapper .p-tickets__chara--01 .char-right {
    right: 0;
    height: auto;
}

@media screen and (max-width: 781px) {

    .p-tickets-star-wrapper .p-tickets__chara--01 img.char-left,
    .p-tickets-star-wrapper .p-tickets__chara--01 img.char-right {
        top: 0;
    }

    .p-tickets-star-wrapper .p-tickets__chara--01 .char-left {
        width: 780px;
        max-width: 100%;
    }

}

.common_box {
    padding: 25px 53px 25px 53px;
}

.common_box .common_box_h3 {
    padding-bottom: 24px;
}

/*# sourceMappingURL=tickets.css.map */

/* ============================================================
   NEW Ticket Layout (Design Update)
   ============================================================ */

.p-ticket__title {
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #000;
    letter-spacing: 7.56px;
}

@media screen and (max-width: 620px) {
    .p-ticket__title {
        font-size: 20px;
        font-weight: 900;
        letter-spacing: 0;
    }
}



.p-ticket__new-layout {
    margin: 0 auto;
    color: #000;
}

.p-ticket__price-list {
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 400;
    line-height: 2.2;
}

.p-ticket__price-item {
    display: flex;
    gap: 30px;
    margin-bottom: 5px;
}

.p-ticket__label {
    text-align: left;
    width: 200px;
}

.p-ticket__price {
    text-align: left;
    width: 100px;
}

.p-ticket__notes-text {
    font-size: 11px;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 25px;
    font-weight: 400;
}

.p-ticket__notes-text p {
    margin-bottom: 4px;
}

.p-ticket__separator {
    text-align: center;
    color: #3A8FFB;
    font-size: 20px;
    margin-bottom: 20px;
}

.p-ticket__info-details {
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 35px;
}

.p-ticket__info-details p {
    margin-bottom: 2px;
}

.p-ticket__button-wrap {
    text-align: center;
    margin-top: 30px;
}

.p-ticket__new-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 252px;
    height: 41px;
    background: #fff;
    border: 2px solid #000;
    border-radius: 999px;
    text-decoration: none;
    color: #000;
    font-weight: 900;
    font-size: 16px;
    transition: 0.3s;
    padding: 0 15px;
}

.p-ticket__new-btn:hover {
    background: #000;
    color: #fff;
}

.p-ticket__btn-arrow {
    font-size: 6px;
    margin-left: 10px;
}

@media screen and (max-width: 781px) {
    .p-ticket__price-list {
        font-size: 15px;
        line-height: 1.5;
    }

    .p-ticket__price-item {
        max-width: 100%;
    }

    .p-ticket__info-details {
        font-size: 14px;
    }
}

/* ============================================================
   Goods Ticket Benefits Styles
   ============================================================ */

.p-ticket__goods-content {
    margin: 0 auto;
    color: #000;
}

.p-ticket__goods-image {
    text-align: center;
    margin-bottom: 40px;
}

.p-ticket__goods-image img {
    max-width: 100%;
    height: auto;
}

.p-ticket__goods-name {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

.p-ticket__goods-notice {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
}

.p-ticket__goods-spec {
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}

.p-ticket__goods-spec .spec-title {
    font-size: 16px;
    font-weight: 400;
    margin-top: 25px;
    margin-bottom: 5px;
}

.p-ticket__goods-spec .spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p-ticket__goods-spec .spec-list li {
    margin-bottom: 5px;
}

@media screen and (max-width: 781px) {
    .p-ticket__goods-name {
        font-size: 16px;
    }

    .p-ticket__goods-spec {
        font-size: 13px;
    }
}

/* ============================================================
   Osaka Venue Block Styles
   ============================================================ */

.p-ticket__osaka-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: #000;
}

.p-ticket__osaka-message {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
}

.p-ticket__title-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('http://exhibition-site.local/wp-content/themes/sonobuoy-child/resources/images/common/icon_link.svg') no-repeat center/contain;
    margin-left: 8px;
    vertical-align: middle;
}

.p-tickets-star-wrapper .star-parallax-layer {
    top: 10rem;
}

@media screen and (max-width: 576px) {
    .p-ticket__new-btn {
        width: 210px;
    }
    .common_box {
        padding: 13px 17px 55px 17px;
    }
}

.p-ticket__table-image {
    max-width: 400px;
    margin: 0 auto;
}


.ticket_item {
    display: flex;
    align-items: center;
}

.ticket_item__image {
    width: 50%;
}

.ticket_item__text {
    width: 50%;
    font-size: 14px;
}

.ticket_table_text {
    max-width: 400px;
    margin: 0 auto;
}

@media screen and (max-width: 781px) {
    .ticket_item {
        flex-direction: column;
    }

    .ticket_item__image {
        width: 100%;
    }

    .ticket_item__text {
        width: 100%;
        font-size: 13px;
    }

    .sp_textwrap {
        white-space: nowrap;
    }
}