/* リストセクション */
.sgtp-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sgtp-list-title {
    margin: 0;
    font-family: var(--font-jp);
    font-size: 13px;
    color: var(--color-soft-black);
    font-weight: 400;
}

.sgtp-list-empty-message {
    font-family: var(--font-jp);
    font-size: 13px;
    color: var(--color-gray-500);
    text-align: center;
    padding: 80px 0;
    line-height: 1.6;
}

.sgtp-cards {
    width: 1200px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.sgtp-card {
    width: 291px;
    /* height: 380px; */
    height: 312px;
    background: var(--color-soft-white);
    border-radius: 8px;
    border: 1px solid var(--color-gray-200);
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.sgtp-card:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.sgtp-card-thumb {
    width: 100%;
    height: 256px;
    position: relative;
    background: var(--color-gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.sgtp-card-thumb img,
.sgtp-card-thumb video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* スライダー用ラッパー */
.sgtp-slider {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.sgtp-slider-track {
    position: absolute;
    inset: 0;
    display: flex;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.45s ease;
    will-change: transform;
}
.sgtp-slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
}
.sgtp-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sgtp-missing-cut {
    width: 100%;
    height: 100%;
    background: var(--color-soft-black);
}

.sgtp-pages-badge {
    position: absolute;
    left: 8px;
    bottom: 8px;
    background: rgba(10, 10, 10, 0.6); /* var(--color-soft-black) with opacity */
    color: var(--color-soft-white);
    border-radius: 25px;
    padding: 2px 8px;
    font-family: var(--font-base);
    font-size: 9px;
    line-height: 1;
}

.sgtp-noimage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-soft-white);
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.3;
    gap: 0;
    text-align: center;
}

.sgtp-card-meta {
    position: relative;
}

.sgtp-card-meta .sgtp-card-menu {
    position: absolute;
    top: 15.5px;
    right: 18.5px;
    width: 24px;
    height: 24px;
    border-radius: 25px;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.sgtp-card-meta .sgtp-card-menu.active {
    background: var(--color-gray-100);
}

.sgtp-card-meta .sgtp-card-menu:not(.active):hover {
    background: var(--color-gray-100);
}

.sgtp-menu-dots {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-gray-600);
    display: inline-block;
    opacity: 0.9;
}

.sgtp-card-meta {
    flex: 1;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sgtp-card-name {
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3;
    color: var(--color-soft-black);
    padding-right: 28px;
}

.sgtp-card-info {
    /* display: flex; */
    align-items: center;
    gap: 6px;
    display: none;
}

.sgtp-last-label {
    color: var(--color-gray-500);
    font-family: var(--font-base);
    font-weight: 500;
    font-size: 11px;
    width: 66px;
}

.sgtp-last-date {
    color: var(--color-gray-600);
    font-family: var(--font-base);
    font-size: 11px;
    font-weight: 400;
}

.sgtp-progress-wrap {
    /* display: flex; */
    flex-direction: column;
    gap: 10px;
    display: none;
}

.sgtp-progress-base {
    width: 100%;
    height: 8px;
    background: var(--color-gray-100);
    border-radius: 25px;
    overflow: hidden;
}

.sgtp-progress-fill {
    height: 100%;
    background: var(--color-grad-pink-purple);
    width: 0;
    border-radius: 25px;
    transition: width 0.3s ease;
}

.sgtp-progress-labels {
    display: flex;
    justify-content: space-between;
    color: var(--color-gray-600);
    font-family: var(--font-base);
    font-size: 10px;
    line-height: 1;
}