@charset "UTF-8";

.mv_image_wrap {
    position: relative;
    max-height: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    aspect-ratio: 2500 / 953;
}

.mv_image_wrap .image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transform: scale(1.10);
    opacity: 1;
    animation: image-switch-animation 12s infinite;
}

.mv_image_wrap .image:nth-of-type(1) {
    animation-delay: 0s;
    z-index: 2;
}

.mv_image_wrap .image:nth-of-type(2) {
    animation-delay: 4s;
    z-index: 1;
}

.mv_image_wrap .image:nth-of-type(3) {
    animation-delay: 8s;
    z-index: 0;
}


@keyframes image-switch-animation {
    0% {
        transform: scale(1.10);
        opacity: 1;
        z-index: 2;
    }

    24.999% {
        transform: scale(1);
        opacity: 1;
        z-index: 2;
    }

    33.332% {
        transform: scale(1);
        opacity: 0;
    }

    91.667% {
        transform: scale(1.10);
        opacity: 0;
        z-index: 0;
    }

    100% {
        opacity: 1;
        z-index: 1;
    }
}

@media screen and (max-width: 1113px) {
    .mv_image_wrap {
        aspect-ratio: 5 / 4;
    }
}

/* nav_link_area */
.nav_link_area {
    display: none;
}

@media screen and (max-width: 1113px) {
    .nav_link_area {
        display: block;
    }

    .nav_link_area .list {
        display: flex;
        flex-wrap: wrap;
    }

    .nav_link_area .list .item {
        width: 19%;
    }

    .nav_link_area .list .item:nth-child(5) {
        width: 24%;
    }

    .nav_link_area .list .item a {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        color: #D1AD59;
        font-size: 1.0rem;
        padding: 48px 4px 16px;
        font-weight: bold;
    }

    .nav_link_area .list .item a::before {
        content: "";
        display: block;
        position: absolute;
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;
        background-size: contain;
        top: 16px;
        left: calc(50% - 12px);
    }

    .nav_link_area .list .item a.icon_calendar:before {
        background-image: url(../images/icon/icon_calendar.svg);
    }

    .nav_link_area .list .item a.icon_access:before {
        background-image: url(../images/icon/icon_access.svg);
    }

    .nav_link_area .list .item a.icon_seatingchart:before {
        background-image: url(../images/icon/icon_seatingchart.svg);
    }

    .nav_link_area .list .item a.icon_ticket:before {
        background-image: url(../images/icon/icon_ticket.svg);
    }

    .nav_link_area .list .item a.icon_riyou:before {
        background-image: url(../images/icon/icon_riyou.svg);
    }
}

/* news_area */
.news_area {
    padding: 80px 10px;
    background-color: #FFFFFF;
    color: #000000;
}

.news_area .heading {
    font-size: calc(32px * var(--scale));
    font-weight: 500;
    margin-bottom: calc(32px * var(--scale));
}

.news_area .button_area {
    margin-top: 40px;
    color: #000000;
}

.news_area a .date {
    color: #000000;
}

@media screen and (max-width: 1113px) {
    .news_area {
        padding: 40px 0;
    }

    .news_area .heading {
        font-size: 24px;
        margin-bottom: 32px;
        text-align: left;
    }

    .news_area .button_area {
        margin-top: 32px;
    }
}

/* performance_area */
.performance_area {
    padding: 120px 0;
}

.performance_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 64px;
}

.performance_list .item {
    width: calc((100% - 80px) / 2);
    border-bottom: 1px solid #69572C;
    padding: 40px 0;
}

.performance_list .item:first-of-type,
.performance_list .item:nth-of-type(2) {
    border-top: 1px solid #69572C;
}

.performance_list a {
    display: flex;
}

.performance_list a .item_image {
    width: 200px;
    min-width: 200px;
    margin-right: 32px;
}

.performance_list a .item_image img {
    width: 100%;
    height: auto;
}

.performance_list a .subtitle {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
}

.performance_list a .title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.performance_list a .icon_date_list_gray {
    font-size: 16px;
    color: #fff;
    position: relative;
    padding-left: 30px;
}

.performance_list a .icon_date_list_gray:before {
    content: '';
    background-image: url(../common/images/icon/icon_calender.svg);
    background-size: contain;
    position: absolute;
    top: -1px;
    left: 3px;
    width: 24px;
    height: 24px;
}

.performance_list a:hover {
    opacity: 0.6;
}

@media screen and (max-width: 1113px) {
    .performance_area {
        padding: 64px 0;
    }

    .performance_list {
        margin-bottom: 40px;
    }

    .performance_list .item {
        width: 100%;
        padding: 20px 0;
    }

    .performance_list .item:nth-of-type(2) {
        border-top: none;
    }

    .performance_list a .item_image {
        width: 98px;
        min-width: 98px;
        margin-right: 17px;
    }

    .performance_list a .subtitle {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .performance_list a .title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .performance_list a .icon_date_list_gray {
        font-size: 14px;
        padding-left: 20px;
    }

    .performance_list a .icon_date_list_gray:before {
        top: 2px;
        left: 3px;
        width: 16px;
        height: 16px;
    }
}

/* organizer_area */
.organizer_area_bg {
    background-image: url(../images/img_index_organizer_bg_pc.png);
    background-position: center;
    padding: 120px 0 130px;
}

.organizer_box {
    display: flex;
    justify-content: space-between;
    gap: 0 60px;
}

.organizer_box .textbox {
    color: #FFFFFF;
    font-size: 2.0rem;
    line-height: 34px;
    width: calc(100% - 330px);
}

.organizer_box .btnbox {
    width: 330px;
}

@media screen and (max-width: 1113px) {
    .organizer_area_bg {
        background-image: url(../images/img_index_organizer_bg_sp.png);
        padding: 80px 0 64px;
    }

    .organizer_box {
        flex-wrap: wrap;
    }

    .organizer_box .textbox {
        font-size: 14px;
        width: 100%;
        margin-bottom: 32px;
        line-height: 23px;
    }

    .organizer_box .btnbox {
        width: 100%;
    }
}

/* facility_area */
.facility_area {
    padding: 80px 0 120px;
}

.facility_area .heading {
    text-align: center;
    margin: 0 auto 64px;
    font-size: 24px;
    font-weight: normal;
    color: #D1AD59;
}

.facility_bnr_area {
    display: flex;
}

.facility_bnr_area a {
    margin-right: 24px;
}

.facility_bnr_area a:hover {
    opacity: 0.6;
}

.facility_bnr_area a:last-of-type {
    margin-right: 0;
}

@media screen and (max-width: 1113px) {
    .facility_area {
        padding: 40px 0 24px;
    }

    .facility_area .heading {
        display: none;
    }

    .facility_bnr_area {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .facility_bnr_area a {
        margin-right: 0;
        width: calc((100% - 16px) / 2);
        margin-bottom: 16px;
    }
}

/* map_area */
.map_area .access_area {
    padding: calc(120px * var(--scale)) 0;
}

.map_area_address {
    font-size: 20px;
    color: #fff;
    margin-bottom: 60px;
}

.map_area_link {
    display: flex;
    flex-wrap: wrap;
}

.map_area_link a {
    width: 100%;
    font-size: 20px;
    color: #FFF;
    padding: 34px 55px 34px 70px;
    border-top: 1px solid #68572E;
    position: relative;
}

.map_area_link a:hover {
    text-decoration: underline;
}

.map_area_link a::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    top: 35px;
    left: 20px;
}

.map_area_link a::after {
    content: "";
    display: block;
    width: 20px;
    height: 4.8px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-80%);
    background: url(../common/images/icon/icon_button_arrow_right_gold.svg) center center / 100% auto no-repeat, transparent;
}

.map_area_link a.map_area_link01::before {
    background-image: url(../images/icon/icon_access_01.svg);
}

.map_area_link a.map_area_link02::before {
    background-image: url(../images/icon/icon_access_02.svg);
}

.map_area_link a.map_area_link03::before {
    background-image: url(../images/icon/icon_access_03.svg);
}

.map_area_link a.map_area_link04::before {
    background-image: url(../images/icon/icon_access_04.svg);
}

.map_area_link a:last-of-type {
    border-bottom: 1px solid #68572E;
}

.map_area_gmap iframe {
    aspect-ratio: 1 / 1.1;
    max-width: 630px;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1113px) {
    .map_area .heading {
        margin-top: 64px;
    }

    .map_area .access_area {
        padding: 0 0 calc(64px * var(--scale));
        justify-content: space-between;
        flex-direction: column-reverse;
    }

    .map_area_address {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .map_area_link a {
        font-size: 16px;
        padding: 20px 30px 20px 55px;
    }

    .map_area_link a::before {
        width: 28px;
        height: 28px;
        top: 15px;
        left: 5px;
    }

    .map_area_link a::after {
        right: 0;
    }

    .map_area_gmap iframe {
        aspect-ratio: 1.1 / 1;
    }
}

/* bnr_area */
.bnr_area {
    background-color: #333333;
    padding: 80px 0;
}

.bnr_area a:hover {
    opacity: 0.6;
}

@media screen and (max-width: 1113px) {
    .bnr_area {
        padding: 40px 0;
    }
}

@media screen and (max-width: 1113px) {
    .button_more02 .text_button_more02 {
        padding: 0 60px 0 0;
    }

    .button_more02 .text_button_more02::before {
        right: 20px;
    }
}