@charset "utf-8";
:root {
    --black: #333;
    --white: #fff;
    --green: #30574E;
}
/* ------------------------------
ヘッダータイトル
------------------------------ */
.title {
    margin-top: 100px;
}
/* ------------------------------
フィロソフィー
------------------------------ */
.philo-contanier {
    padding: 50px 8% 100px;
}
.philo-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    max-width: 1440px;
    padding: 0 8%;
    position: relative;
}
.philo-content {
    width: 50%;
}
.philo-copy {
    margin: 0 0 80px 60px;
    position: relative;
    text-align: left;
}
.philo-copy::before {
    content: "";
    position: absolute;
    top: 16px;
    left: -60px;
    width: 40px;
    height: 1px;
    background-color: var(--white);
}
.philo-text {
    width: auto;
    color: var(--white);
}
.philo-text p {
    margin-bottom: 32px;
    line-height: 2.8rem;
}
.philo-img {
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.philo-img img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
}
@media (max-width: 767px) {
    .philo-contanier {
        padding: 50px 0 100px;
    }
    .philo-inner {
        flex-direction: column;
        align-items: normal;
        gap: 40px;
    }
    .philo-content {
        width: 100%;
    }
    .philo-copy br {
        display: block;
    }
    .philo-copy::before {
        top: 14px;
    }
    .philo-img {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }
    .philo-img img {
        width: 50%;
        object-fit: cover;
    }
}
/* ------------------------------
プロミス
------------------------------ */
.promise {
    background-color: var(--green);
}
.promise-container {
    padding: 0 8% 120px;
}
.promise-container ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin: 0 auto;
    padding: 0 8%;
    max-width: 1440px;
    list-style: none;
}
.promise-container ul li {
    width: 200px;
}
.promise-container ul li img {
    display: block;
    margin: 0 auto 40px;
    width: 80px;
    height: 80px;
}
.promise-container ul li h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    text-align: center;
    position: relative;
}
.promise-container ul li h4::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--white);
    transform: translateX(-50%);
}
.promise-container ul li p {
    width: 100%;
    margin: 48px auto 0;
}
@media (max-width: 767px) {
    .promise-container {
        padding: 50px 0 100px;
    }
    .promise-container ul li img {
        margin: 0 auto 20px;
        width: 60px;
        height: 60px;
    }
}