@charset "UTF-8";

/* main */
.img-area .bg {
  background: linear-gradient(180deg, rgba(24, 52, 95, 0) 0%, #18345f 100%);
}
.img-area .text-box h4:last-child {
  margin-top: 40px;
}

/* suggestion */
#suggestion {
  height: 100vh;
}
#suggestion .width-wrap h6 {
  position: relative;
  left: 50%;
  width: fit-content;
  transform: translate(-50%, 100%);
  opacity: 0;
  box-sizing: border-box;
}
#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 20px;
  box-sizing: border-box;
  transition: all 0.25s linear;
}
#suggestion .width-wrap .box-area .box.under800 {
  display: none;
}
#suggestion .width-wrap .box-area .box p {
  opacity: 0;
  transition: all 0.25s linear;
  word-break: keep-all;
}
#suggestion .width-wrap .box-area .box .img {
  position: absolute;
  width: 140px;
}
#suggestion .width-wrap .box-area .box .img img {
  width: 100%;
}
#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%);
}

/* mk-plan */
#mk-plan {
  background: #F9F9F9;
}
#mk-plan .width-wrap{
  padding: var(--padding180);
  display: grid;
  grid-template-columns: auto minmax(0, 808px);
  gap: 48px;
}
#mk-plan .width-wrap .left-area{
  position: sticky;
  top: 180px;
  height: fit-content;
}
#mk-plan .width-wrap .left-area p{
  color: #000;
  margin-top: 44px;
}
#mk-plan .width-wrap .right-area .main-zone .box {
  position: relative;
  border-radius: 20px;
  padding: 56px 36px 44px 36px;
  background: var(--white);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  height: 617px;
  z-index: 0; 
}

#mk-plan .width-wrap .right-area .main-zone .box::before {
  content: "";
  position: absolute;
  inset: 0; 
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(238deg, #25DCBA 0%, #19A4C5 69.08%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1; 
}

#mk-plan .width-wrap .right-area .main-zone .box > p{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 14px;
  border-radius: 1000px;
  background: linear-gradient(238deg, #25DCBA 0%, #19A4C5 69.08%);
  position: absolute;
  left: 36px;
  top: -16px;
}
#mk-plan .width-wrap .right-area .main-zone .box .inner-box{
  display: flex;
  flex-direction: column;
  height: 100%;
}
#mk-plan .width-wrap .right-area .main-zone .box .inner-box .top{
  display: flex;
  align-items: end;
  gap: 8px;
  padding-bottom: 28px;
  margin-bottom: 44px;
  border-bottom: 1px solid #D2D2D2;
}
#mk-plan .width-wrap .right-area .main-zone .box .inner-box .bottom{
  flex: 1;
}
#mk-plan .width-wrap .right-area .main-zone .box .inner-box .bottom ul{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
#mk-plan .width-wrap .right-area .main-zone .box .inner-box .bottom ul li{
  gap: 4px;
  align-items: start;
}
#mk-plan .width-wrap .right-area .main-zone .box .inner-box .bottom ul li i{
  height: 8px;
  align-self: baseline;
}
#mk-plan .width-wrap .right-area .main-zone .box .inner-box .bottom ul li p.desc{
  margin-left: 6px;
}
#mk-plan .width-wrap .right-area .main-zone .box .inner-box > .btn{
  border-radius: 8px;
  border: 1px solid var(--po);
  padding: 20px 10px;
  line-height: 150%;
  transition: all 0.25s ease;
}
#mk-plan .width-wrap .right-area .main-zone .box .inner-box > .btn:hover {
  color: var(--po);
  background: var(--white);
}
#mk-plan .width-wrap .right-area .main-zone > p{
  text-align: center;
  margin: 24px 0 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid #D2D2D2;
}
#mk-plan .width-wrap .right-area .option-zone > p:first-child{
  text-align: center;
  margin-bottom: 24px;
}
#mk-plan .width-wrap .right-area .option-zone .option-list .option-item{
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 32px;
  border-radius: 20px;
  background: var(--white);
  margin-bottom: 24px;
  height: 114px;
  box-sizing: border-box;
  transition: height 0.3s ease; 
}
#mk-plan .width-wrap .right-area .option-zone .option-list .option-item.on {
  height: 329px;
}
#mk-plan .width-wrap .right-area .option-zone .option-list .option-item .tit{
  cursor: pointer;
}
#mk-plan .width-wrap .right-area .option-zone .option-list .option-item .tit p{
  flex: 1;
}
#mk-plan .width-wrap .right-area .option-zone .option-list .option-item .tit p img{
  width: 34px;
  box-shadow: 1px 2px 10.1px 0 rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}
#mk-plan .width-wrap .right-area .option-zone .option-list .option-item .tit .btn{
  width: 24px;
}
#mk-plan .width-wrap .right-area .option-zone .option-list .option-item .tit .btn img{
  width: 100%;
  transform: rotate(180deg);
  transition: transform 0.3s ease; 
}
#mk-plan .width-wrap .right-area .option-zone .option-list .option-item.on .tit .btn img {
  transform: rotate(0deg);
}
#mk-plan .width-wrap .right-area .option-zone .option-list .option-item ul{
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
#mk-plan .width-wrap .right-area .option-zone .option-list .option-item.on ul {
  max-height: max-content;
  opacity: 1;
}
#mk-plan .width-wrap .right-area .option-zone .option-list .option-item ul li{
  gap: 4px;
}
#mk-plan .width-wrap .right-area .option-zone > p:last-child{
  text-align: center;
}

/* responsive */
@media all and (max-width: 1170px) {
  #suggestion .width-wrap .box-area {
    flex-wrap: wrap;
    max-width: 800px;
    width: 100%;
    margin: 59px auto 0;
  }
  #suggestion .width-wrap .box-area .box {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    align-items: flex-start;
    justify-content: space-between;
    gap: 26px;
  }
  #suggestion .width-wrap .box-area .box p {
    opacity: 1;
    color: var(--black);
  }
  #suggestion .width-wrap .box-area .box .img {
    position: relative;
    width: 13%;
    order: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }
  #suggestion .width-wrap .box-area .box.on {
    width: 100%;
    aspect-ratio: auto;
    align-items: flex-start;
    justify-content: space-between;
    background: #f9f9f9;
  }
  #suggestion .width-wrap .box-area .box.on .img {
    opacity: 1;
    width: 13%;
  }

  #mk-plan .width-wrap{
    grid-template-columns: 1fr;
  }
  #mk-plan .width-wrap .left-area{
    position: static;
    top: initial;
  }
  #mk-plan .width-wrap .right-area .main-zone .box .inner-box .top p:nth-child(1) {
    font-size: 32px;
    letter-spacing: -1.28px;
  }
  #mk-plan .width-wrap .right-area .main-zone .box .inner-box .bottom ul li i {
    font-size: 20px;
    letter-spacing: -0.8px;
  }
  #mk-plan .width-wrap .right-area .option-zone > p:first-child {
    font-size: 24px;
    letter-spacing: -0.96px;
  }
}
@media all and (max-width: 800px) {
  #suggestion {
    background: var(--black);
    height: fit-content;
  }
  #suggestion .width-wrap h6 {
    left: 0;
    transform: translate(0, 0);
    opacity: 1;
    color: var(--white);
    width: 100%;
    text-align: center;
  }
  #suggestion .width-wrap .box-area .box.top800 {
    display: none;
  }
  #suggestion .width-wrap .box-area .box.under800 {
    display: flex;
  }
}
@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;
  }
  #suggestion .width-wrap .box-area .box {
    padding: 22px 24px;
    height: 130px;
  }
  #suggestion .width-wrap .box-area .box.on .img,
  #suggestion .width-wrap .box-area .box .img {
    width: 25%;
  }
  #suggestion .width-wrap .box-area .box p {
    font-size: 14px;
    letter-spacing: -0.56px;
  }

  #plan .width-wrap .bottom h5 {
    margin-bottom: 40px;
  }

  #mk-plan .width-wrap .left-area p {
    margin-top: 16px;
    font-size: 14px;
    letter-spacing: -0.56px;
  }
  #mk-plan .width-wrap .right-area .main-zone .box {
    padding: 36px 20px 24px 20px;
    border-radius: 12px;
    height: 450px;
  }
  #mk-plan .width-wrap .right-area .main-zone .box::before {
    border-radius: 12px;
  }
  #mk-plan .width-wrap .right-area .main-zone .box > p {
    left: 20px;
    font-size: 13px;
    letter-spacing: -0.52px;
  }
  #mk-plan .width-wrap .right-area .main-zone .box .inner-box .top {
    padding-bottom: 20px;
    margin-bottom: 32px;
  }
  #mk-plan .width-wrap .right-area .main-zone .box .inner-box .top p:nth-child(2) {
    font-size: 18px;
    letter-spacing: -0.72px;
  }
  #mk-plan .width-wrap .right-area .main-zone .box .inner-box .bottom ul {
    gap: 8px;
    margin-top: 12px;
  }
  #mk-plan .width-wrap .right-area .main-zone .box .inner-box .bottom ul li i {
    width: 11px;
    height: 14px;
  }
  #mk-plan .width-wrap .right-area .main-zone .box .inner-box .bottom ul li p.desc {
    margin-left: 2px;
    font-size: 13px;
    letter-spacing: -0.52px;
  }
  #mk-plan .width-wrap .right-area .main-zone .box .inner-box > .btn {
    padding: 12px 10px;
    font-size: 14px;
    letter-spacing: -0.56px;
  }
  #mk-plan .width-wrap .right-area .main-zone > p {
    margin: 16px 0 48px;
    padding-bottom: 48px;
  }
  #mk-plan .width-wrap .right-area .option-zone > p:first-child {
    margin-bottom: 16px;
  }
  #mk-plan .width-wrap .right-area .option-zone .option-list .option-item {
    padding: 24px 20px;
    border-radius: 12px;
    gap: 20px;
    height: 74px;
    margin-bottom: 16px;
  }
  #mk-plan .width-wrap .right-area .option-zone .option-list .option-item.on {
    height: 240px;
  }
  #mk-plan .width-wrap .right-area .option-zone .option-list .option-item .tit p {
    gap: 8px
  }
  #mk-plan .width-wrap .right-area .option-zone .option-list .option-item .tit p img {
    width: 26px;
  }
  #mk-plan .width-wrap .right-area .option-zone .option-list .option-item .tit .btn {
    width: 20px;
  }
}
@media all and (max-width: 400px) {
  #suggestion .width-wrap .box-area .box.on .img,
  #suggestion .width-wrap .box-area .box .img {
    width: 52%;
  }
  
  #mk-plan .width-wrap .right-area .main-zone .box {
    height: 414px;
  }
}