:root {
    --common-padding: 50px;
    --footer-height: 80px;
    --header-height: 80px;
    --input-height: 40px;
    --color-red: #e94c2d;
    --color-orange: #fea60e;
    --color-yellow: #feb922;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;

    overflow-x: hidden;
}

body {
    width: 100vw;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    margin-bottom: var(--footer-height);

    overflow-x: hidden;
}

@media screen and (max-width: 900px) {
    .PC {
        display: none;
    }
    .grid {
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
        width: 100%;
    }
    .food__profile {
        width: 100px;
        margin: 0 auto;
    }
}
@media screen and (min-width: 900px) {
    .MOBILE {
        display: none;
    }
    .grid {
        display: grid;
        grid-template-columns: 25% 25% 25% 25%;
        padding: 150px 200px;
        width: 100%;
    }
    .food__profile {
        width: 300px;
        margin: 0 auto;
    }
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 100vh;
    padding: var(--common-padding);
    background-color: blanchedalmond;
}
.section__content {
    max-width: 1200px;
    height: 100%;
    width: 100%;
}

.d-f {
    display: flex;
    flex-direction: row;
}

.f-center {
    justify-content: center;
    align-items: center;
}

.f-between {
    align-items: center;
    justify-content: space-between;
}

input {
    text-align: center;
}

.f-3 {
    flex: 3;
}
.f-1 {
    flex: 1;
}
.h-100 {
    height: 100%;
}

.section__food--menu {
    background-color: white;
}
.food__thumb {
    border-radius: 25px;
    width: 100%;
}
.food__title {
    width: 100%;

    text-align: center;
    font-weight: bold;
}

.section__form {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}
.section__form--input {
    height: var(--input-height);
    margin-bottom: var(--input-height);
}
