.author-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
}

.author-area p {
    margin-top: 0;
}

.block_title_entry .author-area p {
    line-height: 1.8;
}

.author-area .author {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.author-area .author__content {
    display: flex;
    gap: 24px;
}

.author-area .author__content img {
    width: 150px;
    height: 150px;
}

.author-area .author__item {
    display: flex;
    flex-direction: column;
}

.author-area .author__role {
    font-weight: bold;
    color: #ff6b9f;
}

.author-area .credit__role {
    font-weight: bold;
    color: #ff6b9f;
}

.author-area .source-wrapper {
    position: relative;
}

.author-area .source-wrapper .source__source-text {
    font-weight: bold;
    color: #999;
}

.author-area__popup-link {
    cursor: pointer;
}

.author-area__popup-link:hover .author__name {
    color: #999;
}

.author-area__popup-link:hover .source__magazine-title {
    color: #999;
}

.author-area__popup-link:hover .author-area__popup-icon {
    opacity: 0.5;
}

.author-area__popup-icon {
    box-sizing: content-box;
    position: relative;
    display: inline-flex;
    width: 14px;
    height: 14px;
    border: 1.5px solid #ff6b9f;
    border-radius: 50%;
    margin-left: 6px;
    top: 3px;
    cursor: pointer;
}

.author-area__popup-icon::before,
.author-area__popup-icon::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 1.5px;
    background: #ff6b9f;
    top: 7px;
}

.author-area__popup-icon::before {
    transform: rotate(45deg);
    left: 3px;
}

.author-area__popup-icon::after {
    transform: rotate(-45deg);
    right: 3px;
}

.author-area .active--layout-center {
    animation: show-popup-center 0.1s ease-out forwards;
}

.author-area .active--layout-variable {
    animation: show-popup-variable 0.1s ease-out forwards;
}

.upper-author-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
}

.upper-author-area .author {
    gap: 8px;
}

.upper-author-area .author__item {
    gap: 16px;
}

.upper-author-area .author__title-wrapper {
    position: relative;
}

.lower-author-area {
    margin-top: 24px;
}

.lower-author-area .author {
    border-top: #000 1px solid;
    border-bottom: #000 1px solid;
    padding: 24px 0;
    gap: 24px;
}

.lower-author-area .author__title {
    font-size: 16px;
    margin-bottom: 12px;
}

.lower-author-area .author__link {
    line-height: 1.8;
    width: -moz-fit-content;
    width: fit-content;
    margin: 14px 0 0 auto;
    color: #000;
}

.lower-author-area .author__link:hover {
    color: #999;
}

.author-popup {
    --passing-left-value: 50%;

    z-index: 10;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: #ff6b9f 1px solid;
    padding: 16px;
    width: 400px;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 15%) 0 2px 6px;
    transform: scale(0);
    opacity: 0;
    transform-origin: top;
}

.author-popup::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 0.75px);
    left: var(--passing-left-value);
    width: 0;
    height: 0;
    border: 9px solid rgb(0 0 0 / 0%);
    border-bottom-color: #ff6b9f;
    transform: translateX(-50%);
}

.author-popup::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: var(--passing-left-value);
    width: 0;
    height: 0;
    border: 8px solid rgb(0 0 0 / 0%);
    border-bottom-color: #fff;
    transform: translateX(-50%);
}

.author-popup__title {
    display: flex;
    gap: 16px;
}

.author-popup__avatar {
    width: 56px;
    height: 56px;
    border-radius: 100%;
}

.author-popup__title-text {
    width: 272px;
}

.author-popup__name {
    font-size: 16px;
    font-weight: bold;
}

.author-popup__role {
    color: #ff6b9f;
}

.author-popup__description {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.author-popup .author-popup__link {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 0 0 auto;
    color: #000;
}

.author-popup .author-popup__link:hover {
    color: #999;
}

.author-popup button.author-popup__button {
    border: none;
    background-color: rgb(0 0 0 / 0%);
    font: inherit;
    outline: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.author-popup__button {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
}

.author-popup__button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background-color: #000;
    transform: translate(-50%, -50%) rotate(45deg);
}

.author-popup__button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background-color: #000;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.source-popup {
    --passing-left-value: 50%;

    z-index: 10;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: flex;
    gap: 16px;
    border: #ff6b9f 1px solid;
    padding: 16px;
    width: 400px;
    background-color: #fff;
    box-shadow: rgb(0 0 0 / 15%) 0 2px 6px;
    transform: scale(0);
    opacity: 0;
    transform-origin: top;
}

.source-popup::before {
    content: "";
    position: absolute;
    bottom: calc(100% + 0.75px);
    left: var(--passing-left-value);
    width: 0;
    height: 0;
    border: 9px solid rgb(0 0 0 / 0%);
    border-bottom-color: #ff6b9f;
    transform: translateX(-50%);
}

.source-popup::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: var(--passing-left-value);
    width: 0;
    height: 0;
    border: 8px solid rgb(0 0 0 / 0%);
    border-bottom-color: #fff;
    transform: translateX(-50%);
}

.source-popup__shoei {
    width: 132px;
    height: 169px;
}

.source-popup__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.source-popup__title {
    display: flex;
    gap: 8px;
}

.source-popup__title p.source-popup__issue-text {
    font-size: 20px;
    line-height: 1;
    margin: auto 0 0;
}

.source-popup__logo {
    width: auto;
    height: 32px;
}

.source-popup__detail {
    display: flex;
    gap: 16px;
}

.source-popup__overview {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.source-popup .source-popup__link {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto 0 0 auto;
    color: #000;
}

.source-popup .source-popup__link:hover {
    color: #999;
}

.source-popup button.source-popup__button {
    border: none;
    background-color: rgb(0 0 0 / 0%);
    font: inherit;
    outline: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.source-popup__button {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
}

.source-popup__button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background-color: #000;
    transform: translate(-50%, -50%) rotate(45deg);
}

.source-popup__button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 1px;
    background-color: #000;
    transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes show-popup-center {
    0% {
        opacity: 0;
        transform: translate(-50%, 0) scale(0);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
}

@keyframes show-popup-variable {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}
