@charset "utf-8";

/* ------------------------- */
/* 変数 */
/* ------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #333333;
    --co_4: #fe4f00;

    --ff_en_1:
        "Lexend Zetta", "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;

    --ff_en_2: "Roboto", "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;

    --ff_go_1: "Roboto", "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;

    --ff_go_2: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;

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

@media print {
    img {
        display: none;
    }
}

/* ------------------------- */
/* 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_1);
    overflow: hidden;
}

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

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

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

/* ------------------------- */
/* a */
/* ------------------------- */
a {
    color: var(--co_3);
    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;
}

/* ------------------------- */
/* contents */
/* ------------------------- */
@media (min-width: 1000px) {
    .contents {
        padding-top: 80px;
    }
}

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

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

    .header_1 .logo_1 {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 100px;
    }

    .header_1 .logo_1 a {
        display: block;
    }

    .header_1 .nav_1 {
        position: absolute;
        right: 210px;
        top: 0;
    }
    .header_1 .nav_1 > ul {
        display: flex;
    }
    .header_1 .nav_1 > ul > li + li {
        margin-left: 30px;
    }
    .header_1 .nav_1 a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px;
        font-family: var(--ff_en_1);
        font-weight: 500;
        letter-spacing: -0.15em;
    }

    .header_1 .nav_2 {
        position: absolute;
        right: 0;
        top: 0;
    }
    .header_1 .nav_2 > ul {
        display: flex;
    }
    .header_1 .nav_2 a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 180px;
        height: 80px;
        color: var(--co_1);
        font-size: 18px;
        font-weight: 700;
        background-image: url(../img/bg/1_c.png?v=4), url(../img/bg/7.svg?v=4);
        background-size:
            500 auto,
            cover;
    }

    .header_1 .btn_toggle_megamenu {
        display: none;
    }

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

@media (min-width: 1000px) {
    .header_1 .nav_2 a:hover {
        background-color: var(--co_3);
    }
}
@media (max-width: 999px) {
    .header_1 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 100;
        transition: 0.3s ease-in-out;
        background-color: var(--co_1);
    }
    .header_1::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-color: var(--co_2);
        opacity: 0;
        transition: 0.3s linear;
        pointer-events: none;
    }
    .is_megamenu_show .header_1::before {
        opacity: 0.7;
    }
    .header_1 .header_inner {
        position: relative;
        height: 50px;
    }
    .header_1 .logo_1 {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 60px;
    }

    .header_1 .logo_1 a {
        display: block;
    }
    .header_1 .nav_1 > ul {
        border-top: 1px solid #c8c8c8;
    }
    .header_1 .nav_1 > ul > li {
        border-bottom: 1px solid #c8c8c8;
    }
    .header_1 .nav_1 a {
        position: relative;
        display: flex;
        align-items: center;
        width: 230px;
        height: 50px;
        font-family: var(--ff_en_1);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: -0.15em;
    }
    .header_1 .nav_1 a::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0px 0px 10px 18px;
        border-color: transparent transparent var(--co_2) transparent;
    }
    .header_1 .nav_2 {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 100%;
    }

    .header_1 .nav_2 a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        color: var(--co_1);
        font-size: 18px;
        font-weight: 700;
        background-image: url(../img/bg/1_c.png?v=4), url(../img/bg/7.svg?v=4);
        background-size:
            500 auto,
            cover;
    }

    .header_1 .btn_toggle_megamenu {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-image: url(../img/bg/1_c.png?v=4), url(../img/bg/7.svg?v=4);
        background-size:
            500 auto,
            cover;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        z-index: 110;
    }

    .header_1 .btn_toggle_megamenu > span {
        position: relative;
        display: block;
        width: 20px;
        height: 20px;
    }
    .header_1 .btn_toggle_megamenu > span::before,
    .header_1 .btn_toggle_megamenu > span > span::before,
    .header_1 .btn_toggle_megamenu > span > span::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--co_1);
        transform-origin: center center;
        transition: 0.3s ease-in-out;
        transform-origin: center;
    }
    .header_1 .btn_toggle_megamenu > span > span::before {
        transform: translateY(-1px);
    }
    .header_1 .btn_toggle_megamenu > span > span::before {
        transform: translateY(-7px);
    }

    .header_1 .btn_toggle_megamenu > span > span::after {
        transform: translateY(7px);
    }
    .header_1 .btn_toggle_megamenu.is_show > span::before {
        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 {
        transform: translateY(-50%) rotate(45deg);
    }

    .header_1 .toggle_megamenu {
        display: none;
        position: fixed;
        right: 0;
        top: 0;
        padding: 60px 40px 60px;
        width: max-content;
        height: 100%;
        background-color: var(--co_1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }

    .header_1 .toggle_megamenu .toggle_inner {
    }
}

/* ------------------------- */
/* footer_1 */
/* ------------------------- */
.footer_1 {
    position: relative;
    padding-top: 130px;
    padding-bottom: 30px;
    background-color: #1a1a1a;
    background-image: url(../img/logo/uk_1.svg?v=4);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 1440px auto;
}

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

.footer_1 .logo_1 {
    margin-bottom: 20px;
    width: 350px;
}

.footer_1 .nav_1 {
    margin-bottom: 20px;
}
.footer_1 .nav_2 {
    position: absolute;
    right: 0;
    bottom: 38px;
}
.footer_1 .nav_1 > ul,
.footer_1 .nav_2 > ul {
    display: flex;
}
.footer_1 .nav_1 > ul > li + li,
.footer_1 .nav_2 > ul > li + li {
    margin-left: 10px;
}
.footer_1 .nav_1 a,
.footer_1 .nav_2 a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 260px;
    height: 50px;
    color: var(--co_1);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
    background-color: #999999;
    border-radius: 50px;
}
.footer_1 .nav_1 a img,
.footer_1 .nav_2 a img {
    margin-right: 20px;
    width: 15px;
}
.footer_1 .nav_1 a span,
.footer_1 .nav_2 a span {
    transform: translateY(1px);
}
.footer_1 .nav_3 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.footer_1 .nav_3 > ul {
    display: flex;
}
.footer_1 .nav_3 > ul > li + li {
    margin-left: 10px;
}
.footer_1 .nav_3 a {
    display: block;
    width: 30px;
}
.footer_1 .copyright_1 {
    color: #999999;
    font-size: 12px;
}

@media (max-width: 999px) {
    .footer_1 {
        padding-top: 50px;
        padding-bottom: 20px;
        background-size: 100% auto;
    }

    .footer_1 .footer_inner {
        width: calc(100% - 40px);
    }

    .footer_1 .logo_1 {
        margin: 0 auto 25px;
        width: 170px;
    }

    .footer_1 .nav_1 {
        margin-bottom: 30px;
    }
    .footer_1 .nav_2 {
        position: static;
        margin-bottom: 30px;
    }
    .footer_1 .nav_1 > ul,
    .footer_1 .nav_2 > ul {
        display: block;
    }
    .footer_1 .nav_1 > ul > li + li,
    .footer_1 .nav_2 > ul > li + li {
        margin-left: 0;
        margin-top: 10px;
    }
    .footer_1 .nav_1 a,
    .footer_1 .nav_2 a {
        margin: 0 auto;
        width: 230px;
        height: 50px;
        font-size: 14px;
    }

    .footer_1 .nav_3 {
        position: static;
        margin-bottom: 30px;
    }
    .footer_1 .nav_3 > ul {
        justify-content: center;
    }
    .footer_1 .nav_3 a {
        width: 40px;
    }
    .footer_1 .copyright_1 {
        font-size: 11px;
        text-align: center;
    }
}

/* ------------------------- */
/* sec_about */
/* ------------------------- */
.sec_about {
    padding-top: 130px;
    padding-bottom: 130px;
    background-image: url(../img/about/1.svg?v=4), url(../img/bg/1_c.png?v=4);
    background-repeat: no-repeat, repeat;
    background-position: center bottom;
    background-size:
        1440px auto,
        500px auto;
}
.sec_about .ttl_1 {
    margin-bottom: 30px;
    line-height: 1;
}

.sec_about .ttl_1 > span:nth-of-type(1) {
    display: block;
    margin-bottom: 20px;
    font-family: var(--ff_en_1);
    font-weight: 500;
    letter-spacing: -0.15em;
}
.sec_about .ttl_1 > span:nth-of-type(2) {
    display: block;
    font-family: var(--ff_go_3);
    font-size: 56px;
    font-weight: 500;
    letter-spacing: -0.02em;
    text-decoration-color: var(--co_1);
    text-decoration-line: underline;
    text-decoration-thickness: 10px;
    text-underline-offset: -3px;
    text-decoration-skip-ink: none;
}
.sec_about .desc_1 {
    font-size: 22px;
    font-weight: 500;
}
@media (max-width: 999px) {
    .sec_about {
        padding-top: 50px;
        padding-bottom: 50px;
        background-image: url(../img/about/1_sp.svg?v=4), url(../img/bg/1_c.png?v=4);
        background-size:
            100% auto,
            500px auto;
    }
    .sec_about .ttl_1 {
        margin-bottom: 20px;
    }

    .sec_about .ttl_1 > span:nth-of-type(1) {
        margin-bottom: 20px;
        font-size: 10px;
    }
    .sec_about .ttl_1 > span:nth-of-type(2) {
        font-size: 28px;
    }
    .sec_about .desc_1 {
        font-size: 16px;
    }
}
/* ------------------------- */
/* sec_information */
/* ------------------------- */
.sec_information {
    padding-top: 130px;
    padding-bottom: 130px;
    background-image: url(../img/bg/3.svg?v=4);
    background-size: 100% 100%;
    background-position: center top;
}
.sec_information::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/1.png?v=4);
    background-size: 500px auto;
    mix-blend-mode: overlay;
    opacity: 0.5;
}
.sec_information article + article {
    margin-top: 100px;
}
.sec_information .ttl_1 {
    margin-bottom: 80px;
    color: var(--co_1);
}
.sec_information .ttl_2 {
    margin-bottom: 40px;
}

.sec_information .ttl_3 {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 700;
}
.sec_information .ttl_3::before {
    content: "";
    display: block;
    margin-bottom: 20px;
    width: 30px;
    border-top: 1px solid #dcdcdc;
}

.sec_information .list_1 > table {
    width: 100%;
}
.sec_information .list_1_a > table {
    color: var(--co_1);
}
.sec_information .list_1 > table > tbody > tr > th {
    padding: 30px 0;
    width: 290px;
    font-size: 16px;
    font-weight: 700;
    vertical-align: top;
    border-top: 1px solid #dcdcdc;
}
.sec_information .list_1_a > table > tbody > tr > th {
    border-top: 1px solid #565656;
}
.sec_information .list_1 > table > tbody > tr > td {
    padding: 30px 0;
    font-size: 16px;
    font-weight: 700;
    border-top: 1px solid #dcdcdc;
}
.sec_information .list_1_a > table > tbody > tr > td {
    border-top: 1px solid #565656;
}
.sec_information .list_1 td table {
    min-width: 80%;
}
.sec_information .list_1 td table + table {
    margin-top: 20px;
}
.sec_information .list_1 td table th,
.sec_information .list_1 td table td {
    padding: 5px 0;
    width: 25%;
}

.sec_information .list_1 td dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.sec_information .list_1 td dt {
    flex: none;
    margin-bottom: 0.5em;
    padding: 1px 5px;
    width: 80px;
    text-align: center;
    color: var(--co_3);
    background-color: var(--co_1);
}

.sec_information .list_1 td dt:last-of-type {
    margin-bottom: 0;
}

.sec_information .list_1 td dd {
    flex: auto;
    margin-bottom: 0.5em;
    padding: 1px 0 1px 30px;
    width: calc(100% - 110px);
}

.sec_information .list_1 td dd:last-of-type {
    margin-bottom: 0;
}
@media (max-width: 999px) {
    .sec_information {
        padding-top: 70px;
        padding-bottom: 70px;
        background-image: url(../img/bg/3_sp.svg?v=4);
    }
    .sec_information article + article {
        margin-top: 50px;
    }
    .sec_information .ttl_1 {
        margin-bottom: 40px;
    }
    .sec_information .ttl_2 {
        margin-bottom: 20px;
    }

    .sec_information .ttl_3 {
        margin-bottom: 20px;
        font-size: 11px;
    }

    .sec_information .list_1 > table {
        width: 100%;
    }
    .sec_information .list_1 > table > tbody > tr > th {
        padding: 20px 0;
        padding-right: 0;
        width: 1px;
        font-size: 12px;
        white-space: nowrap;
    }
    .sec_information .list_1 > table > tbody > tr > td {
        padding: 20px 0;
        padding-left: 15px;
        font-size: 12px;
    }
    .sec_information .list_1 td table {
        font-size: 9px;
    }
    .sec_information .list_1 td table + table {
        margin-top: 10px;
    }
    .sec_information .list_1 th img {
        margin-top: 10px;
    }
    .sec_information .list_1 td dl {
        display: block;
    }
    .sec_information .list_1 td dt {
        width: 60px;
    }
    .sec_information .list_1 td dd {
        padding: 1px 0 1px 0;
        width: 100%;
    }
}
/* ------------------------- */
/* sec_ticket */
/* ------------------------- */
.sec_ticket {
    padding-top: 130px;
    padding-bottom: 130px;
    background: linear-gradient(125deg, rgba(20, 20, 20, 1) 70%, rgba(83, 83, 83, 1) 100%);
}
.sec_ticket::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/2.png?v=4), url(../img/bg/1_b.png?v=4);
    background-size:
        35px auto,
        500px auto;
}
.sec_ticket .ttl_1 {
    margin-bottom: 80px;
    color: var(--co_1);
}
.sec_ticket .img_1 {
    margin-bottom: 80px;
}

.sec_ticket .nav_1 {
    margin-bottom: 100px;
}

.sec_ticket .nav_1 .item + .item {
    border-top: 1px solid #606060;
}

.sec_ticket .nav_1 .item .ttl_wrap {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 70px;
    background-color: #1a1a1a;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.sec_ticket .nav_1 .item .ttl_wrap .ttl {
    color: var(--co_1);
    font-size: 24px;
    font-weight: 700;
}
.sec_ticket .nav_1 .item .ttl_wrap .cat {
    margin-left: 15px;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: 500;
    background-color: #dedede;
}
.sec_ticket .nav_1 .item .ttl_wrap .cat.co_2 {
    color: var(--co_1);
    background-color: var(--co_4);
}
.sec_ticket .nav_1 .item .ttl_wrap .cat.co_3 {
    color: var(--co_1);
    background-color: #01b0ff;
}

.sec_ticket .nav_1 .item .ttl_wrap .ico {
    position: absolute;
    right: 67px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 24px;
    height: 24px;
    transition: 0.3s ease-in-out;
    background-color: var(--co_4);
    border-radius: 50%;
}

.sec_ticket .nav_1 .item .ttl_wrap .ico::before,
.sec_ticket .nav_1 .item .ttl_wrap .ico::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background-color: var(--co_1);
    transition: 0.3s ease-in-out;
}

.sec_ticket .nav_1 .item .ttl_wrap .ico::before {
    width: 2px;
    height: 12px;
}

.sec_ticket .nav_1 .item.is_show .ttl_wrap .ico::before {
    opacity: 0;
}

.sec_ticket .nav_1 .item .ttl_wrap .ico::after {
    width: 12px;
    height: 2px;
}

.sec_ticket .nav_1 .item .toggle_wrap {
    display: none;
    position: relative;
    padding: 50px 80px 80px;
    background-color: #f2f2f2;
    background-image: url(../img/logo/uk_1_b.svg?v=4);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 85% auto;
    overflow: hidden;
}
.sec_ticket .nav_1 .item .toggle_wrap > * + * {
    margin-top: 30px;
}
.sec_ticket .nav_1 .item .toggle_wrap::after {
    content: "";
    position: absolute;
    right: 50px;
    top: -1px;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 18px 30px 0px 30px;
    border-color: #1a1a1a transparent transparent transparent;
}
.sec_ticket .nav_1 .item .desc {
    font-size: 15px;
    font-weight: 700;
}

.sec_ticket .nav_1 .item .list {
    color: #888888;
    font-weight: 700;
}
.sec_ticket .nav_1 .item .list a {
    color: #888888;
}
.sec_ticket .nav_1 .item .btn {
    display: flex;
}
.sec_ticket .nav_1 .item .btn a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 30px;
    width: 180px;
    height: 46px;
    color: var(--co_4);
    font-weight: 500;
    background-color: var(--co_1);
    border: 2px solid var(--co_4);
    border-radius: 30px;
}
.sec_ticket .nav_1 .item .btn a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 12px;
    height: 12px;
    background-image: url(../img/ico/arrow_1.svg?v=4);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: 0.3s ease-in-out;
}

.sec_ticket .nav_1 .item .btn a.end {
    justify-content: center;
    color: var(--co_1);
    background-color: #999999;
    border-color: #999999;
    pointer-events: none;
}
.sec_ticket .nav_1 .item .btn a.end::after {
    display: none;
}
.sec_ticket .box_1 {
    margin-bottom: 90px;
    padding: 70px;
    background-color: var(--co_1);
}
.sec_ticket .ttl_2 {
    margin-bottom: 50px;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}
.sec_ticket .ttl_4 {
    margin: 0 auto 50px;
    padding: 0 10px;
    width: max-content;
    color: var(--co_1);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(transparent 40%, var(--co_4) 40%);
}

.sec_ticket .ttl_3 {
    position: relative;
    padding-left: 1em;
    margin-top: 30px;
    color: #888888;
    font-weight: 700;
}
.sec_ticket .ttl_3::before {
    content: "●";
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 150%;
    line-height: 1;
}

.sec_ticket .ul_1 {
    color: #888888;
    font-weight: 700;
    word-break: break-all;
}
.sec_ticket .list_1 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -40px;
}
.sec_ticket .list_1 > ul > li {
    margin-right: 40px;
    width: calc(100% / 2 - 40px);
}
.sec_ticket .list_1 .ttl {
    margin-bottom: 10px;
    color: #b3b3b3;
    font-size: 24px;
    font-weight: 500;
}

@media (min-width: 1000px) {
    .sec_ticket .nav_1 .item .ttl_wrap:hover .ico {
        background-color: #1a1a1a;
    }
    .sec_ticket .nav_1 .item .btn a:hover {
        color: var(--co_1);
        background-color: var(--co_4);
    }
    .sec_ticket .nav_1 .item .btn a:hover::after {
        background-image: url(../img/ico/arrow_1_b.svg?v=4);
    }
}
@media (max-width: 999px) {
    .sec_ticket {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .sec_ticket .ttl_1 {
        margin-bottom: 40px;
    }
    .sec_ticket .img_1 {
        margin-bottom: 40px;
        margin-right: -20px;
        width: calc(100% + 20px);
        overflow-x: scroll;
    }
    .sec_ticket .img_1 img {
        width: 800px;
    }

    .sec_ticket .nav_1 {
        margin: 0 -20px 50px;
    }

    .sec_ticket .nav_1 .item .ttl_wrap {
        padding: 15px 20px;
    }
    .sec_ticket .nav_1 .item .ttl_wrap .ttl {
        font-size: 13px;
    }
    .sec_ticket .nav_1 .item .ttl_wrap .cat {
        margin-left: 10px;
        padding: 2px 5px;
        font-size: 12px;
    }

    .sec_ticket .nav_1 .item .ttl_wrap .ico {
        right: 20px;
        width: 20px;
        height: 20px;
    }

    .sec_ticket .nav_1 .item .ttl_wrap .ico::before {
        width: 2px;
        height: 10px;
    }

    .sec_ticket .nav_1 .item .ttl_wrap .ico::after {
        width: 10px;
        height: 2px;
    }

    .sec_ticket .nav_1 .item .toggle_wrap {
        padding: 40px 20px 60px;
    }
    .sec_ticket .nav_1 .item .toggle_wrap > * + * {
        margin-top: 20px;
    }
    .sec_ticket .nav_1 .item .toggle_wrap::after {
        right: 0px;
    }
    .sec_ticket .nav_1 .item .desc {
        font-size: 13px;
    }
    .sec_ticket .nav_1 .item .list {
        font-size: 13px;
    }
    .sec_ticket .nav_1 .item .btn {
        display: flex;
    }
    .sec_ticket .box_1 {
        margin-bottom: 50px;
        padding: 40px 20px;
    }
    .sec_ticket .ttl_2 {
        margin-bottom: 30px;
        font-size: 18px;
    }

    .sec_ticket .ttl_3 {
        margin-top: 20px;
        font-size: 13px;
    }
    .sec_ticket .ttl_4 {
        margin-bottom: 20px;
        font-size: 26px;
    }

    .sec_ticket .ul_1 {
        font-size: 13px;
    }
    .sec_ticket .list_1 > ul {
        margin-right: 0;
        margin-bottom: -20px;
    }
    .sec_ticket .list_1 > ul > li {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    .sec_ticket .list_1 .ttl {
        font-size: 13px;
    }
}
/* ------------------------- */
/* sec_contents */
/* ------------------------- */
.sec_contents {
    padding-top: 130px;
    background-color: #fff3ec;
    background-image: url(../img/bg/6.svg?v=4);
    background-size: 100% 2800px;
    background-position: center top 500px;
    background-repeat: no-repeat;
}
.sec_contents::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/1.png?v=4);
    background-size: 500px auto;
    mix-blend-mode: overlay;
    opacity: 0.5;
}
.sec_contents .ttl_1 {
    margin-bottom: 50px;
}
.sec_contents .desc_1 {
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}
.sec_contents .list_1 {
    margin-bottom: 100px;
}
.sec_contents .list_1 > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-right: -40px;
}
.sec_contents .list_1 > ul > li {
    margin-right: 40px;
    width: 400px;
}
.sec_contents .list_1 .desc {
    margin-top: 20px;
    color: var(--co_1);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}
.sec_contents .ttl_2 {
    margin-top: 50px;
}
.sec_contents .img_1 {
    margin-top: 20px;
}
.sec_contents .ttl_3 {
    margin-top: 70px;
    margin-bottom: 70px;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
}
.sec_contents .img_2 {
    margin-bottom: 50px;
}
.sec_contents .box_1 {
    padding: 70px;
    color: #888888;
    background-color: var(--co_1);
}
.sec_contents .box_2 {
    position: relative;
    margin-bottom: 50px;
    padding: 40px 70px;
    padding-left: 200px;
    background-color: var(--co_1);
}
.sec_contents .box_2::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background-image: url(../img/contents/5.svg?v=4);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.sec_contents .ttl_4 {
    margin-bottom: 50px;
    font-size: 26px;
    font-weight: 500;
    text-align: center;
}

.sec_contents .ttl_5 {
    margin-top: 30px;
    font-weight: 700;
}

.sec_contents .ul_1 {
    font-weight: 500;
    word-break: break-all;
}

.sec_contents .desc_2 {
    margin-top: 10px;
    width: max-content;
    max-width: 100%;
    padding: 0 2px;
    color: var(--co_1);
    font-weight: 500;
    background-color: var(--co_4);
}

@media (max-width: 999px) {
    .sec_contents {
        padding-top: 70px;
        background-image: url(../img/bg/6_sp.svg?v=4);
        background-size: 100% 55%;
        background-position: center top 130px;
    }
    .sec_contents .ttl_1 {
        margin-bottom: 30px;
    }
    .sec_contents .desc_1 {
        margin-bottom: 30px;
        font-size: 13px;
    }
    .sec_contents .list_1 {
        margin-bottom: 50px;
    }
    .sec_contents .list_1 > ul {
        margin-right: 0;
        margin-bottom: -20px;
    }
    .sec_contents .list_1 > ul > li {
        display: flex;
        align-items: center;
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    .sec_contents .list_1 .desc {
        flex: none;
        width: 60%;
        margin-left: 20px;
        margin-top: 0;
        font-size: 13px;
        text-align: justify;
    }
    .sec_contents .ttl_2 {
        margin-top: 40px;
    }
    .sec_contents .img_1 {
        margin-top: 10px;
    }
    .sec_contents .ttl_3 {
        margin-top: 40px;
        margin-bottom: 40px;
        font-size: 18px;
    }
    .sec_contents .img_2 {
        margin-bottom: 50px;
    }
    .sec_contents .box_1 {
        padding: 30px 20px;
    }
    .sec_contents .box_2 {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    .sec_contents .box_2::before {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 120px;
        height: 120px;
        opacity: 0.2;
    }
    .sec_contents .ttl_4 {
        margin-bottom: 30px;
        font-size: 18px;
    }

    .sec_contents .ttl_5 {
        margin-top: 30px;
        font-weight: 700;
    }

    .sec_contents .ul_1 {
        font-size: 13px;
    }
    .sec_contents .desc_2 {
        font-size: 13px;
    }
}
/* ------------------------- */
/* sec_cast */
/* ------------------------- */
.sec_cast {
    padding-top: 130px;
}
.sec_cast::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/4.svg?v=4);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 410px;
}
.sec_cast .ttl_1 {
    margin-bottom: 50px;
}
.sec_cast .slide_main {
    margin-left: -160px;
    width: 1440px;
    font-size: 0;
}

.sec_cast .slide_main::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 200vw;
    height: 100%;
    background-image: url(../img/cast/bg_1.svg?v=4);
    background-repeat: no-repeat;
    background-position: center bottom -1px;
    background-size: 2886px auto;
}
.sec_cast .slide_main .item {
    display: block !important;
}

.sec_cast .slide_main .item .img {
    position: relative;
    display: block;
}

.sec_cast .slide_main .item a {
    display: block;
    pointer-events: none;
}

.sec_cast .slide_main .slick-next,
.sec_cast .slide_main .slick-prev {
    position: absolute;
    top: 50%;
    display: block;
    width: 45px;
    height: 45px;
    border: none;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
    outline: 0;
    z-index: 10;
    cursor: pointer;
    background-color: var(--co_4);
    border: 2px solid var(--co_4);
    border-radius: 100%;
    transition: 0.3s ease-in-out;
}

.sec_cast .slide_main .slick-next {
    right: 218px;
    transform: translateY(-50%);
}

.sec_cast .slide_main .slick-prev {
    left: 218px;
    transform: translateY(-50%) scaleX(-1);
}

.sec_cast .slide_main .slick-prev::before,
.sec_cast .slide_main .slick-next::before {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--co_1);
    border-right: 2px solid var(--co_1);
    transition: 0.3s ease-in-out;
}

.sec_cast .slide_main .slick-prev::after,
.sec_cast .slide_main .slick-next::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background-color: var(--co_1);
    transition: 0.3s ease-in-out;
}

.sec_cast .slide_ctrl {
    position: relative;
    padding: 30px 0;
    margin: 0 auto;
    width: 455px;
    font-size: 0;
    background-color: #f0f0f0;
}

.sec_cast .slide_ctrl::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200vw;
    height: 100%;
    background-color: #f0f0f0;
}
.sec_cast .slide_ctrl .slick-track {
    transform: none !important;
}
.sec_cast .slide_ctrl .item {
    display: block !important;
    padding: 5px;
    overflow: visible;
}

.sec_cast .slide_ctrl .item .img {
    position: relative;
    cursor: pointer;
    width: 15px;
    transition: 0.3s ease-in-out;
}

.sec_cast .slide_ctrl .item.slick-current .img {
    transform: translateY(-5px);
}
@media (min-width: 1000px) {
    .sec_cast .slide_main .slick-next:hover,
    .sec_cast .slide_main .slick-prev:hover {
        background-color: var(--co_1);
    }
    .sec_cast .slide_main .slick-prev:hover::before,
    .sec_cast .slide_main .slick-next:hover::before {
        border-color: var(--co_4);
    }

    .sec_cast .slide_main .slick-prev:hover::after,
    .sec_cast .slide_main .slick-next:hover::after {
        background-color: var(--co_4);
    }
}
@media (max-width: 999px) {
    .sec_cast {
        padding-top: 70px;
    }
    .sec_cast::after {
        background-size: 200% 170px;
    }
    .sec_cast .ttl_1 {
        margin-bottom: 30px;
    }
    .sec_cast .slide_main {
        margin: 0 -20px;
        width: auto;
    }

    .sec_cast .slide_main .slick-next,
    .sec_cast .slide_main .slick-prev {
        width: 40px;
        height: 40px;
    }

    .sec_cast .slide_main .slick-next {
        right: 10px;
    }

    .sec_cast .slide_main .slick-prev {
        left: 10px;
    }

    .sec_cast .slide_main .slick-prev::before,
    .sec_cast .slide_main .slick-next::before {
        right: 12px;
    }

    .sec_cast .slide_main .slick-prev::after,
    .sec_cast .slide_main .slick-next::after {
        right: 12px;
    }

    .sec_cast .slide_ctrl {
        padding: 20px 0;
        width: 100%;
    }

    .sec_cast .slide_ctrl .slick-track {
        display: flex;
        flex-wrap: wrap;
        transform: none !important;
        width: 100% !important;
    }
    .sec_cast .slide_ctrl .item {
        display: block !important;
        width: calc(100% / 9);
        padding: 5px 10px;
    }

    .sec_cast .slide_ctrl .item .img {
        width: 100%;
    }
}
/* ------------------------- */
/* sec_timetable */
/* ------------------------- */
.sec_timetable {
    padding-top: 130px;
    background-color: #fff3ec;
}
.sec_timetable::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/1.png?v=4);
    background-size: 500px auto;
    mix-blend-mode: overlay;
    opacity: 0.5;
}
.sec_timetable .ttl_1 {
    margin-bottom: 50px;
}
.sec_timetable .nav_1 {
    margin-bottom: 40px;
}
.sec_timetable .nav_1 > ul {
    display: flex;
}
.sec_timetable .nav_1 > ul > li {
    width: calc(100% / 2);
}
.sec_timetable .nav_1 a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    font-family: var(--ff_en_1);
    color: var(--co_4);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.1em;
    background-color: var(--co_1);
    border: 1px solid var(--co_4);
}
.sec_timetable .nav_1 a.is_show {
    color: var(--co_1);
    background-color: var(--co_4);
}
.sec_timetable .toggle_wrap .item {
    display: none;
}
.sec_timetable .toggle_wrap .item.is_show {
    display: block;
}
@media (max-width: 999px) {
    .sec_timetable {
        padding-top: 70px;
    }
    .sec_timetable .ttl_1 {
        margin-bottom: 30px;
    }
    .sec_timetable .nav_1 {
        margin-bottom: 10px;
    }

    .sec_timetable .nav_1 a {
        height: 50px;
        font-size: 16px;
    }
}

/* ------------------------- */
/* sec_map */
/* ------------------------- */
.sec_map {
    padding-top: 130px;
    padding-bottom: 130px;
    background-image: url(../img/bg/5.svg?v=4);
    background-size: 100% 100%;
    background-position: center top;
}
.sec_map::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/1.png?v=4);
    background-size: 500px auto;
    mix-blend-mode: overlay;
    opacity: 0.5;
}
.sec_map::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/4.svg?v=4);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 410px;
}
.sec_map .ttl_1 {
    margin-bottom: 50px;
}
.sec_map * + .ttl_1 {
    margin-top: 100px;
}
.sec_map .nav_1 {
    margin-bottom: 40px;
}
.sec_map .nav_1 > ul {
    display: flex;
}
.sec_map .nav_1 > ul > li {
    width: calc(100% / 2);
}
.sec_map .nav_1 a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    color: var(--co_4);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.1em;
    background-color: var(--co_1);
    border: 1px solid var(--co_4);
}
.sec_map .nav_1 a.is_show {
    color: var(--co_1);
    background-color: var(--co_4);
}
.sec_map .toggle_wrap .item {
    display: none;
}
.sec_map .toggle_wrap .item.is_show {
    display: block;
}
@media (max-width: 999px) {
    .sec_map {
        padding-top: 70px;
        padding-bottom: 70px;
        background-image: url(../img/bg/5_sp.svg?v=4);
    }
    .sec_map::after {
        background-size: 200% 170px;
    }
    .sec_map .ttl_1 {
        margin-bottom: 30px;
    }
    .sec_map * + .ttl_1 {
        margin-top: 50px;
    }
    .sec_map .nav_1 {
        margin-bottom: 10px;
    }

    .sec_map .nav_1 a {
        height: 50px;
        font-size: 16px;
    }
}
/* ------------------------- */
/* sec_goods */
/* ------------------------- */
.sec_goods {
    padding-top: 130px;
    padding-bottom: 130px;
    background: linear-gradient(125deg, rgba(20, 20, 20, 1) 70%, rgba(83, 83, 83, 1) 100%);
}
.sec_goods::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/2.png?v=4), url(../img/bg/1_b.png?v=4);
    background-size:
        35px auto,
        500px auto;
}
.sec_goods .ttl_1 {
    margin-bottom: 20px;
    color: #e6e6e6;
}
.sec_goods .ttl_2 {
    margin-bottom: 10px;
    font-family: var(--ff_en_1);
    color: #808080;
    font-weight: 900;
    letter-spacing: -0.1em;
    text-align: center;
}

.sec_goods .desc_1 {
    color: #a6a6a6;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}
@media (max-width: 999px) {
    .sec_goods {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .sec_goods .ttl_1 {
        margin-bottom: 10px;
    }
    .sec_goods .ttl_2 {
        font-size: 8px;
    }

    .sec_goods .desc_1 {
        font-size: 12px;
    }
}

/* ------------------------- */
/* sec_attention */
/* ------------------------- */
.sec_attention {
    padding-top: 130px;
}
.sec_attention::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: 300px;
    background-color: #1a1a1a;
}
.sec_attention .ttl_1 {
    margin-bottom: 50px;
}
.sec_attention .box_1 {
    padding: 70px;
    background-color: #f2f2f2;
}

.sec_attention .ttl_2 {
    margin-bottom: 5px;
    color: #888888;
    font-size: 18px;
    font-weight: 500;
}
.sec_attention * + .ttl_2 {
    margin-top: 40px;
}

.sec_attention .ul_1 {
    color: #888888;
    font-weight: 500;
    word-break: break-all;
}
.sec_attention .ul_1 a {
    color: #888888;
    text-decoration: underline;
}
.sec_attention .ul_2 {
    font-weight: 500;
}
.sec_attention .box_2 {
    position: relative;
    margin-bottom: 50px;
    padding: 40px 70px;
    padding-left: 200px;
    background-color: var(--co_1);
}
.sec_attention .box_2::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background-image: url(../img/attention/1.svg?v=4);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 999px) {
    .sec_attention {
        padding-top: 70px;
    }
    .sec_attention::before {
        height: 170px;
    }
    .sec_attention .ttl_1 {
        margin-bottom: 30px;
    }
    .sec_attention .box_1 {
        padding: 30px 20px;
    }

    .sec_attention .ttl_2 {
        font-size: 15px;
    }
    .sec_attention * + .ttl_2 {
        margin-top: 20px;
    }

    .sec_attention .box_2 {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    .sec_attention .box_2::before {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 120px;
        height: 120px;
        opacity: 0.2;
    }
}

/* ------------------------- */
/* sec_sponser */
/* ------------------------- */
.sec_sponser {
    padding-top: 130px;
    background-color: #1a1a1a;
}
.sec_sponser .ttl_1 {
    margin-bottom: 50px;
    color: #e6e6e6;
}

.sec_sponser .list_1 > ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.sec_sponser .list_1 > ul > li {
    width: 250px;
}

@media (max-width: 999px) {
    .sec_sponser {
        padding-top: 70px;
    }
    .sec_sponser .ttl_1 {
        margin-bottom: 30px;
    }
    .sec_sponser .list_1 > ul > li {
        width: 140px;
    }
}
