.up-fv {
    padding: 80px 0 15px;
    background-color: #fff;
}
.up-title {
    margin-bottom: 60px;
}
.up-title-en {
    font-size: 4rem;
    font-weight: 700;
}
.up-title-jp {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 10px;
    color: #f15a24;
}
.breadcrumb {
    text-align: right;
    font-size: 1.3rem;
    font-weight: 700;
}
.breadcrumb .bc-link {
    text-decoration: underline;
    color: #000;
}

@media screen and (max-width:1000px) {
    .up-fv {
        padding: 100px 0 15px;
    }
    .up-title {
        margin-bottom: 40px;
    }
    .up-title-en {
        font-size: 3.2rem;
    }
    .up-title-jp {
        font-size: 1.4rem;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title .title-en {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-title .title-jp {
    font-size: 1.5rem;
    font-weight: 700;
}

@media screen and (max-width:1000px) {
    .section-title {
        margin-bottom: 30px;
    }
    .section-title .title-en {
        font-size: 3rem;
    }
    .section-title .title-jp {
        font-size: 1.4rem;
    }
}

.about-info {
    padding: 100px 0 80px;
}
.about-info-content {
    display: flex;
    justify-content: space-between;
}
.about-info-content .text-area {
    width: calc(60% - 50px);
}
.about-info-content .text-area .info-title {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 700;
    color: #f15a24;
    margin-bottom: 15px;
}
.about-info-content .text-area .info-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.about-info-content .about-image {
    width: 40%;
}

@media screen and (max-width:1000px) {
    .about-info {
        padding: 60px 0 40px;
    }
    .about-info-content {
        flex-direction: column-reverse;
    }
    .about-info-content .about-image {
        width: 100%;
    }
    .about-info-content .text-area {
        width: 100%;
    }
}

.about-links {
    background-color: #d8d8d8;
    padding: 100px 0;
}
.link-wrap {
    display: flex;
    flex-wrap: wrap;
}
.link-wrap .about-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33.33%;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.link-wrap .about-link .about-link-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: solid 1px #fff;
    overflow: hidden;
    z-index: 0;
}
.link-wrap .about-link .about-link-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s;
}
.link-wrap .about-link:hover .about-link-image img {
    transform: scale(1.1);
    -ms-filter: blur(6px);
    filter: blur(6px);
}
.link-wrap .about-link .link-title {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.link-wrap .about-link .link-text {
    font-size: 1.2rem;
    font-weight: 700;
    position: absolute;
    z-index: 1;
    bottom: 20px;
    text-align: center;
    line-height: 1.5;
}

@media screen and (max-width:1000px) {
    .about-links {
        padding: 0;
    }
    .about-links .inner {
        padding: 0;
    }
    .link-wrap .about-link {
        width: 50%;
    }
    .link-wrap .about-link .link-title {
        font-size: 1.8rem;
    }
    .link-wrap .about-link .link-text {
        font-weight: 400;
        font-size: 1.1rem;
        line-height: 1.3;
        bottom: 10px;
    }
}

.info-table-section {
    background-color: #fff;
    padding: 100px 0;
}
.info-table {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}
.info-table .row {
    display: flex;
}
.info-table .row .th {
    width: 240px;
    border-right: solid 1px #eee;
    padding: 20px 40px 20px 0;
    text-align: right;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}
.info-table .row .th .en {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f15a24;
}
.info-table .row .td {
    padding: 20px 0;
    padding-left: 40px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
}
.info-table .row .td a {
    color: #000;
    text-decoration: underline;
}

@media screen and (max-width:1000px) {
    .info-table-section {
        padding: 60px 0;
    }
    .info-table .row {
        flex-direction: column;
        border-bottom: solid 1px #eee;
        margin-bottom: 20px;
    }
    .info-table .row .th {
        width: 100%;
        border-right: none;
        text-align: left;
        padding: 0px 0 10px 0;
    }
    .info-table .row .th .en {
        margin-left: 15px;
    }
    .info-table .row .td {
        padding: 0 0 30px 0;
        font-size: 1.4rem;
    }
}

.news-list-section {
    padding: 100px 0;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.news-item {
    padding-bottom: 10px;
    border-bottom: solid 1px #d0d0d0;
    margin-bottom: 10px;
}
.news-item .news-link {
    display: flex;
    justify-content: space-between;
    color: #000;
}
.news-item .news-link .news-thumbnail {
    width: 180px;
}
.news-item .news-link .text-area {
    width: calc(100% - 200px);
    padding: 15px 0;
}
.news-item .news-link .text-area .news-date {
    font-size: 1.2rem;
}
.news-item .news-link .text-area .news-title {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-top: 15px;
}

@media screen and (max-width:1000px) {
    .news-list-section {
        padding: 60px 0;
    }
    .news-item .news-link {
        align-items: flex-start;
    }
    .news-item .news-link .text-area {
        padding: 5px 0;
    }
    .news-item .news-link .news-thumbnail {
        width: 120px;
        aspect-ratio: 3 / 2;
    }
    .news-item .news-link .news-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .news-item .news-link .text-area {
        width: calc(100% - 140px);
    }
    .news-item .news-link .text-area .news-title {
        font-size: 1.5rem;
    }
}

.single-contents {
    padding: 60px 0 100px;
}
.single-contents .date {
    font-size: 1.4rem;
}
.single-contents .single-title {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 700;
    margin: 20px 0 30px;
}
.single-contents .single-content {
    padding: 40px 0;
}
.single-contents .single-content h2 {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.6;
    color: #f15a24;
    margin: 30px 0 10px;
}
.single-contents .single-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 20px 0 10px;
}
.single-contents .single-content p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
}
.single-btn-wrap {
    text-align: center;
}
.single-btn-wrap .news-btn {
    width: 240px;
    padding: 14px 0;
    margin-top: 10px;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background-color: #000;
    border-radius: 30px;
    display: inline-block;
}

@media screen and (max-width:1000px) {
    .single-contents {
        padding: 40px 0 60px;
    }
}

.guests-section {
    padding: 100px 0;
}
.guest-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.guest-list .guest-item {
    width: calc((100% - 60px) / 5);
    border: solid 4px #fff;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.guest-list .guest-item .guest-link {
    display: block;
    width: 100%;
    height: 100%;
}
.guest-list .guest-item .guest-link .guest-thumbnail {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}
.guest-list .guest-item .guest-link .guest-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.guest-hover-text {
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .2s;
}
.guest-list .guest-item:hover .guest-hover-text {
    opacity: 1;
    color: #fff;
}
.guest-hover-text .guest-name {
    font-size: 1.6rem;
    font-weight: 700;
}
.guest-hover-text .hover-txt {
    font-size: 1rem;
    text-align: center;
    text-decoration: underline;
    margin-top: 20px;
}

@media screen and (max-width:1000px) {
    .guests-section {
        padding: 60px 0;
    }
    .top-guests {
        padding: 60px 0;
    }
    .guest-list .guest-item {
        width: calc((100% - 15px) / 2);
    }
}

.pop-food {
    padding: 100px 0;
}
.pop-title-wrap {
    border-top: solid 2px #000;
    border-bottom: solid 2px #000;
    text-align: center;
}
.pop-title-wrap .pop-title {
    padding: 10px 0;
    max-width: 1000px;
    color: #fff;
    background-color: #3657e8;
    margin: 0 auto;
    border-left: solid 2px #000;
    border-right: solid 2px #000;
    font-size: 2.4rem;
    font-weight: 700;
}
.pop-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    border-left: solid 2px #000;
    border-right: solid 2px #000;
}
.food .pop-title-wrap .pop-title {
    background-color: #f15a24;
}
.pop-list .pop-item {
    width: 25%;
    aspect-ratio: 1;
    border-right: solid 2px #000;
}
.pop-list .pop-item:nth-child(4n) {
    border-right: none;
}
.pop-list .pop-item .pop-link {
    display: block;
    width: 100%;
    height: 100%;
}
.pop-list .pop-item .pop-link .pop-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.pop-list .pop-item .pop-link .pop-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s;
}
.pop-list .pop-item .pop-link:hover .pop-thumbnail img {
    transform: scale(1.1);
}
.food .pop-list {
    border-bottom: solid 2px #000;
}

@media screen and (max-width:1000px) {
    .pop-food {
        padding: 60px 0;
    }
    .pop-list-wrap {
        width: 100%;
        padding: 0 5%;
    }
    .pop-list-wrap.food {
        margin-top: 20px;
    }
    .pop-list {
        border-bottom: solid 2px #000;
    }
    .pop-list .pop-item {
        width: 50%;
        border-bottom: solid 2px #000;
    }
    .pop-list .pop-item:last-child {
        border-bottom: none;
    }
    .pop-list .pop-item:nth-child(2n) {
        border-right: none;
    }
    .pop-title-wrap .pop-title {
        padding: 8px 0;
        font-size: 2rem;
    }
    .top-pop-food .more-wrap {
        border-top: none;
    }
}

.stage-section {
    padding: 100px 0;
    background-color: #0d0d0d;
    position: relative;
}
.stage-section .inner {
    position: relative;
    z-index: 1;
}
.stage-section .section-title {
    color: #fff;
}
.stage-bg {
    position: absolute;
    width: 360px;
    top: 0;
    right: 0;
    opacity: .1;
    z-index: 0;
}
.stage-content-wrap {
    margin-bottom: 80px;
}
.stage-content-wrap:last-child {
    margin-bottom: 0;
}
.top-stage .section-title {
    color: #fff;
}
.stage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
}
.stage-list .stage-item {
    width: calc((100% - 20px) / 2);
}
.stage-list .stage-item .stage-link {
    display: block;
    width: 100%;
    color: #fff;
}
.stage-list .stage-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: solid 4px #fff;
}
.stage-list .stage-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s;
}
.stage-list .stage-item:hover .stage-thumbnail img {
    transform: scale(1.1);
}
.stage-list .stage-item .text-area {
    margin-top: 15px;
}
.stage-list .stage-item .text-area .stage-name {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.stage-list .stage-item .text-area .stage-description {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
}

@media screen and (max-width:1000px) {
    .stage-section {
        padding: 60px 0;
    }
    .stage-bg {
        display: none;
    }
    .stage-content-wrap {
        margin-bottom: 60px;
    }
    .stage-list .stage-item {
        width: 100%;
    }
    .stage-list .stage-item .text-area .stage-name {
        font-size: 2.2rem;
    }
    .stage-list .stage-item .text-area .stage-description {
        font-size: 1.4rem;
    }
}

.sub-stage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
}
.sub-stage-list .stage-item {
    width: calc((100% - 60px) / 4);
}
.sub-stage-list .stage-item .stage-link {
    display: block;
    width: 100%;
    color: #fff;
}
.sub-stage-list .stage-thumbnail {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border: solid 4px #fff;
}
.sub-stage-list .stage-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s;
}
.sub-stage-list .stage-item:hover .stage-thumbnail img {
    transform: scale(1.1);
}
.sub-stage-list .stage-item .text-area {
    margin-top: 15px;
}
.sub-stage-list .stage-item .text-area .stage-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.sub-stage-list .stage-item .text-area .member {
    font-size: 1.2rem;
    line-height: 1.2;
    color: #8f8f8f;
    margin-bottom: 15px;
}
.sub-stage-list .stage-item .text-area .stage-description {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
}

@media screen and (max-width:1000px) {
    .sub-stage-list {
        gap: 20px 10px;
    }
    .sub-stage-list .stage-item {
        width: calc((100% - 10px) / 2);
    }
    .sub-stage-list .stage-item .text-area .stage-name {
        font-size: 1.8rem;
    }
    .sub-stage-list .stage-item .text-area .member {
        font-size: 1rem;
    }
    .sub-stage-list .stage-item .text-area .stage-description {
        font-size: 1.2rem;
    }
}

.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2001;
}
.modal__bg {
    background: rgba(0, 0, 0, 0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content {
    background: #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    border: solid 4px #fff;
}
.sub-modal .modal__content {
    width: 300px;
}
.close-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 1px #252525;
    background-color: #fff;
    position: absolute;
    top: calc(50% - 270px);
    right: calc(50% - 250px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 600;
    cursor: pointer;
}
.sub-modal .close-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: solid 1px #252525;
    background-color: #fff;
    position: absolute;
    top: calc(50% - 270px);
    right: calc(50% - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 600;
    cursor: pointer;
}
.modal__content .textarea {
    padding: 20px;
}
.modal__content .textarea .stage-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.sub-modal .modal__content .textarea .stage-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.modal__content .textarea .member {
    font-size: 1rem;
    margin-bottom: 10px;
}
.modal__content .textarea .stage-description {
    font-size: 1.4rem;
    line-height: 1.5;
}
.sub-modal .modal__content .textarea .stage-description {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.modal__content .btn-wrap {
    text-align: center;
    margin-bottom: 20px;
}
.modal__content .detail-btn {
    width: 200px;
    padding: 14px 0;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background-color: #3657e8;
    border-radius: 30px;
    display: inline-block;
}

@media screen and (max-width:1000px) {
    .modal__content {
        width: 90vw;
        border: solid 4px #fff;
    }
    .close-btn {
        top: calc(50% - 280px);
        right: calc(50% - 190px);
    }
    .sub-modal .close-btn {
        top: calc(50% - 280px);
        right: calc(50% - 180px);
    }
}

#immersive-room {
    background-color: #fff;
}
.sb {
    padding: 100px 0;
}
.sb-list {
    display: flex;
    flex-wrap: wrap;
}
.sb-list .sb-item {
    width: 25%;
    cursor: pointer;
}
.sb-list .sb-item .sb-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 10px;
}

.modal__content .sb-description {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 20px;
}
.modal__content .entry-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-align: center;
    color: #3657e8;
}

@media screen and (max-width:1000px) {
    .sb {
        padding: 60px 0;
    }
    .sb-list {
        gap: 30px 0;
    }
    .sb-list .sb-item {
        width: 50%;
    }
}

.contact-form {
    padding: 100px 0;
}
.form-wrap {
    width: 650px;
    margin: 0 auto;
}
.form-wrap .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}
.form-wrap .row .th {
    font-size: 1.5rem;
    font-weight: 700;
    width: 150px;
}
.form-wrap .row .th .en {
    font-size: 1.2rem;
    font-weight: 400;
    color: #727272;
}
.form-wrap .row .th .required {
    color: #c21521;
}
.form-wrap .row .td {
    width: calc(100% - 170px);
}
.form-wrap .row .td input,
.form-wrap .row .td select {
    background-color: #fff;
    width: 100%;
    padding: 17px 5px;
    border: none;
    border-radius: 4px;
}
.form-wrap .row .td textarea {
    background-color: #fff;
    width: 100%;
    padding: 17px 5px;
    border: none;
    border-radius: 4px;
}
.form-wrap .submit-wrap {
    margin-top: 40px;
    text-align: center;
}
.form-wrap .submit-wrap input[type="submit"] {
    background-color: #3657e8;
    width: 250px;
    margin: 0 auto;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 12px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer;
}
.form-wrap .submit-wrap .wpcf7-spinner {
    display: block;
    margin: 10px auto 0;
}

@media screen and (max-width:640px) {
    .contact-form {
        padding: 60px 0;
    }
    .form-wrap {
        width: 100%;
    }
    .form-wrap .row {
        flex-wrap: wrap;
    }
    .form-wrap .row .th {
        width: 100%;
        margin-bottom: 10px;
    }
    .form-wrap .row .td {
        width: 100%;
    }
}

.ticket-selection {
    padding: 100px 0;
}
.tickets-wrap {
    display: flex;
    gap: 20px;
}
.ticket-item {
    width: calc(50% - 10px);
    background-color: #fff;
    border: solid 2px #000;
    padding: 30px;
}
.ticket-item .upper {
    padding-bottom: 20px;
    border-bottom: solid 1px #d3d3d3;
}
.ticket-image {
    text-align: center;
}
.ticket-name-jp {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-top: 15px;
}
.ticket-name-en {
    font-size: 1.4rem;
    text-align: center;
    color: #b1b1b1;
    margin-top: 5px;
}
.ticket-item .lower {
    padding: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ticket-item .lower .row {
    display: flex;
    align-items: center;
    gap: 20px;
}
.ticket-item .lower .row .th {
    font-size: 2rem;
    font-weight: 700;
}
.ticket-item .lower .row .th .min {
    font-size: 1.6rem;
}
.ticket-item .lower .row .td {
    font-size: 1.6rem;
    font-weight: 700;
}
.ticket-item .lower .row .td .en {
    font-size: 3rem;
    font-weight: 700;
    color: #f15a24;
    margin-right: 5px;
}
.ticket-item .lower .row .buy {
    font-size: 1.4rem;
    font-weight: 700;
    background-color: #f15a24;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    margin-left: auto;
}

.attention {
    margin-top: 40px;
    border: solid 2px #000;
    padding: 40px;
    background-color: #fff;
}
.attention .section-title {
    padding-bottom: 30px;
    border-bottom: solid 1px #8f8f8f;
}
.inner-title {
    text-align: center;
    margin-bottom: 30px;
}
.inner-title .title-en {
    color: #f15a24;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.inner-title .title-jp {
    font-size: 1.8rem;
    font-weight: 700;
}
.attention .inner-title:nth-child(n+1) {
    margin-top: 50px;
}
.attention .inner-list {
    list-style: disc;
    font-size: 1.5rem;
    line-height: 1.3;
    padding-left: 1.5em;
}
.attention .inner-list .list-item {
    margin-bottom: 10px;
}

@media screen and (max-width:1000px) {
    .ticket-selection {
        padding: 60px 0;
    }
    .tickets-wrap {
        flex-direction: column;
    }
    .ticket-item {
        width: 100%;
        padding: 20px;
    }
    .ticket-item .lower {
        gap: 30px;
    }
    .ticket-item .lower .row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px 20px;
    }
    .ticket-item .lower .row .buy {
        margin: 0 auto;
    }

    .attention {
        padding: 20px;
    }
    .attention .section-title {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .attention .inner-title:nth-child(n+1) {
        margin-top: 30px;
    }
}

.access-section {
    padding: 100px 0;
}
.access-content {
    display: flex;
    gap: 50px;
}
.access-content .gmap {
    width: 50%;
    aspect-ratio: 3 / 2;
}
.access-content .gmap iframe {
    width: 100%;
    height: 100%;
}
.access-content .text-area {
    width: calc(50% - 80px);
}
.access-content .text-area .access-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #f15a24;
    margin-bottom: 10px;
}
.access-content .text-area .access-text {
    font-size: 1.5rem;
    line-height: 1.5;
}
.access-content .text-area .access-text-min {
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 10px 0 30px;
}

@media screen and (max-width:1000px) {
    .access-section {
        padding: 60px 0;
    }
    .access-content {
        display: flex;
        flex-direction: column;
        font-size: 1.6rem;
        gap: 20px;
    }
    .access-content .gmap {
        width: 100%;
    }
    .access-content .text-area {
        width: 100%;
    }
}

#floormap-section {
    padding: 100px 0;
}
#timetable-section {
    background-color: #0d0d0d;
    padding: 100px 0;
}
#timetable-section .section-title {
    color: #fff;
}
.time-table-tab {
    width: 100%;
}
.time-table-tab .tab_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.tab_buttons .tab_button {
    padding: 10px 40px;
    background-color: #ccc;
    color: #000;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
}
.tab_buttons .tab_button.active {
    background-color: #fff;
}
.tab_buttons .tab_button .date {
    color: #000;
    font-size: 2rem;
    font-weight: 700;
}
.time-table-contents .content {
    display: none;
    margin-top: 30px;
    text-align: center;
}
.time-table-contents .content.show {
    display: block;
}
.day1 {
    display: none;
}
.time-table {
    background-color: #fff;
    padding: 40px;
    display: flex;
}
.column-time {
    padding: 25px 10px 0;
}
.column-time .time {
    display: block;
    height: 90px;
    color: #989999;
    font-weight: 700;
}
.column-in {
    position: relative;
    display: flex;
    width: 100%;
}
.open-row {
    width: 100%;
    text-align: center;
    background-color: #3657e8;
    color: #fff;
    position: absolute;
    top: 25px;
}
.column-in .column {
    width: 25%;
    border: solid 1px #e9e8e7;
}
.column .column-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.column .hour {
    width: 100%;
}
.column .hour .row {
    display: block;
    width: 100%;
    border-bottom: solid 1px #e8e6e6;
    height: 15px;
}
.column .hour .row:nth-of-type(1),
.column .hour .row:nth-of-type(2),
.column .hour .row:nth-of-type(3) {
    background-color: #efefef;
}

.up-contents {
    padding: 100px 0;
}
.up-contents .pp-inner {
    width: 100%;
    padding: 40px;
    background-color: #fff;
}
.pp-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}
.pp-inner  h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}
.pp-inner  p {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 2;
}
.pp-inner ul {
    padding-left: 2em;
}
.pp-inner ul li {
    font-size: 1.4rem;
    line-height: 2;
}
.pp-inner > ul {
    margin-bottom: 40px;
}
.pp-inner > ul > ul {
    margin: 20px 0;
}
.pp-inner > ul > ul > ul {
    margin: 20px 0;
}
.pp-inner p.right {
    text-align: right;
}
.pp-inner a {
    color: #3657e8;
}

@media screen and (max-width:1000px) {
    #floormap-section {
        padding: 60px 0;
    }
    #timetable-section {
        padding: 60px 0;
    }
    .up-contents {
        padding: 60px 0;
    }
    .up-contents .pp-inner {
        padding: 20px;
    }
    .tab_buttons .tab_button {
        padding: 10px 20px;
        width: calc(50% - 10px);
    }
}