@charset "UTF-8";
/* ----------------------------------------------
    エントリー画面
------------------------------------------------- */
.kv {
    position: relative;
}
.kv_demo {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.kv_demo span {
    display: block;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
}
.kv img {
    width: 100%;
    height: auto;
}

.entryTerm {
    font-size: 20px;
    text-align: center;
    font-feature-settings: 'palt' on;
    text-overflow: ellipsis;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    color: var(--red, #E50065);
    margin-top: 20px;
}

.bl_systemMessageWrapper.forCompe {
    border-bottom: none;
}

.bl_detail_text {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 180%;
    word-break: break-all;
}
.bl_detail_text + .bl_commonBtn {
    margin-top: 0;
}
.bl_common_inner + .bl_detail_text {
    margin-top: 40px;
}

.bl_join_list li a {
    color: #245FBB;
    text-decoration: none;
}
.bl_join_list li a:hover {
    text-decoration: underline;
}

.fixedArea_redText {
    color: var(--red, #E50065);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 160%; /* 22.4px */
}
.fixedArea_redText + .bl_fixedArea_text {
    margin-top: 8px;
}

.bl_commonBtn_disabled + .textRed {
    margin-top: 10px;
}

#systemMessage {
    border-bottom: none;
    padding-bottom: 0;
}

#answerForm {
    display: none;
}
#registerButton {
    display: none;
}

/* 上書き */
.bl_commonTitle-font20 {
    border-bottom: none;
}

/* ----------------------------------------------
    共同幹事パスワード入力モーダル
------------------------------------------------- */
.js-modal {
    display: none;
    /* display: block; */
    position: fixed;
    z-index: 8887;
    left: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 1s ease-in-out;
    overscroll-behavior: contain;
    overflow-y: auto;
}
.modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 40px 0;
    background: #FFF;
    animation: show 0.6s linear 0s;
}
.js-modal__close {
    color: #C4C4C4;
    text-decoration: none;
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 18px;
}
.js-modal__close:hover,
.js-modal__close:focus {
    text-decoration: none;
    cursor: pointer;
}
@keyframes show {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@media screen and (min-width: 768px) {
    .modal__content {
        /* max-width: 360px; */
        width: 540px;
    }
}
