.entrance {
    width: 100vw;
    height: 100vh;
    padding: 32px 5%;
    background-color: var(--secondary-bland-color);
}

.entrance--inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.entrance .media {
    display: flex;
    justify-content: center;
    align-items: center;
}

.entrance .media--body {
    flex: 1 0;
    display: grid;
    row-gap: 24px;
}

.entrance .media--title {
    font-size: 40px;
    line-height: 1;
    margin: 0;
    /* text-shadow: 1px 1px 0 rgb(0 0 0 / 20%); */
    /* text-align: center; */
}

.entrance .media--wantedText {
    color: var(--third-bland-color);
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

.entrance .media--prText {
    font-size: 20px;
    font-weight: bold;
    width: fit-content;
    line-height: 1.5;
    margin: 0 auto;
}

.entrance .media--imgBox {
    width: 496px;
    margin-right: 20px;
}

.entrance .media--img {
    width: 100%;
}

.entrance .media--btn {
    width: 500px;
    max-width: 100%;
    font-size: 20px;
    color: white;
    background: linear-gradient(90deg, #5dbaea, #0081cc);
    text-align: center;
    padding: 20px 20px;
    border-radius: 8px;
    display: inline-block;
}

/* .entrance .hero--btn:hover {
    background: linear-gradient(90deg, rgba(93, 186, 234, 0.85), rgba(0, 129, 204, 0.85));
} */

.entrance .media--borderBtn {
    width: 500px;
    max-width: 100%;
    font-size: 20px;
    color: #0081cc;
    background: white;
    text-align: center;
    padding: 20px 20px;
    border-radius: 8px;
    border: 1px solid #0081cc;
    display: inline-block;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */
    .entrance .media {
        flex-direction: column;
    }

    .entrance .media--title {
        text-align: center;
    }

    .entrance .media--imgBox {
        margin-right: 0;
    }
    
    .entrance .media--wantedText {
        text-align: center;
    }
    
    .entrance .media--prText {
        text-align: center;
    }

    .entrance .media--btn,
    .entrance .media--borderBtn {
        width: 100%;
    }
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .entrance {
        /* padding-top: 24px; */
        /* height: auto; */
    }

    .entrance .media {
        width: 100%;
    }

    .entrance .media--imgBox {
        width: 80%;
    }

    .entrance .media--body {
        width: 100%;
    }

    .entrance .media--title {
        font-size: 32px;
    }
    
    .entrance .media--wantedText {
        font-size: 24px;
    }
    
    .entrance .media--prText {
        font-size: 16px;
    }

}