@charset "utf-8";

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

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #fff;
    --co_2: #000;
    --co_3: #101010;
    --co_4: #0d0d0d;
    --co_5: #00a0e9;
}

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

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_1);
    line-height: 1.5;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 400;
    background-color: var(--co_2);
    overflow: hidden;
}

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

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

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

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: var(--co_1);
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}

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

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

/* ---------------------------------------------------- */
/* .header_1 */
/* ---------------------------------------------------- */
.header_1 {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
}

.header_1 .header_inner {
    position: relative;
}

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

.header_1 .btn_toggle_megamenu div {
    position: relative;
    width: 28px;
    height: 20px;
}

.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: 2px;
    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_wrap {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--co_2);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
}

.header_1 .toggle_wrap .toggle_inner {
    padding: 40px 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_1 .nav_1 > ul > li + li {
    margin-top: 25px;
}

.header_1 .nav_1 a {
    position: relative;
    display: block;
    margin: 0 auto;
    width: max-content;
    font-size: 40px;
}

.header_1 .nav_2 {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 2;
}

.header_1 .nav_2 > ul {
    display: flex;
}

.header_1 .nav_2 > ul > li + li {
    margin-left: 15px;
}

.header_1 .nav_2 > ul > li > a {
    display: block;
    width: 24px;
    height: 24px;
}

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

    .header_1 .toggle_wrap .toggle_inner {
        padding: 30px 0;
    }

    .header_1 .nav_1 > ul > li + li {
        margin-top: 20px;
    }

    .header_1 .nav_1 a {
        font-size: 30px;
    }

    .header_1 .nav_2 {
        right: 70px;
        top: 18px;
    }
}

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

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

.footer_1 .site_ttl_1 {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 165px;
}

.footer_1 .nav_1 {
    margin-bottom: 30px;
}

.footer_1 .nav_1 > ul {
    display: flex;
    justify-content: flex-end;
}

.footer_1 .nav_1 > ul > li + li {
    margin-left: 30px;
}

.footer_1 .nav_1 > ul > li > a {
    display: block;
    width: 24px;
    height: 24px;
}

.footer_1 .copyright_1 {
    font-size: 12px;
    text-align: right;
}

@media (max-width: 999px) {
    .footer_1 {
        padding-top: 180px;
        padding-bottom: 50px;
    }

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

    .footer_1 .site_ttl_1 {
        width: 120px;
    }

    .footer_1 .nav_1 {
        margin-bottom: 20px;
    }
    .footer_1 .nav_1 > ul > li + li {
        margin-left: 20px;
    }
    .footer_1 .copyright_1 {
        font-size: 11px;
    }
}

/* ---------------------------------------------------- */
/* sec_mv_wrap */
/* ---------------------------------------------------- */
@keyframes btn_scrl_1 {
    0% {
        bottom: 65px;
    }

    100% {
        bottom: -10px;
    }
}

@keyframes btn_scrl_1_sp {
    0% {
        bottom: 15px;
    }

    100% {
        bottom: -10px;
    }
}

@keyframes btn_scrl_2 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}
.sec_mv_wrap {
    min-height: 700px;
}

.sec_mv_wrap .sec_inner {
    max-width: 1800px;
    height: 100%;
}

.sec_mv_wrap .site_ttl_1 {
    position: absolute;
    left: 120px;
    top: 50%;
    width: 350px;
    transform: translateY(-50%);
    z-index: 2;
}

.sec_mv_wrap .img_1 {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 30px);
}

.sec_mv_wrap .img_1 > span {
    padding-top: 585px;
    background-position: right center;
    background-size: contain;
}

.sec_mv_wrap .img_1 figcaption {
    padding-right: 50px;
    text-align: right;
    font-size: 12px;
}

.sec_mv_wrap .btn_scrl_1 {
    position: absolute;
    left: 50%;
    bottom: 20px;
    padding-bottom: 80px;
    width: max-content;
    color: var(--co_1);
    transform: translateX(-50%);
    z-index: 10;
}

.sec_mv_wrap .btn_scrl_1:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 8px);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--co_1);
    z-index: 2;
    animation: btn_scrl_1 1.6s ease-in-out infinite, btn_scrl_2 1.6s ease-out infinite;
}

.sec_mv_wrap .btn_scrl_1:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 70px;
    background-color: var(--co_1);
}

.sec_mv_wrap .btn_scrl_1 span {
    font-size: 20px;
    letter-spacing: 0.05em;
    text-align: center;
    transition: 0.3s ease-in-out;
}

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

    .sec_mv_wrap .sec_inner {
        padding-top: 80px;
        max-width: none;
    }

    .sec_mv_wrap .site_ttl_1 {
        left: 0;
        width: 100%;
    }

    .sec_mv_wrap .img_1 {
        right: 0;
        width: 100%;
    }

    .sec_mv_wrap .img_1 > span {
        padding-top: 160%;
        background-position: center top;
    }

    .sec_mv_wrap .img_1 figcaption {
        margin-top: -100px;
        padding-right: 0;
        margin-right: 20px;
        font-size: 8px;
    }

    .sec_mv_wrap .btn_scrl_1 {
        bottom: 10px;
        padding-bottom: 25px;
    }

    .sec_mv_wrap .btn_scrl_1:before {
        left: calc(50% - 6px);
        width: 12px;
        height: 12px;
        animation: btn_scrl_1_sp 1.6s ease-in-out infinite, btn_scrl_2 1.6s ease-out infinite;
    }

    .sec_mv_wrap .btn_scrl_1:after {
        height: 20px;
    }

    .sec_mv_wrap .btn_scrl_1 span {
        font-size: 12px;
    }
}

/* ---------------------------------------------------- */
/* sec_guide_wrap */
/* ---------------------------------------------------- */
.sec_guide_wrap {
    padding-top: 50px;
    padding-bottom: 50px;
}
.sec_guide_wrap .caption_1 {
    display: block;
    margin: 0 auto;
    padding: 15px 25px;
    width: max-content;
    font-size: 18px;
    text-align: center;
    border: 1px solid var(--co_1);
    border-radius: 40px;
}
.sec_guide_wrap .caption_1 + .caption_1 {
    margin-top: 40px;
}
@media (max-width: 999px) {
    .sec_guide_wrap .caption_1 {
        padding: 10px 20px;
        width: auto;
        font-size: 15px;
        border-radius: 15px;
    }
    .sec_guide_wrap .caption_1 + .caption_1 {
        margin-top: 20px;
    }
}

/* ---------------------------------------------------- */
/* sec_outline_wrap */
/* ---------------------------------------------------- */
.sec_outline_wrap {
    margin-top: 100px;
    margin-bottom: 200px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.sec_outline_wrap::before {
    left: calc(50% - 550px);
    width: calc(50vw + 550px);
}

.sec_outline_wrap .deco_1 {
    left: calc(50% - 490px);
    top: 60px;
}

.sec_outline_wrap .txt_wrap_1 {
    margin-bottom: 50px;
}

.sec_outline_wrap .ttl_1 {
    margin-bottom: 20px;
    font-size: 130px;
    line-height: 1;
}

.sec_outline_wrap .desc_1 {
    font-size: 19px;
}

.sec_outline_wrap .yt_1 {
    margin: 40px auto 0;
}

.sec_outline_wrap .yt_1 > div {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.sec_outline_wrap .yt_1 iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.sec_outline_wrap .mov_1 {
    margin: 0 auto;
}

.sec_outline_wrap .mov_1 video {
    width: 100%;
}

@media (max-width: 999px) {
    .sec_outline_wrap {
        margin-bottom: 100px;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .sec_outline_wrap .deco_1 {
        display: none;
    }

    .sec_outline_wrap .txt_wrap_1 {
        margin: 0 auto 25px;
        width: max-content;
    }

    .sec_outline_wrap .ttl_1 {
        margin-bottom: 10px;
        font-size: 70px;
    }

    .sec_outline_wrap .desc_1 {
        font-size: 14px;
    }
}

/* ---------------------------------------------------- */
/* sec_about_wrap */
/* ---------------------------------------------------- */
.sec_about_wrap {
    margin-bottom: 200px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.sec_about_wrap::before {
    right: calc(50% - 550px);
    width: calc(50vw + 550px);
}

.sec_about_wrap .deco_1 {
    left: calc(50% + 500px);
    top: -300px;
}

.sec_about_wrap .ttl_1 {
    margin-bottom: 10px;
}

.sec_about_wrap .ttl_1::after {
    left: auto;
    right: 0;
    width: 100vw;
}

.sec_about_wrap .desc_1 {
    margin-bottom: 40px;
    font-size: 18px;
}

.sec_about_wrap .slide_1 {
    margin-bottom: 50px;
}

.sec_about_wrap .slide_1 .item {
    padding: 0 10px;
}

.sec_about_wrap .slide_1 .img {
    background-color: var(--co_2);
}

.sec_about_wrap .slide_1 .img img {
    width: auto;
    height: 480px;
    opacity: 0.3;
    transition: opacity 0.3s ease-in-out;
}

.sec_about_wrap .slide_1 .slick-active .img img {
    opacity: 1;
}

.sec_about_wrap .slide_1 .caption {
    margin-top: 10px;
    text-align: right;
}

.sec_about_wrap .btn_toggle_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 500px;
    height: 50px;
    border: 1px solid var(--co_1);
    border-radius: 25px;
}

.sec_about_wrap .btn_toggle_1::before {
    content: "Immersive Museumについて詳しく";
}

.sec_about_wrap .btn_toggle_1.is_show::before {
    content: "閉じる";
}

.sec_about_wrap .toggle_wrap_1 {
    display: none;
    margin-bottom: 50px;
}

.sec_about_wrap .clms_wrap_1 {
    display: flex;
    padding-top: 50px;
    border-top: 1px solid var(--co_1);
}

.sec_about_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
    flex: none;
    margin-right: 40px;
    width: 180px;
}

.sec_about_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(2) {
    flex: auto;
    width: auto;
}

.sec_about_wrap .img_1 {
    margin-bottom: 10px;
}

.sec_about_wrap .name_1 {
    margin-bottom: 20px;
    font-size: 13px;
}

.sec_about_wrap .name_1 span {
    margin-right: 10px;
    font-size: 18px;
}

.sec_about_wrap .desc_3 {
    font-size: 11px;
    line-height: 1.8;
}

.sec_about_wrap .clms_wrap_2 {
    display: flex;
    margin-bottom: 50px;
}

.sec_about_wrap .clms_wrap_2 > .clm_wrap:nth-of-type(1) {
    flex: none;
    margin-right: 40px;
    width: 380px;
}

.sec_about_wrap .clms_wrap_2 > .clm_wrap:nth-of-type(2) {
    flex: auto;
    width: auto;
}
.sec_about_wrap .ttl_2 {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    line-height: 1.4;
}
.sec_about_wrap .ttl_2 > span > span:nth-of-type(1) {
    display: block;
    font-size: 16px;
}
.sec_about_wrap .ttl_2 > span > span:nth-of-type(2) {
    display: block;
    font-size: 21px;
}

.sec_about_wrap .ttl_2::after {
    content: "";
    flex: auto;
    margin-bottom: 5px;
    margin-left: 30px;
    width: auto;
    height: 1px;
    background-color: var(--co_1);
}

.sec_about_wrap .img_2 figcaption {
    margin-top: 10px;
    font-size: 11px;
}

@media (max-width: 999px) {
    .sec_about_wrap {
        margin-bottom: 100px;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .sec_about_wrap::before {
        right: calc(50% - 550px);
        width: calc(50vw + 550px);
    }

    .sec_about_wrap .deco_1 {
        left: -25px;
        top: -120px;
    }

    .sec_about_wrap .ttl_1 {
        margin-bottom: 20px;
    }

    .sec_about_wrap .ttl_1::after {
        left: auto;
        right: 0;
        width: 100vw;
    }

    .sec_about_wrap .desc_1 {
        margin-bottom: 35px;
        font-size: 16px;
    }

    .sec_about_wrap .slide_1 {
        margin-bottom: 35px;
    }

    .sec_about_wrap .slide_1 .item {
        padding: 0 5px;
    }

    .sec_about_wrap .slide_1 .img img {
        height: 220px;
    }

    .sec_about_wrap .btn_toggle_1 {
        width: auto;
        height: 40px;
    }

    .sec_about_wrap .toggle_wrap_1 {
        margin-bottom: 40px;
    }

    .sec_about_wrap .clms_wrap_1 {
        display: block;
        padding-top: 40px;
    }

    .sec_about_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
        margin: 0 auto 20px;
        width: 180px;
    }
    .sec_about_wrap .clms_wrap_2 {
        display: block;
        margin-bottom: 40px;
    }

    .sec_about_wrap .clms_wrap_2 > .clm_wrap:nth-of-type(1) {
        margin-right: 0;
        margin-bottom: 20px;
        width: auto;
    }

    .sec_about_wrap .img_1 {
        margin-bottom: 10px;
    }

    .sec_about_wrap .name_1 {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .sec_about_wrap .name_1 span {
        margin-right: 10px;
        font-size: 16px;
    }

    .sec_about_wrap .desc_3 {
        font-size: 1px;
        line-height: 1.8;
    }
    .sec_about_wrap .ttl_2 {
        margin-bottom: 10px;
    }

    .sec_about_wrap .ttl_2::after {
        margin-bottom: 5px;
        margin-left: 20px;
    }
    .sec_about_wrap .ttl_2 > span > span:nth-of-type(1) {
        font-size: 15px;
    }
    .sec_about_wrap .ttl_2 > span > span:nth-of-type(2) {
        font-size: 20px;
    }

    .sec_about_wrap .desc_2 {
        margin-bottom: 40px;
    }

    .sec_about_wrap .img_2 figcaption {
        margin-top: 10px;
        font-size: 10px;
    }
    .sec_about_wrap .slide_1 .caption {
        font-size: 10px;
    }
}

/* ---------------------------------------------------- */
/* sec_ambassador_wrap */
/* ---------------------------------------------------- */
.sec_ambassador_wrap {
    margin-bottom: 100px;
    padding-top: 70px;
    padding-bottom: 70px;
    pointer-events: none;
}

.sec_ambassador_wrap::before {
    left: calc(50% - 550px);
    width: calc(50vw + 550px);
}

.sec_ambassador_wrap .deco_1 {
    left: calc(50% - 600px);
    top: -300px;
}

.sec_ambassador_wrap .ttl_1 {
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 30px;
    width: 440px;
    text-align: left;
}

.sec_ambassador_wrap .ttl_1::after {
    width: 100vw;
}

.sec_ambassador_wrap .clms_wrap_1 {
    display: flex;
    justify-content: space-between;
}

.sec_ambassador_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
    flex: none;
    margin-left: 40px;
    margin-right: 100px;
    margin-top: -80px;
    width: 370px;
}

.sec_ambassador_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(2) {
    flex: auto;
    width: auto;
}

.sec_ambassador_wrap .name_1 {
    margin: 50px 0;
    line-height: 1.8;
}

.sec_ambassador_wrap .name_1 > span {
    display: block;
}

.sec_ambassador_wrap .name_1 > span:nth-of-type(2) {
    font-size: 18px;
}
.sec_ambassador_wrap .name_1 > span:nth-of-type(2) > span {
    font-size: 14px;
}
.sec_ambassador_wrap .img_1 {
    pointer-events: none;
}
.sec_ambassador_wrap .img_1 > span {
    padding-top: 150%;
    background-image: url(../img/ambassador/1.jpg);
}
@media (max-width: 999px) {
    .sec_ambassador_wrap {
        margin-bottom: 50px;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .sec_ambassador_wrap .deco_1 {
        left: -25px;
        top: -130px;
    }

    .sec_ambassador_wrap .ttl_1 {
        margin-left: auto;
        margin-right: 0;
        margin-bottom: 30px;
        width: auto;
    }

    .sec_ambassador_wrap .clms_wrap_1 {
        display: block;
    }

    .sec_ambassador_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        width: auto;
    }
    .sec_ambassador_wrap .img_1 {
        margin-top: 10px;
    }

    .sec_ambassador_wrap .name_1 {
        margin: 30px 0;
    }

    .sec_ambassador_wrap .name_1 > span:nth-of-type(2) {
        font-size: 16px;
    }
    .sec_ambassador_wrap .name_1 > span:nth-of-type(2) > span {
        font-size: 12px;
    }
}

/* ---------------------------------------------------- */
/* sec_guide_wrap */
/* ---------------------------------------------------- */
.sec_guide_wrap {
    margin-bottom: 100px;
}
.sec_guide_wrap .ttl_1 {
    margin-bottom: 40px;
    font-size: 26px;
    text-align: center;
}
.sec_guide_wrap .bnr_1 {
    display: block;
    margin: 0 auto;
    width: 902px;
    border: 1px solid var(--co_1);
}

@media (max-width: 999px) {
    .sec_guide_wrap {
        margin-bottom: 50px;
    }
    .sec_guide_wrap .ttl_1 {
        margin-bottom: 20px;
        font-size: 17px;
    }
    .sec_guide_wrap .bnr_1 {
        width: auto;
    }
}
/* ---------------------------------------------------- */
/* sec_information_wrap */
/* ---------------------------------------------------- */
.sec_information_wrap {
    margin-bottom: 200px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.sec_information_wrap::before {
    right: calc(50% - 550px);
    width: calc(50vw + 550px);
}

.sec_information_wrap .deco_1 {
    left: calc(50% - 600px);
    top: -300px;
}

.sec_information_wrap .ttl_1 {
    margin-bottom: 30px;
    width: auto;
    text-align: left;
}

.sec_information_wrap .ttl_1::after {
    left: auto;
    right: 0;
    width: 100vw;
}
.sec_information_wrap .ttl_2 {
    margin-bottom: 30px;
    font-size: 22px;
}

.sec_information_wrap .clms_wrap_1 {
    display: flex;
    justify-content: space-between;
}

.sec_information_wrap .clms_wrap_1 > .clm_wrap {
    flex: none;
    width: calc(50% - 20px);
}

.sec_information_wrap .list_1 table {
}

.sec_information_wrap .list_1 th,
.sec_information_wrap .list_1 td {
    padding-bottom: 30px;
}

.sec_information_wrap .list_1 tr:last-of-type th,
.sec_information_wrap .list_1 tr:last-of-type td {
    padding-bottom: 0;
}

.sec_information_wrap .list_1 th {
    padding-right: 10px;
    width: 100px;
    line-height: 2;
    white-space: nowrap;
}
.sec_information_wrap .list_1 th.border {
    padding-top: 20px;
    border-top: 1px solid var(--co_1);
}

.sec_information_wrap .list_1 .sponsor {
    display: flex;
    margin-top: -5px;
    margin-right: -15px;
}

.sec_information_wrap .list_1 .sponsor img {
    margin-right: 15px;
    width: auto;
    height: 40px;
}

.sec_information_wrap .map_1 {
    margin-bottom: 30px;
}

.sec_information_wrap .map_1 iframe {
    width: calc(50vw - 30px);
    height: 380px;
}

.sec_information_wrap .address_1 {
    margin-bottom: 30px;
}

@media (max-width: 999px) {
    .sec_information_wrap {
        margin-bottom: 100px;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .sec_information_wrap .deco_1 {
        left: auto;
        right: -25px;
        top: -120px;
    }

    .sec_information_wrap .ttl_1 {
        margin-bottom: 35px;
    }
    .sec_information_wrap .ttl_2 {
        font-size: 18px;
    }
    .sec_information_wrap .clms_wrap_1 {
        display: block;
    }

    .sec_information_wrap .clms_wrap_1 > .clm_wrap {
        width: auto;
    }

    .sec_information_wrap .clms_wrap_1 > .clm_wrap:nth-of-type(1) {
        margin-bottom: 20px;
    }
    .sec_information_wrap .list_1 table {
        width: 100%;
    }
    .sec_information_wrap .list_1 th,
    .sec_information_wrap .list_1 td {
        padding-bottom: 20px;
    }

    .sec_information_wrap .list_1 th {
        padding-right: 10px;
        width: 80px;
    }
    .sec_information_wrap .list_1 .sponsor {
        margin-right: -10px;
    }

    .sec_information_wrap .list_1 .sponsor img {
        margin-right: 8px;
        height: 40px;
    }
    .sec_information_wrap .map_1 {
        margin-bottom: 20px;
    }

    .sec_information_wrap .map_1 iframe {
        width: 100%;
        height: 300px;
    }

    .sec_information_wrap .address_1 {
        margin-bottom: 20px;
    }
}

/* ---------------------------------------------------- */
/* sec_sns_wrap */
/* ---------------------------------------------------- */
.sec_sns_wrap {
    margin-bottom: 200px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.sec_sns_wrap::before {
    left: calc(50% - 550px);
    width: calc(50vw + 550px);
}

.sec_sns_wrap .tw_1 {
    margin: 0 auto;
    width: 600px;
}

@media (max-width: 999px) {
    .sec_sns_wrap {
        margin-bottom: 100px;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .sec_sns_wrap .tw_1 {
        width: auto;
    }
}

/* ---------------------------------------------------- */
/* sec_ticket_wrap */
/* ---------------------------------------------------- */
.sec_ticket_wrap {
    margin-bottom: 200px;
    padding-top: 70px;
    padding-bottom: 70px;
}

.sec_ticket_wrap::before {
    left: calc(50% - 550px);
    width: 1100px;
}

.sec_ticket_wrap .deco_1 {
    left: calc(50% + 500px);
    top: 140px;
}

.sec_ticket_wrap .ttl_1 {
    margin: 0 auto 70px;
    width: 100%;
}

.sec_ticket_wrap .price_1 {
    margin-bottom: 50px;
}

.sec_ticket_wrap .ttl_2 {
    margin-top: 80px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.sec_ticket_wrap .ttl_2::after {
    content: "";
    flex: auto;
    margin-left: 30px;
    width: auto;
    height: 1px;
    background-color: var(--co_1);
}

.sec_ticket_wrap .bnr_1 {
    margin-top: 80px;
    display: block;
}

.sec_ticket_wrap .ttl_4 {
    margin-top: 40px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 26px;
}

.sec_ticket_wrap .ttl_4::after {
    content: "";
    flex: auto;
    margin-left: 30px;
    width: auto;
    height: 1px;
    background-color: var(--co_1);
}

.sec_ticket_wrap .desc_1 {
    margin-bottom: 50px;
}

.sec_ticket_wrap .ttl_3 {
    margin-bottom: 20px;
    font-size: 26px;
}
.sec_ticket_wrap .pg_1 {
    margin-bottom: 50px;
}

.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% / 4 - 10px);
}

.sec_ticket_wrap .pg_1 a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: var(--co_1);
}

.sec_ticket_wrap .pg_1 .date {
    margin-top: 20px;
    font-size: 18px;
}
.sec_ticket_wrap .box_1 {
    border: 1px solid #00ace2;
    border-left-color: #c6e0ee;
    border-top: none;
}

.sec_ticket_wrap .box_1 .content {
    padding: 30px;
}
.sec_ticket_wrap .box_1 .ttl {
    padding: 10px;
    color: var(--co_2);
    font-size: 24px;
    text-align: center;
    background: linear-gradient(90deg, #c6e0ee 0%, #00ace2 100%);
}
.sec_ticket_wrap .box_1 .list {
    margin-bottom: 20px;
}
@media (max-width: 999px) {
    .sec_ticket_wrap {
        margin-bottom: 100px;
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .sec_ticket_wrap .deco_1 {
        left: auto;
        right: -25px;
        top: -120px;
    }

    .sec_ticket_wrap .ttl_1 {
        margin-bottom: 35px;
    }

    .sec_ticket_wrap .price_1 {
        margin-bottom: 30px;
    }
    .sec_ticket_wrap .ttl_2 {
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .sec_ticket_wrap .bnr_1 {
        margin-top: 50px;
    }

    .sec_ticket_wrap .ttl_4 {
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 16px;
    }

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

    .sec_ticket_wrap .desc_1 {
        margin-bottom: 30px;
    }

    .sec_ticket_wrap .ttl_3 {
        margin-bottom: 10px;
        font-size: 20px;
    }

    .sec_ticket_wrap .pg_1 {
        margin-bottom: 50px;
    }

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

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

    .sec_ticket_wrap .pg_1 a img {
        width: auto;
        height: 40px;
    }
    .sec_ticket_wrap .pg_1 .date {
        margin-top: 20px;
        font-size: 16px;
    }
    .sec_ticket_wrap .box_1 .content {
        padding: 20px;
    }
    .sec_ticket_wrap .box_1 .ttl {
        padding: 10px;
        font-size: 18px;
    }
    .sec_ticket_wrap .box_1 .list {
        font-size: 12px;
    }
    .sec_ticket_wrap .box_1 .desc {
        font-size: 12px;
    }
}

/* ---------------------------------------------------- */
/* sec_goods_wrap */
/* ---------------------------------------------------- */
.sec_goods_wrap {
    margin-bottom: 200px;
    padding-top: 70px;
    padding-bottom: 100px;
}

.sec_goods_wrap::before {
    left: calc(50% - 550px);
    width: calc(50vw + 550px);
}

.sec_goods_wrap .ttl_1 {
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 70px;
    padding-left: 80px;
}

.sec_goods_wrap .ttl_1::after {
    width: 100vw;
}

.sec_goods_wrap .slide_1 .item {
    padding: 0 5px;
}
.sec_goods_wrap .slide_1 .item .img {
    background-size: cover;
    background-position: center;
}

.sec_goods_wrap .deco_1 {
    left: calc(50% - 600px);
    top: -300px;
}
@media (max-width: 999px) {
    .sec_goods_wrap {
        margin-bottom: 100px;
        padding-top: 35px;
        padding-bottom: 50px;
    }

    .sec_goods_wrap .deco_1 {
        left: auto;
        right: -25px;
        top: -120px;
    }

    .sec_goods_wrap .ttl_1 {
        margin-bottom: 35px;
    }
}
/* ---------------------------------------------------- */
/* sec_cafe_wrap */
/* ---------------------------------------------------- */
.sec_cafe_wrap {
    margin-bottom: 200px;
    padding-top: 70px;
    padding-bottom: 100px;
}

.sec_cafe_wrap::before {
    left: calc(50% - 550px);
    width: calc(50vw + 550px);
}

.sec_cafe_wrap .deco_1 {
    left: calc(50% - 600px);
    bottom: -300px;
}

.sec_cafe_wrap .ttl_1 {
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 70px;
}

.sec_cafe_wrap .ttl_1::after {
    width: 100vw;
}

.sec_cafe_wrap .slide_1 .item {
    padding: 0 5px;
}

.sec_cafe_wrap .comingsoon_1 {
    font-size: 55px;
    text-align: center;
    background: linear-gradient(90deg, #0073a9 0%, #659f8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 999px) {
    .sec_cafe_wrap {
        margin-bottom: 100px;
        padding-top: 35px;
        padding-bottom: 50px;
    }

    .sec_cafe_wrap .deco_1 {
        left: -25px;
        bottom: -130px;
    }

    .sec_cafe_wrap .ttl_1 {
        margin-left: auto;
        margin-right: 0;
        margin-bottom: 35px;
    }

    .sec_cafe_wrap .comingsoon_1 {
        font-size: 40px;
    }
}

/* ---------------------------------------------------- */
/* sec_interactive_wrap */
/* ---------------------------------------------------- */
.sec_interactive_wrap {
    padding-top: 70px;
    padding-bottom: 100px;
    margin-bottom: 200px;
}

.sec_interactive_wrap::before {
    right: calc(50% - 550px);
    width: calc(50vw + 550px);
}
.sec_interactive_wrap .ttl_1 {
    margin-bottom: 70px;
    width: 50%;
    text-align: left;
}

.sec_interactive_wrap .ttl_1::after {
    left: auto;
    right: 0;
    width: 100vw;
}
.sec_interactive_wrap .list_1 {
    margin-bottom: 60px;
}
.sec_interactive_wrap .list_1 > ul > li {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.sec_interactive_wrap .list_1 > ul > li + li {
    margin-top: 60px;
}

.sec_interactive_wrap .list_1 > ul > li > .clm_wrap {
    flex: none;
    width: calc(100% / 2 - 20px);
}
.sec_interactive_wrap .list_1 > ul > li:nth-child(even) > .clm_wrap:nth-of-type(2) {
    order: -1;
}

.sec_interactive_wrap .list_1 .ttl {
    margin-bottom: 10px;
    font-size: 30px;
}

.sec_interactive_wrap .list_1 .copy {
    margin-bottom: 20px;
    font-size: 20px;
}
.sec_interactive_wrap .list_1 .desc {
    font-size: 13px;
}
.sec_interactive_wrap .list_2 {
    padding: 40px;
    border: 1px solid var(--co_1);
}
.sec_interactive_wrap .list_2 > ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.sec_interactive_wrap .list_2 > ul > li {
    flex: none;
    width: calc(100% / 2 - 20px);
}
.sec_interactive_wrap .list_2 .ttl {
    margin-top: 20px;
    font-size: 13px;
}
.sec_interactive_wrap .list_2 .img {
    pointer-events: none;
}
.sec_interactive_wrap .list_2 .img > span {
    padding-top: 137%;
}

@media (max-width: 999px) {
    .sec_interactive_wrap {
        padding-top: 35px;
        padding-bottom: 35px;
        margin-bottom: 100px;
    }
    .sec_interactive_wrap .ttl_1 {
        margin-bottom: 35px;
    }
    .sec_interactive_wrap .list_1 {
        margin-bottom: 60px;
    }
    .sec_interactive_wrap .list_1 > ul > li {
        display: block;
    }
    .sec_interactive_wrap .list_1 > ul > li + li {
        margin-top: 60px;
    }

    .sec_interactive_wrap .list_1 > ul > li > .clm_wrap {
        width: auto;
    }
    .sec_interactive_wrap .list_1 > ul > li > .clm_wrap + .clm_wrap {
        margin-top: 20px;
    }
    .sec_interactive_wrap .list_1 .ttl {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .sec_interactive_wrap .list_1 .copy {
        margin-bottom: 20px;
        font-size: 16px;
    }
    .sec_interactive_wrap .list_1 .desc {
        font-size: 12px;
    }
    .sec_interactive_wrap .list_2 {
        padding: 20px;
    }
    .sec_interactive_wrap .list_2 > ul {
        display: block;
    }
    .sec_interactive_wrap .list_2 > ul > li {
        flex: none;
        width: auto;
    }
    .sec_interactive_wrap .list_2 > ul > li + li {
        margin-top: 40px;
    }
    .sec_interactive_wrap .list_2 .ttl {
        margin-top: 10px;
        font-size: 10px;
    }
}

/* ---------------------------------------------------- */
/* sec_faq_wrap */
/* ---------------------------------------------------- */
.sec_faq_wrap {
    padding-top: 70px;
    padding-bottom: 200px;
}

.sec_faq_wrap::before {
    right: calc(50% - 550px);
    width: calc(50vw + 550px);
}

.sec_faq_wrap .deco_1 {
    left: calc(50% + 500px);
    bottom: 200px;
}

.sec_faq_wrap .ttl_1 {
    margin-bottom: 70px;
    width: 50%;
    text-align: left;
}

.sec_faq_wrap .ttl_1::after {
    left: auto;
    right: 0;
    width: 100vw;
}

.sec_faq_wrap .list_1 .cat {
    margin-bottom: 20px;
    font-size: 20px;
}

.sec_faq_wrap .list_1 * + .cat {
    margin-top: 30px;
}

.sec_faq_wrap .list_1 > ul > li + li {
    margin-top: 30px;
}

.sec_faq_wrap .list_1 .q {
    position: relative;
    padding: 15px 20px;
    padding-right: 60px;
    font-size: 16px;
    text-align: justify;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    background-color: var(--co_2);
    transition: 0.3s ease-in-out;
}

.sec_faq_wrap .list_1 .q i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 20px;
    height: 20px;
    transition: 0.3s ease-in-out;
}

.sec_faq_wrap .list_1 .q.is_show i {
    transform: translateY(-50%) rotate(135deg);
}

.sec_faq_wrap .list_1 .q i::before,
.sec_faq_wrap .list_1 .q i::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_faq_wrap .list_1 .q i::before {
    width: 2px;
    height: 20px;
}

.sec_faq_wrap .list_1 .q i::after {
    width: 20px;
    height: 2px;
}

.sec_faq_wrap .list_1 .a {
    display: none;
    padding: 15px 20px;
    background-color: var(--co_4);
}

.sec_faq_wrap .list_1 .a a {
    color: #00a0e9;
}

@media (max-width: 999px) {
    .sec_faq_wrap {
        padding-top: 35px;
        padding-bottom: 100px;
    }

    .sec_faq_wrap .deco_1 {
        left: auto;
        right: -25px;
        bottom: -100px;
    }

    .sec_faq_wrap .ttl_1 {
        margin-bottom: 35px;
    }

    .sec_faq_wrap .list_1 .cat {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .sec_faq_wrap .list_1 * + .cat {
        margin-top: 20px;
    }

    .sec_faq_wrap .list_1 > ul > li + li {
        margin-top: 30px;
    }

    .sec_faq_wrap .list_1 .q {
        position: relative;
        padding: 10px 15px;
        padding-right: 40px;
        font-size: 14px;
    }

    .sec_faq_wrap .list_1 .q i {
        right: 10px;
        width: 16px;
        height: 16px;
    }

    .sec_faq_wrap .list_1 .q i::before {
        height: 16px;
    }

    .sec_faq_wrap .list_1 .q i::after {
        width: 16px;
    }

    .sec_faq_wrap .list_1 .a {
        padding: 10px 15px;
    }

    .sec_faq_wrap .list_1 .a a {
        color: #00a0e9;
    }
}
/* ---------------------------------------------------- */
/* sec_archive_wrap */
/* ---------------------------------------------------- */
.sec_archive_wrap {
    padding-top: 100px;
}

.sec_archive_wrap .list_1 > ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sec_archive_wrap .list_1 > ul > li {
    width: 420px;
}
.sec_archive_wrap .list_1 a {
    display: block;
    border: 1px solid var(--co_1);
}
.sec_archive_wrap .list_1 .ttl {
    margin-bottom: 20px;
    font-size: 18px;
}

@media (max-width: 999px) {
    .sec_archive_wrap {
        padding-top: 50px;
    }
    .sec_archive_wrap .list_1 {
        margin: 0 20px;
    }
    .sec_archive_wrap .list_1 > ul {
        margin-bottom: -20px;
    }
    .sec_archive_wrap .list_1 > ul > li {
        margin-bottom: 20px;
        width: 100%;
    }
    .sec_archive_wrap .list_1 .ttl {
        margin-bottom: 10px;
        font-size: 18px;
    }
}
