#suggestion_wrap {
  width: 100%;
  max-width: 1250px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

#suggestion_wrap .panel {
  width: auto;
  max-width: 745px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

#suggestion_wrap .panel .box {
  width: 245px;
  height: 200px;
  border-radius: 20px;
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

#suggestion_wrap .panel .box:hover {
  border: 1px solid #CD9E66;
  background: rgba(151,114,69,0.2);
}

#suggestion_wrap .panel .box.active {
  border: 1px solid #CD9E66;
  background: rgba(151,114,69,0.2);
}

#suggestion_wrap .panel .box:nth-of-type(3n) {
  margin-right: 0;
}

#suggestion_wrap .panel .box:nth-of-type(n+4) {
  margin-top: 5px;
}

#suggestion_wrap .panel .box h5 {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #8C735F;
  margin-bottom: 10px;
}

#suggestion_wrap .panel .box.active h5 {
  color: #4B3A2D;
}

#suggestion_wrap .panel .box img {
  width: auto;
  max-width: 90px;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
}

#suggestion_wrap .panel .box p {
  font-family: 'PB_M';
	font-weight: normal;
  font-size: 15px;
  color: #8C735F;
}

#suggestion_wrap .panel .box.active p {
  color: #4B3A2D;
}

#suggestion_wrap .item_info {
  width: 100%;
  max-width: 450px;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #d9d9d9;
  cursor: pointer;
}

#suggestion_wrap .item_info h2 {
  width: 100%;
  height: auto;
  text-align: center;
  padding: 10px 0;
  background: #8C735F;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #fff;
}

#suggestion_wrap .item_info .img_box {
  width: 100%;
  height: 335px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#suggestion_wrap .item_info .img_box img {
  width: auto;
  height: auto;
  max-width: 360px;
  max-height: 290px;
  object-fit: cover;
}

#suggestion_wrap .item_info .info_text {
  width: 100%;
  height: auto;
  border-top: 1px solid #d9d9d9;
  background: #FCF8F3;
  padding: 20px;
}

#suggestion_wrap .item_info .info_text .cp_name {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 12px;
  color: #4B3A2D;
  margin-bottom: 10px;
}

#suggestion_wrap .item_info .info_text .item_name {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #4B3A2D;
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#suggestion_wrap .item_info .info_text .item_txt {
  width: 100%;
  height: auto;
  padding: 18px 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  font-family: 'PB_R';
	font-weight: normal;
  font-size: 15px;
  color: #4B3A2D;
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#suggestion_wrap .item_info .info_text .item_price {
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 20px;
  color: #4B3A2D;
}

#suggestion_wrap .item_info .info_text .item_price span {
  color: #C00000;
}

@media (max-width: 1400px) {
  #suggestion_wrap {
    max-width: 100%;
  }

  #suggestion_wrap .item_info {
    max-width: 35%;
  }

  #suggestion_wrap .panel {
    max-width: 60%;
    justify-content: space-between;
  }

  #suggestion_wrap .panel .box {
    width: 33%;
    margin-right: 0;
  }
}

@media (max-width: 1200px) {
  #suggestion_wrap .panel .box img {
    max-width: 70px;
  }

  #suggestion_wrap .panel .box h5 {
    font-size: 18px;
  }

  #suggestion_wrap .panel .box p {
    font-size: 14px;
  }

  #suggestion_wrap .item_info h2 {
    font-size: 18px;
  }

  #suggestion_wrap .item_info .img_box img {
    max-width: 90%;
    max-height: 90%;
  }

  #suggestion_wrap .item_info .img_box {
    width: 50%;
    height: 280px;
  }

  #suggestion_wrap .item_info .info_text {
    width: 50%;
    height: 280px;
  }

  #suggestion_wrap .item_info .info_text .item_name {
    font-size: 18px;
  }

  #suggestion_wrap .item_info .info_text .item_txt {
    font-size: 14px;
  }

  #suggestion_wrap .item_info .info_text .item_price {
    font-size: 18px;
  }

  #suggestion_wrap .panel .box {
    height: 180px;
  }

  #suggestion_wrap {
    flex-wrap: wrap;
  }

  #suggestion_wrap .panel {
    max-width: 100%;
    width: 100%;
    order: 1;
  }

  #suggestion_wrap .item_info {
    max-width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  #suggestion_wrap .panel {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }

  #suggestion_wrap .panel .box {
    width: 200px;
    margin-right: 10px;
    flex-shrink: 0;
  }

  #suggestion_wrap .panel .box:nth-of-type(3n) {
    margin-right: 10px;
  }

  #suggestion_wrap .panel .box:nth-of-type(n+4) {
    margin-top: 0;
  }

  #suggestion_wrap .item_info .info_text {
    height: auto;
  }

  #suggestion_wrap .item_info .img_box {
    height: 218px;
  }
}

@media (max-width: 500px) {
  #suggestion_wrap .item_info h2 {
    font-size: 16px;
  }

  #suggestion_wrap .item_info .info_text .cp_name {
    font-size: 10px;
    margin-bottom: 5px;
  }

  #suggestion_wrap .item_info .info_text .item_name {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #suggestion_wrap .item_info .info_text .item_txt {
    font-size: 12px;
    padding: 10px 0;
    margin-bottom: 10px;
  }

  #suggestion_wrap .item_info .info_text .item_price {
    font-size: 16px;
  }

  #suggestion_wrap .item_info .img_box {
    height: 166px;
  }

  #suggestion_wrap .panel .box h5 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  #suggestion_wrap .panel .box img {
    max-width: 50px;
    margin-bottom: 5px;
  }

  #suggestion_wrap .panel .box p {
    font-size: 12px;
  }

  #suggestion_wrap .panel .box {
    height: 150px;
    width: 170px;
  }
}

@media (max-width: 400px) {
  #suggestion_wrap .item_info h2 {
    font-size: 14px;
  }

  #suggestion_wrap .item_info .info_text .cp_name {
    font-size: 8px;
  }

  #suggestion_wrap .item_info .info_text .item_name {
    font-size: 12px;
  }

  #suggestion_wrap .item_info .info_text .item_txt {
    font-size: 10px;
  }

  #suggestion_wrap .item_info .info_text .item_price {
    font-size: 12px;
  }

  #suggestion_wrap .item_info .img_box {
    height: 149px;
  }

  #suggestion_wrap .panel .box h5 {
    font-size: 12px;
  }

  #suggestion_wrap .panel .box img {
    max-width: 35px;
  }

  #suggestion_wrap .panel .box p {
    font-size: 8px;
  }

  #suggestion_wrap .panel .box {
    height: 110px;
    width: 140px;
  }
}