/*
    アップロードボタン
*/
.cp_btn--upload {
    background-color: #600000;
    border-color: #600000;
    border: none;
    color: #fff;
}
.cp_btn--upload:hover {
    background-color: rgba(255, 0, 0, 0.3);
    color: #fff;
}
@media only screen and (max-width: 767px) {
    .cp_btn--upload:hover {
        border: none;
    }
}

/*
    削除ボタン
*/
.cp_btn--delete {
    background: #e00;
    color: #fff;
    border-color: #800;
    min-width: auto;
}
.cp_btn--delete::before {
    background: #f00;
}
.cp_btn--delete:hover {
    border-color: #800;
}

/*
    中サイズボタン
*/
.cp_btn--md {
    height: 50px;
    min-width: -moz-fit-content;
    min-width: fit-content;
    font-size: clamp(1.3rem, 1.0rem + 0.1vw , 1.4rem);
}
@media only screen and (max-width: 767px) {
    .cp_btn--md {
        padding: 0 var(--space-xs);
        font-size: clamp(1.1rem, 0.8rem + 0.1vw , 1.2rem);
    }
}

/*
    ドラッグアンドドロップ
*/
.drop-support {
    position: relative;
    display: none;
}

.drop-support.active {
    display: block;
}

.drop-back {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background-color: black;
    opacity: 0.5;
}
.drop-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10001;
    background-color: white;
    border: 1px solid #ffffff;
    text-align: center;
    font-weight: bold;
}
.drop-area.enter {
    border: 1px solid #000000;
}

.drop-dummy {
    background-color: #E8E8E8;
    border: 1px solid #E8E8E8;
    text-align: center;
    font-weight: bold;
}

/*
    (マイページ)同行者一覧
*/
.attendee_list {
    width: 100%;
}
.attendee_list th,
.attendee_list td {
    border-top: 1px solid #888;
    border-bottom: 1px solid #888;
    padding: 3px;
}
.attendee_list th {
    text-align: center;
}

/*
    (エクセルアップロード)同行者一覧
*/
.excel_upload .attendee_list {
    width: 100%;
}
.excel_upload .attendee_list th,
.excel_upload .attendee_list td {
    border: 1px solid #888;
    padding: 3px;
}
.excel_upload .attendee_list th {
    text-align: center;
}

/*
    (エクセルアップロード)ステータス
*/
.excel_upload .no {
    text-align: right;
}
.excel_upload .error {
    color: #ff0000;
    font-weight: bold;
}
.excel_upload .warning {
    color: #e87e18;
    font-weight: bold;
}
.excel_upload .success {
    color: #10ff00;
    font-weight: bold;
}

/*
    申込情報テキスト(禁止状態)
*/
.cp_formInit input:disabled,
.cp_formInit textarea:disabled {
    background: #d0d0d0;
}
/*
    申込情報補足
*/
form .cp_formNote {
    color: #ff0000;
}

/*
    メール設定に関する補足情報
*/
.noteMailSetting {
    font-size: 9pt;
    line-height: 13pt;
    background-color: #FBE5D6;
    padding: 5px;
}

/*
     非表示(jQueryのhide()廃止の為に使用)
*/
.hidden {
    display: none !important;
}


.password-wrapper {
    position: relative;
}

.password-wrapper button {
    position: absolute;
    z-index: 100;
    right: 10px;
    top: 10px;
    border: none;
    background: none;
}

/* edgeのパスワード欄に勝手に付く目アイコンを非表示 */
::-ms-reveal {
    display: none;
}

