@charset "utf-8";

/*********************************************************************
*
*  For ALL
*
*********************************************************************/

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #565656;
}

/* ---------------------------------------------------- */
/* html body */
/* ---------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_1);
    line-height: 1.5;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    background-color: var(--co_2);
    overflow: hidden;
}

@media (min-width: 1000px) {
    body {
        min-width: 1180px;
        font-size: 1.4rem;
    }
}

@media (max-width: 999px) {
    body {
        min-width: 320px;
        font-size: 1.4rem;
    }
}

/* ---------------------------------------------------- */
/* img */
/* ---------------------------------------------------- */
img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: var(--co_1);
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}

.body_wrap::before {
    content: "";
    position: fixed;
    right: 0;
    top: 0;
    display: block;
    width: 100vw;
    height: 100vh;
    background-image: url(../img/bg/pt_1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -3;
}

/* ---------------------------------------------------- */
/* contents_wrap */
/* ---------------------------------------------------- */
.contents_wrap {
    padding-top: 0;
}

/* ---------------------------------------------------- */
/* header_1 */
/* ---------------------------------------------------- */
.header_1 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 1180px;
    z-index: 100;
    transition: 0.3s ease-in-out;
}

.header_1 .header_inner {
    position: relative;
    height: 80px;
}

.header_1 .btn_toggle_megamenu {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 40px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    z-index: 110;
}
.header_1 .btn_toggle_megamenu::after {
    content: "MENU";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    font-family: "Poppins", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
}

.header_1 .btn_toggle_megamenu.is_show::after {
    content: "CLOSE";
}
.header_1 .btn_toggle_megamenu div {
    position: relative;
    width: 30px;
    height: 30px;
}

.header_1 .btn_toggle_megamenu div > span span,
.header_1 .btn_toggle_megamenu div > span:before,
.header_1 .btn_toggle_megamenu div > span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--co_1);
    transform-origin: center center;
    transition: 0.3s ease-in-out;
}

.header_1 .btn_toggle_megamenu div > span span {
    transform: translateY(-1px);
}

.header_1 .btn_toggle_megamenu div > span:before {
    transform: translateY(-9px);
}

.header_1 .btn_toggle_megamenu div > span:after {
    transform: translateY(7px);
}

.header_1 .btn_toggle_megamenu.is_show div > span span,
.header_1 .btn_toggle_megamenu.is_show div > span:before,
.header_1 .btn_toggle_megamenu.is_show div > span:after {
    width: 100% !important;
}

.header_1 .btn_toggle_megamenu.is_show div > span span {
    opacity: 0;
}

.header_1 .btn_toggle_megamenu.is_show div > span:before {
    transform: translateY(-50%) rotate(-45deg);
}

.header_1 .btn_toggle_megamenu.is_show div > span:after {
    bottom: 0;
    transform: translateY(-50%) rotate(45deg);
}

.header_1 .toggle_megamenu_wrap {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--co_2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
}

.header_1 .toggle_megamenu_wrap .toggle_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 80px 0;
    height: 100%;
}

.header_1 .nav_1 {
    width: 100%;
}

.header_1 .nav_1 > ul {
    border-top: 1px solid var(--co_3);
}

.header_1 .nav_1 > ul > li {
    border-bottom: 1px solid var(--co_3);
}

.header_1 .nav_1 > ul > li > a {
    display: block;
    padding: 20px 0;
    font-size: 2.5rem;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}

.header_1 .nav_2 {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.header_1 .nav_3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

.header_1 .nav_2 a,
.header_1 .nav_3 a {
    display: block;
    width: 60px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
}

.header_1 .nav_2 .tw a,
.header_1 .nav_3 .tw a {
    background-image: url(../img/ico/sns_tw_1.svg);
}

@media (min-width: 1000px) {
    .header_1 .btn_toggle_megamenu:hover {
        opacity: 0.6;
    }
}

@media (max-width: 999px) {
    .header_1 {
        min-width: auto;
    }

    .header_1 .header_inner {
        position: relative;
        height: 60px;
    }
    .header_1 .btn_toggle_megamenu {
        right: 15px;
    }
    .header_1 .toggle_megamenu_wrap .toggle_inner {
        padding: 60px 0;
        display: block;
    }

    .header_1 .nav_1 > ul > li > a {
        padding: 15px 0;
        font-size: 2rem;
    }

    .header_1 .nav_2 {
        display: none;
    }
}

/* ---------------------------------------------------- */
/* footer_1 */
/* ---------------------------------------------------- */
.footer_1 {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 1180px;
}
.footer_1 .sponsor_1 {
    font-size: 1.3rem;
}
.footer_1 .sponsor_1 > ul {
    display: flex;
    justify-content: center;
    margin-right: -20px;
}

.footer_1 .sponsor_1 > ul > li {
    margin-right: 20px;
}

.footer_1 .contact_1 {
    margin-top: 20px;
    font-size: 1.3rem;
    text-align: center;
}

.footer_1 .sponsor_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-right: -20px;
    font-size: 1.3rem;
}
.footer_1 .sponsor_2 > * {
    margin-right: 20px;
}
.footer_1 .sponsor_2 .logo {
    display: block;
}
.footer_1 .sponsor_2 .logo img {
    width: auto;
    height: 50px;
}

@media (max-width: 999px) {
    .footer_1 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .footer_1 .footer_inner {
        width: calc(100% - 40px);
    }

    .footer_1 .sponsor_1 {
        margin: 0 auto;
        width: max-content;
        font-size: 1.2rem;
    }
    .footer_1 .sponsor_1 > ul {
        display: block;
        margin-right: 0;
    }

    .footer_1 .sponsor_1 > ul > li {
        margin-right: 0;
    }

    .footer_1 .contact_1 {
        font-size: 1.2rem;
    }
    .footer_1 .sponsor_2 {
        font-size: 1.2rem;
    }
    .footer_1 .sponsor_2 .logo img {
        width: auto;
        height: 50px;
    }
}

/* ---------------------------------------------------- */
/* sec_mv_wrap */
/* ---------------------------------------------------- */
.sec_mv_wrap {
    padding-top: 60px;
}

.sec_mv_wrap .ttl_1 {
    margin: 0 auto;
    max-width: 900px;
}

@media (max-width: 999px) {
    .sec_mv_wrap {
        padding-top: 80px;
    }
    .sec_mv_wrap .ttl_1 {
        max-width: none;
    }
}

/* ---------------------------------------------------- */
/* sec_artist_wrap */
/* ---------------------------------------------------- */
.sec_artist_wrap .day + .day {
    margin-top: 100px;
}

.sec_artist_wrap .list_1 > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -30px;
    margin-bottom: -50px;
}

.sec_artist_wrap .list_1 > ul > li {
    margin-right: 30px;
    margin-bottom: 50px;
    width: calc(100% / 3 - 30px);
}

.sec_artist_wrap .list_1 a {
    display: block;
}

.sec_artist_wrap .list_1 .name {
    margin-top: 10px;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.sec_artist_wrap .list_1 .name .hl {
    display: block;
    font-size: 1.4rem;
}
.sec_artist_wrap .list_1 .name .fs1 {
    font-size: 130%;
    font-weight: 400;
}

.sec_artist_wrap .list_1 .link {
    margin-top: 5px;
    text-align: center;
    text-decoration: underline;
}

.sec_artist_wrap .andmore {
    margin-top: 50px;
    font-size: 2.5rem;
    text-align: right;
}
@media (max-width: 999px) {
    .sec_artist_wrap .day + .day {
        margin-top: 50px;
    }

    .sec_artist_wrap .list_1 > ul {
        margin-right: -15px;
        margin-bottom: -30px;
    }

    .sec_artist_wrap .list_1 > ul > li {
        margin-right: 15px;
        margin-bottom: 30px;
        width: calc(100% / 2 - 15px);
    }

    .sec_artist_wrap .list_1 .name {
        margin-top: 5px;
        font-size: 1.6rem;
    }

    .sec_artist_wrap .list_1 .name .hl {
        font-size: 1.2rem;
    }
    .sec_artist_wrap .list_1 .link {
        font-size: 1.2rem;
    }

    .sec_artist_wrap .andmore {
        margin-top: 30px;
        font-size: 1.4rem;
    }
}

/* ---------------------------------------------------- */
/* sec_information_wrap */
/* ---------------------------------------------------- */
.sec_information_wrap .list_1 .item {
    position: relative;
    padding: 0 15px;
}

.sec_information_wrap .list_1 a {
    display: block;
}

.sec_information_wrap .list_1 .date {
    margin-top: 15px;
    font-size: 1.8rem;
    line-height: 1;
}

.sec_information_wrap .list_1 .ttl {
    margin-top: 10px;
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 700;
}

.sec_information_wrap .list_1 .desc {
    margin-top: 10px;
    font-size: 1.4rem;
}

.sec_information_wrap .list_1 .slick-prev {
    display: none !important;
}

.sec_information_wrap .list_1 .slick-next {
    display: block !important;
    position: relative;
    height: auto;
    border: none;
    padding: 0;
    margin-top: 50px;
    margin-left: auto;
    margin-right: 0;
    outline: 0;
    z-index: 10;
    color: transparent;
    font-size: 0;
    cursor: pointer;
    background-color: transparent;
    border-radius: 0;
    transition: 0.3s ease-in-out;
}

.sec_information_wrap .list_1 .slick-next::before {
    content: "read more >>";
    font-family: "Roboto", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    color: var(--co_1);
    font-size: 2.5rem;
    line-height: 1;
}
@media (min-width: 1000px) {
    .sec_information_wrap .list_1 .slick-next:hover {
        opacity: 0.6;
    }
}

@media (max-width: 999px) {
    .sec_information_wrap .list_1 .item {
        padding: 0 7px;
    }

    .sec_information_wrap .list_1 .date {
        margin-top: 8px;
        font-size: 1.4rem;
    }

    .sec_information_wrap .list_1 .ttl {
        margin-top: 8px;
        font-size: 1.4rem;
    }
    .sec_information_wrap .list_1 .desc {
        margin-top: 8px;
        font-size: 1.1rem;
    }
    .sec_information_wrap .list_1 .slick-next {
        margin-top: 30px;
    }

    .sec_information_wrap .list_1 .slick-next::before {
        font-size: 1.4rem;
    }
}

/* ---------------------------------------------------- */
/* sec_ticket_wrap */
/* ---------------------------------------------------- */
.sec_ticket_wrap .art_1 {
    position: relative;
    margin-bottom: 50px;
}
.sec_ticket_wrap .date_1 {
    margin-bottom: 30px;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.sec_ticket_wrap .art_1.soldout .date_1 {
    opacity: 0.5;
}
.sec_ticket_wrap .date_1 span {
    font-size: 3.5rem;
}

.sec_ticket_wrap .pg_1 {
    position: relative;
    margin: 0 auto;
    width: 520px;
}
.sec_ticket_wrap .art_1.soldout .pg_1 {
    pointer-events: none;
}
.sec_ticket_wrap .art_1.soldout .pg_1::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 150px;
    background-image: url(../img/ico/soldout_1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.sec_ticket_wrap .pg_1 > ul > li + li {
    margin-top: 30px;
}

.sec_ticket_wrap .pg_1 a {
    position: relative;
    display: block;
    padding: 10px 20px;
    color: var(--co_3);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    background-color: var(--co_1);
    border: 2px solid var(--co_3);
}
.sec_ticket_wrap .art_1.soldout .pg_1 a {
    opacity: 0.5;
}
.sec_ticket_wrap .pg_1 a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 36px;
    height: 36px;
    background-image: url(../img/ico/arrow_1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.sec_ticket_wrap .price_1 {
    padding-bottom: 10px;
    margin: 0 auto 10px;
    width: max-content;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    border-bottom: 1px solid var(--co_1);
}

.sec_ticket_wrap .price_1 span {
    font-size: 1.5rem;
}

.sec_ticket_wrap .desc_1 {
    margin-bottom: 60px;
    font-size: 1.3rem;
    text-align: right;
}

.sec_ticket_wrap .ttl_4 {
    margin-bottom: 20px;
    color: #9fa0a0;
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
}

.sec_ticket_wrap .list_3 {
    margin: 0 auto 60px;
    width: max-content;
    max-width: 100%;
}

.sec_ticket_wrap .ttl_3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
}

.sec_ticket_wrap .list_2 {
    font-size: 1.3rem;
}
@media (max-width: 999px) {
    .sec_ticket_wrap .art_1 {
        margin-bottom: 30px;
    }
    .sec_ticket_wrap .date_1 {
        margin-bottom: 20px;
        font-size: 2.2rem;
    }

    .sec_ticket_wrap .date_1 span {
        font-size: 1.4rem;
    }

    .sec_ticket_wrap .pg_1 {
        width: auto;
    }
    .sec_ticket_wrap .art_1.soldout .pg_1::after {
        height: 95px;
    }
    .sec_ticket_wrap .pg_1 > ul > li + li {
        margin-top: 20px;
    }

    .sec_ticket_wrap .pg_1 a {
        position: relative;
        display: block;
        padding: 10px 20px;
        font-size: 2rem;
    }

    .sec_ticket_wrap .pg_1 a::after {
        width: 20px;
        height: 20px;
    }
    .sec_ticket_wrap .price_1 {
        font-size: 2.2rem;
        line-height: 2;
        text-align: left;
        border-bottom: 1px solid var(--co_3);
    }

    .sec_ticket_wrap .price_1 span {
        font-size: 1.2rem;
    }

    .sec_ticket_wrap .desc_1 {
        margin-bottom: 30px;
        font-size: 1.1rem;
    }

    .sec_ticket_wrap .ttl_4 {
        margin-bottom: 10px;
        font-size: 2rem;
    }
    .sec_ticket_wrap .list_3 {
        margin: 0 auto 30px;
        font-size: 1.1rem;
    }

    .sec_ticket_wrap .ttl_3 {
        font-size: 1.6rem;
    }

    .sec_ticket_wrap .list_2 {
        font-size: 1.1rem;
    }
}

/* ---------------------------------------------------- */
/* sec_access_wrap */
/* ---------------------------------------------------- */
.sec_access_wrap .address_1 {
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
}

.sec_access_wrap .map_1 iframe {
    width: 100%;
    height: 800px;
}
.sec_access_wrap * + .ttl_2 {
    margin-top: 60px;
}
.sec_access_wrap .ttl_3 {
    font-size: 1.8rem;
}

.sec_access_wrap * + .ttl_3 {
    margin-top: 20px;
}
.sec_access_wrap .list_1 {
    margin-left: 1em;
    font-size: 1.8rem;
}
.sec_access_wrap .box_1 {
    margin: 0 auto;
    max-width: 600px;
}

@media (max-width: 999px) {
    .sec_access_wrap .address_1 {
        margin-bottom: 20px;
        font-size: 1.6rem;
    }

    .sec_access_wrap .map_1 iframe {
        height: 400px;
    }
    .sec_access_wrap * + .ttl_2 {
        margin-top: 60px;
    }
    .sec_access_wrap .ttl_3 {
        font-size: 1.4rem;
    }

    .sec_access_wrap * + .ttl_3 {
        margin-top: 20px;
    }
    .sec_access_wrap .list_1 {
        font-size: 1.4rem;
    }
}
