/*-------------------------
TOP
-------------------------*/
/* point */
.point {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: space-between;
}

.point h2 {
    margin-bottom: 0;
}

.point.direction {
    flex-direction: row-reverse;
}

.point picture,
.point__text-area {
    width: calc(50% - 20px);
}

.point__text span {
    font-size: 20px;
}

.point__text p {
    margin: 20px 0;
}

.textlink__primary {
    padding-bottom: 2px;
    display: inline-block;
    border-bottom: 2px solid var(--color-primary);
}

.textlink__secondary {
    padding-bottom: 2px;
    display: inline-block;
    border-bottom: 2px solid var(--color-secondary);
}

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

@media screen and (max-width: 769px) {
    .point {
        margin: 50px 0;
        display: block;
    }

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

    .point picture,
    .point__text-area {
        width: 100%;
    }

    .point img {
        width: 100%;
        max-width: 440px;
    }

    .point__text {
        display: flex;
        margin-top: 16px;
    }

    .point__text span {
        font-size: 24px;
        padding-right: 16px;
    }

    .point__text p {
        margin: 0 0 16px;
    }

}

/* TOP-YouTube */
#top .youtube {
    margin-bottom: 100px;
}

@media screen and (max-width: 769px) {
    #top .youtube {
        margin-bottom: 64px;
    }
}