@charset "utf-8";

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

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #032c60;
    --co_4: #171c61;
    --co_5: #fd0000;

    --ff_go_1: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --ff_mi_1: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    --ff_en_1: "Butcherman", "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 {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_3);
    line-height: 1.5;
    font-family: var(--ff_go_1);
    font-weight: 400;
    background-color: var(--co_4);

    overflow: hidden;
}

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

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

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

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

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    position: relative;
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}
.body_wrap::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/1.jpg);
    background-position: center bottom;
    background-size: cover;
}

@media (max-width: 999px) {
    .body_wrap::before {
        background-image: url(../img/bg/1_sp.jpg);
    }
}

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

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

.is_page_scr .header_1 {
    background-color: rgba(23, 28, 97, 0.6);
}
/* .is_megamenu_show .header_1 {
    background-color: rgba(23, 28, 97, 0);
} */
.header_1 .header_inner {
    position: relative;
    height: 80px;
}

.header_1 .logo_1 {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

.is_page_scr .header_1 .logo_1 {
    opacity: 1;
    pointer-events: all;
}
/* .is_megamenu_show .header_1 .logo_1 {
    opacity: 0;
    pointer-events: none;
} */

.header_1 .logo_1 a {
    display: block;
}

.header_1 .btn_toggle_megamenu {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
    width: 35px;
    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;
    display: block;
    width: 100%;
    color: var(--co_1);
    font-size: 11px;
    text-align: center;
    line-height: 1;
}
.header_1 .btn_toggle_megamenu.is_show:after {
    content: "CLOSE";
    color: var(--co_1);
}

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

.header_1 .btn_toggle_megamenu > span > span span,
.header_1 .btn_toggle_megamenu > span > span:before,
.header_1 .btn_toggle_megamenu > span > 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 > span > span span {
    transform: translateY(-1px);
}

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

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

.header_1 .btn_toggle_megamenu.is_show > span > span span,
.header_1 .btn_toggle_megamenu.is_show > span > span:before,
.header_1 .btn_toggle_megamenu.is_show > span > span:after {
    width: 100% !important;
    background-color: var(--co_1);
}

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

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

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

.header_1 .toggle_megamenu_wrap {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    background-color: rgba(23, 28, 97, 0.9);
    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 > li > a {
    display: block;
    margin: 0 auto;
    padding: 20px 0;
}
.header_1 .nav_1 > ul > li > a img {
    margin: 0 auto;
    width: auto;
    height: 30px;
}

.header_1 .nav_2 {
    margin-top: 40px;
    width: 100%;
}

.header_1 .nav_2 > ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header_1 .nav_2 > ul > li {
    padding: 0 10px;
}
.header_1 .nav_2 a {
    display: block;
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.header_1 .nav_2 .ig a {
    background-image: url(../img/ico/sns_ig_1.svg?y=25);
}
.header_1 .nav_2 .x a {
    background-image: url(../img/ico/sns_x_1.svg?y=25);
}
.header_1 .nav_2 .tt a {
    background-image: url(../img/ico/sns_tt_1.svg?y=25);
}

@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 .logo_1 {
        left: 15px;
        width: 200px;
    }
    .header_1 .btn_toggle_megamenu {
        right: 10px;
    }
    .header_1 .toggle_megamenu_wrap .toggle_inner {
        padding: 60px 0;
        display: block;
    }

    .header_1 .nav_1 > ul > li > a {
        padding: 15px 0;
    }
    .header_1 .nav_1 > ul > li > a img {
        height: 20px;
    }

    .header_1 .nav_2 {
        margin-top: 30px;
    }

    .header_1 .nav_2 a {
        width: 40px;
        height: 40px;
    }
}

/* ---------------------------------------------------- */
/* sec_mv_wrap */
/* ---------------------------------------------------- */
.sec_mv_wrap {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 730px;
}
.sec_mv_wrap .sec_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.sec_mv_wrap .mv_wrap {
    position: relative;
    padding-bottom: 100px;
}
.sec_mv_wrap .ttl_1 {
    margin: 0 auto;
    width: 650px;
}
.sec_mv_wrap .ttl_2 {
    margin: 30px auto 0;
    width: 320px;
}
.sec_mv_wrap .btn_2 {
    position: fixed;
    right: 0;
    bottom: 70px;
    transform: translateX(110%);
    display: block;
    width: 230px;
    z-index: 10;
}
.is_page_scr .sec_mv_wrap .btn_2 {
    transform: translateX(0);
}

.sec_mv_wrap .btn_3 {
    position: fixed;
    right: 10px;
    bottom: 10px;
    transform: translateX(160%);
    display: block;
    width: 60px;
    z-index: 10;
}
.is_page_scr .sec_mv_wrap .btn_3 {
    transform: translateX(0);
}

.sec_mv_wrap .btn_1 {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
}

.sec_mv_wrap .btn_1 .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.sec_mv_wrap .btn_1 .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.sec_mv_wrap .btn_1 .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.sec_mv_wrap .btn_1 .chevron:before,
.sec_mv_wrap .btn_1 .chevron:after {
    content: " ";
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: var(--co_2);
}

.sec_mv_wrap .btn_1 .chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}

.sec_mv_wrap .btn_1 .chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}

@keyframes move {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}
@media (max-width: 999px) {
    .sec_mv_wrap {
        min-height: auto;
    }
    .sec_mv_wrap .mv_wrap {
        padding-bottom: 50px;
    }
    .sec_mv_wrap .ttl_1 {
        margin: 0 auto;
        width: 90%;
    }
    .sec_mv_wrap .ttl_2 {
        margin-top: 30px;
        width: 40%;
    }
    .sec_mv_wrap .btn_2 {
        bottom: 60px;
        width: 150px;
    }
    .sec_mv_wrap .btn_3 {
        right: 10px;
        bottom: 10px;
        width: 40px;
    }
    .sec_mv_wrap .btn_1 {
        bottom: 50px;
    }
}

/* ---------------------------------------------------- */
/* sec_concept_wrap */
/* ---------------------------------------------------- */
.sec_concept_wrap .ttl_1 {
    margin: 0 auto 50px;
    width: 300px;
}
.sec_concept_wrap .desc_1 {
    font-size: 20px;
}
@media (max-width: 999px) {
    .sec_concept_wrap .ttl_1 {
        margin: 0 auto 30px;
        width: 70%;
    }
    .sec_concept_wrap .desc_1 {
        font-size: 16px;
    }
}

/* ---------------------------------------------------- */
/* sec_artist_wrap */
/* ---------------------------------------------------- */
.sec_artist_wrap .box_1 + .box_1 {
    margin-top: 50px;
}
.sec_artist_wrap .ttl_2 {
    margin: 0 auto 50px;
    width: 400px;
}
.sec_artist_wrap .ttl_3 {
    margin-top: 50px;
}
.sec_artist_wrap .list_1 + .list_1 {
    margin-top: 40px;
}
.sec_artist_wrap .list_1 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -40px;
    margin-bottom: -40px;
}
.sec_artist_wrap .list_1_a > ul {
    justify-content: center;
}
.sec_artist_wrap .list_1 > ul > li {
    position: relative;
    margin-right: 40px;
    margin-bottom: 40px;
    width: calc(100% / 2 - 40px);
}
.sec_artist_wrap .list_1 > ul > li.new::before {
    content: "";
    position: absolute;
    left: -25px;
    top: -25px;
    display: block;
    width: 80px;
    height: 80px;
    background-image: url(../img/ico/new_1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 2;
}
.sec_artist_wrap .list_1 .ttl {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}
.sec_artist_wrap .list_1 .caption {
    font-size: 12px;
    text-align: center;
}
.sec_artist_wrap .list_1 .andmore {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 999px) {
    .sec_artist_wrap .box_1 + .box_1 {
        margin-top: 30px;
    }
    .sec_artist_wrap .ttl_2 {
        margin-bottom: 30px;
        width: 70%;
    }
    .sec_artist_wrap .list_1 + .list_1 {
        margin-top: 20px;
    }
    .sec_artist_wrap .list_1 > ul {
        margin-right: -10px;
        margin-bottom: -20px;
    }
    .sec_artist_wrap .list_1 > ul > li {
        margin-right: 10px;
        margin-bottom: 20px;
        width: calc(100% / 2 - 10px);
    }
    .sec_artist_wrap .list_1 .ttl {
        margin-top: 5px;
        font-size: 12px;
    }
    .sec_artist_wrap .list_1 .caption {
        font-size: 9px;
    }
    .sec_artist_wrap .list_1 .andmore {
        font-size: 16px;
    }
}
/* ---------------------------------------------------- */
/* sec_ticket_wrap */
/* ---------------------------------------------------- */
.sec_ticket_wrap .price_1 {
    margin: 0 auto 50px;
    width: 70%;
}
.sec_ticket_wrap .ttl_2 {
    margin-bottom: 20px;
    color: var(--co_5);
    font-size: 30px;
    font-weight: 700px;
    text-align: center;
}
.sec_artist_wrap .ttl_3 {
    margin-top: 60px;
}
.sec_ticket_wrap .pg_1 + .pg_1 {
    margin-top: 30px;
}
.sec_ticket_wrap .pg_1 > ul > li {
    position: relative;
    padding: 30px;
    background-color: var(--co_1);
}
.sec_ticket_wrap .pg_1 > ul > li.new::before {
    content: "";
    position: absolute;
    left: -25px;
    top: -25px;
    display: block;
    width: 80px;
    height: 80px;
    background-image: url(../img/ico/new_1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 2;
}
.sec_ticket_wrap .pg_1 > ul > li + li {
    margin-top: 30px;
}
.sec_ticket_wrap .pg_1 .ttl {
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px solid var(--co_3);
}
.sec_ticket_wrap .pg_1 .ttl > span {
    display: block;
    font-size: 50%;
}
.sec_ticket_wrap .pg_1 .date {
    margin-bottom: 20px;
    color: var(--co_5);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
.sec_ticket_wrap .pg_1 .desc {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
}
.sec_ticket_wrap .pg_1 .pg {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
.sec_ticket_wrap .pg_1 .btn {
    display: block;
    margin-bottom: 20px;
}
.sec_ticket_wrap .pg_1 .end .btn {
    filter: grayscale(1) brightness(50%);
    opacity: 0.5;
    pointer-events: none;
}
.sec_ticket_wrap .ttl_3 {
    margin-top: 50px;
    margin-bottom: 10px;
    font-style: 18px;
    font-weight: 700;
}
.sec_ticket_wrap .list_1 {
    font-size: 13px;
}
@media (min-width: 1000px) {
    .sec_ticket_wrap .box_1 {
        padding-left: 150px;
        padding-right: 150px;
    }
}
@media (max-width: 999px) {
    .sec_ticket_wrap .price_1 {
        margin-bottom: 30px;
        width: 90%;
    }
    .sec_ticket_wrap .ttl_2 {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .sec_artist_wrap .ttl_3 {
        margin-top: 30px;
    }
    .sec_ticket_wrap .pg_1 + .pg_1 {
        margin-top: 10px;
    }
    .sec_ticket_wrap .pg_1 > ul > li {
        padding: 20px 10px;
    }
    .sec_ticket_wrap .pg_1 > ul > li + li {
        margin-top: 10px;
    }
    .sec_artist_wrap .list_1 > ul > li.new::before {
        left: -10px;
        top: -10px;
        width: 40px;
        height: 40px;
    }
    .sec_ticket_wrap .pg_1 .ttl {
        padding-bottom: 10px;
        margin-bottom: 10px;
        font-size: 20px;
    }
    .sec_ticket_wrap .pg_1 .date {
        font-size: 12px;
    }
    .sec_ticket_wrap .pg_1 .desc {
        font-size: 12px;
    }
    .sec_ticket_wrap .pg_1 .pg {
        font-size: 16px;
    }
    .sec_ticket_wrap .pg_1 .btn {
        margin-bottom: 10px;
    }
    .sec_ticket_wrap .ttl_3 {
        margin-top: 30px;
        margin-bottom: 5px;
        font-style: 18px;
    }
    .sec_ticket_wrap .list_1 {
        font-size: 11px;
    }
}
/* ---------------------------------------------------- */
/* sec_goods_wrap */
/* ---------------------------------------------------- */
.sec_goods_wrap .ttl_2 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}
.sec_goods_wrap .ttl_3 {
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.sec_goods_wrap .desc_2 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.sec_goods_wrap .desc_3 {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}
.sec_goods_wrap .img_1 {
    display: block;
}
.sec_goods_wrap .btn_1 {
    display: block;
    margin: 0 auto;
    width: 600px;
}
.sec_goods_wrap .list_1 {
    font-size: 12px;
}
@media (max-width: 999px) {
    .sec_goods_wrap .ttl_2 {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 16px;
    }
    .sec_goods_wrap .ttl_3 {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 22px;
    }
    .sec_goods_wrap .desc_2 {
        margin-bottom: 10px;
        font-size: 16px;
    }
    .sec_goods_wrap .desc_3 {
        margin-top: 10px;
        font-size: 11px;
    }
    .sec_goods_wrap .list_1 {
        font-size: 11px;
    }
    .sec_goods_wrap .btn_1 {
        width: auto;
    }
}
/* ---------------------------------------------------- */
/* sec_map_wrap */
/* ---------------------------------------------------- */
.sec_map_wrap .ttl_2 {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
.sec_goods_wrap .img_1 {
    display: block;
}
@media (max-width: 999px) {
    .sec_map_wrap .ttl_2 {
        margin-top: 30px;
        font-size: 16px;
    }
}
/* ---------------------------------------------------- */
/* sec_access_wrap */
/* ---------------------------------------------------- */
.sec_access_wrap .ttl_2 {
    font-size: 30px;
    text-align: center;
}
.sec_access_wrap .desc_1 {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}

.sec_access_wrap .map_1 {
    margin-bottom: 20px;
}
.sec_access_wrap .map_1 iframe {
    width: 100%;
    height: 600px;
}

.sec_access_wrap .list_1 {
    font-size: 18px;
}

.sec_access_wrap .contact_1 {
    margin-bottom: 20px;
    margin-top: 50px;
    padding-top: 50px;
    font-family: var(--ff_mi_1);
    font-weight: 700;
    text-align: center;
    border-top: 1px solid var(--co_3);
}
.sec_access_wrap .contact_1 > span:nth-of-type(1) {
    display: block;
    font-size: 25px;
}
.sec_access_wrap .contact_1 > span:nth-of-type(1) {
    display: block;
    font-size: 20px;
}
.sec_access_wrap .logo_1 {
    margin: 0 auto 20px;
    width: 500px;
}
.sec_access_wrap .nav_1 .ttl {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.sec_access_wrap .nav_1 > ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec_access_wrap .nav_1 a {
    display: block;
    width: 60px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70% auto;
    background-color: var(--co_3);
}

.sec_access_wrap .nav_1 .ig a {
    background-image: url(../img/ico/sns_ig_1.svg?y=25);
}
.sec_access_wrap .nav_1 .x a {
    background-image: url(../img/ico/sns_x_1.svg?y=25);
}
.sec_access_wrap .nav_1 .tt a {
    background-image: url(../img/ico/sns_tt_1.svg?y=25);
}
.sec_access_wrap .copyright_1 {
    margin-top: 50px;
    font-size: 13px;
    text-align: center;
}
@media (max-width: 999px) {
    .sec_access_wrap {
        padding-bottom: 150px;
    }
    .sec_access_wrap .ttl_2 {
        font-size: 20px;
    }
    .sec_access_wrap .desc_1 {
        margin-bottom: 20px;
        font-size: 14px;
        text-align: center;
    }

    .sec_access_wrap .map_1 {
        margin-bottom: 20px;
    }
    .sec_access_wrap .map_1 iframe {
        width: 100%;
        height: 400px;
    }
    .sec_access_wrap .list_1 {
        font-size: 14px;
    }
    .sec_access_wrap .contact_1 {
        margin-top: 30px;
        padding-top: 30px;
    }
    .sec_access_wrap .contact_1 > span:nth-of-type(1) {
        display: block;
        font-size: 20px;
    }
    .sec_access_wrap .contact_1 > span:nth-of-type(1) {
        display: block;
        font-size: 16px;
    }
    .sec_access_wrap .logo_1 {
        width: 250px;
    }
    .sec_access_wrap .nav_1 .ttl {
        font-size: 18px;
    }

    .sec_access_wrap .nav_1 a {
        width: 50px;
        height: 50px;
    }
    .sec_access_wrap .copyright_1 {
        margin-top: 30px;
        font-size: 11px;
    }
}
