@charset "UTF-8";
/*共通*/
#gurume_otodoke {
    text-align: left;
    font-size: 16px;
    color: #231714;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#gurume_otodoke a {
    text-decoration: none;
}

#gurume_otodoke .link_hover {
    text-decoration: none;
    transition: .4s;
}

#gurume_otodoke .link_hover:hover {
    opacity: .7;
    cursor: pointer;
}

/*MV*/
#gurume_otodoke .mv {
    margin: 0;
}

/*ナビ*/
#gurume_otodoke .navi_area{
    padding: 10px 0px;
    background-color: #fff;
    box-sizing: border-box;
}




#gurume_otodoke .navi {
    display: flex;
    flex-wrap: wrap;
}

#gurume_otodoke .navi li:not(:nth-of-type(3n)) {
  margin-right: 8px;
}

#gurume_otodoke .navi li{
    font-size: 19px;
    font-weight: bold;
    border: 3px solid #c75428;
    width: calc((99.999% - 16px) / 3);
	height: 66px;
    position: relative;
    box-sizing: border-box;
}


#gurume_otodoke .navi li.pink{
    background-color: #e8d0c7;
}


#gurume_otodoke .navi li.blue{
    background-color: #fff;
}


#gurume_otodoke .navi li:nth-last-child(n+3) {
  margin-bottom: 5px;
}




#gurume_otodoke .navi li a{
    color: #231714;
    line-height: 1.3;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 0 0 0 10px;*/
    width: 100%;
    height: 100%;
}

#gurume_otodoke .navi li a::after{
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #c75428;
    border-right: solid 2px #c75428;
    transform: rotate(45deg);
    position: absolute;
    right: 10px;
    top: 40%;
}

/*すべての商品を見る*/
#gurume_otodoke .link_all{
    display: inline-block;
    color: #231714;
    position: relative;
    font-weight: bold;
    border-bottom: solid 2px #231714;
    margin: 12px 0 0 4px;
    padding-right: 20px;
    transition: .4s;
}

#gurume_otodoke .link_all:hover{
    border-bottom: solid 2px transparent;
    opacity: .7;
}

#gurume_otodoke .link_all::after{
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #231714;
    border-right: solid 2px #231714;
    transform: rotate(45deg);
    position: absolute;
    right: 4px;
    top: 27%;
}

/*表示切替*/
#gurume_otodoke .pc{
    display: block;
  }
  
  #gurume_otodoke .sp{
    display: none;
  }