#philosophy {
    padding: var(--top-tit-margin) 0;
}

#philosophy .content-title {
    margin-bottom: 0;
}

#philosophy .flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 30px;
    gap: 5vw;
}

#philosophy .flex h2 {
    line-height: 1.2;
}

#philosophy .flex p.desc {
    margin-top: 0;
}

#cultureSec {
    --container-width: 1600px;
}

#cultureSec .pc-view {
    display: none;
}

#cultureSec .mo-view {
    display: block;
}

#cultureSec .content-wrap {
    align-items: center;
}

#cultureSec .image {
    max-width: 680px;
}

#cultureSec .text {
    flex: 1 0 auto;
}

#cultureSec .text h3 {
    line-height: 1.45;
}

#cultureSec .text p {
    margin-top: 40px;
    font-size: var(--f22);
    line-height: 1.8;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
}

#cultureSec .text p+p {
    margin-top: 42px;
}

#coreKeywords .box-wrap .box {
    width: clamp(380px, 25vw, 480px);
}

#coreKeywords .box-wrap .box {
    font-size: var(--f28);
    background-color: var(--color-primary);
    padding: 60px;
}

#coreKeywords .box-wrap .box:nth-child(odd) {
    background-color: var(--color-sub);
}

#coreKeywords .box-wrap .box .sub-tit {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 20px;
}

#coreKeywords .box-wrap .box h5 {
    font-size: 1.08em;
    font-weight: 400;
    color: #fff;
    line-height: 1;
}

#coreKeywords .box-wrap .box ul {
    margin-top: 40px;
}

#coreKeywords .box-wrap .box ul li {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--f18);
    font-weight: 300;
    word-break: keep-all;
    line-height: 1.35;
    position: relative;
    padding-left: 20px;
}

#coreKeywords .box-wrap .box ul li:before {
    content: '•';
    position: absolute;
    left: 0;
}

#coreKeywords .box-wrap .box ul li~li {
    margin-top: 8px;
}

#ourMission .content-wrap {
    align-items: center;
    justify-content: space-evenly;
}

#ourMission .image {
    width: 100%;
    max-width: 590px;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 59/35;
    background-color: #eee;
    border-radius: 20px;
    overflow: hidden;
}

#ourMission .content-title,
#ourVision .content-title {
    margin-bottom: 0;
}

#ourMission .content-title .sub-p,
#ourVision .content-title .sub-p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

#ourMission .content-title .desc,
#ourVision .content-title .desc {
    margin-top: 15px;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width: 1024px) {
    #cultureSec .pc-view {
        display: block;
    }

    #cultureSec .mo-view {
        display: none;
    }
}

/* Laptop ( 1024px ~ 1440px)*/
@media all and (min-width: 1024px) and (max-width: 1440px) {
    #cultureSec .text h3 {
        font-size: 34px;
    }

    #cultureSec .text p {
        font-size: 18px;
        margin-top: 30px;
    }
}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width: 768px) and (max-width: 1023px) {
    #philosophy .content-title {
        text-align: center;
    }

    #philosophy .flex {
        flex-direction: column;
        align-items: center;
    }

    #cultureSec .content-wrap {
        padding: var(--divider-gap) 0;
    }

    #cultureSec .flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 5vw;
    }

    #cultureSec .image {
        width: clamp(350px, 46vw, 480px);
    }

    #cultureSec .text p {
        margin-top: 0;
    }

    #coreKeywords .box-wrap .box {
        width: 420px;
    }

    #coreKeywords .box-wrap .box {
        padding: 45px;
    }

    #coreKeywords .box-wrap .box .sub-tit {
        margin-bottom: 12px;
    }

    #coreKeywords .box-wrap .box ul {
        margin-top: 30px;
    }

    #coreKeywords .box-wrap .box ul li {
        padding-left: 15px;
    }

    #ourMission .content-wrap {
        flex-direction: column-reverse;
        row-gap: var(--tit-margin);
    }

    #ourMission .content-title {
        text-align: center;
    }
}

/* Mobile ( ~ 767px)*/
@media all and (max-width: 767px) {
    #philosophy .content-title {
        text-align: center;
    }

    #philosophy .flex {
        flex-direction: column;
        align-items: center;
    }

    #cultureSec .text {
        text-align: center;
    }

    #cultureSec .text p {
        margin-top: 30px;
    }

    #coreKeywords .box-wrap .box {
        width: clamp(330px, 85vw, 380px);
    }

    #coreKeywords .box-wrap .box {
        padding: 35px;
    }

    #coreKeywords .box-wrap .box .sub-tit {
        margin-bottom: 8px;
    }

    #coreKeywords .box-wrap .box ul {
        margin-top: 25px;
    }

    #coreKeywords .box-wrap .box ul li {
        padding-left: 15px;
    }

    #coreKeywords .box-wrap .box ul li~li {
        margin-top: 6px;
    }

    #ourMission .content-wrap {
        flex-direction: column-reverse;
        row-gap: var(--tit-margin);
    }

    #ourMission .content-title {
        text-align: center;
    }
}