@charset "utf-8";

@media print {
    html {
        display: none;
    }
}
/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #1a1e51;

    --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;
}

/* ---------------------------------------------------- */
/* 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_2);
    line-height: 1.5;
    font-family: var(--ff_mi_1);
    background-color: var(--co_1);
    font-weight: 400;
    overflow: hidden;
}

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

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

/* ---------------------------------------------------- */
/* 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;
}

/* ---------------------------------------------------- */
/* body */
/* ---------------------------------------------------- */
.body {
    position: relative;
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}
@media (min-width: 1000px) {
    .body::before {
        content: "";
        position: fixed;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        min-width: 1920px;
        width: 100%;
        height: 100%;
        background-image: url(../img/bg/1.jpg), url(../img/bg/2.jpg);
        background-position:
            left bottom,
            right bottom;
        background-repeat: no-repeat;
        background-size: 960px auto;
    }
}
@media (max-width: 999px) {
    .body::before {
        content: "";
        position: fixed;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        background-image: url(../img/bg/1_sp.jpg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
    }
}

/* ---------------------------------------------------- */
/* contents */
/* ---------------------------------------------------- */
@media (min-width: 1000px) {
    .contents {
        margin: 0 auto;
        padding-top: 60px;
        width: 1000px;
    }
}

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

/* ---------------------------------------------------- */
/* header_1 */
/* ---------------------------------------------------- */
.header_1 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 1180px;
    z-index: 100;
    transition: 0.3s ease-in-out;
    background: linear-gradient(
        90deg,
        rgba(244, 215, 147, 1) 0%,
        rgba(228, 198, 128, 1) 5%,
        rgba(194, 155, 90, 1) 30%,
        rgba(246, 234, 174, 1) 50%,
        rgba(194, 155, 90, 1) 60%,
        rgba(228, 198, 128, 1) 95%,
        rgba(244, 215, 147, 1) 100%
    );
}

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

.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";
}

.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_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;
    background-color: var(--co_1);
}

.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: rgba(26, 30, 80, 0.9);
    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: 80px 0;
    height: 100%;
}

.header_1 .nav_1 {
    width: 100%;
}
.header_1 .nav_1 > ul > li + li {
    margin-top: 30px;
}
.header_1 .nav_1 > ul > li::after {
    content: "";
    display: block;
    margin-top: 10px;
    width: 100%;
    height: 13px;
    background-image: url(../img/bg/3.svg?y=26);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.header_1 .nav_1 > ul > li:nth-child(1)::after {
    display: none;
}
.header_1 .nav_1 > ul > li > a {
    display: block;
    color: var(--co_1);
    padding: 8px 0;
    font-size: 25px;
    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_1 > ul > li:nth-child(1) > a {
    color: var(--co_3);
    background-image: url(../img/bg/4.svg?y=26);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.header_1 .nav_2 {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
}

.header_1 .nav_2 > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -20px;
}
.header_1 .nav_2 > ul > li {
    margin-right: 20px;
}
.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=26);
}
.header_1 .nav_2 .yt a {
    background-image: url(../img/ico/sns_yt_1.svg?y=26);
}
.header_1 .nav_2 .x a {
    background-image: url(../img/ico/sns_x_1.svg?y=26);
}
.header_1 .nav_2 .tt a {
    background-image: url(../img/ico/sns_tt_1.svg?y=26);
}
@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: 10px;
    }
    .header_1 .toggle_megamenu .toggle_inner {
        padding: 60px 0;
        display: block;
    }

    .header_1 .nav_1 > ul > li > a {
        padding: 15px 0;
        font-size: 20px;
    }
    .header_1 .nav_2 {
        right: 70px;
    }
    .header_1 .nav_2 > ul > li {
        margin-right: 10px;
    }
    .header_1 .nav_1 > ul > li + li {
        margin-top: 20px;
    }
    .header_1 .nav_1 > ul > li::after {
        height: 10px;
    }
    .header_1 .nav_1 > ul > li > a {
        padding: 4px 0;
        font-size: 20px;
    }
    .header_1 .nav_2 a {
        width: 25px;
        height: 25px;
    }
}

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

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 700px;
}
.footer_1 .sponsor_1 {
    font-family: var(--ff_go_1);
    text-align: center;
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.5);
}

.footer_1 .btn_1 {
    position: fixed;
    right: 10px;
    bottom: -200px;
    display: block;
    width: 135px;
    z-index: 10;
}

.is_page_scr .footer_1 .btn_1 {
    bottom: 10px;
}

@media (max-width: 999px) {
    .footer_1 {
        padding-top: 30px;
        padding-bottom: 100px;
    }
    .footer_1 .footer_inner {
        width: calc(100% - 40px);
    }
    .footer_1 .sponsor_1 {
        font-size: 12px;
    }
    .footer_1 .btn_1 {
        width: 80px;
    }
}

/* ---------------------------------------------------- */
/* sec_mv */
/* ---------------------------------------------------- */
.sec_mv {
    padding-top: 20px;
    padding-bottom: 20px;
}
.sec_mv .sec_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.sec_mv .mv {
    position: relative;
    width: 100%;
    height: 100%;
}
.sec_mv .ttl_1 {
    margin: 0 auto;
    width: 850px;
    height: 100%;
}
.sec_mv .ttl_1 > span {
    height: 100%;
    background-size: contain;
}

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

.sec_mv .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 .btn_1 .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

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

.sec_mv .btn_1 .chevron:before,
.sec_mv .btn_1 .chevron:after {
    content: " ";
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #1a1e51;
}

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

.sec_mv .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 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .sec_mv .ttl_1 {
        width: 100%;
    }
    .sec_mv .btn_1 {
        bottom: -5px;
    }
}

/* ---------------------------------------------------- */
/* sec_overview */
/* ---------------------------------------------------- */
.sec_overview {
    padding-top: 50px;
    padding-bottom: 50px;
}

.sec_overview .sec_inner {
    padding: 0 30px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

.sec_overview .list_1 {
    margin: 0 auto;
    max-width: max-content;
    color: var(--co_3);
}
.sec_overview .list_1 th {
    padding-bottom: 10px;
    padding-top: 4px;
    font-size: 18px;
    white-space: nowrap;
}

.sec_overview .list_1 td {
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
}
@media (max-width: 999px) {
    .sec_overview {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .sec_overview .sec_inner {
        padding: 0 10px;
    }

    .sec_overview .list_1 th {
        padding-bottom: 10px;
        padding-top: 4px;
        font-size: 14px;
    }

    .sec_overview .list_1 td {
        padding-bottom: 10px;
        font-size: 18px;
        font-weight: 600;
    }
}

/* ---------------------------------------------------- */
/* sec_setlist */
/* ---------------------------------------------------- */
.sec_setlist {
    padding-top: 50px;
    padding-bottom: 50px;
}

.sec_setlist .sec_inner {
    padding: 0 30px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}
.sec_setlist .list_1 {
    margin: 0 auto;
    width: max-content;
    max-width: 100%;
}
.sec_setlist .list_1 th {
    padding-bottom: 10px;
    padding-right: 20px;
    color: #c29b5a;
    white-space: nowrap;
}

.sec_setlist .list_1 td {
    padding-bottom: 10px;
    font-weight: 600;
}
.sec_setlist .andmore_1 {
    margin-top: 40px;
    text-align: center;
}
.sec_setlist .note_1 {
    margin-top: 40px;
}
@media (max-width: 999px) {
    .sec_setlist {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .sec_setlist .sec_inner {
        padding: 0 10px;
    }

    .sec_setlist .list_1 th {
        padding-bottom: 10px;
        padding-right: 10px;
    }
}

/* ---------------------------------------------------- */
/* sec_message */
/* ---------------------------------------------------- */
.sec_message {
    padding-top: 50px;
    padding-bottom: 50px;
}

.sec_message .sec_inner {
    padding: 0 30px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

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

    .sec_message .sec_inner {
        padding: 0 10px;
    }
    .sec_message .desc_1 {
        font-size: 16px;
    }
}
/* ---------------------------------------------------- */
/* sec_artist */
/* ---------------------------------------------------- */
.sec_artist {
    padding-top: 50px;
    padding-bottom: 50px;
}

.sec_artist .sec_inner {
    padding: 0 30px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

.sec_artist .list_1 > ul > li + li {
    margin-top: 50px;
}
.sec_artist .list_1 .img {
    margin: 0 auto;
    width: auto;
    height: 300px;
}
.sec_artist .list_1 .name {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 30px;
    line-height: 1;
    text-align: center;
}
.sec_artist .list_1 .name img {
    margin-right: 10px;
    width: auto;
    height: 40px;
}
.sec_artist .list_1 .name span {
    font-size: 60%;
}
.sec_artist .list_1 .desc {
    margin-top: 20px;
    line-height: 1.8;
}
@media (max-width: 999px) {
    .sec_artist {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .sec_artist .sec_inner {
        padding: 0 10px;
    }

    .sec_artist .list_1 > ul > li + li {
        margin-top: 30px;
    }
    .sec_artist .list_1 .img {
        width: 90%;
        height: auto;
    }
    .sec_artist .list_1 .name {
        margin-top: 20px;
        font-size: 20px;
    }
    .sec_artist .list_1 .name img {
        margin-right: 10px;
        height: 25px;
    }
    .sec_artist .list_1 .desc {
        margin-top: 20px;
        font-size: 14px;
    }
}

/* ---------------------------------------------------- */
/* sec_ticket */
/* ---------------------------------------------------- */
.sec_ticket {
    padding-top: 50px;
    padding-bottom: 50px;
}

.sec_ticket .sec_inner {
    padding: 0 30px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}
.sec_ticket .price_1 {
    margin: 0 auto;
    width: 350px;
}
.sec_ticket .ttl_2 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--co_3);
    font-family: var(--ff_go_1);
    font-size: 20px;
    line-height: 1;
    text-align: center;
}

.sec_ticket .desc_1 {
    font-family: var(--ff_go_1);
    color: var(--co_3);
}
.sec_ticket .pg_1 {
    margin: 50px auto 0;
}

.sec_ticket .pg_1 > li {
    position: relative;
    padding: 20px;
    color: var(--co_1);
    line-height: 1.4;
    text-align: center;
    background: linear-gradient(
        90deg,
        rgba(244, 215, 147, 1) 0%,
        rgba(228, 198, 128, 1) 5%,
        rgba(194, 155, 90, 1) 30%,
        rgba(246, 234, 174, 1) 50%,
        rgba(194, 155, 90, 1) 60%,
        rgba(228, 198, 128, 1) 95%,
        rgba(244, 215, 147, 1) 100%
    );
    border-radius: 20px;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2));
    overflow: hidden;
}

.sec_ticket .pg_1 > li + li {
    margin-top: 20px;
}
.sec_ticket .pg_1 > li::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background-color: var(--co_1);
    border-radius: 15px;
}
.sec_ticket .pg_1.end > li {
    pointer-events: none;
}
.sec_ticket .pg_1.end > li::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    background-image: url(../img/ico/end_1.svg?y=25);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50% auto;
    z-index: 10;
}
.sec_ticket .pg_1 a {
    position: relative;
    display: block;
    z-index: 10;
}
.sec_ticket .pg_1 .ttl {
    font-size: 30px;
    font-weight: 700;
}
.sec_ticket .pg_1 .ttl span {
    font-size: 70%;
}
.sec_ticket .pg_1 .date {
    padding: 10px;
    margin-top: 15px;
    color: var(--co_1);
    font-size: 20px;
    font-weight: 700;
    background-color: var(--co_3);
    border-radius: 10px;
}
.sec_ticket .pg_1 .desc {
    margin-top: 10px;
    font-size: 18px;
    word-break: break-all;
}
.sec_ticket .pg_1 .note {
    padding-top: 15px;
    font-size: 14px;
}
@media (max-width: 999px) {
    .sec_ticket {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .sec_ticket .sec_inner {
        padding: 0 10px;
    }
    .sec_ticket .price_1 {
        width: 300px;
        max-width: 100%;
    }
    .sec_ticket .ttl_2 {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .sec_ticket .pg_1 {
        margin: 20px auto 0;
    }

    .sec_ticket .pg_1 > li {
        padding: 15px;
    }

    .sec_ticket .pg_1 > li + li {
        margin-top: 20px;
    }
    .sec_ticket .pg_1.end > li::after {
        background-size: 70% auto;
    }
    .sec_ticket .pg_1 .ttl {
        font-size: 20px;
    }
    .sec_ticket .pg_1 .ttl span {
        font-size: 70%;
    }
    .sec_ticket .pg_1 .date {
        margin-top: 15px;
        font-size: 14px;
    }
    .sec_ticket .pg_1 .desc {
        margin-top: 10px;
        font-size: 14px;
    }
    .sec_ticket .pg_1 .note {
        padding-top: 15px;
        font-size: 12px;
    }
}
