@charset "UTF-8";

/* main */
.img-area .bg {
  background: linear-gradient(180deg, rgba(24, 52, 95, 0) 0%, #18345f 100%);
}

/* suggestion */
#suggestion .width-wrap .box-area {
  gap: 20px;
  margin-top: 80px;
  display: flex;
}
#suggestion .width-wrap .box-area .box {
  position: relative;
  border-radius: 20px;
  background: #f9f9f9;
  height: 288px;
  width: 20%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  box-sizing: border-box;
  transition: all 0.25s linear;
}
#suggestion .width-wrap .box-area .box p {
  opacity: 0;
  transition: all 0.25s linear;
}
#suggestion .width-wrap .box-area .box img {
  position: absolute;
  width: 140px;
}
#suggestion .width-wrap .box-area .box.on {
  background: var(--box-gradient);
  width: 40%;
  aspect-ratio: auto;
  justify-content: flex-start;
  align-items: flex-end;
}
#suggestion .width-wrap .box-area .box.on p {
  opacity: 1;
}
#suggestion .width-wrap .box-area .box.on img {
  opacity: 0;
}

/* produce */
#produce .width-wrap {
  background-image: url("/media/img/screen/bg_marketing_produce.jpg"),
    linear-gradient(0deg, rgba(11, 28, 51, 0.7) 0%, rgba(11, 28, 51, 0.7) 100%);
}

/* responsive */
@media all and (max-width: 1170px) {
  #suggestion .width-wrap .box-area {
    flex-wrap: wrap;
    max-width: 800px;
    margin: 80px auto 0;
  }
  #suggestion .width-wrap .box-area .box {
    width: calc(50% - 10px);
    height: auto;
  }
  #suggestion .width-wrap .box-area .box.on {
    width: calc(50% - 10px);
    aspect-ratio: 1 / 1;
  }
}
@media all and (max-width: 560px) {
  #suggestion .width-wrap h6 {
    font-size: 18px;
    letter-spacing: -0.72px;
  }
}
@media all and (max-width: 500px) {
  #suggestion .width-wrap .box-area {
    margin: 28px auto 0;
    gap: 12px;
  }
  #suggestion .width-wrap .box-area .box,
  #suggestion .width-wrap .box-area .box.on {
    width: calc(50% - 6px);
  }
  #suggestion .width-wrap .box-area .box {
    padding: 10px;
  }
  #suggestion .width-wrap .box-area .box img {
    width: 44.3%;
  }
  #suggestion .width-wrap .box-area .box p {
    font-size: 14px;
    letter-spacing: -0.56px;
  }
}
