@charset "UTF-8";

/* ==nav== */
.header--not-toppage {
    background-color: var(--primary-brown);
    color: var(--primary-white);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    width: 100%;
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;

}

.header__topic--not-toppage {
    color: var(--primary-white);
    font-size: 2rem;
    font-weight: 700;
}

.header__btn--not-toppage {
    width: 30px;
    height: 23px;
    display: block;
    cursor: pointer;
    transition: opacity 0.5s ease-in-out;
}

/* ==nav PC== */
@media screen and (min-width: 769px) {
    .header__btn--not-toppage {
        display: none;
    }
}

/* ==backgroundIMG== */

.roof {
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    z-index: 9; 
}



.main {
    margin-top: 120px; 
    background-image: url('/assets/images/bkgc_1-8.png');
    background-repeat: repeat;
    background-size: cover;
}

/* ==section TOPIC== */
.section__topic.section__topic--not-toppage {
    margin-top: 20px;
}

/* ==section TOPIC PC== */
@media screen and (min-width: 769px) {
    .section__topic.section__topic--not-toppage {
        margin-top: 20px;
    }
}

.tax {
    font-size: 1.2rem;
    margin: 50px auto 0;
}

@media screen and (min-width: 769px) {
    .tax {
        margin: 10px auto 0;
        font-size: 1.6rem;
        max-width: 70%;
    }
}

/* ==menu_container== */


.section--menu {
    margin: 0 auto;
}


.menu_container {
    margin-top: 30px;
    width: 100%;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1), 0px 8px 16px rgba(0, 0, 0, 0.05);
}

.menu_container:first-of-type {
    margin-top: 10px;
}

.menu_img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.menu_item {
    background-color: var(--primary-white);
    border-radius: 0 0 10px 10px;
    padding: 10px;
}

.menu_title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
}

.menu_detail {
    font-size: 1.6rem;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.menu_info {
    font-size: 1.2rem;
    margin: 30px auto 20px;
    line-height: 1.8;
}

/* ==menu_container PC== */
@media screen and (min-width: 769px) {

    .menu_group {
        display: flex;
        flex-wrap: wrap;
        gap: 0 50px;
        justify-content: center;
    }

    .menu_container {
        width: calc((100% / 3) - 50px);
        min-width: 280px;
        min-height: 440px;
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }

    .menu_container:first-of-type {
        margin-top: 30px;
    }

    .menu_item {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .menu_info {
        font-size: 1.6rem;
        /* max-width: 75%; */
        text-align: center;
    }
}