.user-story__event-area-custom {
    max-height: none;
}

.user-story__author-name {
    font-size: var(--people-font-size-sm);
    color: var(--people-text-color);
    font-weight: bold;
    margin-top: 2px;
    line-height: 1;
    cursor: pointer;
}

.user-story__hr-custom {
    margin: 0px 20px 15px 0px;
    width: 100%;
}

.user-story__li-flex {
    display: flex;
}

.user-story__img-thumb {
    height: 100%;
    width: 200px;
    height: 100px;
    object-fit: cover;
}

.user-story__img-thumb-pointer {
    height: 100%;
    width: 200px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
}

.user-story__detail-custom {
    flex: 1;
    min-width: 0;
    margin-left: 20px;
    margin-bottom: 10px;
}

.user-story__organizer {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.user-story__flex-l-custom {
    display: flex;
    flex: 1;
    min-width: 0;
}

.user-story__avatar {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    border: 1px solid var(--people-border-gray);
    display: inline-block;
    margin-right: 5px;
    flex-shrink: 0;
}

.name-area {
    flex: 1;
    min-width: 0;
    padding-right: 10px;
}

.user-story__author-name {
    font-size: var(--people-font-size-sm);
    color: var(--people-text-color);
    font-weight: bold;
    margin-top: 2px;
    line-height: 1.3;
    cursor: pointer;
    word-wrap: break-word;
    word-break: break-word;
}

.user-story__author-date {
    font-size: var(--people-font-size-xs);
    margin-top: 3px;
    color: var(--people-text-gray-light);
    line-height: 1;
    white-space: nowrap;
}

.user-story__sns-area {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.user-story__sns-area li {
    font-size: var(--people-font-size-s);
    margin-left: 15px;
    position: relative;
}

.user-story__li-margin {
    margin-left: 15px;
}

.user-story__category-link {
    padding-right: 10px;
    color: var(--people-color-orange);
}

.user-story__category-link:hover {
    color: var(--people-color-orange);
}

.user-story__event-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
    column-gap: 10px;
    row-gap: 5px;
}

.user-story__tag-li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    color: var(--people-color-orange);
    font-size: var(--people-font-size-s);
    font-weight: bold;
    line-height: 1;
    border: 1px solid var(--people-color-orange);
    border-radius: var(--people-border-radius);
    padding: 0px 10px;
}

.user-story__tag-li a:hover {
    color: var(--people-color-orange);
}

.user-story__tag-a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    width: 100%;
    height: 100%;
    color: var(--people-color-orange);
}

.user-story__category-post {
    margin-top: 10px;
    letter-spacing: 0px;
    color: var(--people-color-orange);
    font-size: var(--people-font-size-sm);
    font-weight: bold;
    opacity: 1;
}

.user-story__clip-btn {
    border: 1px solid var(--people-color-orange) !important;
    display: inline-flex;                               /* アイコンとテキストを横並びで中央揃え */
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: var(--people-border-radius);
    padding: 5px 10px;
    min-width: 90px;
    background-color: var(--people-color-white) !important;
    white-space: nowrap !important;
    color: var(--people-color-orange) !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.user-story__clip-btn:hover {
    background-color: var(--people-orange-bg-hover) !important;
    text-decoration: none !important;
}

.user-story__clip-btn.clip-active {
    background-color: var(--people-color-orange) !important;
    color: var(--people-color-white) !important;
}

.user-story__clip-img {
    width: auto;
}

.user-story__clip-img.clip-orange {
    height: 13px;
}

.user-story__clip-img.clip-white {
    height: 10px;
}

.user-story__event-name {
    font-size: var(--people-font-size-sm);
    color: var(--people-text-color);
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
}

.user-story__event-info {
    font-size: var(--people-font-size-xs);
    color: var(--people-text-gray-light);
    line-height: 1;
}

.user-story__like-share-comment {
    font-size: var(--people-font-size-xs);
    letter-spacing: 0px;
    color: var(--people-text-gray-light);
    opacity: 1;
    pointer-events: none;
}

.user-story__clip-tooltip {
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--people-bg-tooltip);
    color: var(--people-color-white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: var(--people-font-size-s);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 100;
}

.user-story__clip-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--people-bg-tooltip) transparent transparent transparent;
}

.user-story__clip-tooltip.active {
    opacity: 0.9;
    visibility: visible;
}