@charset "utf-8";

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

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #231815;
    --co_4: #ae0014;
    --co_5: #fef6d4;
    --ff_go_1: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --ff_go_2: "DotGothic16", "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_3);
    line-height: 1.5;
    font-family: var(--ff_go_1);
    background-image: url(../img/bg/1.jpg);
    background-size: 1920px auto;
    background-position: center top;
    background-color: var(--co_4);
    font-weight: 400;
    overflow: hidden;
}

@media (min-width: 1000px) {
    body {
        min-width: 1080px;
        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_3);
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    position: relative;
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}
@media (min-width: 1000px) {
    .body_wrap {
        background-image: url(../img/bg/2.svg), url(../img/bg/2.svg);
        background-position:
            left 10px top,
            right 10px top;
        background-size: 80px auto;
        background-repeat: repeat-y;
    }
}
@media (max-width: 999px) {
    .body_wrap::before {
        min-width: auto;
        background-position: left 10% center;
    }
}

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

@media (max-width: 999px) {
    .contents_wrap {
        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;
    background-color: rgba(137, 45, 45, 0.7);
}

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

.header_1 .logo_1 {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    transition: 0.3s ease-in-out;
}

.header_1 .logo_1 a {
    display: block;
}

.header_1 .logo_2 {
    display: block;
    margin: 0 auto 30px;
    width: 300px;
}

.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%;
    color: var(--co_1);
    font-size: 11px;
    text-align: center;
    line-height: 1;
}
.header_1 .btn_toggle_megamenu.is_show:after {
    content: "CLOSE";
}

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

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

.header_1 .btn_toggle_megamenu div > span span {
    transform: translateY(-1px);
}

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

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

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

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

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

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

.header_1 .toggle_megamenu_wrap {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    width: 600px;
    height: 100%;
    background-color: rgba(194, 81, 65, 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-family: var(--ff_go_2);
    color: var(--co_1);
    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: 120px;
    top: 50%;
    transform: translateY(-50%);
}

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

.header_1 .nav_2 .ig a {
    background-image: url(../img/ico/sns_ig_1_b.svg?y=25);
}
.header_1 .nav_2 .yt a {
    background-image: url(../img/ico/sns_yt_1_b.svg?y=25);
}
.header_1 .nav_2 .tw a {
    background-image: url(../img/ico/sns_tw_1_b.svg?y=25);
}
.header_1 .nav_2 .tt a {
    background-image: url(../img/ico/sns_tt_1_b.svg?y=25);
}
@media (min-width: 1000px) {
    .header_1 .btn_toggle_megamenu:hover {
        opacity: 0.6;
    }
}

@media (max-width: 999px) {
    .header_1 {
        min-width: auto;
    }

    .header_1 .header_inner {
        position: relative;
        height: 60px;
    }
    .header_1 .logo_1 {
        left: 20px;
        width: 100px;
    }
    .header_1 .btn_toggle_megamenu {
        right: 10px;
    }
    .header_1 .toggle_megamenu_wrap {
        width: 100%;
    }
    .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 {
        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;
    padding-bottom: 100px;
}

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}
.footer_1 .sponsor_1 > ul {
    display: flex;
    justify-content: center;
    margin-right: -20px;
}

.footer_1 .sponsor_1 > ul > li {
    margin-right: 20px;
    color: var(--co_1);
}

.footer_1 .contact_1 {
    margin-top: 20px;
    margin-bottom: 50px;
    color: var(--co_1);
    text-align: center;
}
.footer_1 .contact_1 > span {
    display: inline-block;
    padding: 0 10px;
    margin-right: 10px;
    border: 1px solid var(--co_1);
}

.footer_1 .contact_1 a {
    color: var(--co_1);
}

.footer_1 .logo_1 {
    display: block;
    margin: 0 auto 40px;
    width: 500px;
}
.footer_1 .ttl_1 {
    margin-bottom: 10px;
    color: var(--co_1);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.footer_1 .nav_2 > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: -20px;
}
.footer_1 .nav_2 > ul > li {
    margin-right: 20px;
}
.footer_1 .nav_2 a {
    display: block;
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.footer_1 .nav_2 .ig a {
    background-image: url(../img/ico/sns_ig_1_b.svg?y=25);
}
.footer_1 .nav_2 .yt a {
    background-image: url(../img/ico/sns_yt_1_b.svg?y=25);
}
.footer_1 .nav_2 .tw a {
    background-image: url(../img/ico/sns_tw_1_b.svg?y=25);
}
.footer_1 .nav_2 .tt a {
    background-image: url(../img/ico/sns_tt_1_b.svg?y=25);
}

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

.is_page_scr .footer_1 .btn_1 {
    right: 0;
}
.footer_1 .btn_2 {
    position: fixed;
    right: 10px;
    bottom: -100px;
    display: block;
    width: 50px;
    z-index: 10;
}

.is_page_scr .footer_1 .btn_2 {
    bottom: 10px;
}
.footer_1 .copyright_1 {
    margin-top: 40px;
    text-align: center;
}
@media (max-width: 999px) {
    .footer_1 {
        padding-top: 30px;
        padding-bottom: 80px;
    }
    .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;
    }
    .footer_1 .logo_1 {
        margin: 0 auto 20px;
        width: 200px;
    }
    .footer_1 .btn_1 {
        bottom: 60px;
        width: 100px;
    }
    .footer_1 .btn_2 {
        width: 40px;
    }
}

/* ---------------------------------------------------- */
/* sec_mv_wrap */
/* ---------------------------------------------------- */
.sec_mv_wrap {
    padding-top: 110px;
    padding-bottom: 80px;
    min-height: 500px;
    background-image: url(../img/bg/3.jpg);
    background-size: cover;
    background-position: center;
}
.sec_mv_wrap .sec_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.sec_mv_wrap .mv_wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.sec_mv_wrap .ttl_1 {
    margin: 0 auto;
    width: 700px;
    height: 100%;
}
.sec_mv_wrap .ttl_1 > span {
    height: 100%;
    background-size: contain;
}
.sec_mv_wrap .btn_1 {
    position: absolute;
    left: 50%;
    bottom: -30px;
    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_1);
}

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

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

@keyframes move {
    25% {
        opacity: 1;
    }
    33% {
        opacity: 1;
        transform: translateY(30px);
    }
    67% {
        opacity: 1;
        transform: translateY(40px);
    }
    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}

@media (max-width: 999px) {
    .sec_mv_wrap {
        padding-top: 89px;
        padding-bottom: 60px;
        min-height: 400px;
        background-image: url(../img/bg/3_sp.jpg);
    }
    .sec_mv_wrap .ttl_1 {
        width: 75%;
    }
    .sec_mv_wrap .btn_1 {
        bottom: -15px;
    }
}

/* ---------------------------------------------------- */
/* sec_message_wrap */
/* ---------------------------------------------------- */
.sec_message_wrap {
    padding-top: 220px;
    padding-bottom: 80px;
    background-image: url(../img/bg/4.jpg);
    background-position: center;
    background-size: cover;
    background-position: center top;
}
.sec_message_wrap .box_1 {
    position: relative;
    padding: 80px 40px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 5px solid var(--co_3);
    border-radius: 20px;
}
.sec_message_wrap .ttl_1 {
    position: absolute;
    left: 50%;
    top: -170px;
    transform: translateX(-50%);
    width: 370px;
}
.sec_message_wrap .list_1 > ul > li {
    display: flex;
    justify-content: space-between;
}
.sec_message_wrap .list_1 > ul > li + li {
    margin-top: 40px;
}
.sec_message_wrap .list_1 > ul > li > .clm:nth-of-type(1) {
    flex: none;
    width: 400px;
}
.sec_message_wrap .list_1 > ul > li > .clm:nth-of-type(2) {
    flex: none;
    width: 380px;
}

.sec_message_wrap .list_1 .name {
    margin-bottom: 10px;
    font-weight: 700;
}

.sec_message_wrap .list_1 .name > span:nth-of-type(1) {
    margin-right: 10px;
    font-size: 18px;
}
.sec_message_wrap .list_1 .name > span:nth-of-type(2) {
    font-size: 24px;
}
.sec_message_wrap .list_1 .desc {
    font-size: 18px;
    line-height: 2;
}
@media (max-width: 999px) {
    .sec_message_wrap {
        padding-top: 150px;
        padding-bottom: 50px;
        background-image: url(../img/bg/4_sp.jpg);
        background-size: 100% auto;
    }
    .sec_message_wrap .box_1 {
        padding: 50px 15px;
    }
    .sec_message_wrap .ttl_1 {
        top: -95px;
        width: 200px;
    }
    .sec_message_wrap .list_1 > ul > li {
        display: block;
    }
    .sec_message_wrap .list_1 > ul > li + li {
        margin-top: 30px;
    }
    .sec_message_wrap .list_1 > ul > li > .clm:nth-of-type(1) {
        margin-bottom: 10px;
        width: auto;
    }
    .sec_message_wrap .list_1 > ul > li > .clm:nth-of-type(2) {
        width: auto;
    }

    .sec_message_wrap .list_1 .name {
        margin-bottom: 10px;
        text-align: center;
    }

    .sec_message_wrap .list_1 .name > span:nth-of-type(1) {
        margin-right: 10px;
        font-size: 16px;
    }
    .sec_message_wrap .list_1 .name > span:nth-of-type(2) {
        font-size: 20px;
    }
    .sec_message_wrap .list_1 .desc {
        font-size: 15px;
        line-height: 2;
    }
}

/* ---------------------------------------------------- */
/* sec_information_wrap */
/* ---------------------------------------------------- */
.sec_information_wrap .list_1 {
    font-size: 18px;
}
.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 + 4) {
    display: none;
}
.sec_information_wrap .list_1 .date {
    flex: none;
    width: 130px;
    color: var(--co_1);
}
.sec_information_wrap .list_1 .ttl {
    display: block;
    color: var(--co_1);
    font-weight: 700;
}
.sec_information_wrap .btn_1 {
    margin-top: 60px;
}

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

    .sec_information_wrap .list_1 .date {
        width: auto;
    }
    .sec_information_wrap .btn_1 {
        margin-top: 30px;
    }
}

/* ---------------------------------------------------- */
/* sec_artist_wrap */
/* ---------------------------------------------------- */
.sec_artist_wrap .box_1 {
    position: relative;
    padding: 80px 40px;
    background-color: var(--co_5);
    border: 5px solid var(--co_3);
    border-radius: 20px;
}
.sec_artist_wrap .ttl_2 {
    margin: 0 auto 30px;
    width: 340px;
}
.sec_artist_wrap * + .ttl_2 {
    margin-top: 80px;
}

.sec_artist_wrap .list_1 > ul {
    display: flex;
    justify-content: center;
    margin-right: -20px;
    margin-bottom: -30px;
    flex-wrap: wrap;
}
.sec_artist_wrap .list_1 > ul > li {
    margin-right: 20px;
    margin-bottom: 30px;
    width: calc(100% / 3 - 20px);
}

.sec_artist_wrap .list_1 a {
    display: block;
}
.sec_artist_wrap .list_1 .name {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.sec_artist_wrap .amdmore_1 {
    margin: 40px auto 0;
    width: 180px;
}

.sec_artist_wrap .list_2 {
    margin: 50px auto 0;
    width: 600px;
}

.sec_artist_wrap .list_2 a {
    display: block;
}
.sec_artist_wrap .list_2 .name {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.sec_artist_wrap .desc_1 {
    margin-top: 50px;
    color: #c10012;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
@media (max-width: 999px) {
    .sec_artist_wrap .box_1 {
        padding: 30px 15px;
    }
    .sec_artist_wrap .ttl_2 {
        margin-bottom: 20px;
        width: 160px;
    }
    .sec_artist_wrap * + .ttl_2 {
        margin-top: 50px;
    }
    .sec_artist_wrap .list_1 > ul {
        margin-right: 0;
        margin-bottom: -20px;
    }
    .sec_artist_wrap .list_1 > ul > li {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .sec_artist_wrap .list_1 .name {
        font-size: 18px;
    }
    .sec_artist_wrap .amdmore_1 {
        margin-top: 30px;
        width: 120px;
    }

    .sec_artist_wrap .list_2 {
        margin: 20px auto 0;
        width: auto;
    }

    .sec_artist_wrap .list_2 a {
        display: block;
    }
    .sec_artist_wrap .list_2 .name {
        font-size: 18px;
    }
    .sec_artist_wrap .desc_1 {
        margin-top: 30px;
        font-size: 18px;
    }
}
/* ---------------------------------------------------- */
/* sec_goods_wrap */
/* ---------------------------------------------------- */
.sec_goods_wrap .comiongsoonn {
    color: var(--co_1);
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}

/* ---------------------------------------------------- */
/* sec_ticket_wrap */
/* ---------------------------------------------------- */
.sec_ticket_wrap .box_1 {
    position: relative;
    padding: 80px 100px;
    background-color: var(--co_5);
    border: 5px solid var(--co_3);
    border-radius: 20px;
}
.sec_ticket_wrap .price_1 {
    margin-bottom: 20px;
}
.sec_ticket_wrap .price_1 > ul > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 45px;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
}
.sec_ticket_wrap .price_1 .ttl {
    letter-spacing: 0.1em;
}

.sec_ticket_wrap .price_1 .num > span {
    font-size: 20px;
}
.sec_ticket_wrap .price_2 {
    padding-left: 30px;
    font-size: 20px;
    font-weight: 700;
}
.sec_ticket_wrap .ttl_2 {
    font-size: 28px;
    font-weight: 700;
}
.sec_ticket_wrap * + .ttl_2 {
    margin-top: 50px;
}
.sec_ticket_wrap .ttl_3 {
    font-size: 20px;
    font-weight: 700;
}
.sec_ticket_wrap * + .ttl_3 {
    margin-top: 30px;
}
.sec_ticket_wrap .ttl_4 {
    margin-top: 100px;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}
.sec_ticket_wrap .ttl_4 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.sec_ticket_wrap * + .pg_1 {
    margin-top: 20px;
}

.sec_ticket_wrap .pg_1 > li {
    position: relative;
    margin-bottom: 20px;
    padding: 20px;
    color: var(--co_2);
    line-height: 1.4;
    text-align: center;
    background-color: var(--co_1);
    border: 2px solid var(--co_3);
}
.sec_ticket_wrap .pg_1.end > li {
}
.sec_ticket_wrap .pg_1.end > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    background-image: url(../img/ico/end_1.svg?y=25);
    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 .date {
    padding-top: 15px;
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    border-top: 1px solid var(--co_2);
}
.sec_ticket_wrap .pg_1 .desc {
    margin-top: 30px;
    font-size: 18px;
    word-break: break-all;
}
.sec_ticket_wrap .pg_1 .note {
    padding-top: 15px;
    font-size: 14px;
}
.sec_ticket_wrap .btn_1 {
    margin-top: 50px;
    width: calc(100% - 60px);
}
@media (max-width: 999px) {
    .sec_ticket_wrap .box_1 {
        padding: 30px 15px;
    }
    .sec_ticket_wrap .price_1 {
        margin-bottom: 10px;
    }
    .sec_ticket_wrap .price_1 > ul > li {
        font-size: 24px;
    }

    .sec_ticket_wrap .price_1 .num > span {
        font-size: 14px;
    }
    .sec_ticket_wrap .price_2 {
        padding-left: 20px;
        font-size: 16px;
    }
    .sec_ticket_wrap .ttl_2 {
        font-size: 22px;
        font-weight: 700;
    }
    .sec_ticket_wrap * + .ttl_2 {
        margin-top: 50px;
    }
    .sec_ticket_wrap .ttl_3 {
        font-size: 16px;
    }
    .sec_ticket_wrap * + .ttl_3 {
        margin-top: 30px;
    }
    .sec_ticket_wrap .ttl_4 {
        margin-top: 30px;
        font-size: 20px;
    }
    .sec_ticket_wrap .list_1 {
        font-size: 12px;
    }
    .sec_ticket_wrap .pg_1 {
        width: auto;
    }
    .sec_ticket_wrap .pg_1 > li {
    }
    .sec_ticket_wrap .pg_1.end > li::before {
        background-size: 50% auto;
    }
    .sec_ticket_wrap .pg_1 .ttl {
        font-size: 20px;
    }
    .sec_ticket_wrap .pg_1 .date {
        padding-top: 10px;
        margin-top: 10px;
        font-size: 14px;
    }
    .sec_ticket_wrap .pg_1 .desc {
        margin-top: 20px;
        font-size: 14px;
    }
    .sec_ticket_wrap .pg_1 .note {
        padding-top: 10px;
        font-size: 11px;
    }
    .sec_ticket_wrap .btn_1 {
        margin-top: 30px;
        width: 80%;
    }
}
/* ---------------------------------------------------- */
/* sec_access_wrap */
/* ---------------------------------------------------- */
.sec_access_wrap {
    padding-bottom: 0;
}
.sec_access_wrap .box_1 {
    position: relative;
    padding: 40px 40px;
    background-color: var(--co_1);
}
.sec_access_wrap .ttl_2 {
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}
.sec_access_wrap .desc_1 {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}
.sec_access_wrap .map_1 iframe {
    margin-bottom: 40px;
    width: 100%;
    height: 450px;
}
.sec_access_wrap .list_1 ul > li {
    text-align: center;
    font-size: 18px;
}
.sec_access_wrap .list_1 ul > li + li {
    margin-top: 10px;
}
@media (max-width: 999px) {
    .sec_access_wrap .box_1 {
        padding: 30px 15px;
    }
    .sec_access_wrap .ttl_2 {
        margin-bottom: 5px;
        font-size: 20px;
    }
    .sec_access_wrap .desc_1 {
        margin-bottom: 10px;
        font-size: 16px;
    }
    .sec_access_wrap .map_1 iframe {
        margin-bottom: 30px;
        height: 300px;
    }
    .sec_access_wrap .list_1 ul > li {
        font-size: 15px;
    }
    .sec_access_wrap .list_1 ul > li + li {
        margin-top: 5px;
    }
}
/* ---------------------------------------------------- */
/* sec_archive_wrap */
/* ---------------------------------------------------- */
.sec_archive_wrap {
    padding-top: 160px;
}
.sec_archive_wrap .list_1 > ul > li {
    display: flex;
    color: var(--co_1);
}
.sec_archive_wrap .list_1 > ul > li + li {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--co_2);
}

.sec_archive_wrap .list_1 .date {
    flex: none;
    width: 150px;
    font-size: 20px;
}
.sec_archive_wrap .list_1 .ttl {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}
.sec_archive_wrap .list_1 .desc {
    word-break: break-all;
}
.sec_archive_wrap .list_1 a {
    color: var(--co_1);
    text-decoration: underline;
}
.sec_archive_wrap .btn_1 {
    margin-top: 60px;
}
@media (min-width: 1000px) {
    .sec_archive_wrap .list_1 a:hover {
        opacity: 0.6;
    }
}
@media (max-width: 999px) {
    .sec_archive_wrap {
        padding-top: 110px;
    }
    .sec_archive_wrap .list_1 {
        margin-bottom: 40px;
    }
    .sec_archive_wrap .list_1 > ul > li {
        display: block;
    }

    .sec_archive_wrap .list_1 > ul > li + li {
        margin-top: 20px;
        padding-top: 20px;
    }

    .sec_archive_wrap .list_1 .date {
        width: auto;
        font-size: 14px;
    }
    .sec_archive_wrap .list_1 .ttl {
        display: block;
        font-size: 18px;
    }
    .sec_archive_wrap .btn_1 {
        margin-top: 30px;
    }
}
