﻿@charset "utf-8";

/* -------------------- header -------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 72px;
    overflow: hidden;
    background-color: transparent;
}
.header.fade-white {
    background-color: rgba(255,255,255,.7);
}
.header-bg {
    background-color: rgba(255,255,255,.7);
}
.header-wrap {
    width: 100%;
    height: 100%;
}
.header-cv-btn {
    width: 100%;
    max-width: 175px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    background-color: #FFF100;
}
.header-cv-btn:hover {
    opacity: 1;
    color: #FFF100;
    background-color: #000;
}
.header-cv-btn-cen {
    text-align: center;
    line-height: 1.5em;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}
.menu {
    display: flex;
    align-items: center;
    width: 100%;
    padding-left: 2%;
    box-sizing: border-box;
}
.menu-item {
    margin-right: 2%;
}
.menu-item-btn {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .1em;
    color: #FFF;
}
.header-bg .menu-item-btn {
    color: #000;
}
.header.fade-white .menu-item-btn {
    color: #000;
}
@media screen and (max-width: 1200px) {
    .menu-cv-btn.menu-cv-btn-cen {
        font-size: 13px;
    }
}
@media screen and (max-width: 768px) {
    .header {
        height: 60px;
    }
    .header-logo {
        max-width: 132px;
        margin-left: 3%;
    }
    .menu-cv-btn.menu-cv-btn-cen {
        font-size: 2.4vw;
    }
}




.drawer {
    display: none;
}
.menu-btn {
    display: none;
}
.menu-cv-btn {
    display: none;
}
.menu-close-btn {
    display: none;
}

@media screen and (max-width: 1200px) {
    .header {
        display: none;
    }
    .menu-btn {
        position: fixed;
        top: 12px;
        left: 10px;
        z-index: 99;
        display: block;
        width: 33px;
        cursor: pointer;
    }
    .menu-cv-btn {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 101;
        width: 160px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 15px;
        font-weight: 600;
        color: #000;
        background-color: #FFF100;
    }

    .drawer {
        position: fixed;
        overflow-y: scroll;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transition: .3s;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
    }
    .drawer.active {
        opacity: 1;
        transform: translateX(0);
        -ms-transform: translateX(0);
    }
    .menu-close-btn {
        display: block;
        width: 100%;
        max-width: 30px;
        margin: 10px 0 0 10px;
        cursor: pointer;
        transition: .5s all;
    }
    .menu-close-btn:hover {
        transform: rotate(360deg);
        opacity: 0.8;
    }
    .drawer-menu {
        padding: 4% 2%;
    }
    .drawer-item {
        margin-bottom: 4%;
    }
    .drawer-item-btn {
        display: block;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: .1em;
        color: #FFF;
    }
}
@media screen and (max-width: 768px) {
    .drawer-menu {
        padding: 8% 2% 4% 8%;
    }
    .drawer-item-btn {
        font-size: 18px;
    }
}






.footer {
    position: relative;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    background-color: #FFF;
}
.top-btn {
    position: absolute;
    bottom: 17%;
    right: 3%;
    width: 100%;
    max-width: 17px;
}
.footer-wrapper {
    padding: 4% 0;
}
.footer-logo-btn {
    display: block;
    width: 100%;
    max-width: 316px;
    margin: 0 auto 34px;
}
.footer-contact-btn {
    display: block;
    width: 100%;
    max-width: 95px;
    margin: 0 auto 24px;
    font-size: 10px;
    text-align: center;
    font-weight: 600;
    border-right: 1px solid #555454;
    border-left: 1px solid #555454;
    color: #555454;
}
.footer-logo-btn img {
    margin-left: -10px;
}
.footer-txt {
    font-size: 21px;
    text-align: center;
    font-weight: bold;
    letter-spacing: -.001em;
    color: #555454;
}
.footer-details-txt {
    display: block;
    margin-bottom: 48px;
    font-size: 12px;
    text-align: center;
    letter-spacing: .05em;
    font-weight: bold;
    color: #555454;
}
.footer-copy-txt {
    display: block;
    font-size: 10px;
    text-align: center;
    letter-spacing: -.001em;
    font-weight: bold;
    color: #555454;
}
@media screen and (max-width: 768px) {
    .top-btn {
        bottom: 16%;
        right: 4%;
    }
    .footer-wrapper {
        padding: 10% 0 30%;
    }
    .footer-logo-btn {
        max-width: 247px;
        margin: 0 auto 6%;
    }
    .footer-contact-btn {
        margin: 0 auto 3%;
    }
    .footer-txt {
        font-size: 15px;
    }
    .footer-details-txt {
        margin-bottom: 10%;
        font-size: 10px;
    }
}

.page-sub .mv {
    position: relative;
    height: 0;
    padding-top: 25.63%;
    background-image: url(/cms/sc/img/event/scr2021/common/mv_sub_pc.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
.page-sub .mv-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1040px;
    margin: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}
.page-sub .mv-ttl {
    margin-bottom: 0;
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-size: 72px;
    font-weight: 600;
    line-height: 1em;
}
.page-sub .mv-txt {
    font-size: 19px;
    font-weight: 600;
}

.page-sub .ef.ef-bk {
    padding: 8px 0;
}
@media screen and (max-width:768px) {
    .page-sub .mv {
        position: relative;
        height: 0;
        padding-top: 47.2%;
        background-image: url(/cms/sc/img/event/scr2021/common/mv_sub_sp.jpg);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .page-sub .mv-box {
        left: 6%;
        right: auto;
        width: 94%;
    }
    .page-sub .mv-ttl {
        margin-bottom: 0;
        font-size: 40px;
    }
    .page-sub .mv-txt {
        font-size: 12px;
    }
}
