@charset "utf-8";

@media print {
    html {
        display: none;
    }
}
/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #07072a;
    --co_4: #dfa900;
    --ff_en_1: "Montserrat", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --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_1);
    line-height: 1.5;
    font-family: var(--ff_go_1);
    font-weight: 400;
    background-color: var(--co_3);

    overflow: hidden;
}

@media (min-width: 1000px) {
    body {
        min-width: 1180px;
        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_1);
    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 (max-width: 999px) {
    .body::before {
        min-width: auto;
        background-position: left 10% center;
    }
}

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

.is_page_scr .header_1 {
    background-color: rgba(7, 7, 42, 0.9);
}
.is_megamenu_show .header_1 {
    background-color: rgba(7, 7, 42, 0);
}
.header_1 .header_inner {
    position: relative;
    height: 60px;
}

.header_1 .logo_1 {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    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 .logo_2 {
    margin: 0 auto 20px;
    width: 250px;
}

.header_1 .logo_2 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%;
    font-family: var(--ff_en_1);
    font-size: 10px;
    color: var(--co_1);
    text-align: center;
    line-height: 1;
    transition: 0.3s ease-in-out;
}
.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(7, 7, 42, 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 > a {
    display: block;
    padding: 20px 0;
    font-family: var(--ff_mi_1);
    color: var(--co_4);
    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;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

.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: 15px;
}
.header_1 .nav_2 a {
    display: block;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.header_1 .nav_2 .x a {
    background-image: url(../img/ico/sns_x_1.svg);
}
.header_1 .nav_2 .ig a {
    background-image: url(../img/ico/sns_ig_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 .logo_1 {
        left: 20px;
        width: 80px;
    }
    .header_1 .logo_2 {
        margin-bottom: 20px;
        width: 140px;
    }
    .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_2 a {
        width: 25px;
        height: 25px;
    }
}

/* ---------------------------------------------------- */
/* footer_1 */
/* ---------------------------------------------------- */
.footer_1 {
    position: relative;
    padding-top: 50px;
    border-top: 1px solid var(--co_1);
}

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.footer_1 .contact_1 {
    text-align: center;
}
.footer_1 .copyright_1 {
    margin-top: 20px;
    text-align: center;
}

.footer_1 .nav_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 20px;
    background-color: var(--co_2);
    font-family: var(--ff_en_1);
    font-size: 18px;
    font-weight: 700;
}
.footer_1 .nav_1::before {
    content: "BACK NUMBER";
    margin-right: 20px;
    color: var(--co_4);
}

.footer_1 .nav_1 > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-bottom: -20px;
}
.footer_1 .nav_1 > ul > li {
    margin-right: 20px;
    margin-bottom: 20px;
}
.footer_1 .nav_1 a {
    display: block;
}
.footer_1 .btn_1 {
    position: fixed;
    right: 0;
    bottom: 90px;
    display: block;
    width: 200px;
    z-index: 10;
}
.footer_1 .btn_2 {
    position: fixed;
    right: -100px;
    bottom: 20px;
    display: block;
    width: 100px;
    z-index: 10;
}
.is_page_scr .footer_1 .btn_2 {
    right: 20px;
}

@media (max-width: 999px) {
    .footer_1 {
        padding-top: 30px;
    }
    .footer_1 .nav_1 {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        padding: 10px;
        padding-bottom: 70px;
        background-color: var(--co_2);
        font-family: var(--ff_en_1);
        font-size: 14px;
        font-weight: 700;
    }
    .footer_1 .nav_1::before {
        content: "BACK NUMBER";
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        text-align: center;
    }
    .footer_1 .nav_1 > ul {
        margin-right: -10px;
        margin-bottom: -10px;
    }
    .footer_1 .nav_1 > ul > li {
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .footer_1 .contact_1 {
        font-size: 12px;
    }
    .footer_1 .copyright_1 {
        font-size: 12px;
    }
    .footer_1 .btn_1 {
        display: none;
    }
    .footer_1 .btn_2 {
        bottom: 10px;
        width: 70px;
    }
    .is_page_scr .footer_1 .btn_2 {
        right: 10px;
    }
}

/* ---------------------------------------------------- */
/* bg_1 */
/* ---------------------------------------------------- */
.bg_1 {
    background-image: url(../img/bg/2.jpg);
    background-size: 90%;
    background-position: center top;
    background-repeat: repeat-y;
}

/* ---------------------------------------------------- */
/* sec_mv */
/* ---------------------------------------------------- */
.sec_mv {
    padding-top: 90px;
    padding-bottom: 90px;
    /* height: auto !important; */
    min-height: 600px;
    background-image: url(../img/bg/1.jpg);
    background-size: cover;
    background-position: center;
}
.sec_mv::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 200px;
    background: linear-gradient(0deg, rgba(7, 7, 42, 1) 0%, rgba(7, 7, 42, 0) 100%);
}
.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: 100%;
    max-width: 800px;
    height: 100%;
}
.sec_mv .ttl_1 > span {
    height: 100%;
    background-size: contain;
}
.sec_mv .btn_1 {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    z-index: 10;
}

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

.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: 30px;
        padding-bottom: 30px;
        min-height: auto;
        background-image: url(../img/bg/1.jpg);
    }
    .sec_mv .ttl_1 {
        width: 80%;
    }
}

/* ---------------------------------------------------- */
/* sec_artist */
/* ---------------------------------------------------- */
.sec_artist .ttl_2 {
    margin-top: 60px;
    margin-bottom: 20px;
    padding: 5px;
    font-size: 30px;
    color: var(--co_2);
    font-weight: 900;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 1);
    background: linear-gradient(
        0deg,
        rgba(238, 201, 131, 1) 0%,
        rgba(140, 100, 0, 1) 20%,
        rgba(241, 212, 143, 1) 40%,
        rgba(242, 236, 225, 1) 60%,
        rgba(223, 60, 59, 1) 80%,
        rgba(138, 67, 148, 1) 100%
    );
}

.sec_artist .ttl_2 > span:nth-of-type(2) {
    font-size: 70%;
}
.sec_artist .list_1 > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -30px;
    margin-bottom: -30px;
}
.sec_artist .list_1 > ul + ul {
    margin-top: 30px;
}
.sec_artist .list_1 > ul > li {
    margin-right: 30px;
    margin-bottom: 30px;
    width: calc(100% / 3 - 30px);
}
.sec_artist .list_1 a {
    display: block;
}

.sec_artist .list_1 .hl .img {
    position: relative;
}

.sec_artist .list_1 .hl .img::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    display: block;
    width: 100%;
    height: 40px;
    background-image: url(../img/ico/hl_1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.sec_artist .list_1 .img {
    pointer-events: none;
}
.sec_artist .list_1 .name {
    margin-top: 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}
.sec_artist .list_1 .name span {
    display: block;
    font-size: 70%;
}

.sec_artist .andmore {
    margin-top: 40px;
    font-size: 20px;
    text-align: right;
}
@media (max-width: 999px) {
    .sec_artist .ttl_2 {
        margin-top: 40px;
        margin-bottom: 20px;
        padding: 5px;
        font-size: 20px;
    }
    .sec_artist .list_1 > ul + ul {
        margin-top: 20px;
    }
    .sec_artist .list_1 > ul > li {
        margin-right: 20px;
        margin-bottom: 20px;
        width: calc(100% / 2 - 20px);
    }

    .sec_artist .list_1 .name {
        font-size: 14px;
    }
    .sec_artist .andmore {
        margin-top: 30px;
        font-size: 16px;
    }
}
/* ---------------------------------------------------- */
/* sec_information */
/* ---------------------------------------------------- */
.sec_information .list_1 {
    font-size: 20px;
}
.sec_information .list_1 > ul > li {
    display: flex;
}
.sec_information .list_1 > ul > li + li {
    margin-top: 15px;
}
.sec_information .list_1 > ul > li:nth-child(n + 6) {
    display: none;
}

.sec_information .list_1 .date {
    flex: none;
    width: 150px;
}
.sec_information .list_1 .ttl {
    display: block;
    font-weight: 700;
}
.sec_information .btn_1 {
    margin-top: 40px;
}

@media (max-width: 999px) {
    .sec_information .list_1 {
        font-size: 15px;
    }
    .sec_information .list_1 > ul > li {
        display: block;
    }

    .sec_information .list_1 .date {
        width: auto;
    }
    .sec_information .btn_1 {
        margin-top: 30px;
    }
}
/* ---------------------------------------------------- */
/* sec_ticket */
/* ---------------------------------------------------- */
.sec_ticket .ttl_2 {
    margin-bottom: 80px;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
}

.sec_ticket .price_1 {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.sec_ticket .price_1 > ul > li {
    display: flex;
    justify-content: center;
}

.sec_ticket .price_1 > ul > li + li {
    margin-top: 10px;
}
.sec_ticket .price_1 > ul > li > span:nth-of-type(1) {
    display: flex;
    align-items: center;
    width: auto;
}

.sec_ticket .price_1 > ul > li > span:nth-of-type(2) {
    width: auto;
}
.sec_ticket .price_1 span > span {
    font-size: 16px;
}
.sec_ticket .ttl_5 {
    margin-top: 100px;
}

.sec_ticket .list_3 {
    margin-bottom: 60px;
}

.sec_ticket .ttl_3 {
    font-size: 16px;
    font-weight: 700;
}

.sec_ticket * + .ttl_3 {
    margin-top: 20px;
}
.sec_ticket .ttl_4 {
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.sec_ticket .list_2 {
    margin: 30px auto 0;
    width: max-content;
    max-width: 100%;
    font-size: 13px;
}

.sec_ticket .img_1 {
    margin: 0 auto;
    width: 1090px;
}
.sec_ticket .list_5 {
    margin: 0 auto 20px;
    width: max-content;
}
.sec_ticket .list_5 > ul > li {
    display: flex;
    align-items: center;
}
.sec_ticket .list_5 > ul > li + li {
    margin-top: 20px;
}
.sec_ticket .list_5 .seat {
    margin-right: 20px;
    width: 100px;
    height: 50px;
    border: 1px solid var(--co_1);
}
.sec_ticket .list_5 > ul > li:nth-child(1) .seat {
    background-color: #f8b62d;
}
.sec_ticket .list_5 > ul > li:nth-child(2) .seat {
    background-color: #00a0e9;
}

.sec_ticket .list_5 > ul > li:nth-child(3) .seat {
    background-color: #172c67;
}

.sec_ticket .list_5 .name {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.sec_ticket .desc_5 {
    margin-bottom: 50px;
    font-size: 13px;
    text-align: center;
}
.sec_ticket .desc_1 {
    margin-top: 20px;
    margin-bottom: 60px;
    text-align: right;
}
.sec_ticket .desc_2 {
    padding: 30px 10px;
    margin-top: 20px;
    margin-bottom: 60px;
    color: var(--co_6);
    font-size: 30px;
    text-align: center;
    font-weight: 700;
    border: 2px solid var(--co_6);
}
.sec_ticket .box_1 {
    margin-top: 50px;
    margin-bottom: 80px;
    padding: 40px 30px;
    color: var(--co_2);
    background-color: var(--co_3);
}
.sec_ticket .box_1 .ttl {
    margin-bottom: 10px;
    font-size: 27px;
    text-align: center;
}
.sec_ticket .box_1 * + .ttl {
    margin-top: 40px;
}
.sec_ticket .box_1 .desc {
    margin: 0 auto;
    max-width: max-content;
    font-size: 18px;
}
.sec_ticket .price_2 {
    margin-bottom: 20px;
    text-align: center;
}
.sec_ticket .price_2 .name {
    display: block;
    font-size: 40px;
    font-weight: 700;
}
.sec_ticket .price_2 .price {
    display: block;
    font-size: 30px;
    font-weight: 700;
}
.sec_ticket .price_2 .price > span {
    font-size: 16px;
}
.sec_ticket .ttl_6 {
    margin-top: 60px;
    margin-bottom: 20px;
}
.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(238, 201, 131, 1) 0%, rgba(140, 100, 0, 1) 100%);
    border-radius: 20px;
    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 > li > * {
    position: relative;
    display: block;
    color: var(--co_2);
    z-index: 10;
}
.sec_ticket .pg_1 .ttl {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}
.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_4);
    border-radius: 10px;
}
.sec_ticket .pg_1 .desc {
    margin-top: 10px;
    font-size: 18px;
    word-break: break-all;
}
.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;
}
.sec_ticket .desc_4 {
    margin: 20px 0;
    font-size: 16px;
}
.sec_ticket .btn_1 {
    margin-top: 50px;
    margin-bottom: 50px;
}
.sec_ticket .btn_2 {
    position: relative;
    margin-bottom: 30px;
}
.sec_ticket .btn_2.is_soldout {
    pointer-events: none;
}

.sec_ticket .btn_2.is_soldout::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url(../img/ico/end_1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 80%;
}

.sec_ticket .desc_3 {
    margin-bottom: 60px;
}
.sec_ticket .desc_6 {
    margin-top: 10px;
    font-size: 13px;
}
@media (max-width: 999px) {
    .sec_ticket .ttl_2 {
        margin-bottom: 40px;
        font-size: 25px;
    }

    .sec_ticket .price_1 {
        font-size: 20px;
    }

    .sec_ticket .price_1 span > span {
        font-size: 11px;
    }
    .sec_ticket .ttl_4 {
        margin-bottom: 20px;
    }

    .sec_ticket .list_3 {
        margin-bottom: 40px;
    }

    .sec_ticket .ttl_3 {
        font-size: 16px;
    }

    .sec_ticket .ttl_4 {
        font-size: 16px;
    }

    .sec_ticket .ttl_7 {
        margin-top: 70px;
    }
    .sec_ticket .list_2 {
        font-size: 11px;
    }
    .sec_ticket .img_1 {
        margin-bottom: 20px;
        width: auto;
    }
    .sec_ticket .list_5 > ul > li + li {
        margin-top: 15px;
    }
    .sec_ticket .list_5 .seat {
        margin-right: 15px;
        width: 80px;
        height: 40px;
    }
    .sec_ticket .list_5 .name {
        font-size: 16px;
    }

    .sec_ticket .desc_5 {
        margin-bottom: 30px;
        font-size: 11px;
    }
    .sec_ticket .desc_1 {
        margin-top: 20px;
        font-size: 11px;
    }
    .sec_ticket .desc_2 {
        font-size: 20px;
    }
    .sec_ticket .box_1 {
        padding: 40px 20px;
        margin-bottom: 60px;
    }
    .sec_ticket .box_1 .ttl {
        font-size: 20px;
    }
    .sec_ticket .box_1 * + .ttl {
        margin-top: 30px;
    }
    .sec_ticket .box_1 .desc {
        max-width: none;
        font-size: 14px;
    }

    .sec_ticket .price_2 .name {
        font-size: 20px;
    }
    .sec_ticket .price_2 .price {
        font-size: 20px;
    }
    .sec_ticket .price_2 .price > span {
        font-size: 12px;
    }
    .sec_ticket .ttl_6 {
        margin-top: 60px;
    }
    .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;
    }
    .sec_ticket .btn_1 {
        margin-top: 20px;
    }
    .sec_ticket .btn_2 {
        margin-bottom: 10px;
    }
    .sec_ticket .desc_3 {
        margin-bottom: 30px;
    }
    .sec_ticket .btn_2.is_soldout::after {
        background-size: contain;
    }
}
/* ---------------------------------------------------- */
/* sec_notice */
/* ---------------------------------------------------- */
@media (max-width: 999px) {
    .sec_notice .list_1 {
        font-size: 12px;
    }
}
/* ---------------------------------------------------- */
/* sec_access */
/* ---------------------------------------------------- */
.sec_access .desc_1 {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}

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

.sec_access * + .ttl_2 {
    margin-top: 40px;
}
.sec_access .ttl_3 {
    font-size: 18px;
}

.sec_access * + .ttl_3 {
    margin-top: 20px;
}
.sec_access .list_1 {
    margin-left: 1em;
    font-size: 18px;
}
@media (max-width: 999px) {
    .sec_access .desc_1 {
        font-size: 16px;
    }
    .sec_access .desc_1 > span:nth-of-type(1) {
        display: block;
        margin-right: 0;
    }

    .sec_access .map_1 {
        margin-bottom: 60px;
    }
    .sec_access .map_1 iframe {
        height: 400px;
    }
    .sec_access * + .ttl_2 {
        margin-top: 60px;
    }
    .sec_access .ttl_3 {
        font-size: 14px;
    }

    .sec_access * + .ttl_3 {
        margin-top: 20px;
    }
    .sec_access .list_1 {
        font-size: 14px;
    }
}

/* ---------------------------------------------------- */
/* sec_archive */
/* ---------------------------------------------------- */
.sec_archive {
    padding-top: 160px;
}
.sec_archive .ttl_1 {
    margin-bottom: 80px;
}
.sec_archive .list_1 > ul > li {
    position: relative;
    display: flex;
}
.sec_archive .list_1 > ul > li + li {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--co_1);
}

.sec_archive .list_1 .date {
    flex: none;
    width: 150px;
    font-size: 20px;
}
.sec_archive .list_1 .ttl {
    display: block;
    font-size: 20px;
    font-weight: 700;
}
.sec_archive .list_1 .desc {
    font-size: 14px !important;
    word-break: break-all;
}
.sec_archive .list_1 a {
    text-decoration: underline;
}

.sec_archive .btn_1 {
    margin: 40px auto 0;
}
@media (min-width: 1000px) {
    .sec_archive .list_1 a:hover {
        opacity: 0.6;
    }
}
@media (max-width: 999px) {
    .sec_archive {
        padding-top: 80px;
    }
    .sec_archive .ttl_1 {
        margin-bottom: 40px;
    }
    .sec_archive .list_1 {
        margin-bottom: 40px;
    }
    .sec_archive .list_1 > ul > li {
        display: block;
    }
    .sec_archive .list_1 > ul > li + li {
        padding-top: 30px;
        margin-top: 30px;
    }

    .sec_archive .list_1 .date {
        width: auto;
        font-size: 14px;
    }
    .sec_archive .list_1 .ttl {
        margin-bottom: 10px;
        display: block;
        font-size: 18px;
    }
}
