@charset "utf-8";

.bg-white {
    background-color: #fff;
}

.bg-gray {
    background-color: #f7fafc;
}

.bg-bottom {
    margin-bottom: -56px;
    z-index: 1;
    position: relative;
}

.philosophy-img {
    width: 100%;
    margin: 0 auto;
    display: block;
    max-width: 914px;
}

.row {
    display: flex;
    justify-content: space-between;
    gap: 46px;
}

.row-img {
    max-width: 380px;
    width: 40%;
    height: 100%;
}

.row .body {
    width: 60%;
}

.btn-area.btn-area-left {
    justify-content: flex-start;
}

.name-jp {
    font-size: 24px;
}

.name-en {
    font-size: 14px;
    margin-left: 1em;
}

.philosophy-txt-lg {
    font-size: 36px;
    line-height: 1.3;
}

.philosophy-txt-md {
    font-size: 24px;
}


@media screen and (max-width: 767px) {
    .btn-area.btn-area-left {
        justify-content: center;
    }

    .row {
        flex-direction: column;
        gap: 27px;
    }

    .row-img {
        max-width: unset;
        width: 90%;
        margin: 0 auto;
    }

    .row .body {
        width: 100%;
    }

    .name-jp {
        font-size: 18px;
    }

    .name-en {
        font-size: 13px;
    }

    .philosophy-txt-lg {
        margin-left: .5em;
    }

    .philosophy-txt-md {
        font-size: 20px;
    }
}