@charset "UTF-8";

/* ポイント表示エリア */
.custom-lpoint-area {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: 10px;
    /* font-family: 'Noto Sans JP', sans-serif; */
    margin-bottom: 30px;
}

.custom-lpoint-logo {
    height: 1.2rem;
    margin-right: 6px;
}

.custom-lpoint-text {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.custom-lpoint-link {
    margin-left: auto;
    font-size: 12px;
    color: #002561;
    text-decoration: underline;
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

@media (min-width: 750.02px) {
    .custom-lpoint-logo {
        height: 1.6rem;
    }
    .custom-lpoint-text {
        font-size: 16px;
    }
    .custom-lpoint-link {
        font-size: 14px;
    }
}


/* モーダル用 */
.custom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
}

.custom-modal-content {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 10001;
    border-radius: 16px 16px 0 0;
    /* max-width: 500px; */
    max-width: 1285px;
    margin: 0 auto;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.custom-modal-content.is-active {
    transform: translateY(0);
}

.custom-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.custom-modal-body {
    max-width: 460px;
    margin: 0 auto;
}

.custom-modal-title {
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.custom-modal-close {
    font-size: 24px;
    background: none;
    border: none;
    color: #999;
}

/* テーブルデザイン */
.custom-point-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-bottom: 15px;
}

.custom-point-table th {
    background: #f8f8f8;
    padding: 10px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #eee;
}

.custom-point-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
}

.rank-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}
