.footer--top {
    background-color: var(--primary-bland-color);
    display: grid;
    place-items: center;
}

.footer--telBox {
    width: 100%;
    max-width: var(--inner-medium);
    display: flex;
    align-items: center;
    padding: 16px;
    column-gap: 16px;
}

.footer--tel-text {
    font-size: 1.6rem;
    border: 1px solid var(--white);
    padding: 8px;
    line-height: 1.5;
}

.footer--telInfoBox {
    display: grid;
    row-gap: 8px;
}

.footer--telInfo-tel {
    font-size: 3.2rem;
}

.footer--telInfo-text {
    font-size: 1.6rem;
}

@media screen and (max-width: 599px) {
    /* 599pxまでの幅の場合に適応される */
    .footer--tel-text {
        width: 110px;
        padding: 4px;
        font-size: 1.6rem;
    }

    .footer--telInfo-tel {
        font-size: 2.4rem;
    }
    
    .footer--telInfo-text {
        font-size: 1.2rem;
    }
    
}

.footer--middle {
    background-color: var(--light-grey);
    width: 100%;
    display: grid;
    place-items: center;
}

.footer--menu {
    width: 100%;
    max-width: var(--inner-medium);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 80px;
    padding: 16px;
}

.footer--menuLink {
    display: block;
    padding: 8px;
}

.footer--menuText {
    display: block;
    padding: 8px;
}

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

.footer--bottom {
    background-color: var(--white);
    width: 100%;
    display: grid;
    place-items: center;
}

.footer--media {
    width: 100%;
    max-width: var(--inner-medium);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    column-gap: 32px;
}

.footer--media--imgBox {
    width: 100%;
    max-width: 400px;
}

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

.footer--media--title {
    font-size: 2rem;
}

.footer--contactInfoBox {
    margin-top: 12px;
    margin-bottom: 8px;
}

.footer--media--text {
    font-size: 1.6rem;
    line-height: 1.5;
}

@media screen and (max-width: 1024px) {
    /* 1024pxまでの幅の場合に適応される */

    .footer--media--imgBox {
        max-width: 300px;
    }

    .footer--media--title {
        font-size: 1.8rem;
    }
}

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

    .footer--media--imgBox {
        max-width: 100%;
    }
}

.footer--copyright {
    width: 100%;
    padding: 24px;
    text-align: center;
    background-color: var(--light-grey);
}