@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
body {
    font-size: 1.5rem;
    font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
    line-height: 1;
    font-weight: 500;
    color: #000000;
    background-color: #f9f9f9;
}
img {
    max-width: 100%;
}
a {
    word-break: break-all;
    transition: .1s;
}
.sp {
    display: none;
}
.en {
    font-family: "din-2014", sans-serif;
    font-weight: 400;
    font-style: italic;
}
.inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.in_in {
    max-width: 800px;
    margin: 0 auto;
}

body::-webkit-scrollbar{
    display: none;
}
@media screen and (max-width:1000px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
    .inner {
        width: 100%;
        padding: 0 5%;
    }
    .in_in {
        width: 100%;
        padding: 0 5%;
    }
}
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100lvh;
    background-color: #fff;
    padding-top: 25px;
    box-shadow: rgb(0, 0, 0) -15px 0px 30px;
}
.main-header .header_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.site-logo {
    width: 160px;
}
.header_upper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 20px;
}
.header-place {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
.header-date {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
}
.buy-ticket-button {
    width: 100%;
    border-radius: 50px;
    background-color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 14px 0;
    margin-top: 20px;
    gap: 10px;
    position: relative;
}
.buy-ticket-button .en {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
}
.buy-ticket-button .ticket-icon {
    display: block;
    width: 15px;
}
.global_menu {
    background-color: #f15a24;
    width: 100%;
    margin-top: 20px;
    flex-grow: 1;
    padding-top: 30px;
}
.global_menu .menu_item {
    display: block;
    padding: 10px 0;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    transition: all .2s;
    text-align: center;
}
.global_menu .menu_item:hover {
    opacity: .5;
}

.sp-header {
    display: none;
}

@media screen and (max-width:1000px) {
    .main-header {
        display: none;
    }
    #sub-header {
        display: none;
    }
    .sp-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        padding: 0 0 0 10px;
        background-color: #fff;
        z-index: 9999;
        box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    }
    .sp-header .sp-header-inner {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .sp-header .sp-site-logo {
        display: block;
        width: 180px;
    }
    .sp-header .hum {
        position: relative;
        width: 60px;
        height: 60px;
        cursor: pointer;
        transition: all .3s;
        z-index: 101;
    }
    .sp-header .hum i {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 16px;
        height: 2px;
        background-color: #000;
    }
    .sp-header .hum i:nth-of-type(1) {
        top:25px;
        width: 50%;
    }
    .sp-header .hum i:nth-of-type(2) {
        top:32px;
        width:30%;
    }
    .sp-header .hum.active i:nth-of-type(1) {
        top: 20px;
        left: 16px;
        transform: translate(3px,9px) rotate(-45deg);
        width: 35%;
    }
    .sp-header .hum.active i:nth-of-type(2) {
        top: 32px;
        left: 16px;
        transform: translate(3px,-3px) rotate(45deg);
        width: 35%;
    }
    .sp-header-container {
        opacity: 0;
        pointer-events: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 130%;
        background: #fff;
        z-index: 100;
        padding: 60px 0;
        pointer-events: none;
        opacity: 0;
        transition: opacity .1s linear;
        z-index: -1;
    }
    .sp-header-container.active {
        opacity: 1;
        pointer-events: all;
    }
    .sub-header_inner {
        justify-content: center;
        gap: 30px;
        margin: 25px 0;
    }
    .sub-link.mypage-link {
        width: 24px;
    }
    .sub-link {
        width: 28px;
    }
    .global_menu-sp {
        display: flex;
        flex-direction: column;
        border-top: solid 1px #000;
    }
    .global_menu-sp .menu_item {
        font-size: 1.8rem;
        font-weight: 700;
        color: #000;
        padding: 22px 5%;
        text-align: center;
        border-bottom: solid 1px #000;
    }
    .sns-links {
        gap: 30px;
        margin-top: 40px;
    }
    .sns-links .sns-link {
        width: 30px;
    }
    .sns-links .sns-link.fb {
        width: 33px;
    }
}

#MainContent,footer {
    width: calc(100% - 220px);
    margin-left: 220px;
}
@media screen and (max-width:1000px) {
    #MainContent,footer {
        width: 100%;
        margin: 0;
    }
}

.footer_link {
    background-color: #fff;
    padding: 100px 0;
}
.link_wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.link_wrap .link-item {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    width: calc(50% - 10px);
    height: 260px;
    position: relative;
    color: #fff;
}
.link_wrap .link-item .link-item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.link_wrap .link-item .link-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}
.link_wrap .link-item:hover .link-item-image img {
    transform: scale(1.1);
}
.link_wrap .link-item .footer_link_title {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.link_wrap .link-item .footer_link_title .title-en {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.link_wrap .link-item .footer_link_title .title-jp {
    font-size: 1.5rem;
}

@media screen and (max-width:1000px) {
    .footer_link {
        padding: 60px 0;
    }
    .link_wrap .link-item {
        width: 100%;
        height: auto;
        aspect-ratio: 55 / 26;
    }
    .link_wrap .link-item .footer_link_title .title-en {
        font-size: 2.5rem;
    }
    .link_wrap .link-item .footer_link_title .title-jp {
        font-size: 1.2rem;
    }
}

.pickup {
    padding: 100px 0;
    background-color: #f15a24;
}
.pickup-title {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}
.pickup-title .title-en {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.pickup-title .title-jp {
    font-size: 1.5rem;
    font-weight: 700;
}
.pickup-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.pickup-content .pickup-item-link {
    width: calc(50% - 10px);
}

@media screen and (max-width:1000px) {
    .pickup {
        padding: 60px 0;
    }
    .pickup-title {
        margin-bottom: 30px;
    }
    .pickup-title .title-en {
        font-size: 3rem;
    }
    .pickup-title .title-jp {
        font-size: 1.4rem;
    }
    .pickup-content {
        gap: 10px;
    }
    .pickup-content .pickup-item-link {
        width: 100%;
    }
}

.about-event {
    background: url(../images/common/about_bg.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0;
}
.about-title {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}
.about-title .title-en {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-title .title-jp {
    font-size: 1.5rem;
    font-weight: 700;
}
.about-content {
    display: flex;
}
.about-image {
    width: 50%;
}
.about-content .text-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
}
.about-content .text-area .about-logo {
    width: 350px;
}
.about-content .text-area .date-wrap {
    margin: 30px 0 15px;
}
.about-content .text-area .date {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
}
.about-content .text-area .date .min {
    font-size: 1.7rem;
}
.about-content .text-area .date .time {
    font-size: 1.8rem;
}
.about-content .text-area .place {
    font-size: 1.6rem;
    color: #fff;
    text-decoration: underline;
    margin-bottom: 35px;
}
.about-content .text-area .summary {
    font-size: 1.4rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    text-align: center;
}
.about-content .text-area .about-btn-wrap .more-btn {
    width: 200px;
    padding: 14px 0;
    margin-top: 10px;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    background-color: #3657e8;
    border-radius: 30px;
    display: inline-block;
}

@media screen and (max-width:1000px) {
    .about-event {
        padding: 60px 0;
    }
    .about-title {
        margin-bottom: 30px;
    }
    .about-title .title-en {
        font-size: 3rem;
    }
    .about-title .title-jp {
        font-size: 1.4rem;
    }
    .about-content {
        flex-direction: column;
    }
    .about-image {
        width: 100%;
        margin-bottom: 30px;
    }
    .about-content .text-area {
        width: 100%;
    }
    .about-content .text-area .about-logo {
        width: 270px;
    }
}

.footer-partners {
    padding: 100px 0;
}
.main-partners {
    margin-bottom: 50px;
}
.main-partner-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
}
.partner-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.normal-partner-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:1000px) {
    .footer-partners {
        padding: 60px 0;
    }
    .main-partners {
        margin-bottom: 30px;
    }
    .sub-partners .partner-list {
        gap:10px;
    }
    .sub-partners .partner-list .partner-item {
        width: calc(50% - 5px);
    }
}

.main-footer {
    background-color: #000;
    padding-top: 100px;
}
.main-footer .footer-logo {
    display: block;
    width: 220px;
    margin: 0 auto 30px;
}
.main-footer .place {
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    text-decoration: underline;
}
.main-footer .date {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 20px 0 40px;
}
.main-footer .buy-ticket-button {
    width: 200px;
    margin: 0 auto;
}
.footer-lower {
    display: flex;
    margin: 60px 0;
    gap: 100px;
}
.footer-lower .info-block {
    width: 50%;
}
.footer-lower .info-block .info-text {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #fff;
}
.footer-lower .footer-nav {
    display: flex;
    gap: 100px;
}
.footer-main-nav,
.footer-sub-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-main-nav .menu_item {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}
.footer-sub-nav .menu_item {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}
.footer-main-nav .menu_item:hover,
.footer-sub-nav .menu_item:hover {
    text-decoration: underline;
}
.main-footer .copyright {
    font-size: 1.2rem;
    text-align: center;
    color: #fff;
    padding: 15px 0;
}

@media screen and (max-width:1000px) {
    .main-footer {
        padding-top: 60px;
    }
    .main-footer .footer-logo {
        width: 180px;
        margin-bottom: 20px;
    }
    .main-footer .place {
        font-size: 1.2rem;
    }
    .main-footer .date {
        font-size: 1.8rem;
        margin: 10px 0 30px;
    }
    .footer-lower {
        flex-direction: column;
        gap: 40px;
        margin: 40px 0;
    }
    .footer-lower .info-block {
        width: 100%;
        text-align: center;
    }
    .footer-lower .footer-nav {
        justify-content: center;
    }
    .footer-lower .footer-nav .footer-main-nav {
        display: none;
    }
    .footer-sub-nav {
        align-items: center;
    }
}