@charset "utf-8";

/* -------------------------------- */
/* 変数 */
/* -------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --ff_go_1: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

/* -------------------------------- */
/* html body */
/* -------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_1);
    line-height: 1.5;
    font-family: var(--ff_go_1);
    font-weight: 400;
    overflow: hidden;
    background-color: #1b5b44;
}

@media (min-width: 901px) {
    body {
        /* min-width: 1200px; */
        font-size: 16px;
    }
}

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

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

.body_wrap::before,
.body_wrap::after {
    content: "";
    position: fixed;
    right: 0;
    top: 0;
    display: block;
}

@media (min-width: 901px) {
    .body_wrap::before {
        width: 80vw;
        height: 100vh;
        background-image: url(../img/bg/1.svg);
        background-size: contain;
        background-position: right -50px center;
        background-repeat: no-repeat;
        z-index: -1;
    }

    .body_wrap::after {
        width: 100vw;
        height: 100vh;
        background: linear-gradient(90deg, rgba(27, 91, 68, 1) 30%, rgba(196, 135, 45, 1) 70%);
        z-index: -2;
    }
}

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

/* -------------------------------- */
/* contents_wrap */
/* -------------------------------- */
.contents_wrap {
}

@media (max-width: 900px) {
    .contents_wrap {
    }
}

/* -------------------------------- */
/* header */
/* -------------------------------- */
header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
}

header .btn_toggle_menu {
    position: fixed;
    left: 30px;
    top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 30px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    z-index: 110;
}

header .btn_toggle_menu div {
    position: relative;
    width: 40px;
    height: 5px;
}

header .btn_toggle_menu div > span span,
header .btn_toggle_menu div > span:before,
header .btn_toggle_menu 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 .btn_toggle_menu div > span span {
    transform: translateY(-1px);
    width: calc(100% - 8px);
}

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

header .btn_toggle_menu div > span:after {
    transform: translateY(7px);
    width: calc(100% - 16px);
}

header .btn_toggle_menu.is_show div > span span,
header .btn_toggle_menu.is_show div > span:before,
header .btn_toggle_menu.is_show div > span:after {
    width: 100% !important;
}

header .btn_toggle_menu.is_show div > span span {
    opacity: 0;
}

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

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

header .toggle_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 400px;
    height: 100%;
    background-color: var(--co_2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-102%);
    opacity: 0;
    z-index: 100;
    transition: 0.3s ease-in-out;
}

.is_menu_show header .toggle_wrap {
    transform: translateX(-0%);
    opacity: 1;
}

header .toggle_wrap .toggle_inner {
    padding: 80px 0;
}

header .nav_h_1 > ul + ul {
    margin-top: 20px;
}

header .nav_h_1 > ul > li + li {
    margin-top: 50px;
}

header .nav_h_1 > ul > li > a {
    display: block;
    font-size: 19px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-align: center;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}

header .btn_tw_1 {
    position: fixed;
    left: 110px;
    top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    color: #000;
    background-color: var(--co_1);
    border-radius: 100%;
    z-index: 100;
}

header .btn_tw_1 i {
    transform: translateX(1px);
}

header .btn_tw_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto 0;
    width: 30px;
    height: 30px;
    color: #000;
    background-color: var(--co_1);
    border-radius: 100%;
    z-index: 100;
}

header .btn_tw_2 i {
    transform: translateX(1px);
}

header .btn_in_1 {
    position: fixed;
    left: 170px;
    top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    color: #000;
    background-color: var(--co_1);
    border-radius: 100%;
    z-index: 100;
}

header .btn_in_1 i {
    transform: translateX(1px);
}

header .btn_in_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0;
    width: 30px;
    height: 30px;
    color: #000;
    background-color: var(--co_1);
    border-radius: 100%;
    z-index: 100;
}

header .btn_in_2 i {
    transform: translateX(1px);
}

@media (max-width: 900px) {
    header .btn_toggle_menu {
        left: 15px;
        top: 15px;
    }

    header .toggle_wrap {
        width: 200px;
    }

    header .nav_h_1 > ul > li + li {
        margin-top: 30px;
    }

    header .btn_tw_1 {
        left: auto;
        right: 50px;
        top: 15px;
    }

    header .btn_tw_2 {
        margin: 30px auto 0;
    }

    header .btn_in_1 {
        left: auto;
        right: 10px;
        top: 15px;
    }

    header .btn_in_2 {
        margin: 15px auto 0;
    }
    header .btn_day_1 {
        right: 15px;
        top: 5px;
        width: 50px;
        height: 50px;
    }
}

/* -------------------------------- */
/* footer */
/* -------------------------------- */
footer {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

footer .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 220px);
}

footer .copyright {
    font-size: 12px;
    letter-spacing: 0.15em;
}

@media (max-width: 900px) {
    footer {
        padding-top: 40px;
        padding-bottom: 15px;
    }

    footer .footer_inner {
        width: calc(100% - 30px);
    }

    footer .copyright {
        font-size: 11px;
        text-align: center;
    }
}

/* -------------------------------- */
/* sec_mv_wrap */
/* -------------------------------- */
.sec_mv_wrap .sec_inner {
    background: none;
}

.sec_mv_wrap .site_ttl {
    margin-bottom: 70px;
    width: 550px;
}

.sec_mv_wrap .artist_1 {
    margin-left: 80px;
    margin-bottom: 50px;
    width: 370px;
}

.sec_mv_wrap .date_1 {
    margin-left: 20px;
    width: 490px;
}
.sec_mv_wrap .bnr_1 {
    display: block;
    margin-top: 40px;
    width: 550px;
}
@media (min-width: 901px) {
    .sec_mv_wrap .logo_1 {
        position: fixed;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        width: 550px;
        z-index: -1;
    }
}

@media (max-width: 900px) {
    .sec_mv_wrap {
        padding-top: 80px;
    }
    .sec_mv_wrap::before {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        width: 100vw;
        height: 100vh;
        background-image: url(../img/bg/1_sp.svg);
        background-size: 100% auto;
        background-position: center bottom 0;
        background-repeat: no-repeat;
    }
    .sec_mv_wrap::after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        display: block;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(180deg, rgba(27, 91, 68, 1) 30%, rgba(196, 135, 45, 1) 70%);
        z-index: -2;
    }
    .sec_mv_wrap .sec_inner {
        min-height: 100vh;
    }
    .sec_mv_wrap .site_ttl {
        margin: 0 auto 20px;
        width: 80%;
    }

    .sec_mv_wrap .artist_1 {
        margin: 0 auto 20px;
        width: 60%;
    }

    .sec_mv_wrap .date_1 {
        margin: 0 auto;
        width: 80%;
    }
    .sec_mv_wrap .bnr_1 {
        margin: 20px auto 0;
        width: 90%;
    }
}

/* -------------------------------- */
/* sec_artist_wrap */
/* -------------------------------- */
.sec_artist_wrap .list_1 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-bottom: -20px;
}

.sec_artist_wrap .list_1 > ul > li {
    margin-right: 20px;
    margin-bottom: 20px;
    width: calc(100% / 2 - 20px);
}
.sec_artist_wrap .list_1 > ul > li.s1 {
    width: calc(100% / 3 - 20px);
}
.sec_artist_wrap .list_1 a {
    display: block;
}

.sec_artist_wrap .list_1 .img {
    margin-bottom: 10px;
    image-rendering: -webkit-optimize-contrast;
}

.sec_artist_wrap .list_1 .name {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.sec_artist_wrap .list_1 .name > span {
    font-size: 60%;
}

.sec_artist_wrap .andmore {
    margin-top: 50px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

@media (max-width: 900px) {
    .sec_artist_wrap .list_1 > ul {
        display: block;
        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 > ul > li.s1 {
        margin-right: auto;
        margin-left: auto;
        width: 80%;
    }

    .sec_artist_wrap .list_1 .name {
        text-align: center;
    }
    .sec_artist_wrap .andmore {
        text-align: center;
    }
}

/* -------------------------------- */
/* sec_drink_wrap */
/* -------------------------------- */
.sec_drink_wrap .sec_inner > * + * {
    margin-top: 20px;
}
@media (max-width: 900px) {
    .sec_drink_wrap .sec_inner > * + * {
        margin-top: 15px;
    }
}

/* -------------------------------- */
/* sec_ticket_wrap */
/* -------------------------------- */
.sec_ticket_wrap article {
    position: relative;
}

.sec_ticket_wrap article + article {
    margin-top: 40px;
}

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

.sec_ticket_wrap .price_1.horizontal {
    display: flex;
    align-items: center;
}

.sec_ticket_wrap .price_1.horizontal > * + * {
    margin-left: 40px;
}

.sec_ticket_wrap .price_1 .ttl {
    width: 300px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.sec_ticket_wrap .price_1 .num {
    position: relative;
    font-weight: 500;
    line-height: 1.2;
}

.sec_ticket_wrap .price_1 .num > span:nth-of-type(2) {
    font-size: 24px;
}

.sec_ticket_wrap .price_1 .num > span:nth-of-type(1),
.sec_ticket_wrap .price_1 .num > span:nth-of-type(3) {
    font-size: 14px;
}

.sec_ticket_wrap .price_1.soldout .num::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    display: block;
    width: 110px;
    height: 23px;
    background-image: url(..//img/ico/soldout_1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.sec_ticket_wrap .price_1 .ico {
    padding: 5px 10px;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    background-color: #ffff00;
}

.sec_ticket_wrap .box_1 {
    display: block;
    border: 2px solid #ff3200;
}

.sec_ticket_wrap .ttl_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: var(--co_1);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    font-style: italic;
    text-align: center;
    background-color: #ff3200;
}
.sec_ticket_wrap .ttl_1 span {
    margin-left: 15px;
    font-size: 14px;
}
.sec_ticket_wrap .ttl_1 i {
    display: block;
    margin-right: 10px;
    width: 160px;
}

.sec_ticket_wrap .ttl_2 {
    padding: 10px;
    color: var(--co_1);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    background-color: var(--co_2);
}

.sec_ticket_wrap .desc_1 {
    font-size: 14px;
    line-height: 1.8;
}
.sec_ticket_wrap .pg_1 {
    padding: 10px;
    background-color: #ff3200;
}

.sec_ticket_wrap .pg_1 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-bottom: -10px;
}

.sec_ticket_wrap .pg_1 > ul > li {
    margin-right: 10px;
    margin-bottom: 10px;
    width: calc(100% / 3 - 10px);
}

.sec_ticket_wrap .pg_1 a {
    display: block;
    background-color: var(--co_1);
}

.sec_ticket_wrap .pg_1 a img {
    margin: 0 auto;
    width: 80%;
}

@media (max-width: 900px) {
    .sec_ticket_wrap article + article {
        margin-top: 20px;
        padding-top: 20px;
    }

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

    .sec_ticket_wrap .price_1 {
        text-align: center;
    }

    .sec_ticket_wrap .price_1 + .price_1 {
        padding-top: 20px;
        /* border-top: 1px solid var(--co_1); */
    }
    .sec_ticket_wrap .price_1.horizontal {
        display: block;
    }

    .sec_ticket_wrap .price_1.horizontal > * + * {
        margin-left: 0;
    }
    .sec_ticket_wrap .price_1 .ttl {
        margin-bottom: 15px;
        width: auto;
        font-size: 16px;
    }

    .sec_ticket_wrap .price_1.soldout .num::after {
        left: calc(50% - 130px);
        transform: translateY(-50%) rotate(-10deg);
        width: 110px;
        height: 20px;
    }
    .sec_ticket_wrap .price_1 .num {
        font-weight: 500;
        line-height: 1.2;
    }

    .sec_ticket_wrap .price_1 .num > span:nth-of-type(3) {
        font-size: 12px;
    }
    .sec_ticket_wrap .price_1 .ico {
        display: inline-block;
        margin-top: 10px;
    }
    .sec_ticket_wrap .ttl_1 {
        display: block;
        font-size: 19px;
    }
    .sec_ticket_wrap .ttl_1 span {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
    .sec_ticket_wrap .ttl_1 i {
        display: block;
        margin: 0 auto 5px;
        width: 140px;
    }
    .sec_ticket_wrap .ttl_2 {
        font-size: 16px;
    }
    .sec_ticket_wrap .desc_1 {
        font-size: 12px;
    }
    .sec_ticket_wrap .pg_1 {
        padding: 10px;
    }

    .sec_ticket_wrap .pg_1 > ul {
        margin-right: 0;
        margin-bottom: -10px;
    }

    .sec_ticket_wrap .pg_1 > ul > li {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }
    .sec_ticket_wrap .pg_1 a img {
        width: 60%;
    }
}

/* -------------------------------- */
/* sec_timetable_wrap */
/* -------------------------------- */
.sec_timetable_wrap .desc_1 {
    margin-bottom: 40px;
    font-weight: 700;
}
@media (max-width: 900px) {
    .sec_timetable_wrap .desc_1 {
        margin-bottom: 20px;
    }
}
/* -------------------------------- */
/* sec_goods_wrap */
/* -------------------------------- */
.sec_goods_wrap .desc_1 {
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 700;
}
.sec_goods_wrap .img_1 {
    margin-bottom: 20px;
}
.sec_goods_wrap .ttl_2 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}
.sec_goods_wrap .desc_2 {
    font-size: 14px;
}
.sec_goods_wrap .list_1 {
    font-size: 14px;
}
.sec_goods_wrap .hr_1 {
    margin: 30px 0;
}
@media (max-width: 900px) {
    .sec_goods_wrap .desc_1 {
        margin-bottom: 20px;
        font-size: 18px;
        text-align: center;
    }
    .sec_goods_wrap .img_1 {
        margin-bottom: 15px;
    }
    .sec_goods_wrap .ttl_2 {
        margin-bottom: 15px;
        font-size: 18px;
        text-align: center;
    }
    .sec_goods_wrap .desc_2 {
        font-size: 12px;
    }
    .sec_goods_wrap .list_1 {
        font-size: 12px;
    }
    .sec_goods_wrap .hr_1 {
        margin: 20px 0;
    }
}
/* -------------------------------- */
/* sec_about_wrap */
/* -------------------------------- */
.sec_about_wrap .ttl_1 {
    margin-bottom: 20px;
    font-size: 19px;
    font-weight: 500;
}

.sec_about_wrap .list_1 table {
    width: 100%;
}

.sec_about_wrap .list_1 tr {
    border-bottom: 1px solid var(--co_1);
}

.sec_about_wrap .list_1 th {
    position: relative;
    width: 100px;
    padding: 15px 30px;
    text-align: center;
    white-space: nowrap;
}

.sec_about_wrap .list_1 th::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15px;
    width: 1px;
    height: calc(100% - 30px);
    background-color: var(--co_1);
}

.sec_about_wrap .list_1 td {
    padding: 15px 30px;
}

@media (max-width: 900px) {
    .sec_about_wrap .ttl_1 {
        margin-bottom: 15px;
        text-align: center;
    }

    .sec_about_wrap .list_1 {
        font-size: 14px;
    }

    .sec_about_wrap .list_1 table,
    .sec_about_wrap .list_1 tbody,
    .sec_about_wrap .list_1 tr,
    .sec_about_wrap .list_1 th,
    .sec_about_wrap .list_1 td {
        display: block;
    }

    .sec_about_wrap .list_1 > table > tbody > tr:last-of-type {
        border-bottom: none;
    }

    .sec_about_wrap .list_1 th {
        width: auto;
        padding: 10px 10px 0;
        text-align: left;
    }

    .sec_about_wrap .list_1 th::after {
        display: none;
    }

    .sec_about_wrap .list_1 td {
        padding: 5px 10px 10px;
    }
}

/* -------------------------------- */
/* sec_notice_wrap */
/* -------------------------------- */

.sec_notice_wrap article + article {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid var(--co_1);
}

.sec_notice_wrap .ttl_1 {
    font-size: 22px;
    font-weight: 700;
}

.sec_notice_wrap .list_1 {
    line-height: 1.8;
}

.sec_notice_wrap .list_1 > li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--co_1);
}

.sec_notice_wrap a {
    color: #18b7cd;
}

@media (max-width: 900px) {
    .sec_notice_wrap article + article {
        padding-top: 20px;
        margin-top: 20px;
    }

    .sec_notice_wrap article > * + * {
        margin-top: 10px;
    }

    .sec_notice_wrap article > * {
        font-size: 12px !important;
    }
}

/* -------------------------------- */
/* sec_archives_wrap */
/* -------------------------------- */
.sec_archives_wrap .list_1 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -20px;
    margin-right: -20px;
}

.sec_archives_wrap .list_1 > ul > li {
    margin-bottom: 20px;
    margin-right: 20px;
    width: calc(100% / 5 - 20px);
}

.sec_archives_wrap .list_1 a {
    display: block;
}

@media (max-width: 900px) {
    .sec_archives_wrap .list_1 > ul {
        justify-content: center;
        margin-right: -20px;
        margin-bottom: -20px;
    }

    .sec_archives_wrap .list_1 > ul > li {
        margin-right: 20px;
        margin-bottom: 20px;
        width: calc(50% - 20px);
    }
}
