@charset "UTF-8";
/* menu */
.menu{
    margin: 0 0 50px 0;
    background: var(--color-gray-light);

    .menu_list{
        border-left: solid 2px var(--color-white);
        border-right: solid 2px var(--color-white);
        display: flex;
        align-items: stretch;
        justify-content: center;
    }
    .menu_item{
        width: 50%;
    }
    .menu_item:not(:last-child){
        border-right: solid 2px var(--color-white);
    }
    .menu_item a{
        padding: 10px;
        color: var(--text-color);
        font-weight: 500;
        text-align: center;
        line-height: 1;
        display: block;
        transition: color cubic-bezier(0.455, 0.03, 0.515, 0.955) 0.2s;
    }
    .menu_item a:hover{
        color: var(--sub-color);
    }
    .menu_item .fa-solid{
        margin: 0 0 5px 0;
        display: block;
    }
}

/* partner */
.partner{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 50px;

    .supporter,
    .hosts,
    .cooperation{
        margin: 0 0 50px 0;
    }

    .partner_list{
        margin: 0 10px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .partner_item{
        margin: 5px 15px;
        font-weight: 500;
    }

    .hosts .l-flex{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .host,
    .co-host{
        width: 45%;
    }
}


@media screen and (max-width: 600px){
    .menu{
        margin-bottom: 30px;
    }

    .partner{
        .hosts .l-flex{
            flex-direction: column;
        }

        .host, .co-host{
            width: 100%;
        }

        .host{
            margin: 0 0 50px 0;
        }
    }
}