
@charset "UTF-8";

#list{
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-top: 2px solid var(--i_main_color);
    border-bottom: 2px solid var(--i_main_color);
    background-color: var(--i_bg_color);
}
.clearfix{
    display: block;
}
.clearfix:after{
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
#list ul{
    margin: 0 auto;
    width: 100%;
    height: 9vw;
    justify-content: center;
    display: flex;
}
#list li{
    width: 7%;
    float: left;
    border-right: 1px solid #c8c6c4;
    text-align: left;
    list-style-type: none;
    border-collapse: collapse;
    padding: 0 7px;
}
#list li:first-child{
    border-left: 1px solid #c8c6c4;
}
#list img{
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 4px;
    margin-left: auto;
    display: block;
    width: 4vw;
    height: 3vw;
}
#list p{
    font-size: clamp(10px, 1vw, 16px);
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}
@media screen and (max-width:900px){
    #icon_nav + section{
        display: none;
    }
}