@charset "UTF-8";

/****** sec-intro style ******/
.sec-intro {
    padding-top: 2rem;
    background-image: url(../img/top/staff-bg.png);
    background-size: 150% 100%;
    background-position: left 50% bottom 0;
    background-repeat: no-repeat;
}

.sec-intro>.flex {
    align-items: flex-start;
    gap: 1rem 3rem;
}

.sec-intro .ttl {
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 180%;
    letter-spacing: 2.2px;
    background: var(--grada);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec-intro .comment {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 200%;
    letter-spacing: 0.8px;
}

.sec-intro .img {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 15px 4%;
}

.sec-intro .img span {
    display: block;
    overflow: hidden;
    border-radius: 5px;
    aspect-ratio: 1.5/1;
}

.sec-intro .img span img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.sec-intro .img .img02 {
    width: 48%;
}

.sec-intro .img .img03 {
    width: 48%;
}

.sec-intro .head {
    overflow: hidden;
    position: relative;
    height: 64px;
    opacity: .15;
    margin: 30px 0;
}

.sec-intro .anim-txtloop {
    display: block;
    mix-blend-mode: screen;
    width: 1260px;
    position: absolute;
    bottom: 0;
    left: 0
}

.sec-intro .anim-txtloop:nth-child(1) {
    animation: infinity-scroll-right 40s infinite linear 0.5s both;
}

.anim-txtloop:nth-child(2) {
    animation: infinity-scroll-right2 40s infinite linear 0.5s both;
}

@media (min-width: 768px) {
    .sec-intro {
        background-size: auto 150%;
        background-position: left -100% bottom 0;
    }

    .sec-intro .txt {
        width: calc(50% - 1.5rem);
    }

    .sec-intro .img {
        width: calc(50% - 1.5rem);
        justify-content: space-between;
        gap: 2rem;
        margin-top: 2rem;
    }

    .sec-intro .img .img01 {
        transform: translate(3rem, 0);
    }

    .sec-intro .img .img02 {
        width: 40%;
    }

    .sec-intro .img .img03 {
        width: 48%;
        transform: translate(0, 2rem);
    }
}

@media (min-width: 1024px) {
    .sec-intro {
        padding-top: 3rem;
    }

    .sec-intro .ttl {
        font-size: 34px;
    }
}

@media (min-width: 1280px) {
    .sec-intro {
        padding-top: 8rem;
    }

    .sec-intro>.flex {
        justify-content: space-between;
    }

    .sec-intro .txt {
        width: calc(45% - 1.5rem);
        max-width: 500px;
    }

    .sec-intro .img {
        width: calc(55% - 1.5rem);
    }

    .sec-intro .ttl {
        font-size: 44px;
    }

    .sec-intro .comment {
        font-size: 16px;
        line-height: 275%;
    }
}

/****** sec-personality style ******/
.sec-personality .list {
    gap: 3rem;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sec-personality .list .list-item .ico {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 150px;
    margin: 0 auto 20px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background-image: url(../img/top/staff-bg.png);
    background-size: 150% auto;
    background-position: center;
    background-repeat: no-repeat;
}

.sec-personality .list .list-item .ttl {
    font-size: 18px;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
}

.sec-personality .list .list-item .comment {
    font-size: 14px;
    font-weight: 500;
    line-height: 180%;
}

@media (min-width: 768px) {
    .sec-personality .list .list-item {
        width: calc(50% - 1.5rem);
    }
}

@media (min-width: 1024px) {
    .sec-personality .list .list-item {
        width: calc(33.333% - 2rem);
    }

    .sec-personality .list .list-item .ico {
        max-width: 220px;
    }

    .sec-personality .list .list-item .ttl {
        font-size: 22px;
    }

    .sec-personality .list .list-item .comment {
        font-size: 16px;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (min-width: 1280px) {
    .sec-personality .list .list-item .ico {
        max-width: 280px;
    }
}