@charset "utf-8";

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

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #2ea7e0;
    --co_4: #0b558e;
    --gr_1: linear-gradient(90deg, rgba(0, 12, 38, 1) 0%, rgba(23, 34, 87, 1) 100%);
    --gr_2: linear-gradient(90deg, rgba(1, 73, 140, 1) 0%, rgba(11, 85, 142, 1) 100%);
}

/* ---------------------------------------------------- */
/* 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: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    background: var(--gr_1);
    overflow: hidden;
}

@media (min-width: 1000px) {
    body {
        min-width: 1120px;
        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_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}

/* ---------------------------------------------------- */
/* 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;
    background-color: rgba(0, 0, 0, 0.8);
    transition: 0.3s ease-in-out;
}

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

.header_1 .site_logo {
    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 .site_logo {
    opacity: 1;
    pointer-events: all;
}

.header_1 .site_logo 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;
    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: 3px;
    width: 100%;
    font-family: "Poppins", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    color: var(--co_1);
    font-size: 11px;
    text-align: center;
    line-height: 1;
    transition: 0.3s ease-in-out;
}
.header_1 .btn_toggle_megamenu.is_show::after {
    opacity: 0;
}

.header_1 .btn_toggle_megamenu div {
    position: relative;
    width: 30px;
    margin-bottom: 10px;
}

.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(-7px);
}

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

.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: rgba(0, 0, 0, 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;
    padding: 20px 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_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: 50px;
    height: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
}

.header_1 .nav_2 .x a,
.header_1 .nav_3 .x a {
    background-image: url(../img/ico/sns_x_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 .site_logo {
        left: 20px;
        width: 50px;
    }
    .header_1 .btn_toggle_megamenu {
        right: 20px;
    }
    .header_1 .toggle_megamenu_wrap .toggle_inner {
        padding: 60px 0;
        display: block;
    }

    .header_1 .nav_1 > ul > li > a {
        padding: 15px 0;
        font-size: 20px;
    }
    .header_1 .nav_2 {
        display: none;
    }
}

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

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    width: 900px;
    border-top: 1px solid var(--co_1);
}
.footer_1 .sponsor_1 {
    font-size: 13px;
}
.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 {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    font-size: 13px;
}
.footer_1 .contact_1 .ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    padding: 5px 20px;
    border: 1px solid var(--co_1);
}

@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: 12px;
    }
    .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: 12px;
        text-align: center;
    }
    .footer_1 .contact_1 {
        display: block;
    }
    .footer_1 .contact_1 .ttl {
        margin: 0 auto 10px;
        padding: 5px 20px;
        max-width: max-content;
        border: 1px solid var(--co_1);
    }
}

/* ---------------------------------------------------- */
/* sec_mv_wrap */
/* ---------------------------------------------------- */
.sec_mv_wrap {
    padding-top: 0;
    padding-bottom: 0;
}

.sec_mv_wrap .ttl_1 {
    position: absolute;
    left: 50%;
    top: calc(50% - 60px);
    width: 465px;
}
.sec_mv_wrap .desc_1 {
    position: absolute;
    right: calc(50% + 130px);
    top: calc(50% + 200px);
    width: 390px;
}
.sec_mv_wrap .img_1 {
    min-height: 650px;
    height: 100%;
}
.sec_mv_wrap .img_1 > span {
    height: 100%;
    background-size: 4000px auto;
}
.sec_mv_wrap .btn_1 {
    position: absolute;
    left: 50%;
    bottom: 60px;
    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_3);
}

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

.sec_mv_wrap .btn_1 .text {
    display: block;
    margin-top: 75px;
    margin-left: -30px;
    font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
    font-size: 12px;
    color: var(--co_1);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.25;
    animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
    to {
        opacity: 1;
    }
}
@media (min-width: 1000px) and (orientation: portrait) {
    .sec_mv_wrap .img_1 {
        height: 50vh !important;
    }
}
@media (max-width: 999px) {
    .sec_mv_wrap .ttl_1 {
        position: absolute;
        left: 50%;
        top: 22%;
        transform: translateX(-50%);
        width: 80%;
    }
    .sec_mv_wrap .desc_1 {
        position: absolute;
        left: 15%;
        top: 65%;
        width: 60%;
    }
    .sec_mv_wrap .img_1 {
        min-height: auto;
        height: auto !important;
    }
    .sec_mv_wrap .btn_1 {
        left: auto;
        right: 30px;
        bottom: 30px;
    }
}

/* ---------------------------------------------------- */
/* sec_about_wrap */
/* ---------------------------------------------------- */
.sec_about_wrap .deco_1 {
    top: 100px;
}
.sec_about_wrap .deco_2 {
    top: 620px;
}
.sec_about_wrap .clms_wrap_1 {
    display: flex;
    justify-content: space-between;
}
.sec_about_wrap .clms_wrap_1 > .clm_wrap {
    margin-bottom: 70px;
    width: calc(100% / 2 - 20px);
}
.sec_about_wrap .ttl_1 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}
.sec_about_wrap .ttl_1 > span {
    font-size: 25px;
}
.sec_about_wrap .desc_1 {
    font-size: 17px;
    line-height: 2;
    word-break: word-break;
}
.sec_about_wrap .btn_1 {
    display: block;
    padding: 20px;
    background-color: #595757;
}
.sec_about_wrap .btn_toggle {
    margin-top: 20px;
}
.sec_about_wrap .btn_toggle > span::before {
    content: "Read More";
}
.sec_about_wrap .btn_toggle.is_show > span::before {
    content: "Close";
}

@media (min-width: 1000px) {
    .sec_about_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(2) {
        height: 405px;
        padding-right: 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .sec_about_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(2)::-webkit-scrollbar {
        width: 5px;
        height: 0;
    }

    .sec_about_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(2)::-webkit-scrollbar-track {
        border-radius: 0;
        background-color: var(--co_3);
    }

    .sec_about_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(2)::-webkit-scrollbar-thumb {
        background-color: var(--co_1);
        border-radius: 7px;
    }

    .sec_about_wrap .desc_1 {
        display: block !important;
    }
}
@media (max-width: 999px) {
    .sec_about_wrap .clms_wrap_1 {
        display: block;
    }
    .sec_about_wrap .clms_wrap_1 > .clm_wrap {
        margin-bottom: 40px;
        width: auto;
    }
    .sec_about_wrap .ttl_1 {
        margin-top: 15px;
        font-size: 16px;
    }
    .sec_about_wrap .ttl_1 > span {
        font-size: 20px;
    }
    .sec_about_wrap .desc_1 {
        font-size: 15px;
    }
    .sec_about_wrap .btn_1 {
        padding: 10px;
    }
    .sec_about_wrap .btn_toggle {
        font-size: 15px;
    }
}

/* ---------------------------------------------------- */
/* sec_information_wrap */
/* ---------------------------------------------------- */
.sec_information_wrap .list_1 {
    font-size: 20px;
}
.sec_information_wrap .list_1 > ul > li {
    display: flex;
}
.sec_information_wrap .list_1 > ul > li + li {
    margin-top: 15px;
}
.sec_information_wrap .list_1 > ul > li:nth-child(n + 6) {
    display: none;
}

.sec_information_wrap .list_1 .date {
    flex: none;
    width: 140px;
}
.sec_information_wrap .list_1 .ttl {
    display: block;
}
.sec_information_wrap .btn_1 {
    margin-top: 40px;
}

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

    .sec_information_wrap .list_1 .date {
        width: auto;
    }
    .sec_information_wrap .list_1 .ttl {
        display: block;
        font-weight: 700;
    }
    .sec_information_wrap .btn_1 {
        margin-top: 40px;
    }
}

/* ---------------------------------------------------- */
/* sec_artist_wrap */
/* ---------------------------------------------------- */
.sec_artist_wrap {
    background: var(--gr_2);
}
.sec_artist_wrap .ttl_2 {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
}
.sec_artist_wrap .list_1 + .ttl_2,
.sec_artist_wrap .andmore + .ttl_2 {
    margin-top: 80px;
}
.sec_artist_wrap .ttl_2::before,
.sec_artist_wrap .ttl_2::after {
    content: "";
    display: block;
    margin: 0 20px;
    width: 50px;
    background-image: url(../img/ico/ttl_1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.sec_artist_wrap .ttl_2::after {
    transform: scaleX(-1);
}
.sec_artist_wrap .ttl_2 span:nth-of-type(1) {
    display: block;
    font-size: 50px;
    line-height: 1;
}
.sec_artist_wrap .ttl_2 span:nth-of-type(2) {
    display: block;
    font-size: 32px;
    color: var(--co_3);
    line-height: 1.4;
}
.sec_artist_wrap .list_1 > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-bottom: -50px;
}
.sec_artist_wrap .list_1 > ul > li {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin-right: 10px;
    margin-bottom: 50px;
    width: calc(100% / 2 - 10px);
}
.sec_artist_wrap .list_1 > ul > li > .clm_wrap {
    width: 100%;
}

.sec_artist_wrap .list_1 > ul > li > .clm_wrap:nth-of-type(2) {
    flex: auto;
}
.sec_artist_wrap .list_1 .img {
    margin-bottom: 10px;
}
.sec_artist_wrap .list_1 .name {
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}
.sec_artist_wrap .list_1 .link {
    display: flex;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.sec_artist_wrap .list_1 .link > li {
    flex: auto;
    width: auto;
}
.sec_artist_wrap .list_1 .link > li:nth-child(2) {
    /* margin: 0 5px; */
    margin-left: 5px;
}
.sec_artist_wrap .list_1 .link > li:nth-child(3) {
    display: none;
    opacity: 0.3;
    pointer-events: none;
}
.sec_artist_wrap .list_1 .link a {
    display: block;
    padding: 5px;
    font-weight: 500;
    text-align: center;
    background: linear-gradient(180deg, rgba(46, 167, 224, 1) 40%, rgba(49, 194, 234, 1) 60%);
}
.sec_artist_wrap .list_1 .desc {
    position: relative;
    padding: 18px 20px;
    height: 100%;
    font-size: 12px;
}
.sec_artist_wrap .list_1 .desc::before {
    content: "";
    position: absolute;
    left: 0;
    top: -5px;
    width: 100%;
    height: 12px;
    background-image: url(../img/ico/comment_1.svg);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}
.sec_artist_wrap .list_1 .desc::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--co_3);
    border-radius: 20px;
    mask-image: url(../img/bg/3.svg);
    mask-size: 1000px auto;
    mask-position: center top;
}
.sec_artist_wrap .andmore {
    margin-top: 40px;
    font-size: 26px;
    font-weight: 700;
    text-align: right;
}
@media (max-width: 999px) {
    .sec_artist_wrap .ttl_2 {
        margin-bottom: 30px;
    }
    .sec_artist_wrap .list_1 + .ttl_2,
    .sec_artist_wrap .andmore + .ttl_2 {
        margin-top: 60px;
    }
    .sec_artist_wrap .ttl_2::before,
    .sec_artist_wrap .ttl_2::after {
        margin: 0 15px;
        width: 30px;
    }
    .sec_artist_wrap .ttl_2 span:nth-of-type(1) {
        font-size: 27px;
    }
    .sec_artist_wrap .ttl_2 span:nth-of-type(2) {
        font-size: 18px;
    }
    .sec_artist_wrap .list_1 > ul {
        margin-right: 0;
        margin-bottom: -50px;
    }
    .sec_artist_wrap .list_1 > ul > li {
        margin-right: 0;
        margin-bottom: 50px;
        width: 100%;
    }
    .sec_artist_wrap .list_1 .img {
        margin-bottom: 5px;
    }
    .sec_artist_wrap .list_1 .name {
        margin-bottom: 10px;
        font-size: 24px;
    }
    .sec_artist_wrap .list_1 .link a {
        font-size: 12px;
    }
    .sec_artist_wrap .list_1 .desc {
        padding: 18px 15px 15px;
        font-size: 11px;
        border-radius: 10px;
    }
    .sec_artist_wrap .andmore {
        margin-top: 20px;
        font-size: 24px;
    }
}
/* ---------------------------------------------------- */
/* sec_ticket_wrap */
/* ---------------------------------------------------- */
.sec_ticket_wrap .price_1 {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.sec_ticket_wrap .price_1 > ul > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec_ticket_wrap .price_1 > ul > li + li {
    margin-top: 20px;
}
.sec_ticket_wrap .price_1 > ul > li > span:nth-of-type(1) {
    position: relative;
    display: flex;
    align-items: center;
    flex: initial;
    width: max-content;
}
.sec_ticket_wrap .price_1 > ul > li.soldout > span:nth-of-type(1)::after {
    content: "";
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 120px;
    height: 60px;
    background-image: url(../img/ico/soldout_1.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.sec_ticket_wrap .price_1 > ul > li > span:nth-of-type(2) {
    flex: initial;
    width: auto;
}
.sec_ticket_wrap .price_1 span > span {
    font-size: 16px;
}
.sec_ticket_wrap .desc_1 {
    margin-top: 20px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: 0;
    width: max-content;
}
.sec_ticket_wrap .ttl_2 {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
}
.sec_ticket_wrap .ttl_3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}
.sec_ticket_wrap * + .ttl_3 {
    margin-top: 40px;
}

.sec_ticket_wrap .ttl_2 + .ttl_3 {
    margin-top: 20px;
}
.sec_ticket_wrap .ttl_4 {
    margin-top: 80px;
    margin-bottom: 10px;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
}
.sec_ticket_wrap .list_1 + .list_1 {
    margin-top: 20px;
}
.sec_ticket_wrap .pg_1 > li {
    position: relative;
    margin-bottom: 20px;
    padding: 20px;
    background-color: var(--co_1);
    color: var(--co_2);
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
}
.sec_ticket_wrap .pg_1.end > li::before {
    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: 50% auto;
}
.sec_ticket_wrap .pg_1 .ttl {
    font-size: 30px;
    font-weight: 700;
}
.sec_ticket_wrap .pg_1 .ttl span {
    font-size: 20px;
}
.sec_ticket_wrap .pg_1 .date {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 20px;
    border-bottom: 1px solid var(--co_2);
}
.sec_ticket_wrap .pg_1 .desc {
    font-size: 20px;
}

.sec_ticket_wrap .pg_1 .desc a {
    color: var(--co_2);
    text-decoration: underline;
}
.sec_ticket_wrap .btn_1 {
    margin-top: 40px;
    margin-bottom: 40px;
}
@media (max-width: 999px) {
    .sec_ticket_wrap .price_1 {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .sec_ticket_wrap .price_1 span > span {
        font-size: 11px;
    }
    .sec_ticket_wrap .price_1 > ul > li.soldout > span:nth-of-type(1)::after {
        right: -70px;
        width: 80px;
        height: 40px;
    }
    .sec_ticket_wrap .desc_1 {
        margin-top: 20px;
        margin-bottom: 40px;
        font-size: 11px;
    }
    .sec_ticket_wrap .ttl_2 {
        font-size: 20px;
    }
    .sec_ticket_wrap .ttl_3 {
        font-size: 16px;
    }
    .sec_ticket_wrap * + .ttl_3 {
        margin-top: 30px;
    }

    .sec_ticket_wrap .ttl_2 + .ttl_3 {
        margin-top: 20px;
    }
    .sec_ticket_wrap .ttl_4 {
        margin-top: 60px;
        font-size: 20px;
    }
    .sec_ticket_wrap .list_1 {
        font-size: 11px;
    }
    .sec_ticket_wrap .pg_1 > li {
        position: relative;
        margin-bottom: 20px;
        padding: 20px;
        background-color: var(--co_1);
        color: var(--co_2);
        font-size: 14px;
        line-height: 1.4;
        text-align: center;
    }
    .sec_ticket_wrap .pg_1 .ttl {
        font-size: 20px;
    }
    .sec_ticket_wrap .pg_1 .ttl span {
        font-size: 14px;
    }
    .sec_ticket_wrap .pg_1 .date {
        font-size: 14px;
    }
    .sec_ticket_wrap .pg_1 .desc {
        font-size: 14px;
    }
    .sec_ticket_wrap .btn_1 {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}
/* ---------------------------------------------------- */
/* sec_goods_wrap */
/* ---------------------------------------------------- */
.sec_goods_wrap .img_1 {
    display: block;
}
.sec_goods_wrap .ttl_3 {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}
.sec_goods_wrap .ttl_4 {
    margin-top: 80px;
    margin-bottom: 40px;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
}
.sec_goods_wrap .desc_1 {
    font-size: 20px;
    text-align: center;
}
.sec_goods_wrap .desc_2 {
    font-size: 20px;
    text-align: center;
}
.sec_goods_wrap .desc_1 span {
    font-size: 14px;
}
.sec_goods_wrap .img_2 {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--co_1);
}
.sec_goods_wrap .list_1 {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: max-content;
}
.sec_goods_wrap .btn_1 {
    margin-top: 80px;
}
@media (max-width: 999px) {
    .sec_goods_wrap .list_1 {
        font-size: 11px;
    }
    .sec_goods_wrap .ttl_3 {
        font-size: 20px;
    }
    .sec_goods_wrap .ttl_4 {
        margin-top: 60px;
        margin-bottom: 20px;
        font-size: 25px;
    }
    .sec_goods_wrap .desc_1 {
        font-size: 16px;
        text-align: center;
    }
    .sec_goods_wrap .desc_2 {
        font-size: 14px;
        text-align: left;
    }
    .sec_goods_wrap .desc_1 span {
        font-size: 11px;
    }
    .sec_goods_wrap .btn_1 {
        margin-top: 40px;
    }
}
/* ---------------------------------------------------- */
/* sec_timetable_wrap */
/* ---------------------------------------------------- */
.sec_timetable_wrap .deco_1 {
    top: -60px;
}
.sec_timetable_wrap .deco_2 {
    top: -30px;
}
.sec_timetable_wrap .img_1 {
    display: block;
}
.sec_timetable_wrap .img_1 + .img_1 {
    margin-top: 50px;
}
@media (max-width: 999px) {
    .sec_timetable_wrap .deco_1 {
        top: -40px;
    }
    .sec_timetable_wrap .deco_2 {
        top: -20px;
    }
    .sec_timetable_wrap .img_1 + .img_1 {
        margin-top: 30px;
    }
}

/* ---------------------------------------------------- */
/* sec_access_wrap */
/* ---------------------------------------------------- */
.sec_access_wrap .ttl_2 {
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
}
.sec_access_wrap .map_1 + .ttl_2 {
    margin-top: 80px;
}
.sec_access_wrap .desc_1 {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}
.sec_access_wrap .map_1 iframe {
    width: 100%;
    height: 600px;
}
@media (max-width: 999px) {
    .sec_access_wrap .ttl_2 {
        margin-bottom: 20px;
        font-size: 22px;
    }
    .sec_access_wrap .map_1 + .ttl_2 {
        margin-top: 80px;
    }
    .sec_access_wrap .desc_1 {
        margin-bottom: 20px;
        font-size: 14px;
    }
    .sec_access_wrap .map_1 iframe {
        height: 300px;
    }
}

/* ---------------------------------------------------- */
/* sec_radio_wrap */
/* ---------------------------------------------------- */
.sec_radio_wrap .box_1 {
    padding: 50px;
    background-color: var(--co_1);
    border-radius: 30px;
}
.sec_radio_wrap .list_1 > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-right: -60px;
}
.sec_radio_wrap .list_1 > ul > li {
    margin-right: 60px;
    width: 300px;
}
.sec_radio_wrap .list_1 a {
    display: block;
}
@media (max-width: 999px) {
    .sec_radio_wrap .box_1 {
        padding: 30px 50px;
        border-radius: 20px;
    }
    .sec_radio_wrap .list_1 > ul {
        margin-right: 0;
        margin-bottom: -30px;
    }
    .sec_radio_wrap .list_1 > ul > li {
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
    }
    .sec_radio_wrap .list_1 a {
        display: block;
    }
}
