@charset "utf-8";

/* --------------------------------------------

member

---------------------------------------------- */

.memberList {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
    margin-bottom: 12rem;
}

.memberCard {
    padding: 2rem 2rem 3rem 2rem;
    background-color: var(--c-bg);
    border-radius: 10px;
    transition: 0.5s;
}

.memberCard.-disabled {
    pointer-events: none;
}

.memberImgWrap {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.memberImgWrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(31, 62, 140, 0.6);
    opacity: 0;
    transition: 0.4s;
}

.memberImgWrap::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 3rem;
    height: 3rem;
    opacity: 0;
    background-color: #fff;
    -webkit-mask: url("../_image/common/icon-search.svg") no-repeat center / contain;
    mask: url("../_image/common/icon-search.svg") no-repeat center / contain;
    transition: 0.4s;
}

.memberImg {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

@media (hover:hover) {
    .memberCard:hover .memberImgWrap::before {
        opacity: 1;
    }

    .memberCard:hover .memberImgWrap::after {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .memberCard:hover .memberImg {
        transform: scale(1.05);
    }
}

.cardInner {
    padding: 0 1rem;
}

.memberPosition {
    font-size: var(--fz-s);
}

.memberName {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.memberName rt {
    font-size: var(--fz-xs);
}

.memberResearch {
    font-size: var(--fz-s);
}

.memberPhoto img {
    width: 90%;
    max-width: 830px;
    margin: 0 auto;
}

@media screen and (max-width: 1100px) {
    .memberList {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 640px) {
    .memberList {
        grid-template-columns: 1fr;
        margin-bottom: 8rem;
    }

    .memberCard {
        padding: 2rem;
    }

    .memberResearch {
        font-size: var(--fz-m);
    }

    .memberPhoto img {
        width: 100%;
    }
}


/* --------------------------------------------

memberDetail

---------------------------------------------- */

.memberDetail {
    display: flex;
    gap: 6rem;
    margin-bottom: 6rem;
}

.detailProfile {
    display: flex;
    gap: 4rem;
}

.detailImg {
    max-width: 550px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.detailPosition {
    margin-bottom: 0.8rem;
    font-size: var(--fz-l);
}

.detailName {
    margin-bottom: 3rem;
    font-size: var(--fz-xxl);
}

.detailName ruby {
    text-align: center;
}

.detailName rt {
    margin-bottom: 0.5rem;
    font-size: var(--fz-s);
}

.detailResearch:first-of-type {
    margin-bottom: 1.5rem;
}

.detailResearchDetail a {
    position: relative;
    display: inline-block;
    padding-right: 1.2rem;
}

.detailResearchDetail a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-left: 1rem;
    background: #fff;
    border: 2px solid var(--c-blue);
    border-radius: 50%;
    transition: 0.3s;
}

.detailResearchDetail a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    right: -14px;
    display: block;
    width: 7px;
    height: 7px;
    margin-right: 2px;
    border-right: 2px solid var(--c-blue);
    border-top: 2px solid var(--c-blue);
    transition: 0.3s;
}

@media (hover:hover) {
    .detailResearchDetail a:hover {
        color: var(--c-green);
    }
    
    .detailResearchDetail a:hover::before {
        right: -25px;
        transition: 0.3s;
    }

    .detailResearchDetail a:hover::after {
        right: -19px;
        transition: 0.3s;
    }
}

.researchMap a {
    position: relative;
    display: inline-block;
    padding: 0.6rem 4rem 0.6rem 2rem;
    font-weight: var(--fw-bold);
    color: var(--c-blue);
    background-color: #fff;
    border: 2px solid var(--c-blue);
}

.researchMap a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;
    width: 1.6rem;
    height: 1.6rem;
    background-color: var(--c-blue);
    -webkit-mask: url("../_image/common/icon-new-tab.svg") no-repeat center / contain;
    mask: url("../_image/common/icon-new-tab.svg") no-repeat center / contain;
    transition: 0.3s;
}

@media (hover:hover) {
    .researchMap a:hover {
        color: var(--c-green);
        border: 2px solid var(--c-green);
        transition: 0.3s;
    }

    .researchMap a:hover::after {
        background-color: var(--c-green);
        transition: 0.3s;
    }
}

.memberComment {
    padding: 4rem 6rem;
    margin-bottom: 6rem;
    background-color: var(--c-bg);
}

.commentTitle {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
    font-size: var(--fz-xl);
    color: var(--c-blue);
}

.commentTitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: var(--c-blue);
    clip-path: polygon(
        50% 0%,
        100% 25%,
        100% 75%,
        50% 100%,
        0% 75%,
        0% 25%
    );
}

.memberComment p.-margin {
    margin-bottom: 0.7em;
}

.detailTitle {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
    font-size: var(--fz-xl);
}

.detailTitle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        to right,
        #5f9e3a 0%,
        #5f9e3a 25px,
        #1f3e8c 25px,
        #1f3e8c 100px,
        #c4d7f7 100px,
        #c4d7f7 100%
    );
}

.history {
    margin: 0 0 6rem 2rem;
}

.memberAwards .history {
    margin: 0 0 0 2rem;
}

.historyItem dl {
    display: flex;
}

.historyItem dd,
.historyItem dt {
    padding-bottom: 1rem;
}

.historyItem dt {
    position: relative;
    width: 19rem;
    margin-right: 2rem;
}

.historyItem dt:before {
    content: "";
    position: absolute;
    top: 0;
    right: -1px;
    width: 2px;
    height: 100%;
    background: var(--c-paleblue);
}

.historyItem dd {
    width: 100%;
    padding-left: 2rem;
}

.historyItem dd .-normal {
    display: block;
    font-weight: 500;
}

@media screen and (max-width: 1300px) {
    .detailProfile {
        flex-direction: column;
        gap: 2rem;
    }
}

@media screen and (max-width: 1100px) {
    .detailImg {
        max-width: 400px;
    }
}

@media screen and (max-width: 900px) {
    .memberDetail {
        gap: 3rem;
    }
}

@media screen and (max-width: 800px) {
    .memberDetail {
        align-items: flex-start;
    }

    .detailImg {
        width: 55%;
        max-width: 340px;
        object-fit: contain;
    }
}

@media screen and (max-width: 640px) {
    .memberDetail {
        flex-direction: column;
    }

    .detailImg {
        width: 100%;
        max-width: none;
        object-fit: cover;
    }

    .detailProfile {
        width: 100%;
    }

    .researchMap a {
        width: 100%;
        text-align: center;
    }

    .memberComment {
        padding: 2.5rem;
    }

    .historyItem dl {
        flex-direction: column;
    }

    .historyItem dt {
        width: 100%;
        padding-bottom: 0.4rem;
    }

    .historyItem dt:before {
        content: none;
    }

    .historyItem dd {
        padding-bottom: 1.8rem;
    }
}