@charset "utf-8";


.fv {
    position: relative;
}
.fv_text {
    position: absolute;
    top: 25%;
    width: 30%;
    max-width: 500px;
    z-index: 100;
}

.philosophy {
    background-color: var(--main);
    color: #fff;
    font-weight: bold;
    padding: 20px;
    text-align: center;
    margin-bottom: 40px;
}
.philosophy_img {
    display: flex;
    justify-content: space-between;
} 
.philosophy_img div {
    width: 31%;
}
.gerrting_flex {
    display: flex;
    justify-content: space-between;
}
.gerrting_flex .left {
    width: 40%;
}
.gerrting_flex .right {
    width: 55%;
}
.gerrting_flex .right p {
    line-height: 2.6rem;
}
.gerrting_flex h2 {
    margin-bottom: 30px;
}
.ceo_flex {
    display: flex;
    justify-content: end;
    align-items: baseline;
    gap: 0 20px;
    margin-top: 20px;
}
.ceo_flex p {
    font-weight: bold;
}



/* ===============================
tablet
=============================== */
@media screen and (max-width:1000px) {
    .fv_text {
        top: 30%;
    }

}

/* ===============================
SP
=============================== */
@media screen and (max-width:769px) {
    .fv {
        margin-top: 60px;
    }
    .fv_text {
        top: 16%;
        /* min-width: 300px; */
        width: 60%;
    }
    .philosophy {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .gerrting_flex {
        display: block;
        justify-content: space-between;
    }
    .gerrting_flex .left {
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
    }
    .gerrting_flex .right {
        width: 100%;
    }
    .gerrting_flex .right p {
        line-height: 2rem;
    }
    .gerrting_flex h2 {
        margin-bottom: 10px;
    }
    .ceo_flex {
        gap: 0 10px;
        margin-top: 20px;
    }
}