/*-------------------- Section1 (Start) --------------------*/
.sect1 .title {
    padding: 120px 100px 10px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 32px;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 2s, transform 1.5s;
}

.sect1 .titleTranslate {
    opacity: 1;
    transform: translateX(0);
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect1 .title {
        padding: 120px 80px 10px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect1 .title {
        padding: 80px 20px 10px;
        font-size: 28px;
    }
}
    
@media screen and (min-width: 401px) and (max-width: 450px) {
}

@media screen and (min-width: 451px) and (max-width: 550px) {
}

@media screen and (min-width: 551px) and (max-width: 767px) {
}
/*-------------------- Section1 (End) --------------------*/


/*-------------------- Section2 (Start) --------------------*/
.sect2 {
    padding: 50px 100px 100px;
    box-sizing: border-box;
    background: #c0c0c0;
}

.sect2 .ctx {
    width: 1000px;
}

.sect2 .ctx .wording {
    margin: 40px 0 20px;
    text-align: center;
    font-weight: bold;
    font-size: 32px;
}

.sect2 .ctx .link {
    width: 200px;
    margin: auto;
    padding: 5px;
    box-sizing: border-box;
    display: block;
    border-radius: 20px;
    text-align: center;
    color: #000;
    background: #4be3bd;
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .sect2 {
        padding: 50px 0 100px;
    }
    
    .sect2 .ctx {
        width: 1000px;
        padding: 0 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .sect2 {
        padding: 100px 0;
    }

    .sect2 .ctx {
        width: 100%;
    }

    .sect2 .ctx .wording {
        margin: 20px 0;
        font-size: 24px;
    }
}
/*-------------------- Section2 (End) --------------------*/