.bg-white {
    background: #fff;
}
.display-content-article-list.profile {
    justify-content: flex-start;
    flex-wrap: wrap;
}
.profile-thumb-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    position: relative;
}
.profile-thumb-wrapper:hover > * {
    cursor: pointer;
}
.profile-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.profile-content-wrapper:hover > * {
    cursor: pointer;
}
.profile-thumb-icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 16px;
    z-index: 2;
}
.profile-wrapper {
    width: calc(25% - 24px);
}
.profile-wrapper:hover {
    opacity: .7;
}
.profile-roles:hover > * {
    cursor: pointer;
}
p.role-01 {
    margin-bottom: 4px;
}
p.role-02 {
    margin: 0;
}
p.profile-name-jp {
    font-size: 2.4rem;
    font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 0;
}
p.profile-name-en {
    margin: 0;
}
.advisers-wrapper {
    margin-bottom: 48px;
}
@media screen and (max-width: 845px) {
    .profile-name-jp {
        font-size: 18px!important;
    }
    .profile-wrapper {
        width: calc(33.3333333% - 64px/3);
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 768px) {
    .profile-wrapper {
        width: calc(50% - 16px);
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 576px) {
    .display-content-article-ttl {
        padding: 16px 16px 0 16px;
    }
    .profile-wrapper {
        width: calc(50% - 8px);
        display: flex;
        flex-direction: column;
    }
    p.profile-name-jp {
        font-size: 1.6rem;
    }
    .display-content-article-list {
        gap: 16px;
    }
    .display-content-article-list.profile {
        padding: 16px;
    }
}

/* single-profile.php */
.article-page-wrapper.single-profile {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
}
.profile-desc-img {
    width: 30%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding-right: 24px;
}
.profile-desc-text {
    width: 70%;
    padding-left: 24px;
}
.profile-desc-text > ul {
    list-style: disc;
    padding-left: 1.4em;
}
.profile-desc-headline {
    font-size: 16px;
    font-family: "aktiv-grotesk-extended", "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    margin: 24px 0 12px 0;
}
@media screen and (max-width: 992px) {
    .article-page-wrapper.single-profile {
        flex-direction: column;
    }
    .profile-desc-img {
        width: 100%;
        padding: 0;
    }
    .profile-desc-text {
        width: 100%;
        padding: 1.6rem 0;
    }
}

/* フッターが高くなってしまう時 */
.smallcontainer-wrapper {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.smallcontainer-wrapper > .content {
    flex-grow: 1;
}