@charset "utf-8";

@media print {
    html {
        display: none;
    }
}
/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #231815;
    --ff_go_1: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --ff_mi_1: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

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

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_3);
    line-height: 1.5;
    font-family: var(--ff_go_1);
    background-image: url(../img/bg/1.jpg);
    background-size: 100% auto;
    background-position: center top;
    background-color: var(--co_1);
    font-weight: 400;
    overflow: hidden;
}

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

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

/* ---------------------------------------------------- */
/* 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 */
/* ---------------------------------------------------- */
.body {
    position: relative;
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}

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

/* ---------------------------------------------------- */
/* contents */
/* ---------------------------------------------------- */
@media (min-width: 1000px) {
    .contents {
        margin: 0 auto;
        width: 1000px;
        background-color: var(--co_1);
        box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 999px) {
    .contents {
        background-color: var(--co_1);
    }
}
/* ---------------------------------------------------- */
/* header_1 */
/* ---------------------------------------------------- */
.header_1 {
    position: absolute;
    left: 0;
    top: 0;
}

.header_1 .btn_toggle_megamenu {
    position: fixed;
    left: calc(50% + 430px);
    top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px 20px;
    width: 50px;
    height: 50px;
    background-color: #98c8cd;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    z-index: 110;
}
.header_1 .btn_toggle_megamenu.is_show {
    background-color: transparent;
}
.header_1 .btn_toggle_megamenu::after {
    content: "MENU";
    position: absolute;
    left: 0;
    bottom: 5px;
    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;
}

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

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

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

.header_1 .toggle_megamenu {
    display: none;
    position: fixed;
    left: calc(50% + 200px);
    top: 0;
    width: 300px;
    height: 100%;
    background-color: rgba(113, 151, 155, 0.9);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
}

.header_1 .toggle_megamenu .toggle_inner {
    padding: 80px 80px;
    height: 100%;
}

.header_1 .nav_1 {
    width: 100%;
}
.header_1 .nav_1 > ul {
}

.header_1 .nav_1 > ul > li > a {
    display: block;
    padding: 15px 0;
    color: var(--co_1);
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0.1em;
    font-weight: 600;
    line-height: 1.4;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}

.header_1 .nav_2 {
    margin-top: 50px;
}

.header_1 .nav_2 > ul {
    display: flex;
    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;
}

@media (min-width: 1000px) {
    .header_1 .btn_toggle_megamenu:hover {
        opacity: 0.6;
    }
}

@media (max-width: 999px) {
    .header_1 .btn_toggle_megamenu {
        left: auto;
        right: 0;
        top: 0;
    }
    .header_1 .toggle_megamenu {
        left: auto;
        right: 0;
        width: 100%;
    }

    .header_1 .nav_1 > ul > li > a {
        padding: 10px 0;
        font-size: 20px;
    }
    .header_1 .nav_2 {
        margin-top: 30px;
    }
}

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

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 700px;
}
.footer_1 .sponsor_1 {
    padding-top: 30px;
    border-top: 1px solid #98c8cd;
}

.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 {
    margin-top: 20px;
    margin-bottom: 50px;
    text-align: center;
}

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

.is_page_scr .footer_1 .btn_1 {
    bottom: 10px;
}

@media (max-width: 999px) {
    .footer_1 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .footer_1 .footer_inner {
        width: calc(100% - 40px);
    }

    .footer_1 .sponsor_1 {
        padding-top: 30px;
        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 {
        width: 100px;
    }
}

/* ---------------------------------------------------- */
/* sec_mv */
/* ---------------------------------------------------- */
.sec_mv {
    padding-top: 0;
    padding-bottom: 20px;
    background-color: #98c8cd;
}
.sec_mv .sec_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.sec_mv .mv {
    position: relative;
    width: 100%;
    height: 100%;
}
.sec_mv .ttl_1 {
    margin: 0 auto;
    width: 1000px;
    height: 100%;
}
.sec_mv .ttl_1 > span {
    height: 100%;
    background-size: contain;
}

.sec_mv .btn_1 {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
}

.sec_mv .btn_1 .chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}

.sec_mv .btn_1 .chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}

.sec_mv .btn_1 .chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}

.sec_mv .btn_1 .chevron:before,
.sec_mv .btn_1 .chevron:after {
    content: " ";
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: var(--co_1);
}

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

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

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

@media (max-width: 999px) {
    .sec_mv {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .sec_mv .ttl_1 {
        width: 100%;
    }
    .sec_mv .btn_1 {
        bottom: -5px;
    }
}

/* ---------------------------------------------------- */
/* sec_about */
/* ---------------------------------------------------- */
@media (max-width: 999px) {
}

/* ---------------------------------------------------- */
/* sec_document */
/* ---------------------------------------------------- */
.sec_document .list_1 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -40px;
    margin-bottom: -50px;
}
.sec_document .list_1 > ul > li {
    margin-right: 40px;
    margin-bottom: 50px;
    /* width: calc(100% / 2 - 40px); */
    width: calc(100% - 40px);
}
.sec_document .list_1 > ul > li:nth-child(1) {
    width: calc(100% - 40px);
}
.sec_document .list_1 .ttl {
    margin-bottom: 10px;
    font-weight: 700;
}
.sec_document .list_1 .ttl > span:nth-of-type(1) {
    margin-right: 5px;
    color: #d5abce;
    font-size: 30px;
}
.sec_document .list_1 .ttl > span:nth-of-type(2) {
    font-size: 20px;
}

.sec_document .list_1 .img {
    position: relative;
}
.sec_document .list_1 .img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/ico/play_1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20%;
}
@media (max-width: 999px) {
    .sec_document .list_1 > ul {
        margin-right: -10px;
        margin-bottom: -20px;
    }
    .sec_document .list_1 > ul > li {
        margin-right: 10px;
        margin-bottom: 20px;
        /* width: calc(100% / 2 - 10px); */
        width: calc(100% - 10px);
    }
    .sec_document .list_1 > ul > li:nth-child(1) {
        width: calc(100% - 10px);
    }
    .sec_document .list_1 .ttl {
        margin-bottom: 5px;
    }
    .sec_document .list_1 .ttl > span:nth-of-type(1) {
        margin-right: 2px;
        font-size: 18px;
    }
    .sec_document .list_1 .ttl > span:nth-of-type(2) {
        font-size: 15px;
    }

    .sec_document .list_1 .img {
        position: relative;
    }
    .sec_document .list_1 .img::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-image: url(../img/ico/play_1.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 20%;
    }
}
/* ---------------------------------------------------- */
/* sec_information */
/* ---------------------------------------------------- */
.sec_information .list_1 {
    font-size: 18px;
}
.sec_information .list_1 > ul {
    width: max-content;
    max-width: 100%;
}
.sec_information .list_1 > ul > li {
    display: flex;
}
.sec_information .list_1 > ul > li + li {
    margin-top: 15px;
}
.sec_information .list_1 > ul > li:nth-child(n + 4) {
    display: none;
}
.sec_information .list_1 .date {
    flex: none;
    width: 130px;
}
.sec_information .list_1 .ttl {
    display: block;
    font-weight: 700;
}
.sec_information .btn_1 {
    display: block;
    margin-top: 30px;
    margin-right: 0;
    margin-left: auto;
    width: 180px;
}

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

    .sec_information .list_1 .date {
        width: auto;
    }
    .sec_information .btn_1 {
        margin-top: 20px;
        width: 120px;
    }
}
/* ---------------------------------------------------- */
/* sec_profile */
/* ---------------------------------------------------- */
.sec_profile .img_1 {
    margin-bottom: 20px;
    width: 450px;
}
.sec_profile .art_1 + .art_1::before {
    content: "";
    margin-top: 50px;
    margin-bottom: 50px;
    display: block;
    height: 6px;
    background-image: url(../img/bg/2.svg);
    background-size: auto 100%;
    background-repeat: repeat-x;
}
.sec_profile .ttl_2 {
    margin-bottom: 10px;
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
}
.sec_profile .ttl_2 > span {
    font-size: 16px;
}
.sec_profile .desc_1 {
    font-weight: 700;
    line-height: 1.8;
}

.sec_profile .desc_1 > span {
    color: #f0b560;
    font-weight: 400;
    line-height: 1.2;
}

.sec_profile .desc_1 > span a {
    color: #f0b560;
    font-weight: 700;
}

@media (max-width: 999px) {
    .sec_profile .img_1 {
        margin-bottom: 20px;
        width: auto;
    }
    .sec_profile .art_1 + .art_1::before {
        content: "";
        margin-top: 50px;
        margin-bottom: 50px;
        display: block;
        height: 6px;
        background-image: url(../img/bg/2.svg);
        background-size: auto 100%;
        background-repeat: repeat-x;
    }
    .sec_profile .ttl_2 {
        margin-bottom: 10px;
        font-size: 22px;
    }
    .sec_profile .ttl_2 > span {
        font-size: 14px;
    }

    .sec_profile .desc_1 > span a {
        display: block;
    }
}

/* ---------------------------------------------------- */
/* sec_ticket */
/* ---------------------------------------------------- */
.sec_ticket .img_1 {
    margin: 0 auto 50px;
    width: 580px;
}
.sec_ticket .ttl_2 {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 700;
}

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

.sec_ticket .pg_1 {
    margin: 0 auto;
}
.sec_ticket .pg_1 a {
    color: var(--co_1);
}
.sec_ticket .pg_1 > li {
    position: relative;
    padding: 20px;
    color: var(--co_1);
    line-height: 1.4;
    text-align: center;
    background-color: #f8de5f;
    text-shadow: 0px 0px 5px rgba(199, 30, 40, 0.5);
    border-radius: 20px;
}
.sec_ticket .pg_1 > li + li {
    margin-top: 20px;
}
.sec_ticket .pg_1.end > li {
    background-color: gray;
    pointer-events: none;
}
.sec_ticket .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.8);
    background-image: url(../img/ico/end_1.svg?y=25);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50% auto;
}
.sec_ticket .pg_1 .ttl {
    font-size: 30px;
    font-weight: 700;
}
.sec_ticket .pg_1 .ttl span {
    font-size: 70%;
}
.sec_ticket .pg_1 .date {
    padding-top: 20px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    border-top: 1px solid var(--co_1);
}
.sec_ticket .pg_1 .desc {
    margin-top: 10px;
    font-size: 18px;
    word-break: break-all;
}
.sec_ticket .pg_1 .note {
    padding-top: 15px;
    font-size: 14px;
}
.sec_ticket .btn_1 {
    display: block;
    margin: 20px auto;
}
.sec_ticket .btn_1.end {
    filter: grayscale(100%);
    pointer-events: none;
}
@media (max-width: 999px) {
    .sec_ticket .img_1 {
        margin-bottom: 30px;
        width: auto;
    }
    .sec_ticket .ttl_2 {
        margin-top: 30px;
        margin-bottom: 10px;
        font-size: 18px;
    }
    .sec_ticket .list_1 {
        font-size: 11px;
    }
    .sec_ticket .pg_1 {
        width: auto;
    }
    .sec_ticket .pg_1 > li + li {
        margin-top: 20px;
    }
    .sec_ticket .pg_1 > li {
        border-radius: 10px;
    }
    .sec_ticket .pg_1.end > li::before {
        background-size: 50% auto;
    }
    .sec_ticket .pg_1 .ttl {
        font-size: 20px;
    }
    .sec_ticket .pg_1 .date {
        padding-top: 10px;
        margin-top: 10px;
        font-size: 14px;
    }
    .sec_ticket .pg_1 .desc {
        margin-top: 10px;
        font-size: 13px;
    }
    .sec_ticket .pg_1 .note {
        padding-top: 10px;
        font-size: 11px;
        text-align: justify;
    }
    .sec_ticket .btn_1 {
        margin-top: 20px;
        width: auto;
    }
}

/* ---------------------------------------------------- */
/* sec_access */
/* ---------------------------------------------------- */
.sec_access .ttl_2 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
}
.sec_access .desc_1 {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
}

.sec_access .map_1 {
    margin-bottom: 20px;
}

.sec_access .map_1 iframe {
    width: 100%;
}
.sec_access .ttl_3 {
    margin-bottom: 20px;
    color: #bed98e;
    font-size: 30px;
    font-weight: 500;
    text-align: center;
}
.sec_access .list_1 {
    margin: 0 auto 30px;
    width: max-content;
    max-width: 100%;
    font-size: 20px;
}
.sec_access .list_1 b {
    display: inline-block;
}
.sec_access .list_1 b::first-letter {
    color: #bed98e;
}
.sec_access .list_2 {
    margin-bottom: 50px;
    font-size: 14px;
}
@media (max-width: 999px) {
    .sec_access .ttl_2 {
        font-size: 20px;
    }
    .sec_access .desc_1 {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .sec_access .map_1 {
        margin-bottom: 20px;
    }

    .sec_access .map_1 iframe {
        height: 300px;
    }
    .sec_access .ttl_3 {
        margin-top: 30px;
        font-size: 18px;
    }
    .sec_access .list_1 {
        padding-left: 1em;
        margin-bottom: 20px;
        font-size: 14px;
    }
    .sec_access .list_1 > ul > li {
        margin-left: 1em;
        text-indent: -1em;
    }
    .sec_access .list_2 {
        margin-bottom: 30px;
        font-size: 12px;
    }
}

/* ---------------------------------------------------- */
/* sec_sns */
/* ---------------------------------------------------- */
.sec_sns .nav_1 > ul {
    display: flex;
    justify-content: center;
}
.sec_sns .nav_1 > ul > li + li {
    margin-left: 100px;
}
.sec_sns .nav_1 a {
    display: block;
    width: 70px;
}
@media (max-width: 999px) {
    .sec_sns .nav_1 > ul > li + li {
        margin-left: 30px;
    }
}

/* ---------------------------------------------------- */
/* sec_archive */
/* ---------------------------------------------------- */

.sec_archive .list_1 > ul > li {
    display: flex;
}
.sec_archive .list_1 > ul > li + li {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--co_2);
}

.sec_archive .list_1 .date {
    flex: none;
    width: 150px;
    font-size: 20px;
}
.sec_archive .list_1 .ttl {
    display: block;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
}
.sec_archive .list_1 .desc {
    word-break: break-all;
}
.sec_archive .list_1 a {
    text-decoration: underline;
}
.sec_archive .btn_1 {
    display: block;
    margin-top: 50px;
    margin-right: 0;
    margin-left: auto;
    width: 110px;
}
@media (min-width: 1000px) {
    .sec_archive .list_1 a:hover {
        opacity: 0.6;
    }
}
@media (max-width: 999px) {
    .sec_archive .list_1 {
        font-size: 15px;
    }
    .sec_archive .list_1 > ul > li {
        display: block;
    }

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

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