@charset "UTF-8";
/* CSS Document */

body {
    margin-top: 100px;
    background: #F6F9FA;
}


.sec1 {
    position: relative;
}

.sec1 img {
    display: block;
    width: 80%;
    margin-left: auto;
    min-height: 280px;
    object-fit: cover;
    object-position: left;
    border-radius: 20px;
}

.sec1__title {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    text-align: left;
    color: #3B8EC0;
    z-index: 1;
}

.sec1__title strong {
    display: block;
    font-size: 6rem;
    font-family: var(--en);
    font-weight: 800;
    letter-spacing: 16px;
}

.sec1__title h2 {
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: 3px;
}

@media (max-width: 1024px) {

    .sec1__title strong {
        font-size: 4.5rem;
    }

    .sec1__title h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 600px) {

    .sec1 img {
        min-height: 180px;
    }

    .sec1__title strong {
        font-size: 3rem;
        letter-spacing: 12px;
    }

    .sec1__title h2 {
        font-size: 1.4rem;
        letter-spacing: 2.4px;
    }
}




.sec2 {
    position: relative;
    padding-top: 150px;
    overflow: hidden;
}

.sec2__logo {
    position: absolute;
    top: 50%;
    left: -50%;
    width: 120%;
    transform: translateY(-50%);
}

.sec2__wapper {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.sec2__wapper__top {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 50px;
    margin-bottom: 125px;
}

.sec2__wapper__top__left {
    width: 55%;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 20px;
}

.sec2__wapper__top__left img {
    object-fit: cover;
    height: calc(100% + 150px);
}

.sec2__wapper__top__right {
    width: 45%;
    text-align: left;
}

.sec2__wapper__top__right h2 {
    font-size: 4.3rem;
    font-weight: 800;
    line-height: 1.8;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.sec2__wapper__top__right p {
    font-weight: 700;
    line-height: 2.2;
    letter-spacing: 1px;
}

.sec2__wapper__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 50px;
    margin-bottom: 100px;
}

.sec2__wapper__bottom__left {
    width: 45%;
    text-align: left;
}

.sec2__wapper__bottom__left p {
    font-weight: 700;
    line-height: 2.2;
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.sec2__wapper__bottom__left strong {
    display: block;
    font-weight: 700;
    line-height: 2.2;
    letter-spacing: 1px;
}

.sec2__wapper__bottom__right {
    width: 55%;
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 20px;
}

.sec2__wapper__bottom__right img {
    object-fit: cover;
    height: calc(100% + 150px);
}


@media (max-width: 1024px) {
    .sec2 {
        padding-top: 100px;
    }

    .sec2__wapper__top {
        flex-direction: column;
    }

    .sec2__wapper__top__left,
    .sec2__wapper__bottom__right {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .sec2__wapper__top__right,
    .sec2__wapper__bottom__left {
        width: 100%;
    }

    .sec2__wapper__bottom {
        flex-direction: column-reverse;
    }
}


@media (max-width: 600px) {
    .sec2__wapper__top__right h2 {
        font-size: 2.6rem;
    }

    .sec2__wapper__top__right p,
    .sec2__wapper__bottom__left p {
        font-size: 1.4rem;
    }
}




.parallax__area {
    aspect-ratio: 3/1;
    overflow: hidden;
}

.parallax__area img {
    object-fit: cover;
    height: calc(100% + 150px);
}


.sec3 .sec2__logo {
    position: absolute;
    top: 50%;
    left: auto;
    right: -50%;
    width: 120%;
    transform: translateY(-50%);
}


@media (max-width: 1024px) {
    .parallax__area {
        aspect-ratio: 7/4;
    }
}



.sec4 {
    overflow: hidden;
    padding-top: 150px;
}

.sec4__wapper {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.sec4__wapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100%;
    background-image: url(../images/misson/sec4/bg.jpg);
    background-repeat: repeat;
    background-size: auto;
    z-index: -1;
    border-radius: 20px 0 0 20px;
}

.sec4__title {
    display: block;
    width: 50%;
    margin-left: auto;
}

.sec4__wapper__contents {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 150px;
    text-align: left;
    color: #FFFFFF;
}

.sec4__wapper__contents h2 {
    font-size: 4.3rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.sec4__wapper__contents ul li {
    padding: 30px 0 30px 20px;
    border-top: solid 1px #FFFFFF;
    display: flex;
    align-items: center;
}

.sec4__wapper__contents ul li:last-child {
    border-bottom: solid 1px #FFFFFF;
}

.sec4__wapper__contents ul li h3 {
    width: 450px;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.sec4__wapper__contents ul li p {
    flex: 1;
    font-weight: 700;
    line-height: 2.2;
    letter-spacing: 1px;
}


@media (max-width: 1024px) {
    .sec4__wapper__contents ul li {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 0;
    }
}


@media (max-width: 600px) {
    .sec4__wapper__contents h2 {
        font-size: 2.4rem;
    }

    .sec4__wapper__contents ul li h3 {
        font-size: 2.2rem;
    }

    .sec4__wapper__contents ul li p {
        font-size: 1.4rem;
    }
}




.sec5 {
    margin-top: 150px;
    padding: 100px 0;
    background-image: url(../images/misson/sec5/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.sec5__wapper {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.sec5__image {
    position: absolute;
    width: 40vw;
    top: 50%;
    right: 65%;
    transform: translateY(-50%);
    overflow: hidden;
    border-radius: 0 20px 20px 0;
    aspect-ratio: 3/4;
}

.sec5__image img {
    object-fit: cover;
    height: calc(100% + 150px);
}

.sec5__wapper__contents {
    text-align: left;
    width: 60%;
    margin-left: auto;
    color: #FFFFFF;
}

.sec5__wapper__contents strong {
    display: block;
    font-size: 3.4rem;
    font-weight: 800;
    font-family: var(--en);
    color: #27A9C7;
    letter-spacing: 3px;
}

.sec5__wapper__contents h2 {
    font-size: 4.3rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.sec5__wapper__contents p {
    line-height: 2.2;
    font-weight: 700;
}

.sec5__image.sp {
    display: none;
}


@media (max-width: 1024px) {

    .sec5__image {
        display: none;
    }

    .sec5__wapper__contents {
        width: 100%;
    }

    .sec5__image.sp {
        display: block;
        position: static;
        transform: none;
        margin-bottom: 50px;
        width: 75%;
        margin-left: -10%;
    }
}


@media (max-width: 600px) {

    .sec5__wapper__contents strong {
        font-size: 2.6rem;
    }

    .sec5__wapper__contents h2 {
        font-size: 3.4rem;
    }

    .sec5__wapper__contents p {
        font-size: 1.4rem;
    }
}