@charset "utf-8";

/* ------------------------------
    自己紹介
--------------------------------- */
.about {
    padding-top: 40px;
    padding-bottom: 80px;
}
.about__content {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;

    background: var(--color-white);
    border-radius: 30px;
    padding: 28px 20px;
    letter-spacing: 1.4px;

}
.about__img-mask {
    margin-left: auto;
    margin-right: auto;
    width: 250px;
    height: 250px;

    /* マスクをかける */
    mask-image: url("../img/research-item-bg.svg");
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    mask-position: center center;
    
    -webkit-mask-image: url("../img/research-item-bg.svg");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: center center;
}
.about__summary-text{
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}
.about__name {
    font-size: var(--font-size-sub-midashi);
    font-weight: 500;
}
.about__position {
    padding-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}
.about__belonging {
    margin-top: 1em;
}
.about__belonging-text {
    margin-bottom: 1em;
}

@media (min-width: 850px) {
    .about {
        padding-top: 60px;
        padding-bottom: 120px;
    }
    .about__content {
        max-width: 800px;
        padding: 48px 64px;
    }
    .about__summary {
        display: flex;
        justify-content: space-between;
        align-items: end;
    }
    .about__img-mask {
        margin-left: 0;
        width: 300px;
        height: 300px;
    }
    .about__summary-text{
        text-align: right;
    }
    .about__name {
        font-size: var(--font-size-pc-midashi);
    }
    .about__furigana {
        padding-top: 0.5rem;
    }
    .about__position {
        padding-top: 28px;
        font-size: var(--font-size-sub-midashi);
    }
    .about__detail {
        margin-top: 3rem;
    }
}


/* ------------------------------
    研究業績
--------------------------------- */
.research-results {
    padding-top: 40px;
    padding-bottom: 80px;
}
.research-results__content {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.research-results__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.research-results__top {
    padding: 20px;
    background: var(--color-white);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.research-results__title {
    display: block;
    margin-bottom: 1em;
    font-size: 1rem;
    font-weight: 500;
}
.research-results__user {
    font-size: 12px;
}
.research-results__bottom {
    padding: 12px 20px;
    background: #EFE3D9;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    font-size: 12px;

    display: flex;
    justify-content: space-between;
}

.research-results__link {
    margin-top: 20px;
    margin-left: auto;
    margin-right: 0;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0.5em;
    border-bottom: 1px solid var(--color-font);

    transition: all 0.3s;
}

@media (min-width: 850px) {
    .research-results {
        padding-top: 60px;
        padding-bottom: 120px;
    }
    .research-results__content {
        max-width: 800px;
    }
    .research-results__list {
        gap: 40px;
    }
    .research-results__top {
        padding: 24px 32px;
    }
    .research-results__title {
        font-size: var(--font-size-sub-midashi);
        margin-bottom: 1rem;
    }
    .research-results__user {
        font-size: 14px;
    }
    .research-results__bottom {
        padding: 14px 32px;
        font-size: 14px;
    }
    .research-results__link {
        margin-top: 40px;
        font-weight: 500;
    }
    .research-results__link:hover {
        color: #c53434;
        border-bottom: 1px solid #c53434;
    }
}
