:root{
  --inner_large_mw: 1440px;
  --inner_base_mw: 1440px;
  --inner_base_w: calc(100% - 240px);
}

header{
  position: fixed;
  top: 0; left: 0;
  z-index : 1000;
  width : 100%;
  height: 92px;
  transition: background .2s ease-in-out, top .2s ease-in-out;
}
header.w{
  background-color: #fff;
}
header.hide{
  top:  -92px;
}
header .inner{
  display : flex;
  justify-content: space-between;
  max-width: calc(1440px - 212px);
  width: calc(100% - 212px);
  height: 100%;
  margin: 0 auto;
}
header a{
  display : flex;
  justify-content: center;
  align-items: center;
  width : max-content;
  height: 100%;
}
header a:nth-child(1) svg{
  width : 198px;
  height: 48px;
}
header a:nth-child(2) svg{
  width : 100px;
  height: 48px;
}
header a svg path{
  transition: fill .2s ease-in-out;
}
header.w a svg path{
  fill: #6D9372;
}


footer{
  background-color: #E7E7E7;
  padding: 91px 0;
}
footer .inner_base{
  display : flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
footer .inner_base h1 img{
  width : 180px;
  margin-bottom: 24px;
}
footer .inner_base p{
  font-size: 14px;
  font-weight: 400;
  color: #797677;
  line-height: 20px;
}
footer .inner_base p span:not(:last-child){
  display : inline-flex;
  align-items: center;
}
footer .inner_base p span:not(:last-child)::after{
  display : inline-block;
  width : 1px;
  height: 14px;
  background-color: #797677;
  margin: 0 12px;
  content: "";
}






.pagination{
  display : flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 65px;
}
.pagination a{
  display : flex;
  justify-content: center;
  align-items: center;
  width : 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 700;
  line-height: 140%;
  color: #AEAAAB;
  border-radius: 6px;
}
.pagination a.on{
  color: var(--white1);
  background-color: #1C1B1C;
}
.pagination a.disabled{
  display : none;
}
.pagination a.prev{
  transform: rotate(180deg);
  margin-right : 12px;
}
.pagination a.start{
  transform: rotate(180deg);
}
.pagination a.next{
  margin-left : 12px;
}



.dim{
  display : block;
  position: fixed;
  top: 0; left: 0;
  width : 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index : 1001;
  opacity: 0;
  visibility : hidden;
  transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
}
.dim.active{
  opacity: 1;
  visibility : visible;
}
.wv_modal{
  display : block;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index : 1005;
  background-color: var(--white1);
  border: 1px solid #ddd;
  padding: 40px 20px 20px;
  min-width : 363px;
  height: max-content;
  opacity: 0;
  visibility : hidden;
  outline: none;
  transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
}
.wv_modal.active{
  opacity: 1;
  visibility : visible;
}
.wv_modal .ico_st{
  display : block;
  position: absolute;
  top: 20px; right : 20px;
  width : 20px;
  height: 20px;
  background: url("../images/icons/ico_close.svg") no-repeat center / cover;
}
.wv_modal .btn_st{
  display : flex;
  justify-content: center;
  align-items: center;
  width : 100%;
  height: 54px;
  margin-top : 50px;
  background-color : #1C1B1C;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 400;
  color: var(--white1);
}
.wv_modal .flower_img{
  width : 98px;
  margin: 0 auto;
}

.wv_modal .black_btn{
  margin-top : 45px;
  height: 54px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  background-color: #1C1B1C;
}

#detailModal{
  max-width : 594px;
  width : calc(100% - 40px);
  padding: 40px;
  background-color : #F1F1F1;
}
#detailModal .hd{
  gap: 14px;
  font-size: 16px;
  font-weight: 400;
  color: #B4A499;
  line-height: 24px;
  margin-bottom : 12px;
}
#detailModal .hd span:nth-child(1){
  color: #6D9372;
}
#detailModal .bd{
  min-height: 398px;
  margin-bottom : 20px;
}
#detailModal textarea{
  display : none;
  width : 100%;
  min-height: 398px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #313031;
  resize: none;
  outline: none;
  background-color: transparent;
}
#detailModal .bd p{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  overflow-y: scroll;
  max-height: 398px;
  color: #313031;
}
#detailModal .ft .gap{
  gap: 12px;
}
#detailModal .ft .delete_btn,
#detailModal .ft .edit_btn,
#detailModal .ft .report_btn{
  display : flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #B4A499;
  opacity: 1;
  transition: opacity .2s ease-in-out;
}
#detailModal .ft .delete_btn:hover,
#detailModal .ft .edit_btn:hover,
#detailModal .ft .report_btn:hover{
  opacity: .5
}
#detailModal .ft .delete_btn::before,
#detailModal .ft .edit_btn::before,
#detailModal .ft .report_btn::before{
  display : inline-block;
  content: "";
  width : 16px;
  height: 16px;
  background: url("../images/icons/ico_edit.svg") no-repeat center / cover;
}
#detailModal .ft .delete_btn::before{
  background-image: url("../images/icons/ico_delete.svg");
}
#detailModal .ft .report_btn::before{
  background-image: url("../images/icons/ico_report.svg");
}
#detailModal .ft p{
  display : flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #B4A499;
}
#detailModal .ft p span{
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: #6D9372;
}
#detailModal .ft p::before{
  display : inline-block;
  content: "";
  width : 20px;
  height: 20px;
  margin-right : 8px;
  background: #6D9372 url("../images/icons/ico_leap.svg") no-repeat center / 19px;
  transition: background-color .2s ease-in-out;
}
#detailModal .ft button:hover p::before{
  background-color: #1C1B1C;
}
#detailModal .ft button[type=submit]{
  display : flex;
  justify-content: center;
  align-items: center;
  width : 95px;
  height: 52px;
  font-size: 16px;
  font-weight: 400;
  color: var(--white1);
  background-color: #1C1B1C;
  border-radius: 20px;
}
#detailModal .ft .edit{display : none;}
#detailModal.edit .bd p{display : none;}
#detailModal.edit .bd textarea{display : block;}
#detailModal.edit .ft .view{display : none;}
#detailModal.edit .ft .edit{display : block;}

#pwChkModal{
  padding-top: 45px;
  background-color : #F1F1F1;
}
#pwChkModal p{
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #313031;
  text-align : center;
}
#pwChkModal input{
  width : 100%;
  height: 50px;
  margin-top: 71px;
  margin-bottom : 77px;
  border-radius: 20px;
  background-color: var(--white1);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #313031;
  outline: none;
}
.wv_modal .modal_btn_group button{
  display : flex;
  justify-content: center;
  align-items: center;
  width : calc(50% - 5px);
  height: 54px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 400;
}
.wv_modal .modal_btn_group button:nth-child(1){
  color: #484647;
  border: 1px solid #AEAAAB;
}
.wv_modal .modal_btn_group button:nth-child(2){
  color :#FFFFFF;
  background-color: #1C1B1C;
}

#reportModal{
  padding: 45px 40px 24px;
}
#reportModal h2{
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #313031;
  margin-bottom : 8px;
}
#reportModal p{
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
  color: #797677;
  margin-bottom : 32px;
}
#reportModal input[type=radio]{
  position : absolute;
  top: 0; left: 0;
  width : 0;
  height: 0;
}
#reportModal form{
  display : flex;
  flex-direction: column;
  gap: 12px;
}
#reportModal label{
  display : flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #313031;
}
#reportModal label::before{
  display : block;
  content: "";
  width : 24px;
  height: 24px;
  background: url("../images/icons/ico_chk.svg") no-repeat center / cover;
}
#reportModal input[type=radio]:checked + label::before{
  background-image: url("../images/icons/ico_chked.svg");
}
#reportModal form button{
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width : calc(100% + 32px) !important;
}

#reportSuccessModal{
  padding-top: 96px;
}
#reportSuccessModal h2{
  font-size: 24px;
  font-weight: 700;
  text-align : center;
  margin-bottom : 8px;
}
#reportSuccessModal p{
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-align : center;
  color: #797677;
  margin-bottom : 78px;
}

#removeModal,
#removeSuccessModal{
  padding-top: 118px;
}
#removeSuccessModal h2,
#removeModal h2{
  text-align : center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom : 108px;
}

.toast_message{
  display : flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index : 1010;
  padding: 0 14px 68px;
  height: 330px;
  background-color: #F1F1F1;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
}
.toast_message::before{
  display : block;
  content: "";
  width : 40px;
  height: 40px;
  border-radius: 50%;
  background: #6D9372 url("../images/icons/ico_leap.svg") no-repeat center / 31px 31px;
}
.toast_message .ico_st{
  opacity: .5;
}
.toast_message.active{
  opacity: 1;
  visibility : visible;
}
.toast_message::before{
  margin-bottom : 26px;
}
.toast_message p{
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: #313031;
}
.toast_message .btn_st{
  position : absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width : calc(100% - 28px);
  background-color : transparent;
  border: 1px solid #AEAAAB;
  color: #484647;
  transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .2s ease-in-out;
}
.toast_message .btn_st[disabled]{
  background-color: transparent;
  border: 1px solid #AeAAAB;
}
.toast_message .btn_st:not([disabled]){
  background-color : #1C1B1C;
  color: #fff;
  border-color: #1C1B1C
}



@media all and (max-width: 1440px){

  header{
    position: fixed;
    top: 0; left: 0;
    z-index : 1000;
    width : 100%;
    height: 6.3889vw;
    transition: background .2s ease-in-out, top .2s ease-in-out;
  }
  header.w{
    background-color: #fff;
  }
  header.hide{
    top:  -6.3889vw;
  }
  header .inner{
    display : flex;
    justify-content: space-between;
    max-width: calc(100.0000vw - 14.7222vw);
    width: calc(100% - 14.7222vw);
    height: 100%;
    margin: 0 auto;
  }
  header a{
    display : flex;
    justify-content: center;
    align-items: center;
    width : max-content;
    height: 100%;
  }
  header a:nth-child(1) svg{
    width : 13.7500vw;
    height: 3.3333vw;
  }
  header a:nth-child(2) svg{
    width : 6.9444vw;
    height: 3.3333vw;
  }
  header a svg path{
    transition: fill .2s ease-in-out;
  }
  header.w a svg path{
    fill: #6D9372;
  }


  footer{
    background-color: #E7E7E7;
    padding: 6.3194vw 0;
  }
  footer .inner_base{
    display : flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4167vw;
  }
  footer .inner_base h1 img{
    width : 12.5000vw;
    margin-bottom: 1.6667vw;
  }
  footer .inner_base p{
    font-size: 0.9722vw;
    font-weight: 400;
    color: #797677;
    line-height: 1.3889vw;
  }
  footer .inner_base p span:not(:last-child){
    display : inline-flex;
    align-items: center;
  }
  footer .inner_base p span:not(:last-child)::after{
    display : inline-block;
    width : 0.0694vw;
    height: 0.9722vw;
    background-color: #797677;
    margin: 0 0.8333vw;
    content: "";
  }






  .pagination{
    display : flex;
    justify-content: center;
    align-items: center;
    gap: 0.8333vw;
    margin-top: 4.5139vw;
  }
  .pagination a{
    display : flex;
    justify-content: center;
    align-items: center;
    width : 1.3889vw;
    height: 1.3889vw;
    font-size: 0.8333vw;
    font-weight: 700;
    line-height: 140%;
    color: #AEAAAB;
    border-radius: 0.4167vw;
  }
  .pagination a.on{
    color: var(--white1);
    background-color: #1C1B1C;
  }
  .pagination a.disabled{
    display : none;
  }
  .pagination a.prev{
    transform: rotate(180deg);
    margin-right : 0.8333vw;
  }
  .pagination a.next{
    margin-left : 0.8333vw;
  }



  .dim{
    display : block;
    position: fixed;
    top: 0; left: 0;
    width : 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index : 1001;
    opacity: 0;
    visibility : hidden;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
  }
  .dim.active{
    opacity: 1;
    visibility : visible;
  }
  .wv_modal{
    display : block;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    z-index : 1005;
    background-color: var(--white1);
    border: 0.0694vw solid #ddd;
    padding: 2.7778vw 1.3889vw 1.3889vw;
    min-width : 25.2083vw;
    height: max-content;
    opacity: 0;
    visibility : hidden;
    outline: none;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
  }
  .wv_modal.active{
    opacity: 1;
    visibility : visible;
  }
  .wv_modal .ico_st{
    display : block;
    position: absolute;
    top: 1.3889vw; right : 1.3889vw;
    width : 1.3889vw;
    height: 1.3889vw;
    background: url("../images/icons/ico_close.svg") no-repeat center / cover;
  }
  .wv_modal .btn_st{
    display : flex;
    justify-content: center;
    align-items: center;
    width : 100%;
    height: 3.7500vw;
    margin-top : 3.4722vw;
    background-color : #1C1B1C;
    border-radius: 1.3889vw;
    font-size: 1.1111vw;
    font-weight: 400;
    color: var(--white1);
  }
  .wv_modal .flower_img{
    width : 6.8056vw;
    margin: 0 auto;
  }

  .wv_modal .black_btn{
    margin-top : 3.1250vw;
    height: 3.7500vw;
    border-radius: 1.3889vw;
    font-size: 1.1111vw;
    font-weight: 400;
    line-height: 1.6667vw;
    color: #fff;
    background-color: #1C1B1C;
  }

  #detailModal{
    max-width : 41.2500vw;
    width : calc(100% - 2.7778vw);
    padding: 2.7778vw;
    background-color : #F1F1F1;
  }
  #detailModal .hd{
    gap: 0.9722vw;
    font-size: 1.1111vw;
    font-weight: 400;
    color: #B4A499;
    line-height: 1.6667vw;
    margin-bottom : 0.8333vw;
  }
  #detailModal .hd span:nth-child(1){
    color: #6D9372;
  }
  #detailModal .bd{
    min-height: 27.6389vw;
    margin-bottom : 1.3889vw;
  }
  #detailModal textarea{
    display : none;
    width : 100%;
    min-height: 27.6389vw;
    font-size: 1.1111vw;
    font-weight: 400;
    line-height: 1.6667vw;
    color: #313031;
    resize: none;
    outline: none;
    background-color: transparent;
  }
  #detailModal .bd p{
    font-size: 1.1111vw;
    font-weight: 400;
    line-height: 1.6667vw;
    color: #313031;
  }
  #detailModal .ft .gap{
    gap: 0.8333vw;
  }
  #detailModal .ft .delete_btn,
  #detailModal .ft .edit_btn,
  #detailModal .ft .report_btn{
    display : flex;
    align-items: center;
    gap: 0.4167vw;
    font-size: 1.1111vw;
    font-weight: 400;
    line-height: 1.6667vw;
    color: #B4A499;
    opacity: 1;
    transition: opacity .2s ease-in-out;
  }
  #detailModal .ft .delete_btn:hover,
  #detailModal .ft .edit_btn:hover,
  #detailModal .ft .report_btn:hover{
    opacity: .5
  }
  #detailModal .ft .delete_btn::before,
  #detailModal .ft .edit_btn::before,
  #detailModal .ft .report_btn::before{
    display : inline-block;
    content: "";
    width : 1.1111vw;
    height: 1.1111vw;
    background: url("../images/icons/ico_edit.svg") no-repeat center / cover;
  }
  #detailModal .ft .delete_btn::before{
    background-image: url("../images/icons/ico_delete.svg");
  }
  #detailModal .ft .report_btn::before{
    background-image: url("../images/icons/ico_report.svg");
  }
  #detailModal .ft p{
    display : flex;
    align-items: center;
    font-size: 0.9722vw;
    font-weight: 500;
    color: #B4A499;
  }
  #detailModal .ft p span{
    font-size: 1.2500vw;
    font-weight: 500;
    line-height: 1.7361vw;
    color: #6D9372;
  }
  #detailModal .ft p::before{
    display : inline-block;
    content: "";
    width : 1.3889vw;
    height: 1.3889vw;
    margin-right : 0.5556vw;
    background: #6D9372 url("../images/icons/ico_leap.svg") no-repeat center / 1.3194vw;
    transition: background-color .2s ease-in-out;
  }
  #detailModal .ft button:hover p::before{
    background-color: #1C1B1C;
  }
  #detailModal .ft button[type=submit]{
    display : flex;
    justify-content: center;
    align-items: center;
    width : 6.5972vw;
    height: 3.6111vw;
    font-size: 1.1111vw;
    font-weight: 400;
    color: var(--white1);
    background-color: #1C1B1C;
    border-radius: 1.3889vw;
  }
  #detailModal .ft .edit{display : none;}
  #detailModal.edit .bd p{display : none;}
  #detailModal.edit .bd textarea{display : block;}
  #detailModal.edit .ft .view{display : none;}
  #detailModal.edit .ft .edit{display : block;}

  #pwChkModal{
    padding-top: 3.1250vw;
    background-color : #F1F1F1;
  }
  #pwChkModal p{
    font-size: 1.6667vw;
    font-weight: 600;
    line-height: 2.5000vw;
    color: #313031;
    text-align : center;
  }
  #pwChkModal input{
    width : 100%;
    height: 3.4722vw;
    margin-top: 4.9306vw;
    margin-bottom : 5.3472vw;
    border-radius: 1.3889vw;
    background-color: var(--white1);
    text-align: center;
    font-size: 1.1111vw;
    font-weight: 400;
    color: #313031;
    outline: none;
  }
  .wv_modal .modal_btn_group button{
    display : flex;
    justify-content: center;
    align-items: center;
    width : calc(50% - 0.3472vw);
    height: 3.7500vw;
    border-radius: 1.3889vw;
    font-size: 1.1111vw;
    font-weight: 400;
  }
  .wv_modal .modal_btn_group button:nth-child(1){
    color: #484647;
    border: 0.0694vw solid #AEAAAB;
  }
  .wv_modal .modal_btn_group button:nth-child(2){
    color :#FFFFFF;
    background-color: #1C1B1C;
  }

  #reportModal{
    padding: 3.1250vw 2.7778vw 1.6667vw;
  }
  #reportModal h2{
    font-size: 1.6667vw;
    font-weight: 600;
    line-height: 2.5000vw;
    color: #313031;
    margin-bottom : 0.5556vw;
  }
  #reportModal p{
    font-size: 0.9722vw;
    font-weight: 500;
    line-height: 160%;
    color: #797677;
    margin-bottom : 2.2222vw;
  }
  #reportModal input[type=radio]{
    position : absolute;
    top: 0; left: 0;
    width : 0;
    height: 0;
  }
  #reportModal form{
    display : flex;
    flex-direction: column;
    gap: 0.8333vw;
  }
  #reportModal label{
    display : flex;
    align-items: center;
    gap: 0.8333vw;
    font-size: 1.2500vw;
    font-weight: 500;
    line-height: 1.6667vw;
    color: #313031;
  }
  #reportModal label::before{
    display : block;
    content: "";
    width : 1.6667vw;
    height: 1.6667vw;
    background: url("../images/icons/ico_chk.svg") no-repeat center / cover;
  }
  #reportModal input[type=radio]:checked + label::before{
    background-image: url("../images/icons/ico_chked.svg");
  }
  #reportModal form button{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width : calc(100% + 2.2222vw) !important;
  }

  #reportSuccessModal{
    padding-top: 6.6667vw;
  }
  #reportSuccessModal h2{
    font-size: 1.6667vw;
    font-weight: 700;
    text-align : center;
    margin-bottom : 0.5556vw;
  }
  #reportSuccessModal p{
    font-size: 0.9722vw;
    font-weight: 500;
    line-height: 150%;
    text-align : center;
    color: #797677;
    margin-bottom : 5.4167vw;
  }

  #removeModal,
  #removeSuccessModal{
    padding-top: 8.1944vw;
  }
  #removeSuccessModal h2,
  #removeModal h2{
    text-align : center;
    font-size: 1.6667vw;
    font-weight: 700;
    margin-bottom : 7.5000vw;
  }

  .toast_message{
    display : flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index : 1010;
    padding: 0 0.9722vw 4.7222vw;
    height: 22.9167vw;
    background-color: #F1F1F1;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
  }
  .toast_message::before{
    display : block;
    content: "";
    width : 2.7778vw;
    height: 2.7778vw;
    border-radius: 50%;
    background: #6D9372 url("../images/icons/ico_leap.svg") no-repeat center / 2.1528vw 2.1528vw;
  }
  .toast_message .ico_st{
    opacity: .5;
  }
  .toast_message.active{
    opacity: 1;
    visibility : visible;
  }
  .toast_message::before{
    margin-bottom : 1.8056vw;
  }
  .toast_message p{
    font-size: 1.6667vw;
    font-weight: 700;
    line-height: 2.5000vw;
    color: #313031;
  }
  .toast_message .btn_st{
    position : absolute;
    left: 50%;
    bottom: 0.9722vw;
    transform: translateX(-50%);
    width : calc(100% - 1.9444vw);
    background-color : transparent;
    border: 0.0694vw solid #AEAAAB;
    color: #484647;
    transition: background-color .2s ease-in-out, border-color .2s ease-in-out, color .2s ease-in-out;
  }
  .toast_message .btn_st[disabled]{
    background-color: transparent;
    border: 0.0694vw solid #AeAAAB;
  }
  .toast_message .btn_st:not([disabled]){
    background-color : #1C1B1C;
    color: #fff;
    border-color: #1C1B1C
  }
}

@media all and (max-width: 768px){
  :root{
    --inner_base_w: calc(100% - 30px);
  }



  header{
    justify-content: space-between;
    height: 52px;
    padding: 0 10px;
    background-color: #fff;
  }
  header.hide{
    top: 0;
  }
  header .inner{
    width: 100%;
    max-width: 100%;
  }
  header a{
    width : max-content;
  }
  header a:nth-child(1) svg{width : 131px; height: 22.5px;}
  header a:nth-child(2) svg{width : 76px; height: 22.5px;}

  header a svg path{
    fill: #6D9372;
  }
  footer{
    padding: 32px 0;
  }
  footer .inner_base{
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
  }
  footer .inner_base h1 img{
    width : 80px;
    margin-bottom : 18px;
  }
  footer .inner_base p{
    font-size: 12px;
    line-height: 20px;
  }
  footer .inner_base p span:not(:last-child){
    display : block;
  }
  footer .inner_base p span:not(:last-child)::after{display : none;}



  .pagination{
    gap: 10px;
    margin-top : 30px;
  }
  .pagination a{
    width : 20px;
    height: 20px;
    border-radius: 6px;
    font-size: 12px;
    line-height: 140%;
  }
  .pagination a.prev{
    margin-right: 12px;
  }
  .pagination a.next{
    margin-left: 12px;
  }

  .wv_modal{
    width : 332px;
    padding: 40px 24px 20px;
    border: none;
  }
  .wv_modal .flower_img{
    width : 98px;
  }
  .wv_modal .ico_st{
    top: 20px;
    right : 20px;
    width : 20px;
    height: 20px;
  }
  .wv_modal .btn_st{
    height: 54px;
    margin-top: 28px;
    border-radius: 20px;
    font-size: 16px;
  }
  #detailModal{
    width: calc(100% - 30px);
    max-width: 332px;
    padding: 85px 26px 30px 26px;
  }
  #detailModal .ft p{
    position:absolute;
    top: 30px;
    left: 26px;
    font-size: 14px;
  }
  #detailModal .ft p span{
    font-size: 18px;
    margin: 0 10px;
  }
  #detailModal .ft p::before{
    width : 24px;
    height: 24px;
    margin: 0;
    background-size: 16px;
  }
  #detailModal .hd{
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 160%;
  }
  #detailModal .bd{
    min-height: 110px;
    margin-bottom: 30px;
  }
  #detailModal .bd p{
    height: 200px;
    overflow-y: scroll;
    font-size: 14px;
    line-height: 160%;
    color: #6D9372
  }
  #detailModal .ft .gap{
    gap: 12px;
  }
  #detailModal .ft .delete_btn, #detailModal .ft .edit_btn, #detailModal .ft .report_btn{
    gap: 6px;
    font-size: 16px;
    line-height: 24px;
  }
  #detailModal .ft .delete_btn::before, #detailModal .ft .edit_btn::before, #detailModal .ft .report_btn::before{
    width : 16px;
    height: 16px;
  }

  #reportModal{
    padding: 30px 30px 14px;
  }
  #reportModal h2{
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 36px;
  }
  #reportModal p{
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 160%;
  }
  #reportModal form{
    gap: 10px;
  }
  #reportModal label{
    gap: 12px;
    font-size: 14px;
    line-height: 160%;
  }
  #reportModal label::before{
    width : 20px;
    height: 20px;
  }
  .wv_modal .black_btn{
    margin-top: 38px;
    width: calc(100% - 28px) !important;
    height: 54px;
    border-radius: 20px;
    font-size: 16px;
  }
  #pwChkModal{
    padding-top: 30px;
  }
  #pwChkModal p{
    font-size: 24px;
    line-height: 36px;
    text-align: left;
  }
  #pwChkModal input{
    display : block;
    width : calc(100% - 32px);
    height: 50px;
    border-radius: 20px;
    font-size: 16px;
    margin: 56px auto;
  }
  .wv_modal .modal_btn_group button{
    width : calc(50% - 6px);
    height: 54px;
    font-size: 16px;
    border-radius: 20px;
  }
  #detailModal .ft button[type=submit]{
    width : 68px;
    height: 40px;
    border-radius: 20px;
    font-size: 16px;
  }
  #detailModal textarea{
    min-height: 200px;
    font-size: 14px;
    line-height: 160%;
    color: #6D9372;
  }

  .toast_message{
    justify-content: flex-start;
    height: 330px;
    padding-top: 66px;
    padding-bottom : 14px;
  }
  .toast_message::before{
    width : 40px;
    height: 40px;
    margin-bottom : 26px;
    background-size : 28px;
  }
  .toast_message p{
    font-size: 24px;
    line-height: 36px;
  }
  .toast_message .btn_st{
    bottom: 14px;
    width : calc(100% - 28px);
  }

  #removeModal, #removeSuccessModal{
    padding-top: 118px;
  }
  #removeSuccessModal h2, #removeModal h2{
    margin-bottom : 108px;
    font-size: 24px;
  }

  #reportSuccessModal{
    padding-top: 96px;
  }
  #reportSuccessModal h2{
    margin-bottom : 8px;
    font-size: 24px;
  }
  #reportSuccessModal p{
    font-size: 14px;
  }
  #reportSuccessModal .black_btn{
    margin-top : 78px;
    width : 100% !important;
  }

  #detailModal .hd span:nth-child(1){
    color: #B4A499;
  }
  #detailModal .ft .delete_btn, #detailModal .ft .edit_btn, #detailModal .ft .report_btn{
    opacity: .5;
  }
}
