.company{
  padding-bottom: calc(var(--padding)*6);
}
.company .title{
  padding-bottom: calc(var(--padding)*1.5);
}
.company .title .h2q{
  display: flex;
  justify-content: start;
  align-items: end;
}
.company .title .h2q .tip{
  padding-left: 10px;
}
.company .company_list{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: calc(var(--padding)*4);
}
.company .company_list li{
  border-radius: 6px;
  border: 1px solid var(--border);
  height: 280px;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  transition: .3s;
}
.company .company_list li:hover{
  border-color: var(--point_blue);
}
.company .company_list li .img_box{
  cursor: pointer;
  max-height: 170px;
  height: 100%;
  margin-bottom: 10px;
  background-color: #000;
  border-radius: 4px;
  overflow: hidden;
}
.company .company_list li .img_box img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.company .company_list li .bot{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.company .company_list li .bot .like_rt{
  display: flex;
  align-items: center;
  gap: 3px;
}
.like_btn{
  margin-left: auto;
  border-radius: 100px;
  border: 2px solid #A1A1A1;
  font-size: 1.35em;
  color: #A1A1A1;
  padding: 12px 20px;
  font-weight: 600;
  transition: .3s;
  white-space: nowrap;
  cursor: pointer;
}
.like_btn span{
  font-size: 1.15em;
}
.like_btn.active{
  border: 2px solid var(--point_blue);
  background-color: var(--point_blue);
  color: var(--white);
}

/* premium_view */
.premium_view .infor{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.premium_view .top_title{
  display: flex;
  gap: 2%;
  padding-bottom: calc(var(--padding)*3.5);
  border-bottom: 1px solid var(--border);
}
.premium_view .top_title .img_box{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  max-width: 350px;
  width: 100%;
}
.premium_view .top_title .img_box img{
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.premium_view .top_title .infor h2{
  padding-bottom: calc(var(--padding)*1.5);
  line-height: 1.2em;
}
.premium_view .top_title .infor h2 span{
  display: block;
}
.premium_view .top_title .infor h3{
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.1em;
}
.premium_view .top_title .data{
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: auto;
}
.premium_view .top_title .data .href_link{
  display: block;
  font-size: 1.2em;
  line-height: 1em;
  border-radius: 100px;
  padding: 10px 16px;
  background-color: #A1A1A1;
  color: white;
  white-space: nowrap;
  transition: .3s;
}
.premium_view .top_title .data .href_link:hover{
  background-color: black;
}
.premium_view .top_title .data_list{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  width: 100%;
  gap: 5px;
}
.premium_view .top_title .data_list li{
  display: flex;
  align-items: center;
}
.premium_view .top_title .data_list li .del{
  flex: 1;
  color: var(--grey3);
}
.premium_view .top_title .data_list li .sel{
  flex: 5;
}
.premium_view .premium_contet{
  padding: calc(var(--padding)*4) 0;
  overflow: hidden;
}
.premium_view .premium_contet h2{
  padding-bottom: calc(var(--padding)*2.5);
}
.premium_view .premium_contet .swiper_single{
  padding-top: calc(var(--padding)*1);
  padding-bottom: calc(var(--padding)*3);
}
.premium_view .premium_contet li.swiper-slide{
  display: flex;
  justify-content: center;
  align-items: center;
}
.premium_view .premium_contet li img, .premium_view .premium_contet li video{
  max-width: 100%;
  display: block;
}
[class^="quest"]{
  border: 3px solid red;
  border-radius: 15px;
  margin-bottom: calc(var(--padding)*2);
  overflow: hidden;
}
[class^="quest"] .play{
  display: flex;
  gap: 2%;
}
[class^="quest"] .play .del{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
[class^="quest"] .play .del .img_box{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 200px;
  max-width: 350px;
}
[class^="quest"] .play .del .img_box img{
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[class^="quest"] .play .sel{
  flex: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  gap: 10px;
  word-break: keep-all;
  padding: 2% 0;
}
[class^="quest"] .play .qna{
  font-size: 1.7em;
  line-height: 1.1em;
  font-weight: 700;
  color: red;
  padding-bottom: 1%;
}
[class^="quest"] .play .qnq{
  font-size: 1.3em;
  line-height: 1.2em;
  font-weight: 500;
  padding-bottom: 2%;
}
[class^="quest"] .play .qnq span{
  color: red;
  font-size: 1.2em;
  font-weight: 700;
}
[class^="quest"] .qna_btn{
  font-size: 1.4em;
  line-height: 1em;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  font-weight: 500;
  gap: 1%;
}
[class^="quest"] .qna_btn li{
  cursor: pointer;
  background-color: red;
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 1%;
}
[class^="quest"] .in_p{
  display: flex;

}
[class^="quest"] .text_box{
  flex: 4;
  display: flex;
  justify-content: start;
  align-items: center;
  border-top: 3px solid red;
}
[class^="quest"] .text_box input{
  padding-left: 3%;
  font-size: 1.2em;
  line-height: 1em;
  font-weight: 500;
  width: 90%;
}
[class^="quest"] .sub_mit{
  flex: 1;
  font-size: 1.5em;
  color: white;
  background-color: red;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  line-height: 1em;
  font-weight: 600;
  cursor: pointer;
}
[class^="quest"] .form{
  background-color: red;
  padding: 5% 10%;
}
[class^="quest"] .user_data{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  gap: 15px;
  color: white;
  font-size: 1.4em;
  line-height: 1em;
  font-weight: 500;
  padding-bottom: 3%;
}
[class^="quest"] .user_data li{
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 3%;
}
[class^="quest"] .user_data li .del{
  flex: 1;
  text-align: right;
}
[class^="quest"] .user_data li .sel{
  flex: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
[class^="quest"] .user_data li .sel.phone,
[class^="quest"] .user_data li .sel.addr{
  display: flex;
  gap: 2%;
}
[class^="quest"] .user_data li .sel.addr{
  align-items: stretch;
}
[class^="quest"] .user_data li .sel input, [class^="quest"] .user_data li .sel select{
  width: 100%;
  background-color: white;
  border-radius: 10px;
  padding: 2%;
}
[class^="quest"] .user_data li .sel.addr input{
  flex: 1.5;
}
[class^="quest"] .user_data li .sel.addr .address{
  flex: 1;
  background-color: black;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
[class^="quest"] .assent{
  color: white;
}
[class^="quest"] .assent .top{
  font-size: 1.35em;
  line-height: 1em;
  font-weight: 600;
  padding-bottom: 1%;
  border-bottom: 1px solid white;
}
[class^="quest"] .assent .tip{
  padding: 2%;
  line-height: 2em;
  border-bottom: 1px solid white;
}
[class^="quest"] .assent .custom{
  background-color: #D0D0D0;
  padding: 1.5% 2%;
  border-radius: 10px;
  display: flex;
  gap: 10px;
}
[class^="quest"] .assent .custom .on{
  position: relative;
  border-color: white;
}
[class^="quest"] .custom .check_point[type="checkbox"]:checked + .on{
  background: black;
}
[class^="quest"] .custom .check_point[type="checkbox"]:checked + .on:after{
  background: black;
  border-color: white;
}
[class^="quest"] .submit_btn{
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  margin: 4% auto 0%;
  padding: 2%;
  border-radius: 100px;
  font-size: 1.5em;
  line-height: 1em;
  font-weight: 700;
  cursor: pointer;
}
[class^="quest"] .assent .custom .check_point[type="checkbox"]:checked + .on:after{
  background-color: black;
  border-color: white;
}
[class^="quest"] .check_design .check_point[type="checkbox"]:checked + .on:after{
  background-color: white;
  border-color: black;
}
[class^="quest"] .on{
  border-color: black;
}
[class^="quest"] .pharm_btn li{
  padding-bottom: 2%;
}
[class^="quest"] .sub_mit_btn{
  background-color: red;
  color: white;
  display: inline-block;
  margin: 0 5% 0 auto;
  cursor: pointer;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 1.4em;
  line-height: 1em;
}



[class^="quest"] .heart_btn li{
  padding-bottom: 2%;
}

[class^="quest"] .heart_check{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 1.1em;
  line-height: 1.3em;
  font-weight: 500;
}

[class^="quest"] .heart_check .check_point{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

[class^="quest"] .heart_icon{
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

[class^="quest"] .heart_svg{
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

[class^="quest"] .heart_path{
  fill: transparent;
  /* stroke: #ff4375; */
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill .2s ease, stroke .2s ease, transform .2s ease;
  transform-origin: center;
}


[class^="quest"] .check_point:checked + .heart_icon .heart_path{
  /* fill: #ff4375; */
  transform: scale(1.05);
}
[class^="quest"] .heart_path{
  stroke: #;
}
[class^="quest"] .check_point:checked + .heart_icon{
  color: #;
}
[class^="quest"] .check_point:checked + .heart_icon .heart_path{
  fill: #;
}
@media screen and (max-width: 768px){
  [class^="quest"] .heart_check{
    font-size: 0.9em;
  }

  [class^="quest"] .heart_icon{
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }
}




.company_list.group .on:after{
  border-color: var(--point_yellow);
}
.company_list.group li .bot .like_rt{
  color: var(--point_yellow);
}
.company_list.individual .on:after{
  border-color: var(--point_yellow);
}
.company_list.individual li .bot .like_rt{
  color: var(--point_yellow);
}
.like_btn.active{
  border: 2px solid var(--point_yellow);
  background-color: var(--point_yellow);
}







.reply_sec{
  position: relative;
}
.reply_sec .reply_wrap{
  display: flex;
  gap: 30px;
  align-items: stretch;
  overflow: hidden;
}

.reply_sec .reply_title{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 30px;
}

.reply_sec .reply_title .h2q{
  line-height: 1.1em;
  padding-bottom: 10px;
}

.reply_sec .reply_title .tip{
  font-size: 0.875em;
  line-height: 1.35em;
  color: #9B9B9B;
  word-break: keep-all;
}

.reply_sec .reply_title .tip img{
  width: 14px;
  margin-right: 2px;
  vertical-align: -1px;
  margin-top: 0px;
  top: 2px;
  position: relative;
}

.reply_sec .reply_title .reply_img{
  margin-top: auto;
  margin-left: -32px;
  width: 180px;
}

.reply_sec .reply_title .reply_img img{
  display: block;
  width: 100%;
  height: auto;
}

.reply_sec .reply_content{
  flex: 1;
  min-width: 0;
}
.img_ytp{
  position: absolute;
  left: -0px;
  bottom: -100px;
  max-width: 260px;
  z-index: -1;
}
.img_ytp.individual{
  left: -35px;
}
.img_ytp img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover
}
.reply_sec .reply_count{
  text-align: right;
  font-size: 1.1em;
  color: #8A8A8A;
  padding-bottom: 10px;
}
.reply_sec .reply_count span{
  color: var(--point_yellow);
  font-weight: 700;
}
.reply_sec.individual .reply_count span{
  color: var(--point_pink);
}
.reply_sec .reply_board{
  height: 195px;
  overflow-y: auto;
  border: 1px solid var(--point_main);
  border-radius: 10px;
  background: #fff;
  padding: 14px 18px;
}
.reply_sec.individual .reply_board{
  border: 1px solid var(--point_main);
}
.reply_sec .reply_board::-webkit-scrollbar{
  width: 8px;
}

.reply_sec .reply_board::-webkit-scrollbar-thumb{
  background: var(--point_main);
  border-radius: 10px;
}
.reply_sec.individual .reply_board::-webkit-scrollbar-thumb{
  background: var(--point_main);
}

.reply_sec .reply_board::-webkit-scrollbar-track{
  background: transparent;
}

.reply_sec .reply_list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reply_sec .reply_list li{
  display: grid;
  grid-template-columns: 130px 1fr 120px;
  gap: 14px;
  align-items: start;
  font-size: 0.95em;
  line-height: 1.45em;
}

.reply_sec .reply_list .name{
  color: var(--point_main);
  font-weight: 700;
  word-break: break-all;
}
.reply_sec.individual .reply_list .name{
  color: var(--point_main);
}
.reply_sec .reply_list .text{
  color: #333;
  word-break: break-all;
}

.reply_sec .reply_list .date{
  color: #9B9B9B;
  text-align: right;
  white-space: nowrap;
}

.reply_sec .reply_form{
  display: flex;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.reply_sec .reply_form textarea{
  flex: 1;
  height: 70px;
  border-radius: 10px;
  background: #EFEFEF;
  padding: 15px 20px;
  resize: none;
  font-size: 0.95em;
  color: #333;
  box-sizing: border-box;
  border: 2px solid #e4e4e4
}
.reply_sec .reply_form textarea:focus{
  outline: none;
  border-color: var(--point_main);
}
.reply_sec .reply_form textarea::placeholder{
  color: #9E9E9E;
}

.reply_sec .reply_form .reply_btn{
  flex: 0 0 100px;
  border: 0;
  border-radius: 10px;
  background: var(--point_main);
  color: #fff;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
}
.reply_sec.individual .reply_form .reply_btn{
  background: var(--point_main);
}








@media screen and (max-width: 768px){
  .company .title .h2q{
    display: block;
    text-align: center;
  }
  .company .title .h2q .tip{
    justify-content: center;
    align-items: center;
  }
  [class^="quest"] .play{
    flex-direction: column;
  }
  .search_premium{
    margin: auto;
  }
  [class^="quest"] .play .del{
    padding-top: 2%;
  }
  [class^="quest"] .play .sel{
    padding: 2% 4%;
  }

  [class^="quest"] .play .qna{
    font-size: 1.35em;
  }

  [class^="quest"] .play .qnq{
    font-size: 1em;
  }

  [class^="quest"] .qna_btn{
    font-size: 0.85em;
  }

  [class^="quest"] .qna_btn li{
    padding: 6px 16px;
  }

  [class^="quest"] .text_box input{
    font-size: 0.9em;
    width: 85%;
  }

  [class^="quest"] .sub_mit{
    font-size: 1.1em;
    padding: 12px 5px;
    white-space: nowrap;
  }

  [class^="quest"] .form{
    padding: 5%;
  }

  [class^="quest"] .user_data{
    font-size: 1.1em;
  }

  [class^="quest"] .user_data li .sel input,
  [class^="quest"] .user_data li .sel select{
    border-radius: 6px;
  }

  [class^="quest"] .user_data li .sel.addr .address{
    border-radius: 6px;
  }

  [class^="quest"] .assent .top{
    font-size: 1em;
  }

  [class^="quest"] .submit_btn{
    display: inline-flex;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 8px 18px;
    font-size: 1em; /* 중복 선언 최종값 */
  }

  [class^="quest"] .assent .tip{
    font-size: 0.85em;
  }

  .pharm_btn{
    font-size: 0.8em;
  }

  [class^="quest"] .sub_mit_btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 8px 18px;
    margin: 0 auto;
    font-size: 1em; /* 중복 선언 최종값 */
  }

  [class^="quest"] .assent .custom{
    gap: 5px;
    transform: scale(0.9);
  }

  .company .title{
    flex-direction: column;
    gap: 10px;
  }

  .company .company_list{
    grid-template-columns: 1fr 1fr;
  }

  .reply_sec .reply_wrap{
    display: block;
    background: transparent;
  }

  .reply_sec .reply_title{
    flex: none;
    align-items: center;
    text-align: center;
    padding-bottom: 14px;
  }

  .reply_sec .reply_title .h2q{
    padding-bottom: 6px;
  }

  .reply_sec .reply_title .h2q br{
    display: none;
  }

  .reply_sec .reply_title .reply_img{
    display: none;
  }

  .reply_sec .reply_count{
    text-align: center;
    font-size: 0.95em;
    padding-bottom: 10px;
  }

  .reply_sec .reply_board{
    height: 180px;
    padding: 14px 12px;
    border-radius: 10px;
  }

  .reply_sec .reply_list{
    gap: 12px;
  }

  .reply_sec .reply_list li{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 10px;
    font-size: 0.875em;
    line-height: 1.45em;
  }

  .reply_sec .reply_list .name{
    grid-column: 1 / 2;
    grid-row: 1;
  }

  .reply_sec .reply_list .date{
    grid-column: 2 / 3;
    grid-row: 1;
    text-align: right;
    font-size: 0.95em;
  }

  .reply_sec .reply_list .text{
    grid-column: 1 / 3;
    grid-row: 2;
    overflow-wrap: break-word;
    word-break: break-all;
  }

  .reply_sec .reply_form{
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 0;
  }

  .reply_sec .reply_form textarea{
    width: 100%;
    height: 88px;
    padding: 16px;
    font-size: 0.9em;
  }

  .reply_sec .reply_form .reply_btn{
    width: 160px;
    height: 45px;
    flex: none;
    margin: 0 auto;
    border-radius: 10px;
    font-size: 1em;
  }

  .img_ytp{
    display: none;
  }

  .premium_view .top_title .infor h2 span{
    display: inline-block;
  }

  .check_design{
    line-height: 25px;
  }

  .on{
    width: 25px;
    height: 25px;
  }

  .on:after{
    width: 8px;
    height: 14px;
    left: 7px;
    top: 2px;
  }

  .premium_view .top_title{
    flex-direction: column;
    gap: 6px;
  }

  .premium_view .top_title .img_box{
    margin: 0 auto;
  }

  .premium_view .top_title .data{
    flex-direction: column;
    gap: 15px;
  }

  .premium_view .top_title .infor h3{
    font-size: clamp(0.9em, 2vw, 1.2em);
    padding-bottom: calc(var(--padding)*1.5);
    line-height: 1.25em;
  }

  .premium_view .top_title .data_list li .sel{
    flex: 4;
  }

  .premium_view .top_title .data_list{
    font-size: clamp(0.8em, 2vw, 1em);
  }

  .premium_view .top_title .data .href_link{
    display: inline-block;
    margin: 0 auto;
    font-size: 1.05em;
  }
}

@media (max-width: 650px){
  .company .company_list{
    grid-template-columns: 1fr;
  }

  .company .company_list li{
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    gap: 10px;
    height: auto;
    max-height: 300px;
    min-height: 270px;
  }
}

@media screen and (max-width: 480px){
  [class^="quest"] .form{
    padding: 5% 5px;
  }

  [class^="quest"] .user_data{
    font-size: 0.8em;
  }

  .company_modal [class^="modal_content"]{
    padding: calc(var(--padding)*1) calc(var(--padding)*1.5);
  }

  [class^="modal_content"] .modal_top{
    flex-wrap: wrap;
    gap: 10px;
  }

  [class^="modal_content"] .modal_top .title{
    width: 100%;
    order: 3;
  }

  .company_modal [class^="modal_content"] .tropi{
    order: 1;
  }

  .like_btn{
    order: 2;
  }

  [class^="quest"] .play .del .img_box{
    height: 165px;
  }
}