a{
    text-decoration: none;
}
nav{
    background: #DEE7D5;
}
.nav-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1080px;
    height: 110px;
    margin: 0 auto;
}
.nav-list li{
    width: 12.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right:1px solid #005239;
}
.nav-list li:nth-of-type(6){
    border-right: 0;
}
.nav-list li:nth-of-type(7){
    background: #fff;
    border-right: 0;
    height: 100%;
}
.nav-list li:nth-of-type(7) a::before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../img/jet-icon.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.nav-list li:nth-of-type(8){
    background: #005239;
    border-right: 0;
    height: 100%;
}
.nav-list li:nth-of-type(8) a,.nav-list li:nth-of-type(8) a span{
    color: #fff;
}
.nav-list li:nth-of-type(8) a::before{
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(../img/bed-icon.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.nav-list li a{
    color: #343B2B;
    text-align: center;
    /* Noto Sans JP_p */
    font-family: "Noto Sans JP";
    font-size: clamp(0.75rem, 0.689rem + 0.26vw, 1rem);
    font-style: normal;
    font-weight: 500;
    line-height: 170%;

    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav-list li a span{
    color:  #005239;
    text-align: center;
    font-family: Roboto;
    font-size: clamp(0.625rem, 0.595rem + 0.13vw, 0.75rem);
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
}