.banner02 {
    position: relative;
    padding-top: 2rem;
}

.banner02-background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 80%;
    z-index: 0;
}

.banner02-tile {
    position: relative;
    width: 65%;
    z-index: 1;
    display: flex;
    margin: 0 auto;
    background-color: #F8F5F0;
}

.banner02-text,
.banner02-image {
    width: 50%;
}

.banner02-text {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: clamp(1rem, 2vw, 6rem) 3rem;
}

.banner02-text p,
.banner02-text a {
    display: block;
}

.banner02-suptitle {
    color: #a0a190;
    font-size: 1.4rem;
}

.banner02-maintitle {
    font-family: 'DM Serif Display';
    font-size: clamp(2.5rem, 3vw, 5rem);
    line-height: clamp(2.5rem, 3vw, 5rem);
    font-weight: 600;
    color: #333D28;
    letter-spacing: -0.1rem;
}

.banner02-link a {
    display: inline-block;
    background-color: #fff;
    font-size: clamp(1.4rem, 2vh, 1.6rem);
    font-weight: 700;
    border-radius: 1rem;
    padding: 1.8rem 2.4rem;
    margin-top: 3rem;
    border: .1rem solid rgb(128 128 128 / 0);
}

.banner02-link a:hover {
    text-decoration: none;
    border: .1rem solid rgb(128 128 128 / 13%);
    transition: ease 150ms;
}

.banner02-link span {
    color: #333D28;
}

@media (max-width: 768px) {
    .banner02-background {
        height: 70%;
    }

    .banner02-tile {
        display: block;
        width: 95%;
    }

    .banner02-text,
    .banner02-image {
        width: 100%;
    }

    .banner02-text {
        padding: 2rem;
    }

    .banner02-suptitle {
        margin-bottom: 3rem;
    }

    /* .banner02-link {
        margin-top: 2rem;
    } */

    .banner02-link a {
        display: block;
        text-align: center;

    }
}