@charset "utf-8";

/* -------------------------------- */
/* 変数 */
/* -------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #e3007f;
    --co_4: #fff100;
    --co_5: #00a0e9;

    --ff_go_1: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --ff_go_2: "M PLUS Rounded 1c", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

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

body {
    position: relative;
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_2);
    line-height: 1.5;
    font-family: var(--ff_go_2);
    font-weight: 400;
    background-color: var(--co_1);
    overflow: hidden;
    opacity: 0;
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
}

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

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

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

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

a:hover {
    text-decoration: none;
}

/* -------------------------------- */
/* contents */
/* -------------------------------- */
.contents {
    padding-top: 70px;
}
@media (max-width: 999px) {
    .contents {
        padding-top: 50px;
    }
}
/* -------------------------------- */
/* header_1 */
/* -------------------------------- */
@media (min-width: 1000px) {
    .header_1 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 100;
        transition: 0.3s ease-in-out;
    }

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

    .header_1 .logo_1 {
        display: none;
    }

    .header_1 .btn_toggle_megamenu {
        display: none;
    }
    .header_1 .toggle_megamenu {
        display: block !important;
        opacity: 1 !important;
    }

    .header_1 .nav_1 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .header_1 .nav_1 > ul {
        display: flex;
    }
    .header_1 .nav_1 > ul > li {
        margin: 0 20px;
    }
    .header_1 .nav_1 > ul > li > a {
        display: block;
        color: var(--co_3);
        font-size: 24px;
        line-height: 1;
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }
}

@media (max-width: 999px) {
    .header_1 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 100;
        transition: 0.3s ease-in-out;
    }
    .header_1 .header_inner {
        position: relative;
        height: 50px;
    }
    .header_1 .logo_1 {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
    }
    .header_1 .btn_toggle_megamenu {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        z-index: 110;
    }

    .header_1 .btn_toggle_megamenu div {
        position: relative;
        width: 100%;
        height: 40px;
    }

    .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_2);
        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 {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: var(--co_1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }

    .header_1 .toggle_megamenu .toggle_inner {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
        padding: 50px 0;
        height: 100%;
    }
    .header_1 .nav_1 > ul > li {
        margin: 20px 0;
    }
    .header_1 .nav_1 > ul > li > a {
        display: block;
        color: var(--co_3);
        font-size: 24px;
        line-height: 1;
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }
}

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

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 700px;
}
.footer_1 .copyright_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    text-align: center;
}
.footer_1 .copyright_1 > span {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_1 .copyright_1 > span + span {
    margin-left: 20px;
}
.footer_1 .copyright_1 img {
    display: inline-block;
    width: auto;
    height: 15px;
}
.footer_1 .copyright_1 img + img {
    margin-left: 10px;
}

.footer_1 .copyright_1 .s3 {
    height: 30px;
}

.footer_1 .copyright_2 {
    margin-top: 20px;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 999px) {
    .footer_1 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .footer_1 .footer_inner {
        width: calc(100% - 30px);
    }
    .footer_1 .copyright_1 {
        display: block;
        font-size: 12px;
    }

    .footer_1 .copyright_1 > span + span {
        margin-left: 0;
        margin-top: 10px;
    }

    .footer_1 .copyright_2 {
        font-size: 12px;
    }
}

/* -------------------------------- */
/* sec_mv */
/* -------------------------------- */
.sec_mv {
    padding-top: 0;
    padding-bottom: 0;
}
.sec_mv .ttl_1 {
    margin: 0 auto;
    max-width: 1200px;
}

@media (max-width: 999px) {
}
/* -------------------------------- */
/* sec_about */
/* -------------------------------- */
.sec_about .ttl_2 {
    margin-bottom: 10px;
    color: var(--co_3);
    font-size: 28px;
    font-weight: 800;
    text-align: center;
}
.sec_about .desc_1 {
    margin: 0 auto 20px;
    width: max-content;
    font-size: 18px;
    font-weight: 700;
}
.sec_about .clms_1 {
    display: flex;
    justify-content: space-between;
}
.sec_about .clms_1 > .clm:nth-of-type(1) {
    width: calc(45% - 20px);
}

.sec_about .clms_1 > .clm:nth-of-type(2) {
    width: calc(55% - 20px);
}
.sec_about .list_1 {
    font-weight: 700;
}
.sec_about .list_1 table {
    width: 100%;
}
.sec_about .list_1 tr + tr {
    border-top: 1px solid var(--co_2);
}
.sec_about .list_1 th {
    padding: 10px 0;
    white-space: nowrap;
}
.sec_about .list_1 .vam th {
    vertical-align: middle;
}
.sec_about .list_1 th::after {
    content: "：";
}
.sec_about .list_1 td {
    padding: 10px 0;
}
.sec_about .list_1 .vam td {
    vertical-align: middle;
}
.sec_about .list_1 .img {
    display: flex;
    align-items: center;
}
.sec_about .list_1 .img img {
    display: inline-block;
    width: auto;
    height: 15px;
}
.sec_about .list_1 .img img + img {
    margin-left: 10px;
}
.sec_about .list_1 .img .s3 {
    height: 30px;
}
@media (max-width: 999px) {
    .sec_about .ttl_2 {
        color: var(--co_3);
        font-size: 24px;
    }
    .sec_about .desc_1 {
        width: auto;
        font-size: 16px;
        text-align: center;
    }
    .sec_about .clms_1 {
        display: block;
    }
    .sec_about .clms_1 > .clm:nth-of-type(1) {
        margin-bottom: 40px;
        width: auto;
    }

    .sec_about .clms_1 > .clm:nth-of-type(2) {
        width: auto;
    }

    .sec_about .img_1 {
        margin: 0 auto;
        width: 80%;
    }
    .sec_about .list_1 table {
        font-size: 13px;
    }
}

/* -------------------------------- */
/* sec_artist */
/* -------------------------------- */
@media (max-width: 999px) {
}

/* -------------------------------- */
/* sec_ticket */
/* -------------------------------- */
.sec_ticket .img_1 {
    margin: 0 auto 40px;
    max-width: 300px;
}

.sec_ticket .list_1 {
    margin-bottom: 40px;
}
.sec_ticket .date_1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    color: var(--co_1);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    background-color: var(--co_3);
    border-radius: 30px;
}

.sec_ticket .pg_1 {
    display: flex;
    justify-content: space-between;
}
.sec_ticket .pg_1 a {
    display: block;
    width: calc(100% / 3 - 10px);
    background-color: var(--co_1);
    border-radius: 4px;
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6));
}

@media (max-width: 999px) {
    .sec_ticket .img_1 {
        margin-bottom: 20px;
    }

    .sec_ticket .list_1 {
        margin-bottom: 20px;
        font-size: 11px;
    }
    .sec_ticket .date_1 {
        margin: 0 -20px 20px;
        padding: 20px;
        font-size: 18px;
        border-radius: 0;
    }

    .sec_ticket .pg_1 {
        display: block;
    }
    .sec_ticket .pg_1 a {
        width: auto;
    }
    .sec_ticket .pg_1 a + a {
        margin-top: 10px;
    }
    .sec_ticket .pg_1 a img {
        margin: 0 auto;
        width: 200px;
    }
}

/* -------------------------------- */
/* sec_access */
/* -------------------------------- */
.sec_access .map_1 {
    margin-bottom: 20px;
}
.sec_access .map_1 iframe {
    width: 100%;
    height: 400px;
}
.sec_access .desc_1 {
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}
.sec_access .desc_1 > span:nth-of-type(1) {
    display: block;
    font-size: 20px;
}
.sec_access .desc_1 > span:nth-of-type(2) {
    display: block;
    margin-top: 10px;
}
@media (max-width: 999px) {
    .sec_access .map_1 {
        margin: 0 -20px 20px;
    }
    .sec_access .map_1 iframe {
        width: 100%;
        height: 300px;
    }
    .sec_access .desc_1 {
        margin-bottom: 20px;
        font-weight: 700;
        text-align: center;
    }
    .sec_access .desc_1 > span:nth-of-type(1) {
        font-size: 16px;
    }
}
