/******************

description

*******************/

.overview-description {
    background: linear-gradient(90deg, rgba(201, 34, 0, 1), rgba(244, 83, 45, 1));
    position: relative;
    padding: 120px 0;
    margin-top: 40px;
}

.overview-description__box {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.overview-description__content {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    width: 48%;
}

.overview-description__content h4 {
    color: #ffffff;
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 28px;
    font-weight: 300;
    line-height: 40px;
    letter-spacing: .06em;
}

.overview-description__content p {
    color: #ffffff;
    line-height: 32px;
}

.overview-description__catch {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
}

.overview-description__catch img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.overview-description__catch-sp {
    display: none;
}

@media screen and (min-width: 1500px) {
    .overview-description__catch {
        width: 45%;
    }
}

@media screen and (max-width: 880px) {
    .overview-description__catch-sp {
        display: block;
        width: 100%;
    }

    .overview-description__catch-sp img {
        object-fit: contain;
        height: 100%;
        width: 100%;
    }
    .overview-description {
        padding: 12vw 0 0 0;
    }

    .overview-description__catch {
        display: none;
    }
    .overview-description__box {
        flex-direction: column;
    }
    .overview-description__content {
        width: 100%;
    }
    .overview-description__content h4 {
        font-size: 5.6vw;
    }
}

/******************

content

*******************/

.overview {
    padding-top: 96px;
}

.overview-content {
    flex-direction: column;
    display: flex;
    row-gap: 120px;
    margin-top: 64px;
    padding-bottom: 80px;
}

.overview-box {
    display: flex;
    column-gap: 40px;
    justify-content: flex-end;
}

.overview-box:nth-of-type(even) {
    justify-content: flex-start;
}

.overview-box__txt {
    width: 40%;
}

.overview-box__thumb {
    height: 320px;
    width: 40%;
}

.overview-box__thumb img {
    border-bottom-left-radius: 16px;
    border-top-left-radius: 16px;
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.overview-box:nth-of-type(even) .overview-box__thumb img {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 16px;
    border-top-right-radius: 16px;
}

.overview-box__txt {
    flex-direction: column;
    display: flex;
    row-gap: 16px;
}

.overview-box__txt h3 {
    font-weight: 500;
}

.overview-box__txt p {
    font-weight: 400;
}

.overview-box__txt p span {
    color: #C92200;
    font-weight: 500;
    font-family: "Archivo", sans-serif;
}

@media screen and (max-width: 680px) {
    .overview {
        padding-top: 12vw;
    }
    .overview-box {
        align-items: flex-end;
        flex-direction: column-reverse;
        row-gap: 2.1vw;
    }
    .overview-box__txt {
        margin: 0 auto;
        row-gap: 2.1vw;
        width: 90vw;
    }
    .overview-box__thumb {
        height: 50vw;
        width: 95%;
    }
    .overview-content {
        row-gap: 16vw;
        margin-top: 8vw;
        padding-bottom: 12vw;
    }
    .overview-box__txt h3 {
        font-size: 5.4vw;
    }
    .overview-box:nth-of-type(even) {
        align-items: flex-start;
        flex-direction: column;
    }
}