body {
    background-image: url(../img/pc_bg.jpg);
    background-size: cover;
    background-position: 90% center;
    background-attachment: fixed;
    transition: all 1.4s ease;
    position: relative;
    z-index: 10;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}       
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.01;;
    background-image: url(../img/pc_purpose_bg.jpg);
}
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.01;;
    background-image: url(../img/pc_values_bg.jpg);
}
body.active-p {
    background-image: url(../img/pc_purpose_bg.jpg);
    opacity: 1;
    transition: all 1.4s ease;
}
body.active-v {
    background-image: url(../img/pc_values_bg.jpg);
    opacity: 1;
    transition: all 1.4s ease;
}

@media(max-width : 1080px) {
    body {
        background-image: none;
        z-index: 10;
    }
    body::before {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: 1;
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: 90% center;
        background-image: url(../img/tab_bg.jpg);
        background-size: cover;
    }
}
/*--------------------------------
	purpose,values
--------------------------------*/
.wrapper {
    position: relative;
    z-index: -1;
}
.purpose , .values {
    position: absolute;
    top: 0;
    right: 0;
    width: 67.6388889vw;
    margin-right: 0;
    margin-left: auto;
    padding-right: 4.16vw;
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}
.values.active ,
.purpose.active  {
    opacity: 1;
    transition: 0.5s;
}
.sub-title-p,
.sub-title-v {
    padding: 1.66vw 0 2.22vw;
}
.sub-title-p::before ,
.sub-title-v::before {
    display: inline-block;
    content: "";
    width: 0.75em;
    height: 0.75em;
    border-radius: 0.75em;
    margin-right: 0.5em;
}
.sub-title-p::before {
    background-color: #FFE109;
}
.sub-title-v::before {
    background-color: #fff;
}
.purpose__body {
    margin-left: 1.25em;
}
.purpose__copy {
    font-size: 2.0rem;
    line-height: 1.7;
}
.purpose__text {
    margin-top: 3.888888888888889vw;
    width: 38.88888888888889vw;
    line-height: 1.7;
    letter-spacing: 0.03em;
}
.purpose__text p {
    margin-bottom: 1.5em;
}
.values__list {
    margin-left: 1.25em;
    list-style: none;
}
.values__item {
    padding: 3.3333333333333335vw 0;
    display: flex;
    align-items: center;
    border-bottom: #9E9E9E 1px dotted;
}
.values__item:first-child {
    padding-top: 1.6666666666666667vw;
}
.values__item:last-child {
    border-bottom: #9E9E9E 0px dotted;
}
.values__header h2 {
    font-size: 1.8rem;
    /* width: 29.444444444444446vw; */
    width: 27.7777778vw;
}
.fa-solid.fa-chevron-down {
    display: none;
}
.values__text {
    width: 31.666666666666664vw;
}
@media (min-width: 1441px) {
    .purpose__copy {
        font-size: calc(100vw / (1440 / 18 ));
    }
    .values__header h2 {
        font-size: calc(100vw / (1440 / 16 ));
        width: 22.7777778vw;
    }
    .values__text {
        width: 33.3333333vw;
    }
}
@media (max-width: 1366px) {
    .sub-title-p, .sub-title-v {
        padding: 1.66vw 0 1.66vw;
    }
    .purpose__text {
        margin-top: 2.88vw;
    }
    .values__item {
        padding: 2.4vw 0;
    }
    .values__item:first-child {
        padding-top: 0;
    }
}
@media(max-width : 1080px) {
    .wrapper {
        margin-top: 8.6vw;
    }
    .purpose , 
    .values {
        position: static;
        width: 52vw;
        opacity: 1;
        color: #4c4c4c;
    }
    .purpose {
        margin-bottom: 12.9vw;
    }
    .purpose__body {
        margin-left: 0;
        padding-right: 5vw;
    }
    .purpose__text {
        margin-top: 2vw;
        width: 100%;
    }
    .values__list {
        margin-left: 0;
        padding-right: 5vw;
    }
    .values__item {
        padding: 0;
        flex-direction: column;
    }
    .values__header {
        width: 100%;
        height: 120px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
    .values__header h2 {
        width: inherit;
    }
    .fa-solid.fa-chevron-down {
        display: block;
        color: #9E9E9E;
        transition: ease-in-out 300ms;
    }
    .rotate-fa-solid {
        transform: rotate(180deg);
    }
    .values__text {
        width: 100%;
        display: none;
        margin-bottom: 8px;
    }
}
@media(max-width : 960px) {
    .purpose , 
    .values {
        width: 66.666vw;
    }
    .purpose__body {
        padding-right: 0;
    }
    .values__list {
        padding-right: 0;
    }
}
@media(max-width : 743px) {
    .purpose , 
    .values {
        width: 72vw;
    }
}
@media(max-width : 560px) {
    .wrapper {
        margin: 8.6vw 5.37vw 0;
    }
    .purpose , 
    .values {
        width: 100%;
    }
    .purpose__copy {
        font-size: 1.8rem;
        margin-top: 16px;
    }
    .purpose__text {
        margin-top: 24px;
    }
    .values__header {
        height: 88px;
    }
    .values__header h2 {
        font-size: 1.6rem;
    }
}
@media (min-aspect-ratio: 16/8) {
    .purpose, .values {
        top: -6vh;
    }
    .sub-title-p, .sub-title-v {
        padding: 1.66vw 0;
    }
    .values__item {
        padding: 2.5vw 0;
    }
    .values__item:first-child {
        padding-top: 1vw;
    }
}