@charset "utf-8";

.show-mobile-inline,
.show-mobile {
    display: none;
}

.hide-mobile {
    display: block;
}

.hide-mobile-inline {
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .show-mobile {
        display: block;
    }

    .show-mobile-inline {
        display: inline-block;
    }

    .hide-mobile {
        display: none;
    }

    .hide-mobile-inline {
        display: none;
    }
}

#tb-wrapper {
    width: 100vw;
    max-width: inherit;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 7rem 0 6rem 0;
    height: 1100px;
}

#tb-wrapper .inner {
    display: flex;
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 899px) {
    #tb-wrapper .inner {
        flex-direction: column;
        min-width: auto;
    }

    #tb-wrapper {
        height: auto;
    }
}

/* Heading */
.tb-wrapper-heading {
    margin-bottom: 3rem;
}

.tb-wrapper-heading h2 {
    margin: 0 auto;
    text-align: center;
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tb-wrapper-heading h2 .en {
    font-size: 3rem;
}

.tb-wrapper-heading h2 .jp {
    font-size: 1.4rem;
}

/* Event Calender */
#tb-calendar {
    width: 50%;
    margin-right: 3%;
    background: rgba(255, 255, 255, .8);
    padding: 5% 3% 3% 3%;
    border-radius: 6px;
}

.tb-calendar-inner {
    height: 100%;
}

.td-loading {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tb-calendar-table {
    min-width: initial;
    width: 100%;
}

.tb-calendar-table caption {
    line-height: 1;
    margin-bottom: 1rem;
}

.tb-calendar-table__date {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tb-calendar-table__attention {
    font-size: 1rem;
    line-height: 1.3;
}

.tb-calendar-table thead {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.tb-calendar-table thead .sat {
    color: #0d5fa2;
    border-color: #000;
}

.tb-calendar-table thead .sun {
    color: #dc0000;
    border-color: #000;
}

.tb-calendar-table th,
.tb-calendar-table td {
    text-align: center !important;
    border: none;
    padding: 1rem .3rem;
}

.tb-calendar-table td > span {
    display: block;
    cursor: pointer;
    border-radius: 4px;
    background-color: #000;
    color: #fff;
}

.tb-calendar-table td > span:hover {
    opacity: .75;
}

#tb-calendar_nav {
    display: flex;
    justify-content: space-between;
    margin-top: .5rem;
    padding-top: .5rem;
    border-top: 1px solid #000;
}

#tb-calendar_nav > div:hover {
    cursor: pointer;
    opacity: .75;
}

@media only screen and (max-width: 899px) {
    #tb-calendar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
        padding: 2rem 1rem;
    }
}

/* Event List */
#tb-events {
    width: 47%;
    background: rgba(255, 255, 255, .8);
    padding: 4%;
    border-radius: 6px;
}

#tb-events h2 {
    font-size: inherit;
    font-weight: bold;
    line-height: 1;
    padding: 1rem 0;
    margin-bottom: 1.6rem;
    text-align: center;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.tb-events-inner {
    height: 100%;
}

#tb-events-list {
    overflow-y: auto;
    height: 460px;
}

#tb-events-list p {
    padding: 2rem 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tb-events-list p.td-event-list__text {
    padding: 0;
    height: auto;
    display: block;
    font-size: 14px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0;
}

#tb-events-list ul {
    margin: 0;
    padding: 0;
}

#tb-events-list li {
    list-style: none;
    margin-left: 0;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid #000;
}

#tb-events-list li a {
    /*display: block;*/
    display: flex;
    /*flex-direction: column-reverse;*/
    padding: 0 0 1.6rem 0;
    text-decoration: none;
    transition: opacity .4s linear;
}

#tb-events-list li a:hover {
    opacity: .75;
}

#tb-events-list li a figure {
    height: auto;
    margin: 0 14px 0 0;
    width: 100px;
}

#tb-events-list li a figure img {
    display: block;
    width: 100%;
    height: auto;
}

.td-event-list__content {
    width: calc(100% - 100px - 14px);
}

.td-event-list__content.fullWidth {
    width: 100%;
}

.td-event-list__content .td-event-list__tags {
    display: flex;
    flex-wrap: wrap;
}

.td-event-list__content .td-event-list__tags span {
    background: #acacac;
    color: #fff;
    font-weight: bold;
    padding: .3rem .5rem .34rem .5rem;
    margin-right: .5rem;
    border-radius: .3rem;
    font-size: .75rem;
    line-height: 1;
    margin-bottom: .5rem;
}

.td-event-list__content h3 {
    font-size: inherit;
    line-height: 1.5;
}

@media only screen and (max-width: 899px) {
    #tb-events {
        width: 100%;
        padding: 2rem 4%;
    }

    #tb-events-list {
        height: initial;
    }
}

/* Seat Detail */
.tb-seats {
    margin: 6rem 0;
}

.tb-event-date {
    font-weight: bold;
    margin-bottom: 1rem;
}

.tb-table-seat-list {
    border-top: 1px solid;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    border-collapse: collapse;
}

.tb-table-seat-list tr,
.tb-table-seat-list th {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid;
}

.tb-table-seat-list th {
    font-weight: normal;
}

.tb-table-seat-list td {
    text-align: center;
    border: none;
    padding: 1.2rem 0;
}

.tb-table-seat-list a {
    display: block;
    cursor: pointer;
    border-radius: 4px;
    background-color: #000;
    color: #fff;
    padding: .8rem 0;
    text-decoration: none;
}

.tb-table-seat-list a:hover {
    opacity: .75;
}

.tb-seat-attention {
    font-size: 1rem;
    margin-top: 1rem;
}

.tb-closed-attention {
}

/* Form Sample（入力画面） */
.p-tb-stepbar {
    display: flex;
    list-style: none;
    margin-bottom: 40px;
}

.p-tb-stepbar .item {
    box-sizing: border-box;
    position: relative;
    width: calc(100% / 2);
    height: 60px;
    padding: 1px;
    background: #000;
}

.p-tb-stepbar .item:not(:last-child) {
    margin-right: 10px;
}

.p-tb-stepbar .item:nth-child(1) {
    z-index: 2;
}

.p-tb-stepbar .item:nth-child(2) {
    z-index: 1;
}

.p-tb-stepbar .item:not(:first-child)::before {
    position: absolute;
    content: "";
    top: 0;
    left: 1px;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-right: 0;
    border-bottom: 30px solid transparent;
    border-left: 20px solid #000;
}

.p-tb-stepbar .item:not(:first-child)::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-right: 0;
    border-bottom: 30px solid transparent;
    border-left: 20px solid #ffffff;
}

.p-tb-stepbar .item .item-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: #ffffff;
}

.p-tb-stepbar .item.current .item-inner {
    background: #000;
    color: #ffffff;
}

.p-tb-stepbar .item:not(:last-child) .item-inner::before {
    position: absolute;
    content: "";
    top: 0;
    left: 100%;
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-right: 0;
    border-bottom: 30px solid transparent;
    border-left: 20px solid #000;
}

.p-tb-stepbar .item:not(:last-child) .item-inner::after {
    position: absolute;
    content: "";
    top: 0;
    left: calc(100% - 1px);
    width: 0;
    height: 0;
    border-top: 30px solid transparent;
    border-right: 0;
    border-bottom: 30px solid transparent;
    border-left: 20px solid #ffffff;
}

.p-tb-stepbar .item.current .item-inner::after {
    display: none;
}

.p-tb-form {
    padding: 5%;
    background-color: #f1f1f1;
}

.p-tb-form-wrap {
    padding: 3% 5% 5% 5%;
    background-color: #fff;
}

.p-tb-form-wrap .item {
    display: flex;
}

.p-tb-form-wrap .item.form-buttons {
    text-align: center;
    justify-content: center;
}

.p-tb-form-wrap .item.form-buttons input[type="reset"],
.p-tb-form-wrap .item.form-buttons input[type="button"],
.p-tb-form-wrap .item.form-buttons input[type="submit"],
.p-tb-form-wrap .item.form-buttons button {
    cursor: pointer;
    border: none;
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    margin-left: 12px;
    margin-right: 12px;
}

.p-tb-form-wrap .item:not(:last-of-type) {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px dotted #000;
}

.p-tb-form-wrap .item .itemーheading {
    width: 30%;
    margin-right: 20px;
    display: flex;
    align-items: baseline;
    justify-content: end;
}

.p-tb-form-wrap .item .itemーheading .name {
    padding: 3px 0;
    margin-right: 18px;
}

.p-tb-form-wrap .item .itemーheading .required {
    width: 50px;
    text-align: center;
}

.p-tb-form-wrap .item .itemーinput {
    flex: 1;
}

.p-tb-form-wrap .item .itemーinput.itemー2column {
    display: flex;
}

.p-tb-form-wrap .item .itemーinput.itemー2column > .wpcf7-form-control-wrap:first-of-type {
    margin-right: 12px;
}

.p-tb-form-wrap .item .itemーheading .required span {
    background-color: crimson;
    color: #fff;
    display: flex;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: .8rem;
}

.p-tb-form-wrap textarea,
.p-tb-form-wrap input[type="text"],
.p-tb-form-wrap input[type="email"],
.p-tb-form-wrap input[type="url"],
.p-tb-form-wrap input[type="tel"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #000;
    font-size: 1rem;
}

.p-tb-form-wrap textarea {
    height: 200px;
}

.p-tb-form-wrap select {
    padding: 12px;
    border: 1px solid #000;
    font-size: 1rem;
}

.p-tb-form-wrap input[type="checkbox"]:not(:first-of-type),
.p-tb-form-wrap input[type="radio"]:not(:first-of-type) {
    margin-left: 20px;
}

/* Form Sample（完了画面） */
.p-tb-form-complete {
    padding: 3% 5% 5% 5%;
    background-color: #fff;
    text-align: center;
}

.p-tb-form-complete__button {
    margin-top: 50px;
}

.p-tb-form-complete__button a {
    cursor: pointer;
    border: none;
    background-color: #000;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
}

.wpcf7-form-control .wpcf7-list-item {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    /* Form Sample（入力画面） */
    .p-tb-stepbar .item .item-inner {
        font-size: 12px;
    }

    .p-tb-form-wrap {
        padding: 5%;
    }

    .p-tb-form-wrap .item {
        flex-direction: column;
    }

    .p-tb-form-wrap .item .itemーheading {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
        justify-content: inherit;
    }

    .p-tb-form-wrap .item.form-buttons input[type="reset"],
    .p-tb-form-wrap .item.form-buttons input[type="button"],
    .p-tb-form-wrap .item.form-buttons input[type="submit"],
    .p-tb-form-wrap .item.form-buttons button {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 12px;
    }

    .wpcf7-form-control.wpcf7-radio,
    .wpcf7-form-control.wpcf7-checkbox {
        display: flex;
        flex-direction: column;
    }

    .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item,
    .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
        margin-left: 0;
    }

    .p-tb-form-wrap .item.form-buttons {
        flex-direction: column;
    }

    /* Form Sample（完了画面） */
    .p-tb-form-complete__heading {
        font-size: 20px;
        margin-bottom: 20px;
    }
}

.tb-calendar-wrap {
    position: relative;
}

.tb-calendar-tab {
    display: flex;
    /*flex-wrap: wrap;*/
    position: relative;
    z-index: 10;
    overflow-x: auto;
    overflow-y: hidden;
}

.tb-calendar-tab .tb-event-date {
    display: block;
    padding: 0 1%;
    border: 1px solid #e0dede;
    background: #e0dede;
    border-bottom: 0;
    margin-right: 1%;
    margin-bottom: 0;
    border-bottom: 1px solid #000000;
    white-space: nowrap;
    line-height: 45px;
    position: relative;
}

.tb-calendar-tab .tb-event-date:last-child {
    margin-right: 0;
}

.tb-calendar-tab .tb-event-date.tb-active {
    display: block;
    border-color: #000000;
    border-bottom: 1px solid #ffffff;
    background: #ffffff;
}

.tb-calendar-tab .tb-event-date-icon {
    display: inline-block;
    /*background: #e0dede;*/
    /*background: #ffffff;*/
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: relative;
    margin-right: 5px;
    top: 2px;
    line-height: 1;
}

.tb-calendar-tab .tb-event-date-icon::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
}

.tb-calendar-tab .tb-active .tb-event-date-icon::after {
    content: url("circle-check.svg");
}

.tb-calendar-seats {
    top: -1px;
    position: relative;
    z-index: 5;
}

.tb-calendar-seats .tb-seats {
    display: none;
    flex-wrap: wrap;
    margin: 0 0 1em;
    border: 1px solid #000000;
    padding: 2%;
    z-index: 5;

}

.tb-calendar-seats .tb-seats.tb-active {
    display: block;
}

.tb-table-seat-overview {
    margin-bottom: 1em;
}

.tb-table-seat-overview span {
    color: #CC3300;
    font-weight: bold;
    padding: 0;
}

/**
   Direct
 */
#tb-events.direct .tb-events-direct-inner {
    border: 1px solid #000;
}

#tb-events.direct h2 {
    border-top: 0;
    padding: 1.5rem 0;
    margin-bottom: 0;
}

#tb-events.direct #tb-events-list {
    max-height: calc(414px - 63px);
}

#tb-events.direct .td-event-list__content-wrap {
    display: flex;
    padding: 1rem 0.5rem;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

#tb-events.direct .td-event-list__content-wrap:first-child {
    border-top: 0;
}

#tb-events.direct .td-event-list__content-wrap figure {
    height: auto;
    margin: 0 14px 0 0;
    width: 100px;
}

#tb-events.direct .td-event-list__content-wrap figure img {
    display: block;
}

#tb-events.direct .td-event-list__content h3 {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    margin-bottom: 0;
}

#tb-events.direct #tb-events-list p.td-event-list__text {
    display: none;
}

#tb-events.direct #tb-events-list li a {
    cursor: default;
}

#tb-events.direct #tb-events-list li a:hover,
#tb-events.direct #tb-events-list li a img:hover {
    opacity: 1;
}

#tb-events.direct .tb-calendar-seats .tb-seats {
    border: 0;
    margin-bottom: 0;
    font-size: 12px;
    padding-bottom: 0;
}

#tb-events.direct .tb-calendar-seats .tb-seats p {
    padding: 0.5rem 0;
    display: block;
    margin-bottom: 0;
}

#tb-events.direct .tb-table-seat-list td {
    padding: 0.6rem 0;
    vertical-align: middle;
}

#tb-events.direct .tb-table-seat-list tr,
#tb-events.direct .tb-table-seat-list th {
    border-bottom: 1px solid;
}

#tb-events.direct .tb-table-seat-list tr:last-child {
    border-bottom: 0;
}

#tb-events.direct .tb-table-seat-list th:nth-of-type(1),
#tb-events.direct .tb-table-seat-list td:nth-of-type(1) {
    width: calc(100% - 74px - 146px);
}

#tb-events.direct .tb-table-seat-list th:nth-of-type(2),
#tb-events.direct .tb-table-seat-list td:nth-of-type(2) {
    width: 74px;
    text-align: center;
}

#tb-events.direct .tb-table-seat-list th:nth-of-type(3),
#tb-events.direct .tb-table-seat-list td:nth-of-type(3) {
    width: 146px;
}