@charset "UTF-8";

:root {
    --primary-green: #235F5C;
    --primary-lightgreen: #63B7A7;
    --primary-black: #51625D;
    --primary-red: #E16F7E;
}

/*====================
FV
=====================*/
.benefits__header {
    padding: 68px 9.6% 68px;
    text-align: left;
    background-image: url(../images/benefits-fv-SP.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.common__title h2 {
    color: var(--primary-lightgreen);
    font-family: Montserrat;
    font-size: 1.4rem;
    font-style: normal;
    letter-spacing: 0.36px;
}

.common__title p {
    color: var(--primary-green);
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.6px;
    margin-top: 6px;
}

/* fv PC */
@media screen and (min-width: 769px) {
    .benefits__header {
        padding: 100px 0 110px 100px;
        text-align: left;
        background-image: url(../images/benefits-fv-PC.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .common__title h2 {
        font-size: 2rem;
        letter-spacing: 0.6px;
    }

    .common__title p {
        font-size: 4.2rem;
        line-height: 1.2;
        letter-spacing: 0.6px;
        margin-top: 6px;
    }

}
/* fv PC */

/*====================
制度・福利厚生
=====================*/

.benefit__container {
    position: relative;
    z-index: 0;
}

.benefit__container::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(200px 200px at 4% 40%,
            rgba(255,214,160,.24), rgba(255,214,160,0) 80%),
        radial-gradient(250px 250px at 85% 8%,
            rgba(243,201,211,.28), rgba(243,201,211,0) 80%),
        radial-gradient(250px 250px at 95% 75%,
            rgba(99,183,167,.16), rgba(99,183,167,0) 80%);
    filter: blur(10px);
}

.section--benefits {
    padding: 36px 6.4% 90px;
}

.benefits__lead {
    color: var(--primary-black);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.7px;
}

.benefits__container {
    margin-top: 39px;
    z-index: 1;
}

.benefits__block {
    margin-top: 36px;
}

.benefits__topic {
    color: var(--primary-green);
    font-family: "Shippori Mincho";
    font-size: 1.8rem;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.4px;
    position: relative;
    padding-left: calc(10px + 6px);
}

.benefits__topic::before {
    position: absolute;
    content: "";
    width: 10px;         
    height: 1px;         
    background: var(--primary-green);   
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}


.benefits__list {
    margin-top: 12px;
}

.benefits__item {
    margin-top: 6px;
}

.benefits__head {
    display: flex;
    align-items: center;
    gap: 6px;
}

.benefits__head img {
    width: 12px;
    height: 12px;
    display: block;
}

.benefits__head strong {
    color: var(--primary-black);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5; 
}

.benefits__txt {
    color: var(--primary-black);
    font-family: "Zen Kaku Gothic New";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.42px;
}

/* 制度・福利厚生 PC */
@media screen and (min-width: 769px) {
    .benefit__container {
        position: relative;
        z-index: 0;
    }

    .benefit__container::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: -1;
        background:
            radial-gradient(580px 580px at 3% 40%,
                rgba(255,214,160,.24), rgba(255,214,160,0) 80%),
            radial-gradient(400px 400px at 85% 8%,
                rgba(243,201,211,.28), rgba(243,201,211,0) 80%),
            radial-gradient(580px 580px at 95% 80%,
                rgba(99,183,167,.16), rgba(99,183,167,0) 80%);
        filter: blur(10px);
    }


    .section--benefits {
        max-width: 880px;
        margin: 0 auto;
        padding: 115px 0 150px;
    }

    .benefits__lead {
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .benefits__container {
        margin-top: 87px;
    }

    .benefits__block {
        margin-top: 63px;
    }

    .benefits__topic {
        font-size: 3rem;
        letter-spacing: 2.31px;
        position: relative;
        padding-left: calc(15px + 9px);
    }

    .benefits__topic::before {
        position: absolute;
        content: "";
        width: 15px;         
        height: 1px;           
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
    }

    .benefits__list {
        margin-top: 15px;
    }

    .benefits__item {
        margin-top: 12px;
    }

    .benefits__head {
        gap: 9px;
    }

    .benefits__head img {
        width: 18px;
        height: 18px;
    }

    .benefits__head strong {
        font-size: 2.2rem;
    }


    .benefits__txt {
        font-size: 1.6rem;
        line-height: 1.8; 
        letter-spacing: 1.12px;
    }

}
/* 制度・福利厚生 PC */

