@charset "utf-8";

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

/* ---------------------------------------------------- */
/* 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: #323232;
    line-height: 1.5;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    background-color: #FFF;
    overflow: hidden;
}

@media (min-width: 768px) {
    body {
        min-width: 1160px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    body {
        min-width: 320px;
        font-size: 1.5rem;
    }
}

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

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: #323232;
    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 */
/* ---------------------------------------------------- */
.contents_wrap {
    /* padding-top: 90px; */
}

@media (max-width: 767px) {
    .contents_wrap {
        /* padding-top: 50px; */
    }
}

/* ---------------------------------------------------- */
/* header */
/* ---------------------------------------------------- */
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 1160px;
    z-index: 100;
    transition: 0.3s ease-in-out;
}

header .site_ttl {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 4.0rem;
    transform: translate(-110%, -110%);
    pointer-events: none;
}

.is_page_scr header {
    background-color: rgba(255, 255, 255, 0.6);
}

header .header_inner {
    position: relative;
    height: 90px;
}

header .btn_ticket_1,
header .btn_ticket_2,
header .btn_ticket_3 {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
    width: 120px;
    height: 50px;
    color: #FFF;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    background-color: #000;
    z-index: 110;
}

header .btn_ticket_1 {
    right: 20px;
}

header .btn_ticket_2 {
    right: 160px;
}

header .btn_ticket_3 {
    right: 300px;
    width: 150px;
}

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

header .btn_toggle_menu div {
    position: relative;
    width: 30px;
    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: #000;
    transform-origin: center center;
    transition: 0.3s ease-in-out;
}

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

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

header .btn_toggle_menu div>span:after {
    transform: translateY(7px);
}

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 {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 0px);
    background-color: rgba(255, 255, 255, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 100;
}

header .toggle_wrap .toggle_inner {
    padding: 90px 0 40px;
}

header .ttl_1 {
    margin-top: 50px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

header .nav_h_1 {
    padding: 20px 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;
    color: #000;
    font-weight: 700;
    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 .nav_h_1>ul>li>a.cs_link_none {
    color: #ACADAD;
}

header .nav_h_1>ul>li>a.en {
    font-size: 3.0rem;
}

header .nav_h_1>ul>li>a.ja {
    font-size: 2.8rem;
}

header .nav_h_2 {
    position: absolute;
    left: 120px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 110;
}

header .nav_h_2>ul {
    display: flex;
}

header .nav_h_2>ul>li+li {
    margin-left: 10px;
}

header .nav_h_2 a {
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

header .nav_h_2 .tw a {
    background-image: url(../img/ico/sns_tw_1.svg);
}

header .nav_h_2 .in a {
    background-image: url(../img/ico/sns_in_1.svg);
}

header .nav_h_2 .yt a {
    background-image: url(../img/ico/sns_yt_1.svg);
}

@media (max-width: 767px) {
    header {
        min-width: auto;
    }

    header .header_inner {
        position: relative;
        height: 50px;
    }

    header .btn_ticket_1,
    header .btn_ticket_2,
    header .btn_ticket_3 {
        width: 60px;
        height: 30px;
        color: #FFF;
        font-size: 1.0rem;
    }

    header .btn_ticket_1 {
        right: 10px;
    }

    header .btn_ticket_2 {
        right: 75px;
    }

    header .btn_ticket_3 {
        right: 140px;
        width: 90px;
    }

    header .btn_toggle_menu {
        left: 5px;
    }

    header .ttl_1 {
        margin-top: 30px;
        font-size: 1.6rem;
    }

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

    header .nav_h_1>ul>li>a.en {
        font-size: 2.4rem;
    }

    header .nav_h_1>ul>li>a.ja {
        font-size: 2.2rem;
    }

    header .nav_h_2 {
        position: absolute;
        left: 55px;
    }

    header .nav_h_2>ul>li+li {
        margin-left: 5px;
    }

    header .nav_h_2 a {
        width: 24px;
        height: 24px;
    }

}

/* ---------------------------------------------------- */
/* footer */
/* ---------------------------------------------------- */
footer {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #FFF;
}

footer .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}

footer .site_ttl {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 4.0rem;
    transform: translate(-110%, 110%);
    pointer-events: none;
}

footer .sponser_1 {
    margin-bottom: 50px;
}

footer .sponser_1>ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -40px;
}

footer .sponser_1>ul+ul {
    margin-top: 10px;
}

footer .sponser_1>ul>li {
    margin-left: 40px;
}

footer .sponser_1 a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

footer .sponser_1 img {
    width: auto;
}

footer .sponser_1 .s11 img {
    height: 25px;
}

footer .sponser_1 .s6 img {
    height: 30px;
}

footer .sponser_1 .s3 img,
footer .sponser_1 .s5 img,
footer .sponser_1 .s7 img,
footer .sponser_1 .s12 img {
    height: 40px;
}

footer .sponser_1 .s9 img {
    height: 45px;
}

footer .sponser_1 .s15 img {
    height: 50px;
}

footer .sponser_1 .s8 img {
    height: 55px;
}

footer .sponser_1 .s4 img,
footer .sponser_1 .s10 img,
footer .sponser_1 .s13 img,
footer .sponser_1 .s14 img,
footer .sponser_1 .s16 img {
    height: 60px;
}

footer .sponser_1 .s1 img,
footer .sponser_1 .s2 img {
    height: 70px;
}


footer .ttl_1 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
}

footer .logo_1 {
    display: block;
    margin: 0 auto 20px;
    width: 100px;
}

footer .btn_supporter_1 {
    display: block;
    padding: 30px 0;
    color: #FFF;
    text-align: center;
    line-height: 1.4;
    background-color: #323232;
}

footer .btn_supporter_1>span {
    display: block;
}

footer .btn_supporter_1>span:nth-of-type(1) {
    font-size: 4.0rem;
}

footer .btn_supporter_1>span:nth-of-type(2) {
    font-size: 2.0rem;
}

footer .copyright {
    margin-top: 40px;
    font-size: 1.2rem;
    text-align: center;
}

footer .btn_fixed_1 {
    position: fixed;
    right: 0;
    top: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 300px;
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    writing-mode: vertical-rl;
    background-color: #000;
    border-radius: 5px 0 0 5px;
}

@media (max-width: 767px) {
    footer .footer_inner {
        width: calc(100% - 40px);
    }

    footer .sponser_1 {
        margin-bottom: 30px;
    }

    footer .sponser_1>ul+ul {
        margin-top: 10px;
    }

    footer .sponser_1>ul {
        margin-left: -15px;
        margin-bottom: -10px;
    }

    footer .sponser_1>ul>li {
        margin-left: 15px;
        margin-bottom: 10px;
    }

    footer .sponser_1 a {
        height: 55px;
    }

    footer .sponser_1 .s11 img {
        height: 20px;
    }

    footer .sponser_1 .s6 img {
        height: 25px;
    }

    footer .sponser_1 .s3 img,
    footer .sponser_1 .s5 img,
    footer .sponser_1 .s7 img,
    footer .sponser_1 .s12 img {
        height: 35px;
    }

    footer .sponser_1 .s9 img {
        height: 40px;
    }

    footer .sponser_1 .s15 img {
        height: 45px;
    }

    footer .sponser_1 .s8 img {
        height: 50px;
    }

    footer .sponser_1 .s4 img,
    footer .sponser_1 .s10 img,
    footer .sponser_1 .s13 img,
    footer .sponser_1 .s14 img,
    footer .sponser_1 .s16 img {
        height: 55px;
    }

    footer .sponser_1 .s1 img,
    footer .sponser_1 .s2 img {
        height: 60px;
    }

    footer .ttl_1 {
        font-size: 1.1rem;
    }

    footer .logo_1 {
        width: 80px;
    }

    footer .btn_supporter_1 {
        padding: 15px 0;
    }

    footer .btn_supporter_1>span:nth-of-type(1) {
        font-size: 2.4rem;
    }

    footer .btn_supporter_1>span:nth-of-type(2) {
        font-size: 1.6rem;
    }

    footer .btn_fixed_1 {
        width: 30px;
        height: 180px;
        font-size: 1.4rem;
    }

}