@import url("common.css");

/*@keyframes color_gra {
	0% { color:var(--black); }
	40% { color:var(--main); }
	60% { color:var(--main); }
	100% { color:var(--black); }
}*/
/***** S:: 변수 *****/
:root {
  /**** !! 코딩시 지우지 말 것 !! ****/

  /* 컬러 */
  --basic: #777;
  /* --main: #bda88f; */
  --main: #f5a1bd;
  --sub: #3f3431;
  --red: #e81b1b;
  --point: #e2855c;
  --white: #fff;
  --black: #444;
  --grayBg: #f2f0ee;
  /* --border: #dac9b5; */
  --border: #eee;
  --point: #e2855c;

  /* 폰트 */
  --eng: "Marcellus", "Pretendard", Malgun Gothic, "Malgun Gothic", sans-serif;
  --icon: "Material Symbols Outlined";

  /**** !! 코딩시 지우지 말 것 !! ****/

  /* 높이 */
  --vh: 100%;

  /* 폰트크기 */
  --fs62: 62px;
  --fs18: 18px;
}
/***** E:: 변수 *****/

/* ����ž */
@keyframes v_txt {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ���־� lnb */
.visual_lnb {
  position: relative;
  z-index: 999;
  width: 1350px;
  margin: 200px auto 25px;
}
.visual_lnb dl {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.visual_lnb dl dt {
}
.visual_lnb dl dt a {
  display: block;
}
.visual_lnb dl dt a::before {
  content: "\e88a";
  font-family: var(--icon);
  font-size: 20px;
  display: block;
  transition: all 0.4s ease-in-out;
}
.visual_lnb dl dt a:hover::before {
  color: var(--main);
  transition: all 0.4s ease-in-out;
}

.visual_lnb dl dd {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.visual_lnb dl dd:before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background: rgba(119, 119, 119, 0.5);
  border-radius: 100%;
  position: relative;
  margin: 0 15px;
}
.visual_lnb dl dd .txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: -0.64px;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: normal !important;
  display: block;
  padding-right: 22px;
  box-sizing: Border-box;
  color: rgba(119, 119, 119, 0.7);
}
.visual_lnb dl dd .txt:after {
  content: "\e313";
  font-size: 22px;
  font-family: var(--icon);
  position: absolute;
  top: 50%;
  margin-top: -14px;
  right: -4px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.visual_lnb dl dd .txt.on:after {
  transform: rotate(180deg);
}

.visual_lnb dl dd .dlst {
  position: absolute;
  top: 0;
  z-index: 999;
  margin: 35px 0 0;
  width: 150px;
  background-color: var(--white);
  padding: 10px 15px;
  box-sizing: border-box;
  display: none;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.visual_lnb dl dd .dlst.on {
  display: block;
}
.visual_lnb dl dd .dlst ul {
}
.visual_lnb dl dd .dlst ul li {
}
.visual_lnb dl dd .dlst ul li + li {
  margin: 12px 0 0;
}
.visual_lnb dl dd .dlst ul li a {
  display: block;
  font-size: 15px;
  transition: all 0.2s linear;
  line-height: 120%;
  letter-spacing: -0.35pt;
}
.visual_lnb dl dd .dlst ul li a.on {
  color: var(--main);
}
.visual_lnb dl dd .dlst ul li a i {
  line-height: inherit;
  font-style: normal;
  letter-spacing: inherit;
}
.search_none .visual_lnb dl dd:last-child {
  display: none;
}

#contents {
}
.search_none #contents {
}

/* Ÿ��Ʋ */
.subTop_title {
  text-align: center;
  margin: 60px 0 40px;
}
.subTop_title .sm_tit {
  display: block;
  color: var(--main);
  font-family: var(--eng);
  font-size: var(--fs18);
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.4px;
}
.subTop_title .sub_tit {
  color: var(--black);
  text-align: center;
  font-size: 70px;
  font-weight: 500;
  line-height: 114.286%;
  letter-spacing: -2.8px;
  margin: 15px 0 0;
}
.subTop_title .sub_tit.eng {
  font-size: var(--fs62);
  font-weight: 600;
  line-height: 113.333%;
  font-size: 50px;
}
.subTop_title .sub_txt {
  font-size: var(--fs18);
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.8px;
  margin: 10px 0 0;
}

/*** �ؽ�Ʈ ȿ�� ***/
.visual-tit {
  overflow: hidden;
  opacity: 0;
}
.visual-tit .char {
  display: inline-block;
  opacity: 0;
  line-height: 1.25;
}
.visual-tit.splitting {
  opacity: 1;
}
/* .whitespace {width:25px; height:0; display:inline-block;} */
.visual-tit .char {
  animation: slide-up 1s ease-in-out both;
  animation-delay: calc(0.05s * var(--char-index));
  letter-spacing: -2.8px;
}
.visual-tit.ls0 .char {
  letter-spacing: 0;
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(125%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*** ���־� �ؽ�Ʈ ȿ�� ***/

/*** ���� css ***/
.basic_cont {
  width: 1350px;
  margin: 0 auto 150px;
}

.fs75 {
  color: var(--black);
  font-size: var(--fs62);
  font-weight: 400;
  line-height: 113.333%;
}
.fs42 {
  color: var(--black);
  font-size: 42px;
  font-weight: 200;
  line-height: 142.857%;
  letter-spacing: -1.68px;
}
.fs30 {
  color: var(--black);
  font-size: 30px;
  font-weight: 300;
  line-height: 142.857%;
  letter-spacing: -1.33px;
}
.fs26 {
  color: var(--black);
  font-size: 26px;
  font-weight: 300;
  line-height: 153.846%;
  letter-spacing: -1.04px;
}
.fs20 {
  font-size: var(--fs18);
  line-height: 170%;
  letter-spacing: -0.8px;
}

.sub_tab_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: -35px;
  position: relative;
  z-index: 10;
}
.sub_tab_list li {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-left: -1px;
  margin-top: -1px;
}
.sub_tab_list li a {
  display: block;
  padding: 20px;
  border: 1px solid var(--border);
  /* letter-spacing: -0.72px; */
  background: var(--white);
  /* min-height: 110px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.sub_tab_list li.up a {
  /* background: var(--main);
  border: 1px solid var(--main);
  color: var(--white); */
  font-weight: 800;
  position: relative;
}

.sub_tab_list li.up a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--main);
}

.tab_list {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
.tab_list li {
  position: relative;
  margin: -1px 0 0 -1px;
  transition: all 0.3s ease-in-out;
}
.tab_list li a {
  display: block;
  padding: 14px;
  box-sizing: border-box;
  background: var(--white);
  text-align: center;
  letter-spacing: -0.72px;
  color: rgba(119, 119, 119, 0.8);
  border: 1px solid var(--border);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.tab_list li:hover {
}
.tab_list li:hover a {
  /* border:1px solid var(--sub);  */
  color: var(--sub);
  transition: all 0.3s ease-in-out;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}
.tab_list li.up a {
  background: var(--sub);
  border: 1px solid var(--sub);
  color: var(--white);
  font-weight: 600;
}

.kakao_plus_ment {
  padding: 20px;
  box-sizing: border-box;
  background: var(--grayBg);
  margin: 0 0 30px;
}
.kakao_plus_ment .stxt {
  font-size: 0.888rem;
  position: relative;
  padding-left: 28px;
  box-sizing: border-box;
}
.kakao_plus_ment .stxt::before {
  content: "\e86c";
  font-size: 24px;
  font-family: var(--icon);
  line-height: 1;
  color: var(--point);
  font-size: 24px;
  position: absolute;
  top: 1px;
  left: 0;
  font-variation-settings: "FILL" 1;
}

.moreBtn {
  position: relative;
  overflow: hidden;
  display: block;
  width: 200px;
  background: var(--black);
  z-index: 31;
  border-radius: 5px 5px 30px 5px;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.moreBtn span {
  position: relative;
  z-index: 10;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 60px;
  color: var(--white);
  transition: all 0.3s;
  padding: 0 25px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.moreBtn span::after {
  content: "\e8e4";
  font-size: 35px;
  color: var(--white);
  font-family: var(--icon);
  display: block;
  font-weight: 200;
}
.moreBtn:hover {
  border-radius: 5px;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.moreBtn::before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #ec588a;
  position: absolute;
  -ms-transform: skewX(-20deg);
  -webkit-transform: skewX(-20deg);
  transform: skewX(-20deg);
  left: -10%;
  opacity: 1;
  top: 0;
  z-index: 2;
  -moz-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: 2px 0px 14px rgba(0, 0, 0, 0.6);
}
.moreBtn:hover::before {
  opacity: 1;
  width: 116%;
}

.moreBtn.main_ver {
  background: var(--main);
}
.moreBtn.main_ver::before {
  background: var(--black);
}

.moreBtn.kakao_ver {
  background: #fae100;
}
.moreBtn.kakao_ver span {
  color: #371c1d;
  font-weight: 600;
  letter-spacing: -0.64px;
  padding: 0 30px;
}
.moreBtn.kakao_ver span::after {
  content: "";
  width: 25px;
  height: 27px;
  background: url("/consult/img/chat_ico.svg") no-repeat center;
  right: 32px;
}

.moreBtn.map_ver {
  background: #fae100;
}
.moreBtn.map_ver span {
  color: #371c1d;
  font-weight: 600;
  letter-spacing: -0.64px;
  padding: 0 48px;
}
.moreBtn.map_ver span::after {
  content: "";
  width: 13px;
  height: 24px;
  background: url("/about/img/kakao.svg") no-repeat center;
  right: 49px;
}

.moreBtn.map_ver2 {
  background: #03c75a;
}
.moreBtn.map_ver2 span {
  color: var(--white);
  font-weight: 600;
  padding: 0 48px;
}
.moreBtn.map_ver2 span::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/about/img/naver.svg") no-repeat center;
  right: 40px;
}

.moreBtn.map_ver3 {
  background: var(--white);
  border: 1px solid var(--border);
}
.moreBtn.map_ver3 span {
  color: var(--black);
  font-weight: 600;
  padding: 0 48px;
}
.moreBtn.map_ver3 span::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/about/img/google.svg") no-repeat center;
  right: 32px;
}

.moreBtn.video_ver {
  width: 300px;
  background: rgba(17, 17, 17, 0.9);
}
.moreBtn.video_ver span {
  padding: 0 44px;
}
.moreBtn.video_ver:hover span {
  padding: 0 35px;
}
.moreBtn.video_ver span::after {
  content: "\f49a";
  font-size: 25px;
}

/* ������2(���) */
.gallery_roll {
  position: relative;
}
.gallery_roll:after {
  content: "";
  display: block;
  clear: both;
}
.gallery_roll .roll {
  position: relative;
}
.gallery_roll .roll .imgArea {
  background: #000;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.gallery_roll .roll .imgArea img {
  width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery_roll .roll .txtArea {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: rgba(34, 34, 34, 0.6);
  padding: 20px;
  box-sizing: border-box;
}
.gallery_roll .roll .txtArea h4 {
  font-weight: 400;
  color: var(--white);
  line-height: 150%;
  font-size: 1.25rem;
}
.gallery_roll .slick-arrow {
  border: 0;
  padding: 0;
  font-size: 0;
  outline: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  transition: all 0.3s linear;
  position: absolute;
  z-index: 9999;
  width: 30px;
  height: 30px;
  opacity: 1;
  left: auto;
  right: auto;
  bottom: auto;
  top: 50%;
  margin-top: -15px;
}
.gallery_roll .slick-arrow:hover {
  opacity: 0.5;
}
.gallery_roll .slick-prev {
  background: url("/img/arrow_p_w.png") no-repeat center/100% auto;
  left: 30px;
}
.gallery_roll .slick-next {
  background: url("/img/arrow_n_w.png") no-repeat center/100% auto;
  right: 30px;
}

.gallery_nav {
  margin: 30px -2px 0;
  width: calc(100% + 4px);
}
.gallery_nav:after {
  content: "";
  display: block;
  clear: both;
}
.gallery_nav .roll {
  margin: 0 2px;
  cursor: pointer;
  background-color: #000;
  overflow: hidden;
}
.gallery_nav .roll .txtArea {
  display: none;
}
.gallery_nav .roll .imgArea {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.gallery_nav .roll .imgArea img {
  opacity: 0.5;
  width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery_nav .roll.slick-current .imgArea img {
  opacity: 1;
}

/* ��ǰ, �̺�Ʈ CSS */

/* ȭ��ǥ */
.slick-arrow {
  border: 0;
  padding: 0;
  font-size: 0;
  outline: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  transition: all 0.3s linear;
  position: absolute;
  z-index: 9999;
  background: transparent;
  transition: all 0.3s ease;
}
.slick-arrow::before {
  display: flex;
  flex-wrap: Wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 30px;
  font-family: var(--icon);
  font-size: 30px;
  color: var(--white);
  transition: all 0.3s ease;
}
.slick-prev {
}
.slick-prev::before {
  content: "\e5e0";
}
.slick-next {
}
.slick-next::before {
  content: "\e5e1";
}

#top_event {
  overflow: hidden;
}
.event_roll {
  max-width: 890px;
  min-height: 556px;
  margin: 0 auto 90px;
  overflow: visible;
}
.event_roll .slick-list {
  overflow: visible;
}
.event_roll .slick-track {
  align-items: center;
  min-height: 535px;
}
.event_roll li {
  transform: scale(0.94);
  filter: grayscale(1);
  opacity: 0.4;
  overflow: hidden;
  aspect-ratio: 16 / 8;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.event_roll li a {
  display: block;
  transition: all 0.4s ease-in-out;
}
.event_roll li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.event_roll li.slick-current {
  transform: scale(1);
  filter: grayscale(0);
  opacity: 1;
  aspect-ratio: 16 / 9.9955;
  transition: all 0.4s ease-in-out;
}
.event_roll li.slick-current a {
  transition: all 0.4s ease-in-out;
}

.event_roll li.slick-current:hover::after {
  opacity: 0.3;
  transition: all 0.4s ease-in-out;
}
.event_roll li.slick-current:hover img {
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
}

.event_roll .slick-arrow {
  top: 50%;
  margin-top: -22px;
}
.event_roll .slick-arrow:hover::before {
  color: var(--white);
}
.event_roll .slick-prev {
  left: 50%;
  margin-left: -420px;
}
.event_roll .slick-next {
  right: 50%;
  margin-right: -420px;
}

.prdCont_wrap {
  font-size: 0;
}
.prdCont_wrap .prd_content {
  display: inline-block;
  width: 962px;
  margin-right: 30px;
  vertical-align: top;
}
.prdCont_wrap .prd_cart {
  position: sticky;
  top: 20px;
  display: inline-block;
  width: 355px;
  vertical-align: top;
  transition: all 0.4s ease-in-out;
}
#header.fixed + .visual_lnb + #contents .prd_cart {
  top: 150px;
  transition: all 0.4s ease-in-out;
}

.prd_content .fs20 {
  color: var(--black);
  font-size: var(--fs18);
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.8px;
  margin: 50px 0 10px;
}
.prd_content .fs20:first-of-type {
  margin-top: 0;
}
.prd_content .pay_radio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.prd_content .pay_radio.two {
  grid-template-columns: repeat(2, 1fr);
}
.prd_content .pay_radio li {
  position: relative;
  z-index: 10;
}
.prd_content .pay_radio li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border: 1px solid var(--border);
  border-right: 0;
  box-sizing: border-box;
}
.prd_content .pay_radio li:last-of-type::after {
  border-right: 1px solid var(--border);
}
.prd_content .pay_radio li input[type="radio"] {
  display: none;
}
.prd_content .pay_radio li label {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 177%;
  letter-spacing: -0.72px;
  padding: 12px 15px;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  height: 100%;
  position: relative;
}
.prd_content .pay_radio li label::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 1px solid var(--border);
  box-sizing: border-box;
  position: absolute;
  top: 18px;
  left: 15px;
}
.prd_content .pay_radio li input[type="radio"]:checked + label {
  font-weight: 600;
  color: var(--point);
}
.prd_content .pay_radio li input[type="radio"]:checked + label::before {
  border: 5px solid var(--point);
}
.prd_content .pay_radio li input[type="radio"]:checked + label::after {
  content: "";
  width: calc(100%);
  height: calc(100%);
  border: 2px solid var(--point);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
}
.prd_content .pay_radio li label span {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
}

.prd_content .pay_radio li.tp01 label span::before {
  content: "\e84f";
  font-family: var(--icon);
  display: block;
  font-size: 25px;
  font-weight: 400 !important;
}
.prd_content .pay_radio li.tp02 label span::before {
  content: "\ef63";
  font-family: var(--icon);
  display: block;
  font-size: 25px;
  font-weight: 400 !important;
}
.prd_content .pay_radio li.tp03 label span::before {
  content: "\eff1";
  font-family: var(--icon);
  display: block;
  font-size: 25px;
  font-weight: 400 !important;
}

.prd_content .input_box {
}
.prd_content .input_box .select {
  width: 100%;
  margin: 0 0 10px;
}
.prd_content .input_box .input::placeholder {
  font-size: 1rem;
}

.pay_info {
  border-top: 2px solid var(--main);
}
.pay_info dl {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}
.pay_info dl dt {
  font-size: 1rem;
  width: 160px;
  padding: 15px 20px;
  box-sizing: border-box;
  font-weight: 600;
  letter-spacing: -0.72px;
  color: var(--black);
}
.pay_info dl dd {
  font-size: 1rem;
  width: calc(100% - 160px);
  padding: 15px 0;
  box-sizing: border-box;
  letter-spacing: -0.72px;
}

.check_cate {
  display: grid;
  gap: 5px;
  margin: 0 0 25px;
}
.check_cate li {
  display: block;
  background: #fdf9f7;
  padding: 20px 15px 15px;
  height: 100%;
  box-sizing: Border-box;
  text-align: center;
  cursor: pointer;
}
.check_cate li i {
  display: block;
}
.check_cate li span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: -0.64px;
  color: var(--point);
  margin: 6px 0 0;
  opacity: 0.8;
}

.check_cate li.up {
  background: var(--point);
}
.check_cate li.up span {
  color: var(--white);
  opacity: 1;
}

.check_tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #f8f8f8;
  margin: 0 0 30px;
}
.check_tab li {
  border: 1px solid var(--border);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: -0.64px;
  padding: 10px 5px;
  box-sizing: border-box;
  text-align: center;
  background: var(--white);
  border-right: 0;
  cursor: pointer;
  height: 100%;
  margin-top: -1px;
}
.check_tab li:nth-of-type(3n) {
  border-right: 1px solid var(--border);
}
.check_tab li:nth-of-type(-n + 3) {
  margin-top: 0;
}
.check_tab li:last-of-type {
  border-right: 1px solid var(--border);
}
.check_tab li.up {
  background: var(--main);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.prd_list {
}
.prd_list + .prd_list {
  margin: 50px 0 0;
}
.view_depTit {
  display: flex;
  flex-wrap: Wrap;
  align-items: center;
  justify-content: space-between;
  color: var(--main);
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.96px;
  margin: 0 0 15px;
}
.view_depTit .fs16 {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.64px;
  color: var(--basic);
}
.prd_list ul {
  border-top: 2px solid var(--border);
}
.prd_list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 35px 20px 40px;
  box-sizing: Border-box;
  border-bottom: 1px dashed var(--border);
  transition: all 0.3s ease-in-out;
}
.prd_list li:hover {
  background: rgba(189, 168, 143, 0.05);
  transition: all 0.3s ease-in-out;
}
.prd_list li .tBox {
  width: calc(100% - 400px);
  padding-right: 30px;
  box-sizing: border-box;
}
.prd_list li .tBox .sm_tit {
  color: var(--main);
  font-size: 16px;
  font-weight: 600;
  line-height: 175%;
  letter-spacing: -0.64px;
  display: block;
}
.prd_list li .tBox .tit {
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.96px;
}
.prd_list li .tBox .descript {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.64px;
  margin: 8px 0 0;
}
.prd_list li .priceBox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 30px;
  width: 400px;
  justify-content: flex-end;
}
.prd_list li .priceBox dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
}
.prd_list li .priceBox dl dt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  border: 1px solid var(--main);
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.8px;
  background:#fff;
  color: var(--main);
}
.prd_list li .priceBox dl dt.event {
  font-size: 12px;
  font-weight: 600;
  line-height: 125%;
  height: 28px;
  text-transform: uppercase;
  border-radius: 5px;
  line-height: 26px;
}
.prd_list li .priceBox dl dd {
  font-size: 20px;
  color: var(--black);
  font-weight: 600;
}
.prd_list li .priceBox dl dd b {
  font-size: 27px;
  font-weight: 700;
  line-height: 128.571%;
  letter-spacing: -1.12px;
}
.prd_list li .priceBox dl dd i {
  color: var(--basic);
  text-decoration-line: line-through;
  font-style: normal;
  opacity: 0.5;
  display: inline-block;
  margin-right: 10px;
  font-weight: 400;
}
.prd_list li .priceBox .cart_btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--main);
}
/* .prd_list li .priceBox .cart_btn::before {
  content: "\e854";
  font-family: var(--icon);
  color: var(--white);
  font-size: 22px;
} */
.prd_list li .priceBox .cart_btn::before {
  content: "";
  display: inline-block;
  width: 27px;
  height: 25px;
  background: url("/img/price/cart.png") no-repeat center;
  background-size: contain;
}
.prd_list li .priceBox .cart_btn:hover {
  border-radius: 50%;
  background: var(--main);
}
.prd_list li .priceBox .cart_btn.add {
  background: #bbb;
}
.prd_list li .priceBox .cart_btn.add::before {
  content: "\e928";
}

/* .cart_list {
  border: 2px solid var(--main);
  box-sizing: border-box;
  padding: 25px 5px 5px;
}
.cart_list ul {
  max-height: 300px;
  overflow-y: auto;
  margin: 0 0 25px;
}
.cart_list ul::-webkit-scrollbar {
  width: 3px;
}

.cart_list ul::-webkit-scrollbar-thumb {
  background: var(--main); 
}

.cart_list ul::-webkit-scrollbar-track {
  background: var(--grayBg); 
}
.cart_list ul li {
  position: relative;
  padding: 10px 0;
  margin: 0 25px;
}
.cart_list ul li + li {
  border-top: 1px dashed var(--border);
}
.cart_list ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 5px;
  right: 0;
  height: 28px;
}
.cart_list ul li a::before {
  content: "\e5cd";
  font-family: Var(--icon);
  font-size: 28px;
  color: rgba(34, 34, 34, 0.7);
  display: block;
}
.cart_list ul li .sm_tit {
  color: var(--main);
  font-size: 14px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: -0.56px;
}
.cart_list ul li .tit {
  color: var(--black);
  font-size: 1rem;
  font-weight: 600;
  line-height: 177.778%;
  letter-spacing: -0.72px;
  margin: -5px 0;
}
.cart_list ul li .ptice {
  font-size: 1rem;
  display: block;
  text-align: right;
  font-weight: 700;
  letter-spacing: -0.72px;
  color: var(--black);
  line-height: 1.77;
}
.cart_list .total_price {
  background: #f7f6f5;
  padding: 20px 25px 25px;
}
.cart_list .total_price dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
  justify-content: space-between;
}
.cart_list .total_price dl dd {
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: -0.64px;
  color: rgba(17, 17, 17, 0.7);
}
.cart_list .total_price dl dt {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 187.5%;
  letter-spacing: -0.64px;
}
.cart_list .total_price dl dt.red {
  color: #e81b1b;
}
.cart_list .total_price dl.total {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--border);
}
.cart_list .total_price dl.total dd {
  font-size: 1rem;
}
.cart_list .total_price dl.total dt {
  font-size: 20px;
  font-weight: 600;
  line-height: 170%;
  letter-spacing: -0.8px;
}
.cart_list .total_price dl.total dt b {
  font-size: 25px;
  font-weight: 700;
  line-height: 144%;
  letter-spacing: -1px;
} */

.prdCont_wrap .prd_cart {
  position: sticky;
  top: 20px;
  display: inline-block;
  width: 355px;
  vertical-align: top;
  transition: all 0.4s ease-in-out;
}

#header.fixed + .visual_lnb + #contents .prd_cart {
  top: 150px;
}

.cart_list {
  border: 2px solid var(--border);
  background: #fff;
  box-sizing: border-box;
  padding: 14px 10px 8px;
}

.cart_list ul {
  max-height: fit-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart_list ul::-webkit-scrollbar {
  width: 3px;
}

.cart_list ul::-webkit-scrollbar-thumb {
  background: #c8b29d;
}

.cart_list ul::-webkit-scrollbar-track {
  background: #f3f0ec;
}

.cart_list ul li {
  position: relative;
  padding: 18px 22px 16px 18px;
  margin: 0;
}

.cart_list ul li + li {
  border-top: 1px solid #d9d0c7;
}

.cart_list ul li a,
.cart_list ul li .btn_del {
  display: block;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.cart_list ul li a::before,
.cart_list ul li .btn_del::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/price/icon_close_gray.png") no-repeat center;
  background-size: 16px 16px;
  opacity: 0.9;
}

.cart_list ul li a::after,
.cart_list ul li .btn_del::after {
  content: "";
  display: none;
}

.cart_list ul li .sm_tit {
  display: block;
  margin: 0 28px 2px 0;
  line-height: 1.45;
  letter-spacing: -0.03em;
  font-size: 14px;
  color: var(--main);
  font-weight: bold;
}

.cart_list ul li .tit {
  margin: 0;
  padding-right: 28px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  font-size: 18px;
  color: #444;
  font-weight: bold;
}

.cart_list ul li .ptice {
  display: block;
  margin-top: 10px;
  text-align: right;
  line-height: 1.2;
  letter-spacing: -0.04em;
  font-size: 22px;
  color: #444;
  font-weight: bold;
}

.cart_list ul li .ptice em {
  font-style: normal;
  font-size: 14px;
  font-weight: 800;
  margin-left: 4px;
}

.cart_list .total_price {
  margin-top: 14px;
  background: #f7f6f5;
  padding: 16px 18px 14px;
}

.cart_list .total_price dl {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 12px;
  margin: 0;
}

.cart_list .total_price dl + dl {
  margin-top: 2px;
}

.cart_list .total_price dl dd {
  margin: 0;
  line-height: 1.45;
  letter-spacing: -0.03em;
  font-size: 16px;
  color: #444;
  font-weight: 700;
}

.cart_list .total_price dl dt {
  margin: 0;
  text-align: right;
  line-height: 1.35;
  letter-spacing: -0.04em;
  font-size: 22px;
  color: #444;
  font-weight: bold;
}

.cart_list .total_price dl dt span {
  font-size: 14px;
  font-weight: 800;
  margin-left: 3px;
}

.cart_list .total_price dl.total {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #d6cec6;
}

.cart_list .total_price dl.total dd {
  line-height: 1.35;
  font-size: 16px;
  letter-spacing: 0px;
  color: #444;
}

.cart_list .total_price dl.total dt {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  color: #444;
}

.cart_list .total_price dl.total dt b,
.cart_list .total_price dl.total dt {
  font-size: 22px;
  letter-spacing: -1px;
  color: #444;
  font-weight: bold;
}

.prd_cart .consultation_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 58px;
  margin-top: 8px;
  border-radius: 4px;
  background: #f5a1bd;
  border: 1px solid #f5a1bd;
  box-sizing: border-box;
  text-decoration: none;
}

.prd_cart .consultation_btn span {
  line-height: 1;
  letter-spacing: -0.03em;
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
}

.prd_cart .quick_btn {
  display: none;
}

.apply_ver {
  width: 100%;
  height: 68px;
  background: var(--point);
  margin: 10px 0 0;
  border: 0;
}
.apply_ver span {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: Wrap;
  align-items: center;
  justify-content: center;
  gap: 0 12px;
  font-weight: 500;
  line-height: 166.667%;
  letter-spacing: -0.72px;
  color: var(--white);
  font-size: 1rem;
}
/* .apply_ver span::after {
  content: "\e323";
  font-size: 22px;
  font-family: var(--icon);
  font-weight: 400;
} */

.apply_ver span::after {
  content: "";
  display: inline-block;
  width: 27px;
  height: 28px;
  background: url("/img/price/icon_arrow.png") no-repeat center;
  background-size: contain;
}
.apply_ver.last {
  background: #fae100;
}
.apply_ver.last span {
  color: #371c1d;
}
.apply_ver.last span::after {
  color: #371c1d;
}

/* ��ǰ, �̺�Ʈ CSS */

/* ���೻�� ��ȸ */
.inquiry_check {
  text-align: center;
}
.inquiry_check h3 {
  font-size: 1.5rem;
  letter-spacing: -0.75pt;
  line-height: 130%;
  font-weight: 700;
  color: var(--black);
}
.inquiry_check p {
  font-size: 1rem;
  letter-spacing: -0.5pt;
  line-height: 150%;
  padding: 10px 0 30px;
}
.inquiry_check .btn_inquirySearch {
  display: inline-block;
  width: 250px;
  height: 60px;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.3s linear;
  border: 1px solid var(--main);
  background: var(--main);
  position: relative;
  font-size: 1rem;
  line-height: 58px;
  letter-spacing: -0.35pt;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.inquiry_check .btn_inquirySearch:hover {
  background: var(--sub);
  border-color: var(--sub);
}

.inquiryCheck_in {
  position: relative;
  max-width: 630px;
  width: 100%;
  margin: 0 auto 30px;
  padding: 40px 30px;
  box-sizing: border-box;
  border: 1px solid var(--border);
  box-shadow: 0px 5px 0px #f6f6f6;
}
.inquiryCheck_in dl {
  display: flex;
  align-items: center;
  padding: 0 0 10px;
}
.inquiryCheck_in dl:last-child {
  padding: 0;
}
.inquiryCheck_in dl dt {
  width: 100px;
  font-size: 1rem;
  color: var(--black);
  line-height: 120%;
  font-weight: 500;
  text-align: left;
}
.inquiryCheck_in dl dd {
  width: calc(100% - 100px);
  display: flex;
}
.inquiryCheck_in dl dd .input {
  width: 100%;
  height: 50px;
  line-height: 48px;
  border: 1px solid var(--border);
  padding: 0 15px;
  box-sizing: border-box;
  font-size: 1rem;
  color: var(--basic);
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
.inquiryCheck_in dl dd .input.input_email {
  width: calc((100% - 25px) / 3);
}
.inquiryCheck_in dl dd .select {
  width: calc((100% - 25px) / 3);
  height: 50px;
  line-height: 48px;
  border: 1px solid var(--border);
  padding: 0 15px;
  box-sizing: border-box;
  font-size: 1rem;
  color: var(--basic);
  margin-left: 5px;
  cursor: pointer;
  outline: none;
}
.inquiryCheck_in dl dd .alpha {
  display: inline-block;
  width: 20px;
  line-height: 48px;
  font-size: 1rem;
  vertical-align: middle;
}

/* õ��ȣ�߰�(2016-07-20) */
.pay_add_tit {
  font-size: 11px;
  color: #555;
}
.pay_add_tit2 {
  font-size: 11px;
  color: #ee2d7a;
}

/*����� ����*/
#myDelivery input.input_l {
  width: 500px;
}
#myDelivery input.input_m {
  width: 280px;
}
#myDelivery input.input_num {
  width: 73px;
}

#myDelivery_pop input.input_l {
  width: 500px;
}
#myDelivery_pop input.input_m {
  width: 280px;
}
#myDelivery_pop input.input_num {
  width: 73px;
}

#myDelivery {
}
#myDelivery input.checkbox {
  width: 18px;
  height: 18px;
}
#myDelivery dl {
  position: relative;
  border: 1px solid #ddd;
  border-top: 0;
  padding: 30px 25px;
}
#myDelivery dl:first-child {
  border-top: 1px solid #ddd;
}
#myDelivery dt {
  width: 830px;
  font-size: 18px;
  letter-spacing: -0.5pt;
  color: #444;
  padding-bottom: 3px;
}
#myDelivery dd.txt {
  width: 830px;
  font-size: 14px;
  line-height: 24px;
}
#myDelivery dd.btn {
  position: absolute;
  right: 25px;
  top: 40px;
}

#myDelivery p.basic {
  display: inline-block;
  width: 90px;
  height: 29px;
  line-height: 29px;
  border: 4px solid #ff6238;
  text-align: center;
  color: #ff6238;
  letter-spacing: -0.3pt;
}
#myDelivery input[type="button"].modi {
  padding: 8px 20px;
  border: 1px solid #a3a3a3;
  color: #666;
  background: #fff;
  margin: 0 0 3px 2px;
  cursor: pointer;
}
#myDelivery input[type="button"]:hover.modi {
  background-color: #f9f9f9;
}
#myDelivery input[type="button"].delete {
  padding: 8px 20px;
  border: 1px solid #a3a3a3;
  color: #fff;
  background: #a3a3a3;
  margin: 0 0 3px 2px;
  cursor: pointer;
}
#myDelivery input[type="button"]:hover.delete {
  background-color: #868686;
  border: 1px solid #868686;
}

#myDelivery .btn_area {
  text-align: center;
  margin-top: 30px;
}
#myDelivery .btn_area .btn_wb {
  width: 201px;
  height: 55px;
  line-height: 52px;
  cursor: pointer;
  display: inline-block;
  background: #fff;
  text-align: center;
  color: #444;
  font-weight: 500;
  border: 1px solid #918f8f;
}
#myDelivery .btn_area .btn_b {
  width: 201px;
  height: 55px;
  line-height: 52px;
  cursor: pointer;
  display: inline-block;
  background: #361d1e;
  text-align: center;
  color: #fff;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
#myDelivery .btn_area .btn_b:hover {
  background-color: #2f1213;
}
#myDelivery .no_data {
  border: 1px solid #ddd;
  padding: 50px;
  text-align: center;
  letter-spacing: -0.5pt;
}

.add_table {
  border-collapse: collapse;
  width: 100%;
  border-spacing: 0px;
  border-top: 1px solid #333;
}
.add_table th {
  color: #333;
  text-align: left;
  padding: 12px 0 12px 12px;
  border-bottom: 1px solid #d7d7d7;
  background: #f9f9f9;
  font-weight: 500;
  letter-spacing: -0.5pt;
}
.add_table td {
  padding: 12px 0 12px 12px;
  border-bottom: 1px solid #d9d9d9;
}
.add_table .form_sub {
  display: inline-block;
  padding-top: 10px;
  color: #666;
  font-size: 13px;
}
.add_table .form_sub strong {
  font-weight: 500;
}
.add_table input.add_num {
  margin-bottom: 8px;
  width: 152px;
}
.add_table input.address {
  margin-bottom: 8px;
}
.add_table input.address_end {
  margin-bottom: 0px;
}
.add_table select {
  padding: 7px 7px;
}
.add_table input[type="text"],
.add_table input[type="password"] {
  border: 1px solid #d0d0d0;
  color: #666;
  padding: 0 8px;
  height: 33px;
  line-height: 33px;
  vertical-align: middle;
}
.add_table input[type="button"] {
  padding: 8px 20px;
  border: 1px solid #a3a3a3;
  color: #666;
  background: #fff;
  margin-left: 5px;
  cursor: pointer;
}
.add_table input[type="button"]:hover {
  background-color: #f9f9f9;
}

#myDelivery_pop h1 {
  background: #444;
  padding: 15px 10px;
  box-sizing: border-box;
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.5pt;
  font-weight: 700;
}
#myDelivery_pop h1 a.close {
  position: absolute;
  right: 10px;
  top: 18px;
  background: #fff;
  padding: 5px;
  line-height: 0;
}
#myDelivery_pop .cont {
  padding: 15px;
}
#myDelivery_pop dl {
  position: relative;
  border: 1px solid #ddd;
  border-top: 0;
  padding: 25px 20px;
}
#myDelivery_pop dl:first-child {
  border-top: 1px solid #ddd;
}
#myDelivery_pop dl.over {
  border: 3px solid #356340;
}
#myDelivery_pop dt {
  font-size: 15px;
  letter-spacing: -0.5pt;
  color: #444;
  padding-bottom: 3px;
}
#myDelivery_pop dd.txt {
  font-size: 13px;
  line-height: 24px;
}
#myDelivery_pop dd.btn {
  position: absolute;
  right: 8px;
  top: 8px;
}

#myDelivery_pop p.basic {
  display: inline-block;
  width: 90px;
  height: 29px;
  line-height: 29px;
  border: 2px solid #356340;
  text-align: center;
  color: #356340;
  letter-spacing: -0.3pt;
}
#myDelivery_pop input[type="button"].modi {
  padding: 6px 15px;
  border: 1px solid #a3a3a3;
  color: #666;
  background: #fff;
  margin: 0 0 3px 2px;
  cursor: pointer;
}
#myDelivery_pop input[type="button"]:hover.modi {
  background-color: #f9f9f9;
}
#myDelivery_pop input[type="button"].delete {
  padding: 6px 15px;
  border: 1px solid #a3a3a3;
  color: #fff;
  background: #a3a3a3;
  margin: 0 0 3px 2px;
  cursor: pointer;
}
#myDelivery_pop input[type="button"]:hover.delete {
  background-color: #868686;
  border: 1px solid #868686;
}

#myDelivery_pop .btn_area {
  text-align: center;
  margin-top: 30px;
}
#myDelivery_pop .btn_area .btn_wb {
  width: 201px;
  height: 55px;
  line-height: 52px;
  cursor: pointer;
  display: inline-block;
  background: #fff;
  text-align: center;
  color: #444;
  font-weight: 500;
  border: 1px solid #918f8f;
}
#myDelivery_pop .btn_area .btn_b {
  width: 201px;
  height: 55px;
  line-height: 52px;
  cursor: pointer;
  display: inline-block;
  background: #356340;
  text-align: center;
  color: #fff;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
#myDelivery_pop .btn_area .btn_b:hover {
  background-color: #4a8959;
}

.add_select {
  background: #f6f6f6;
  padding: 10px;
  margin-bottom: 10px;
}
.add_select input[type="radio"] {
  vertical-align: middle;
  margin-top: -2px;
}
.add_select label {
  margin-right: 10px;
  font-size: 13px;
}

/* ����Ʈ�� */
.sitemap_cont {
  display: flex;
  flex-wrap: wrap;
}
.sitemap_cont dl {
  width: calc((100% - 90px) / 4);
  margin: 0 30px 50px 0;
  text-align: center;
  text-align: center;
  border-top: 2px solid var(--main);
}
.sitemap_cont dl:nth-child(4n) {
  margin-right: 0;
}
.sitemap_cont dl dt {
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.35pt;
  padding: 20px 0;
  line-height: 120%;
  font-size: 1.125rem;
}
.sitemap_cont dl dd {
  border-bottom: 1px solid var(--border);
}
.sitemap_cont dl dd a {
  display: block;
  width: 100%;
  padding: 17px 0;
  line-height: 120%;
  letter-spacing: -0.3pt;
  transition: all 0.3s linear;
  font-size: 1rem;
}
.sitemap_cont dl dd a:hover {
  color: var(--main);
  transition: all 0.3s linear;
  font-weight: 500;
}

/* �̿���, ����������޹�ħ */
.policy_cont {
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}
#privacy_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 2px solid var(--main);
  text-align: center;
  margin: 20px 0 0;
}
#privacy_table th {
  font-size: 1rem;
  letter-spacing: -0.35pt;
  line-height: 150%;
  font-weight: 400;
  color: var(--black);
  box-sizing: border-box;
  padding: 18px 10px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: var(--grayBg);
}
#privacy_table th:last-of-type {
  border-right: 0;
}
#privacy_table td {
  font-size: 16px;
  letter-spacing: -0.35pt;
  line-height: 150%;
  font-weight: 400;
  color: var(--basic);
  box-sizing: border-box;
  padding: 15px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
#privacy_table td:last-of-type {
  border-right: 0;
}
.policy_cont br {
  display: block;
}
.policy_cont strong {
  font-weight: 500;
  color: var(--black);
}
.policy_cont .cont_title {
  font-size: 1.412rem;
  color: var(--black);
  padding-bottom: 18px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.policy_cont p.cont_tit {
  display: block;
  font-size: 1.2em !important;
  padding-bottom: 10px;
  font-weight: 500;
  color: var(--black) !important;
  letter-spacing: -0.02em;
}
.policy_cont .cont_txt {
  padding: 0px 0px 35px 0;
}
.policy_cont .cont_txt2 {
  padding-bottom: 35px;
}
.policy_cont .cont_box {
  padding: 25px;
  background: var(--grayBg);
  margin: 7px 0px 10px 0px;
  display: block;
  letter-spacing: -0.02em;
  line-height: 1.7;
}
.policy_cont .height7 {
  height: 10px;
}
.privacy_list {
  width: 91%;
  overflow: hidden;
  clear: both;
  *zoom: 1;
  padding: 4% 4% 3% 4%;
  border: 1px solid var(--border);
  margin-bottom: 30px;
}
.privacy_list li {
  width: 50%;
  float: left;
  padding-bottom: 1%;
}
.privacy_list li a {
  font-weight: 500;
  color: var(--black);
}

.table_right_border {
  border-right: 1px solid var(--border);
}
.noinput {
  line-height: 55px;
  padding-left: 15px !important;
}

.select {
  width: 110px;
}

.admin_check_tab {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #f8f8f8;
  margin: 0 0 30px;
}
.admin_check_tab li {
  border: 1px solid var(--border);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: -0.64px;
  padding: 10px 5px;
  box-sizing: border-box;
  text-align: center;
  background: var(--white);
  border-right: 0;
  cursor: pointer;
  height: 100%;
  margin-top: -1px;
}
.admin_check_tab li:nth-of-type(5n) {
  border-right: 1px solid var(--border);
}
.admin_check_tab li:nth-of-type(-n + 5) {
  margin-top: 0;
}
.admin_check_tab li:last-of-type {
  border-right: 1px solid var(--border);
}
/* .admin_check_tab li.up {background:var(--main); color:#fff; border-color:rgba(255,255,255,0.3);} */

/*********** List *************/
.photo_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  max-width: 1160px;
  margin: 0 auto;
}
.photo_list dl {
  position: relative;
}
.photo_list dl .checkbox {
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 2;
}
.photo_list dl a {
  display: block;
  transition: all 0.3s linear;
}
.photo_list dl dt {
  position: relative;
  overflow: hidden;
  aspect-ratio: 116 / 39;
  background: var(--main);
}
/* .photo_list dl dt::after {content:''; width:5em; height:5em; border-radius:100%; background:var(--main); position:absolute; top:50%; left:50%; margin:-2.5em 0 0 -2.5em;  transition:all 0.4s ease-in-out; z-index:-1;} */
.photo_list dl:hover dt::after {
  transform: scale(5.8);
  transition: all 0.4s ease-in-out;
}
.photo_list dl dt img {
  width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
.photo_list dl:hover dt img {
  transform: scale(1.1);
  transition: all 0.4s ease-in-out;
  opacity: 0.4;
}

.photo_list dl dd {
  box-sizing: border-box;
}
.photo_list dl dd h4 {
  color: var(--black);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.8px;
  margin: 13px 0 0;
}

/*********** View *************/
.marpad {
  margin-top: 100px;
  margin-bottom: 100px;
}
.marpad_t {
  margin-top: 100px;
}
.marpad_b {
  margin-bottom: 100px;
}

.pad70 {
  padding-top: 70px;
  padding-bottom: 70px;
}
.pad70.grayBg {
  background: #f9f8f7 !important;
}
.pad70_t {
  padding-top: 70px;
}
.pad70_b {
  padding-bottom: 70px;
}

.center_tit {
  color: var(--black);
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -1.2px;
  text-align: center;
}
.tit_wrap .stxt {
  letter-spacing: -0.72px;
  text-align: center;
  margin: 8px 0 0;
}

.region_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin: 30px 0 0;
}
.region_list li {
  border: 1px solid var(--main);
  color: var(--main);
  letter-spacing: -0.72px;
  padding: 9px 20px;
  box-sizing: border-box;
  border-radius: 5px;
}

.prd_topCont {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 60px 0 90px;
}
.prd_topCont .imgBox {
  width: 100%;
  /* aspect-ratio: 3 / 2.09097; */
}
.prd_topCont .imgBox img {
  width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s linear;
}
.prd_topCont .tBox {
  width: calc(100% - 660px);
  padding-left: 80px;
  box-sizing: border-box;
}
.prd_topCont .tBox .sm_tit {
  color: var(--black);
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.4px;
}
.prd_topCont .tBox .tit {
  color: var(--black);
  font-size: 50px;
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.4;
  margin: 5px 0 13px;
}
.prd_topCont .tBox .pointColor {
  font-size: 20px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.8px;
}
.prd_topCont .tBox .sm_content {
  letter-spacing: -0.72px;
  padding-top: 33px;
  border-top: 1px solid var(--border);
  margin-top: 33px;
}

.intro_cont {
  padding: 89px 0;
  text-align: center;
  background: url("/price/img/about_bg1.jpg") no-repeat center / cover;
}
.intro_cont .num {
  display: block;
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: 5px 5px 15px 5px;
  background: var(--main);
  color: var(--white);
  font-family: var(--eng);
  font-style: normal;
}
.intro_cont h3 {
  color: var(--white);
  font-size: 42px;
  font-weight: 200;
  line-height: 142.857%;
  letter-spacing: -1.68px;
}
.intro_cont .stxt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.8px;
  margin: 12px 0 0;
}

.prd_table {
  display: flex;
  flex-wrap: Wrap;
  align-items: center;
}
.prd_table .imgBox {
  width: 660px;
}
.prd_table .tBox {
  width: calc(100% - 660px);
  padding-left: 75px;
  box-sizing: border-box;
}
.prd_table .tBox > h4 {
  margin: 0 0 12px;
}
.prd_table .tBox > p {
  margin: 0 0 40px;
  letter-spacing: -0.8px;
  font-size: 20px;
  line-height: 170%;
}
.prd_table .tBox dl {
  display: flex;
  flex-wrap: Wrap;
  align-items: center;
}
.prd_table .tBox dl + dl {
  margin: 30px 0 0;
}
.prd_table .tBox dl dt {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 1px solid var(--main);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.prd_table .tBox dl dt::after {
  content: "";
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border-radius: 100%;
  border: 1px solid var(--main);
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.prd_table .tBox dl dd {
  width: calc(100% - 100px);
  padding-left: 20px;
  box-sizing: Border-box;
}
.prd_table .tBox dl dd h4 {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.8px;
}
.prd_table .tBox dl dd p {
  line-height: 155.556%;
  letter-spacing: -0.72px;
  margin: 3px 0 0;
}

.procedure_bg {
  width: 100%;
  height: 500px;
}
.botox_img1 {
  background: url("/price/img/prd_img02.jpg") no-repeat center / cover;
}
.filler_img1 {
  background: url("/price/img/filler_img1.jpg") no-repeat center / cover;
}
.obesity_img1 {
  background: url("/price/img/obesity_img1.jpg") no-repeat center / cover;
}
.anti_img1 {
  background: url("/price/img/anti_img1.jpg") no-repeat center / cover;
}
.skin_img1 {
  background: url("/price/img/skin_img1.jpg") no-repeat center / cover;
}
.waxing_img1 {
  background: url("/price/img/waxing_img1.jpg") no-repeat center / cover;
}

.process_cont {
  background: var(--main);
}
.process_cont .center_tit {
  color: var(--white);
}
.process_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1005px;
  margin: 40px auto 0;
}
.process_list li {
  border-radius: 30px;
  background: var(--white);
  padding: 30px 35px;
  box-sizing: border-box;
  text-align: center;
}
.process_list li span {
  display: block;
  letter-spacing: 0.36px;
  color: var(--main);
  margin: 0 0 10px;
}
.process_list li img {
}
.process_list li p {
  line-height: 155.556%;
  letter-spacing: -0.72px;
  margin: 15px 0 0;
}

.prdList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 35px auto 0;
}
.prdList dl {
}
.prdList dl dt {
  position: relative;
}
.prdList dl dt::after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
}
.prdList dl dt img {
  width: 100%;
}
.prdList dl dd {
  text-align: center;
  padding: 20px 0 0;
}
.prdList dl dd h4 {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.8px;
}
.prdList dl dd p {
  color: rgba(17, 17, 17, 0.5);
  letter-spacing: 0.32px;
}

.recom_cont {
  background: url("/price/img/botox_bg.jpg") no-repeat center / cover;
}
.recom_list {
  position: relative;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 1005px;
  margin: 40px auto 0;
  padding: 60px 0 0;
}
.recom_list li {
  position: relative;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.1);
  padding: 37px 30px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.8px;
  color: var(--black);
  text-align: center; /* display:flex; flex-wrap:wrap; */
  align-content: center;
  justify-content: center;
}
.recom_list li::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  margin-left: -7px;
  background: url("/price/img/deco.png") no-repeat center;
  width: 15px;
  height: 13px;
}
.recom_list li::after {
  content: "";
  width: 23px;
  height: 20px;
  background: url("/price/img/union_arr.png") no-repeat center;
  position: absolute;
  bottom: -20px;
  right: 50px;
}
.recom_list li:nth-of-type(2),
.recom_list li:nth-of-type(5),
.recom_list li:nth-of-type(8) {
  top: -60px;
}
.recom_list li:nth-of-type(3n) {
  top: -40px;
}
.recom_list li span {
  letter-spacing: inherit;
  letter-spacing: inherit;
  color: var(--point);
}

.recom_list.ver4 {
  display: flex;
  max-width: 815px;
  grid-template-columns: repeat(1, 1fr);
  flex-wrap: Wrap;
}
.recom_list.ver4 li {
  width: 315px !important;
}
.recom_list.ver4 li:nth-of-type(2) {
  top: -40px;
}
.recom_list.ver4 li:nth-of-type(3) {
  top: 0;
  left: 70px;
}
.recom_list.ver4 li:nth-of-type(4) {
  top: -40px;
  left: 77px;
}

.recom_list.ver5 li:nth-of-type(4) {
  left: 170px;
}
.recom_list.ver5 li:nth-of-type(5) {
  left: 170px;
}

.recom_list.ver7 {
  padding: 60px 0 110px;
}
.recom_list.ver7 li:last-of-type {
  position: Absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 315px;
}

.qna_list {
  margin: 25px auto 0;
  max-width: 1120px;
}
.qna_list dl {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--main);
}
.qna_list dl + dl {
  margin: 5px 0 0;
}
.qna_list dl dt {
  position: relative;
  padding: 22px 25px 22px 67px;
  box-sizing: border-box;
  background: var(--main);
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.8px;
}
.qna_list dl dt i {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-wrap: Wrap;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 100%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.8px;
  color: var(--main);
  font-style: normal;
}
.qna_list dl dd {
  position: relative;
  padding: 28px 25px 28px 70px;
  box-sizing: border-box;
  letter-spacing: -0.72px;
  color: rgba(17, 17, 17, 0.8);
}
.qna_list dl dd i {
  position: absolute;
  top: 26px;
  left: 20px;
  display: flex;
  flex-wrap: Wrap;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 100%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.8px;
  color: var(--black);
  font-style: normal;
  border: 2px solid var(--black);
  box-sizing: border-box;
}

.notice_cont {
  background: url("/price/img/botox_bg02.jpg") no-repeat center / cover;
}
.notice_cont .center_tit {
  color: var(--white);
}
.notice_cont .tit_wrap .stxt {
  color: rgba(255, 255, 255, 0.7);
}
.notice_list {
  margin: 35px auto 0;
  max-width: 1120px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.notice_list li {
  position: relative;
  line-height: 155.556%;
  letter-spacing: -0.72px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 30px;
  box-sizing: border-box;
}
.notice_list li + li {
  margin: 8px 0 0;
}
.notice_list li::before {
  content: "\e86c";
  font-variation-settings: "FILL" 1;
  font-family: var(--icon);
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  font-size: 24px;
  color: var(--white);
}

.applyPop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1900000000;
  opacity: 0;
  visibility: hidden;
}
.applyPop.visible {
  opacity: 1;
  visibility: visible;
}
.applyPop .pop-mask {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.applyPop .pop_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 1270px;
  height: 860px;
  background: var(--white);
  box-sizing: border-box;
}
.applyPop .pop_in {
  padding: 60px 75px 50px;
  box-sizing: border-box;
}
.applyPop .tit_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  font-size: 36px;
  font-weight: 500;
  line-height: 138.889%;
  letter-spacing: -1.44px;
  margin: 0 0 17px;
}
.applyPop .tit_wrap .pop_close {
}
.applyPop .tit_wrap .pop_close::before {
  content: "\e5cd";
  font-size: 50px;
  font-family: var(--icon);
  display: block;
  color: var(--basic);
}
.pop_table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pop_table .fs20 {
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.8px;
  margin: 0 0 10px;
}
.pop_table .pop_left {
  width: 610px;
  overflow-y: auto;
  height: 550px;
  padding-bottom: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}
.pop_table .pop_left::-webkit-scrollbar-track {
  background-color: #ddd;
}

.pop_table .pop_left::-webkit-scrollbar {
  width: 3px;
  background-color: #ddd;
}

.pop_table .pop_left::-webkit-scrollbar-thumb {
  background-color: var(--black);
}
.pop_table .pop_left .select {
  width: 100%;
  height: 56px;
}
.pop_table .pop_left .input {
  height: 56px;
}
.pop_table .pop_left .input::placeholder {
  letter-spacing: -0.72px;
  font-size: 1rem;
  color: #777;
}
.pop_table .pop_left .input + .input {
  margin: 10px 0 0;
}
.pop_table .pop_left dl + dl {
  margin-top: 50px;
}
.pop_table .pop_prd_list {
  padding: 24px 30px;
  border: 1px solid var(--border);
  box-sizing: border-box;
}
.pop_table .pop_prd_list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.pop_table .pop_prd_list li + li {
  border-top: 1px dashed var(--border);
  padding-top: 10px;
  margin-top: 10px;
}
.pop_table .pop_prd_list li .subject {
  letter-spacing: -0.72px;
}
.pop_table .pop_prd_list li .price {
  color: var(--black);
  font-weight: 700;
  line-height: 177.778%;
  letter-spacing: -0.72px;
}
.pop_table .pop_right {
  width: 460px;
}

.calendar {
  border: 1px solid var(--border);
  padding: 43px 40px;
  box-sizing: Border-box;
}
.calendar .cal_tit {
  display: flex;
  flex-wrap: Wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 0 20px;
}
.calendar .cal_tit h4 {
  color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 125%;
  letter-spacing: -0.96px;
}
.calendar .cal_tit a {
}
.calendar .cal_tit a::before {
  font-size: 30px;
  font-family: var(--icon);
  display: block;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}
.calendar .cal_tit a:hover::before {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.calendar .cal_tit a.prev {
}
.calendar .cal_tit a.prev::before {
  content: "\e2ea";
}
.calendar .cal_tit a.next {
}
.calendar .cal_tit a.next::before {
  content: "\e5e1";
}

.calendar .calendar_table {
}
.calendar .calendar_table dl {
  display: flex;
  flex-wrap: wrap;
}
.calendar .calendar_table dl .sun,
.calendar .calendar_table dl .sun .day {
  color: #ed133a;
}
.calendar .calendar_table dl .sat,
.calendar .calendar_table dl .sat .day {
  color: #365de7;
}
.calendar .calendar_table dl dt {
  width: 14.28%;
  font-size: 12px;
  font-weight: 600;
  line-height: 166.667%;
  text-align: center;
  color: var(--basic) !important;
  margin: 0 0 13px;
}
.calendar .calendar_table dl dd {
  position: relative;
  width: 14.28%;
  min-height: 50px; /* padding:10px 4px; */
  box-sizing: border-box;
  cursor: pointer;
}
.calendar .calendar_table dl dd .day {
  position: relative;
  font-size: 16px;
  line-height: 1;
  color: var(--black);
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 99 !important;
}
.calendar .calendar_table dl dd.today .day {
  color: var(--white);
}
.calendar .calendar_table dl dd.today .day::after {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--main);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.calendar .calendar_table dl dd.end .day {
  color: rgba(119, 119, 119, 0.4) !important;
}

.calendar .hope_day {
  display: flex;
  flex-wrap: Wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: -0.64px;
  color: rgba(17, 17, 17, 0.5);
  margin: 30px 0 0;
}
.calendar .hope_day b {
  color: var(--black);
  font-weight: 600;
  display: inline-block;
  margin-left: 10px;
}
.calendar .hope_day .select {
  width: 200px;
  height: 50px;
}

.pri_box {
  position: relative;
  padding: 20px 75px;
  box-sizing: border-box;
  background: #f5f3f2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.pri_box .textarea {
  position: absolute;
  top: 20px;
  left: 75px;
  display: none;
  width: 600px;
  transform: translateY(-100%);
  border: 1px solid var(--border);
  height: 200px;
  padding: 20px;
  font-size: 16px;
}
.pri_box .pri_message {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: auto;
  padding: 0;
  gap: 0 30px;
}
.pri_box .pri_message label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 175%;
  letter-spacing: -0.64px;
  gap: 0 5px;
}
.pri_box .pri_message .option {
  font-weight: 600;
  line-height: 175%;
  letter-spacing: -0.64px;
  text-decoration-line: underline;
  color: var(--main);
  cursor: pointer;
}
.pri_box .apply_ver {
  width: 315px;
  margin: 0;
}
/*  */

.prd_topCont .tBox.march_event_box {
  /* width: calc(100% - 400px); */
  padding-right: 30px;
  box-sizing: border-box;
}

.prd_topCont .tBox.march_event_box .eng_tit {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 52px;
  font-size: 18px;
  color: #777777;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.prd_topCont .tBox.march_event_box .eng_tit::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d7d7d7;
}

.prd_topCont .tBox.march_event_box .tit {
  margin: 0;
  width: 100%;
  max-width: 540px;
  color: #1f1f1f;
  font-size: 0;
  line-height: 1;
  letter-spacing: -0.06em;
  font-size: 56px;
}

.prd_topCont .tBox.march_event_box .tit strong {
  display: block;
  margin: 0 0 12px;
  line-height: 0.95;
  letter-spacing: -0.07em;
  white-space: nowrap;
  font-size: 56px;
  color: #252525;
  font-weight: bold;
}

.prd_topCont .tBox.march_event_box .tit span {
  display: block;
  margin: 0;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.065em;
  color: #202020;
}

.prd_topCont .tBox.march_event_box .tit span + span {
  margin-top: 8px;
}

.prd_topCont .tBox.march_event_box .view_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.25s ease;
  width: 206px;
  height: 49px;
  border-radius: 24px;
  background-color: #ffffff;
  border: 1px solid #bda88f;
  font-size: 20px;
  color: #9e8260;
  font-weight: 500;
  font-family: "Pretendard";
}

.prd_topCont .tBox.march_event_box .view_btn:hover {
  background: #b59673;
  color: #fff;
}
.prd_list li:last-of-type {
  border-bottom: none;
}
.folding-box {
  display: none;
}
/* popup */

.inquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}
.inquiry-popup.is-show {
  display: block;
}
.inquiry-popup__dim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.inquiry-popup__wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1000px, calc(100% - 40px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #f7f6f5;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.inquiry-popup__inner {
  padding: 0 0 44px;
  background: #f7f6f5;
}

.inquiry-popup__title {
  position: relative;
  margin: 0;
  height: 88px;
  line-height: 88px;
  padding: 0 80px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  background: var(--main);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.inquiry-popup__close {
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 0;
  cursor: pointer;
  z-index: 5;
}

.inquiry-popup__close::before,
.inquiry-popup__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform-origin: center;
  border-radius: 2px;
}

.inquiry-popup__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.inquiry-popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.inquiry-form {
  /* margin-top: 40px; */
  width: 100%;
}
.inquiry-row {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #d8d8d8; */
}
.inquiry-row--top {
  align-items: flex-start;
}
.inquiry-label {
  width: 240px;
  flex: 0 0 240px;
  padding: 32px 20px;
  font-size: 18px;
  color: #111;
  box-sizing: border-box;
}
.inquiry-label span {
  color: var(--main);
  margin-left: 2px;
}
.inquiry-field {
  flex: 1;
  padding: 16px 0;
  box-sizing: border-box;
}
.inquiry-field > input[type="text"],
.inquiry-field > textarea {
  width: calc(100% - 40px);
}

.inquiry-field input[type="text"],
.inquiry-field select,
.inquiry-field textarea {
  height: 54px;
  border: 1px solid #d0d0d0;
  background: #fff;
  padding: 0 16px;
  font-size: 16px;
  color: #222;
  box-sizing: border-box;
  outline: none;
}
.inquiry-field textarea {
  height: 150px;
  padding: 16px;
  resize: none;
}

.phone-group,
.email-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  width: calc(100% - 40px);
}
.phone-group {
  display: grid;
  grid-template-columns: 220px 16px 1fr 16px 1fr 16px 1fr;
  align-items: center;
  gap: 12px;
  width: calc(100% - 40px);
}

.phone-group select,
.phone-group input {
  width: 100%;
  min-width: 0;
}

.phone-group .dash {
  text-align: center;
  font-size: 26px;
  color: #555;
  line-height: 1;
}
.phone-group .dash {
  font-size: 26px;
  color: #555;
  line-height: 1;
}

.email-group {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 230px;
  align-items: center;
  gap: 12px;
  width: calc(100% - 40px);
}

.email-group input,
.email-group select {
  width: 100%;
  min-width: 0;
}

.email-group .email-at {
  text-align: center;
  font-size: 28px;
  color: #333;
  line-height: 1;
  margin: 0;
}

.inquiry-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px 0;
}
.inquiry-btns button {
  min-width: 270px;
  height: 60px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #cfcfcf;
  transition: all 0.2s ease;
}
.inquiry-btns .btn-cancel {
  background: #fff;
  color: #222;
  border-radius: 999px;
}
.inquiry-btns .btn-submit {
  background: var(--main);
  color: #fff;
  border-color: var(--main);
  box-shadow: 0 10px 18px rgba(31, 74, 173, 0.18);
  border-radius: 999px;
}
.inquiry-btns .btn-cancel:hover {
  background: #f7f7f7;
}
.inquiry-btns .btn-submit:hover {
  opacity: 0.92;
}

body.popup-open {
  overflow: hidden;
}
.cart_list.diff {
  border: none;
  background: #f7f6f5;
  box-sizing: border-box;
  padding: unset;
}

.cart_list ul li .sm_tit.diff {
  display: block;
  margin: 0 28px 2px 0;
  line-height: 1.45;
  letter-spacing: -0.03em;
  font-size: 18px;
  /* color: #bea990; */
  font-weight: bold;
}
.li_cart_item.diff {
  margin-top: 30px;
  display: block;
  max-width: 940px;
  padding: 30px;
  border: 2px solid var(--border);
}

.li_cart_item.diff:not(:first-child) {
  margin-top: 10px;
  position: relative;
}

.li_cart_item.diff:last-child::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;

  width: 940px;
  height: 2px;
  background: #d9d0c7;
}
.prd_cart.diff {
  padding: 20px;
}
