@charset "utf-8";

html {
    overflow-x: hidden;
}

body {
    color: #4C5864;
}

img {
    width: 100%;
    height: auto;
    
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.p-about {
    margin-top: 70px;
}

.about-main {
    display: flex;
    margin-bottom: 8rem;
}

.about-inner {
    width: 100%;
    height: 20.25rem;
    display: flex;
    align-items: flex-end;
    position: relative;
    backface-visibility: hidden;
}

.header-title {
    display: flex;
    flex-shrink: 0;
    align-items: flex-end;
    width: 100%;
}

.c-section_title {
    font-size: 12.5rem;
    line-height: .9;
    margin-bottom: -1.15rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: italic;
}

.c-section_sub-title {
    font-size: 1.875rem;
    line-height: 1;
    margin-right: 10rem;
    letter-spacing: .07em;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .about-main {
        margin-bottom: 7.3rem;
    }

    .about-inner {
        height: 14rem;
    }

    .header-title {
        flex-direction: column;
        align-items: normal;
    }

    .c-section_title {
        font-size: 6rem;
        line-height: .94;
        margin-bottom: 0.6875rem;
    }

    .c-section_sub-title {
        font-size: 1.1rem;
        margin-bottom: -0.125rem;
    }
}

.member-list {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.member-article {
    flex-shrink: 0;
    transition: opacity .2s;
}

.member-link {
    display: block;
}

.member-img {
    position: relative;
    overflow: hidden;
}

.member-img_image {
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: .5s ease-in-out;
}

.member-link:hover img {
    transform: scale(1.2);
}

.member-name-en {
    line-height: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: .01em;
    color: #4C5864;
}

.member-name-jp {
    font-weight: 600;
    letter-spacing: .05em;    
    line-height: 1;
    color: #4C5864;
}

.member-position {
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1;
    color: #4C5864;
}

@media screen and (min-width: 768px) {
    
    .member-article {
        width: 23rem;
        margin-left: 4.8rem;
    }
    
    .member-article:first-child {
        margin-left: 0;
    }
    
    .member-name-en {
        font-size: 3rem;
    }
    
    .member-name-jp {
        font-size: 1.2rem;
        margin-top: .8rem;
    }
    
    .member-position {
        font-size: 1.1rem;
        margin-top: .5rem;
    }
}

@media screen and (max-width: 767px) {
    .member-list {
        justify-content: space-around;
    }
    .member-article {
        width: 11rem;
        margin-left: 0;
    }
    
    .member-name-en {
        font-size: 1.8rem;
    }
    
    .member-name-jp {
        font-size: 1.2rem;
        margin-top: .8rem;
    }
    
    .member-position {
        font-size: 1.1rem;
        margin-top: .5rem;
    }
}



















