@charset "UTF-8";
/* ^scss에서 수정해주세요!  Don't edit .css file, Only work on the scss*/
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-style: normal;
  src: url(../../common/fonts/Pretendard-Thin.woff2) format("woff2"), url(../../common/fonts/Pretendard-Thin.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-style: normal;
  src: url(../../common/fonts/Pretendard-ExtraLight.woff2) format("woff2"), url(../../common/fonts/Pretendard-ExtraLight.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-style: normal;
  src: url(../../common/fonts/Pretendard-Light.woff2) format("woff2"), url(../../common/fonts/Pretendard-Light.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-style: normal;
  src: url(../../common/fonts/Pretendard-Regular.woff2) format("woff2"), url(../../common/fonts/Pretendard-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-style: normal;
  src: url(../../common/fonts/Pretendard-Medium.woff2) format("woff2"), url(../../common/fonts/Pretendard-Medium.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-style: normal;
  src: url(../../common/fonts/Pretendard-SemiBold.woff2) format("woff2"), url(../../common/fonts/Pretendard-SemiBold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-style: normal;
  src: url(../../common/fonts/Pretendard-Bold.woff2) format("woff2"), url(../../common/fonts/Pretendard-Bold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-style: normal;
  src: url(../../common/fonts/Pretendard-ExtraBold.woff2) format("woff2"), url(../../common/fonts/Pretendard-ExtraBold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-weight: 900;
  font-style: normal;
  src: url(../../common/fonts/Pretendard-Black.woff2) format("woff2"), url(../../common/fonts/Pretendard-Black.woff) format("woff");
  font-display: swap;
}
html {
  /* Prevent font scaling in landscape */
  -webkit-text-size-adjust: none; /*Chrome, Safari, newer versions of Opera*/
  -moz-text-size-adjust: none; /*Firefox*/
  -ms-text-size-adjust: none; /*Ie*/
  -o-text-size-adjust: none; /*old versions of Opera*/
}

html,
a,
button,
input,
textarea {
  font-family: "Pretendard", sans-serif, "Malgun Gothic", "맑은 고딕", Roboto, Arial;
}

*,
*::before,
*::after {
  letter-spacing: -0.02em;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: keep-all;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  letter-spacing: -0.025em;
}

html {
  height: calc(var(--vh, 1vh) * 100);
  -webkit-text-size-adjust: none;
  /*Chrome, Safari, newer versions of Opera*/
  -moz-text-size-adjust: none;
  /*Firefox*/
  -ms-text-size-adjust: none;
  /*Ie*/
  -o-text-size-adjust: none;
  /*old versions of Opera*/
}

/*a,body,dd,div,dl,dt,h1,h2,h3,h4,h5,input,li,ol,p,html,ul,button,textarea*/
html,
textarea,
input {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: -0.35px;
  line-height: 1.14;
  word-break: keep-all;
  color: #222;
}

a,
body,
dd,
div,
dl,
dt,
h1,
h2,
h3,
h4,
h5,
html,
li,
ol,
p,
ul {
  padding: 0;
  margin: 0;
}

li,
ol,
ul {
  list-style: none;
}

a,
img {
  border: none;
}

img {
  max-width: 100%;
}

a + a,
img,
input + a,
input + button {
  vertical-align: middle;
}

a {
  text-decoration: none;
  display: inline-block;
  color: #222;
}

a:hover {
  text-decoration: none;
}

body {
  scroll-behavior: smooth;
}

input[type=number],
input[type=password],
input[type=tel],
input[type=text],
input[type=date],
input[type=email],
select,
textarea {
  box-sizing: border-box;
  color: #222;
  font-size: 14px;
  background: #fff;
  vertical-align: middle;
  height: 44px;
  padding-inline: 12px;
  border-radius: 6px;
  font-weight: 400;
  border: solid 1px #e2e3e5;
}

input[type=date] {
  padding-right: 43px;
  position: relative;
}

input::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 15px;
  width: 12px;
  height: 13px;
  background: url(../img/btn_date.png) no-repeat center/cover;
  background-repeat: no-repeat;
}

input {
  appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

textarea {
  line-height: 1.5;
  outline: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../img/icon_arrow_down.png") no-repeat #fff;
  background-position: calc(100% - 15px) center;
  background-size: 10px auto;
  outline: none;
  padding-right: 30px;
}

/*select:disabled { background-image:url('../img/common/select_arrow_off.png'); background-color: #f8f8f8; } */
input[type=chekbox],
input[type=radio] {
  display: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=search] {
  padding-inline: 12px 10px;
  border: 1px solid #E1E3EB;
  height: 44px;
  border-radius: 5px;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: url(../img/icon_del.png) center center no-repeat;
  background-size: 10px auto;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

i {
  font-style: normal;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

table {
  border-collapse: collapse;
  width: 100%;
  border-spacing: 0;
}

th {
  text-align: center;
}

td {
  text-align: left;
}

table > caption {
  position: absolute;
  text-indent: -9999px;
}

button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
}

button,
input,
textarea {
  -webkit-appearance: none;
}

select,
textarea,
input[type=text] {
  width: 100%;
}

textarea {
  min-height: 120px;
  text-align: left;
  padding: 12px 15px;
}

input[type=tel] {
  width: 40px;
  min-width: 40px;
  margin-right: 4px;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #B7B7B7;
  opacity: 1;
  font-size: 14px;
  font-weight: 400;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #B7B7B7;
  opacity: 1;
  font-size: 14px;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #B7B7B7;
  opacity: 1;
  font-size: 14px;
}

input::placeholder,
textarea::placeholder {
  color: #B7B7B7;
  opacity: 1;
  font-size: 14px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #B7B7B7;
  opacity: 1;
  font-size: 14px;
}

input:disabled {
  border: solid 1px #F3F3F8;
  background-color: #F3F3F8;
  cursor: not-allowed;
}

select:disabled,
input[readonly],
textarea[readonly] {
  border: 1px solid #e2e3e5;
  opacity: 1;
  background: transparent;
}

input[readonly]:focus,
textarea[readonly]:focus {
  outline: none;
}

input:focus {
  outline: none;
}

input:disabled::-webkit-input-placeholder,
input[readonly]::-webkit-input-placeholder,
textarea:disabled::-webkit-input-placeholder,
textarea[readonly]::-webkit-input-placeholder {
  color: #c3c0c3;
  opacity: 1;
}

input:disabled:-ms-input-placeholder,
input[readonly]:-ms-input-placeholder,
textarea:disabled:-ms-input-placeholder,
textarea[readonly]:-ms-input-placeholder {
  color: #c3c0c3;
  opacity: 1;
}

input:disabled::-ms-input-placeholder,
input[readonly]::-ms-input-placeholder,
textarea:disabled::-ms-input-placeholder,
textarea[readonly]::-ms-input-placeholder {
  color: #c3c0c3;
  opacity: 1;
}

input:disabled::placeholder,
input[readonly]::placeholder,
textarea:disabled::placeholder,
textarea[readonly]::placeholder {
  color: #c3c0c3;
  opacity: 1;
}

input:disabled:-ms-input-placeholder,
input[readonly]:-ms-input-placeholder,
textarea:disabled:-ms-input-placeholder,
textarea[readonly]:-ms-input-placeholder {
  color: #c3c0c3;
  opacity: 1;
}

input::-ms-clear,
input::-ms-reveal,
textarea::-ms-clear,
textarea::-ms-reveal {
  display: none;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button,
textarea::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

textarea {
  line-height: 1.5;
}

textarea {
  resize: none;
}

img {
  border: 0;
  vertical-align: middle;
}

hr {
  display: block;
  width: 100%;
  height: 1px;
  border: none;
}

main,
section,
article {
  display: block;
}

fieldset,
form {
  border: none;
  outline: none;
}

address {
  font-style: normal;
}

.svg_icon {
  transition: all 0.2s;
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}
.svg_icon.icon_email {
  display: inline-block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%23666' d='M23 7.9v8.652c0 1.844-1.422 3.347-3.22 3.448H5.407C3.597 20.012 2.1 18.56 2 16.754V7.9l10.132 5.38c.225.127.499.127.736 0L23 7.9ZM5.419 3h14.175c1.771 0 3.219 1.364 3.393 3.107l-10.48 5.557L2.011 6.107C2.187 4.427 3.535 3.101 5.22 3h.2Z'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_share {
  display: inline-block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='24' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16.833 8.028a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM4.167 15.417a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM16.833 22.805a3.167 3.167 0 1 0 0-6.333 3.167 3.167 0 0 0 0 6.333ZM6.898 13.847l7.217 4.195M14.102 6.458l-7.204 4.196'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_arrow_right {
  display: inline-block;
  width: 19px;
  min-width: 19px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' fill='none'%3E%3Cpath stroke='%23666' stroke-width='2' d='m10.562.816 6.679 6.68m0 0-6.68 6.678m6.68-6.679H.709'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_link {
  display: inline-block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m5.333 13.333 5.333-5-5.333-5'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_toggle {
  display: inline-block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.75 7.083 10 13.75l6.25-6.667'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_glass {
  display: inline-block;
  width: 13.4px;
  min-width: 13.4px;
  height: 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='15' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M7.073 12.563a5.698 5.698 0 1 0 0-11.396 5.698 5.698 0 0 0 0 11.396ZM11.427 10.782l3.438 3.438M7.154 4.492v4.75M4.78 6.867h4.75'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_search {
  display: inline-block;
  width: 14.2px;
  min-width: 14.2px;
  height: 13.7px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' fill='none'%3E%3Cpath stroke='%23666'  stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M7.498 13.329a5.998 5.998 0 1 0 0-11.996 5.998 5.998 0 0 0 0 11.996ZM12.081 11.455l3.619 3.619'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_link_l {
  display: inline-block;
  width: 25px;
  min-width: 25px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m8.5 20 8-7.5-8-7.5'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_view_plan {
  display: inline-block;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none'%3E%3Cg stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M5.798 11.264a4.798 4.798 0 1 0 0-9.597 4.798 4.798 0 0 0 0 9.597ZM9.465 9.765l2.895 2.895M5.867 4.467v4M3.867 6.467h4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_close_plan {
  display: inline-block;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6.798 12.264a4.798 4.798 0 1 0 0-9.597 4.798 4.798 0 0 0 0 9.597ZM10.465 10.765l2.895 2.895M4.867 7.467h4'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_chk {
  display: inline-block;
  width: 15px;
  min-width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M2 7.72 5.385 13 13 2'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_set {
  display: inline-block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cg stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' clip-path='url(%23a)'%3E%3Cpath d='M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3Cpath d='M12.934 10a1.099 1.099 0 0 0 .22 1.213l.04.04a1.335 1.335 0 1 1-1.887 1.887l-.04-.04a1.1 1.1 0 0 0-1.213-.22 1.1 1.1 0 0 0-.667 1.006V14a1.333 1.333 0 1 1-2.667 0v-.06A1.1 1.1 0 0 0 6 12.933a1.1 1.1 0 0 0-1.213.22l-.04.04a1.334 1.334 0 1 1-1.887-1.886l.04-.04a1.1 1.1 0 0 0 .22-1.214 1.1 1.1 0 0 0-1.006-.667H2A1.333 1.333 0 1 1 2 6.72h.06A1.1 1.1 0 0 0 3.067 6a1.1 1.1 0 0 0-.22-1.213l-.04-.04A1.333 1.333 0 1 1 4.694 2.86l.04.04a1.1 1.1 0 0 0 1.213.22H6a1.1 1.1 0 0 0 .667-1.007V2a1.333 1.333 0 0 1 2.667 0v.06A1.1 1.1 0 0 0 10 3.066a1.1 1.1 0 0 0 1.214-.22l.04-.04a1.333 1.333 0 0 1 2.277.944 1.333 1.333 0 0 1-.39.943l-.04.04a1.1 1.1 0 0 0-.22 1.214V6a1.1 1.1 0 0 0 1.006.667H14a1.333 1.333 0 1 1 0 2.666h-.06a1.1 1.1 0 0 0-1.006.667Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_email.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%23CCCED6' d='M23 7.9v8.652c0 1.844-1.422 3.347-3.22 3.448H5.407C3.597 20.012 2.1 18.56 2 16.754V7.9l10.132 5.38c.225.127.499.127.736 0L23 7.9ZM5.419 3h14.175c1.771 0 3.219 1.364 3.393 3.107l-10.48 5.557L2.011 6.107C2.187 4.427 3.535 3.101 5.22 3h.2Z'/%3E%3C/svg%3E");
}
.svg_icon.icon_email.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%2302A267' d='M23 7.9v8.652c0 1.844-1.422 3.347-3.22 3.448H5.407C3.597 20.012 2.1 18.56 2 16.754V7.9l10.132 5.38c.225.127.499.127.736 0L23 7.9ZM5.419 3h14.175c1.771 0 3.219 1.364 3.393 3.107l-10.48 5.557L2.011 6.107C2.187 4.427 3.535 3.101 5.22 3h.2Z'/%3E%3C/svg%3E");
}
.svg_icon.icon_share.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='24' fill='none'%3E%3Cpath stroke='%23CCCED6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16.833 8.028a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM4.167 15.417a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM16.833 22.805a3.167 3.167 0 1 0 0-6.333 3.167 3.167 0 0 0 0 6.333ZM6.898 13.847l7.217 4.195M14.102 6.458l-7.204 4.196'/%3E%3C/svg%3E");
}
.svg_icon.icon_share.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='24' fill='none'%3E%3Cpath stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16.833 8.028a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM4.167 15.417a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM16.833 22.805a3.167 3.167 0 1 0 0-6.333 3.167 3.167 0 0 0 0 6.333ZM6.898 13.847l7.217 4.195M14.102 6.458l-7.204 4.196'/%3E%3C/svg%3E");
}
.svg_icon.icon_arrow_right.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' fill='none'%3E%3Cpath stroke='%2302A267' stroke-width='2' d='m10.562.816 6.679 6.68m0 0-6.68 6.678m6.68-6.679H.709'/%3E%3C/svg%3E");
}
.svg_icon.icon_arrow_right.dark-point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' fill='none'%3E%3Cpath stroke='%23164E33' stroke-width='2' d='m10.562.816 6.679 6.68m0 0-6.68 6.678m6.68-6.679H.709'/%3E%3C/svg%3E");
}
.svg_icon.icon_arrow_right.white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' d='m10.562.816 6.679 6.68m0 0-6.68 6.678m6.68-6.679H.709'/%3E%3C/svg%3E");
}
.svg_icon.icon_link.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath stroke='%23B7B7B7' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m5.333 13.333 5.333-5-5.333-5'/%3E%3C/svg%3E");
}
.svg_icon.icon_link_l.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' fill='none'%3E%3Cpath stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m8.5 20 8-7.5-8-7.5'/%3E%3C/svg%3E");
}
.svg_icon.icon_toggle.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath stroke='%23A9A9A9' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.75 7.083 10 13.75l6.25-6.667'/%3E%3C/svg%3E");
}
.svg_icon.icon_toggle.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.75 7.083 10 13.75l6.25-6.667'/%3E%3C/svg%3E");
}
.svg_icon.icon_glass.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='15' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M7.073 12.563a5.698 5.698 0 1 0 0-11.396 5.698 5.698 0 0 0 0 11.396ZM11.427 10.782l3.438 3.438M7.154 4.492v4.75M4.78 6.867h4.75'/%3E%3C/svg%3E");
}
.svg_icon.icon_view_plan.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none'%3E%3Cg stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M5.798 11.264a4.798 4.798 0 1 0 0-9.597 4.798 4.798 0 0 0 0 9.597ZM9.465 9.765l2.895 2.895M5.867 4.467v4M3.867 6.467h4'/%3E%3C/g%3E%3C/svg%3E");
}
.svg_icon.icon_close_plan.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6.798 12.264a4.798 4.798 0 1 0 0-9.597 4.798 4.798 0 0 0 0 9.597ZM10.465 10.765l2.895 2.895M4.867 7.467h4'/%3E%3C/svg%3E");
}
.svg_icon.icon_chk.white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M2 7.72 5.385 13 13 2'/%3E%3C/svg%3E");
}
.svg_icon.icon_set.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cg stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' clip-path='url(%23a)'%3E%3Cpath d='M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3Cpath d='M12.934 10a1.099 1.099 0 0 0 .22 1.213l.04.04a1.335 1.335 0 1 1-1.887 1.887l-.04-.04a1.1 1.1 0 0 0-1.213-.22 1.1 1.1 0 0 0-.667 1.006V14a1.333 1.333 0 1 1-2.667 0v-.06A1.1 1.1 0 0 0 6 12.933a1.1 1.1 0 0 0-1.213.22l-.04.04a1.334 1.334 0 1 1-1.887-1.886l.04-.04a1.1 1.1 0 0 0 .22-1.214 1.1 1.1 0 0 0-1.006-.667H2A1.333 1.333 0 1 1 2 6.72h.06A1.1 1.1 0 0 0 3.067 6a1.1 1.1 0 0 0-.22-1.213l-.04-.04A1.333 1.333 0 1 1 4.694 2.86l.04.04a1.1 1.1 0 0 0 1.213.22H6a1.1 1.1 0 0 0 .667-1.007V2a1.333 1.333 0 0 1 2.667 0v.06A1.1 1.1 0 0 0 10 3.066a1.1 1.1 0 0 0 1.214-.22l.04-.04a1.333 1.333 0 0 1 2.277.944 1.333 1.333 0 0 1-.39.943l-.04.04a1.1 1.1 0 0 0-.22 1.214V6a1.1 1.1 0 0 0 1.006.667H14a1.333 1.333 0 1 1 0 2.666h-.06a1.1 1.1 0 0 0-1.006.667Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.png_icon {
  vertical-align: top;
}
.png_icon.icon_notice {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_notice.png);
  width: 21px;
  min-width: 21px;
  height: 18px;
}
.png_icon.icon_faq {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_faq.png);
  width: 22px;
  min-width: 22px;
  height: 22px;
}
.png_icon.icon_main_estimate {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_main_estimate.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.png_icon.icon_main_faq {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_main_faq.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.png_icon.icon_main_qna {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_main_qna.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.png_icon.icon_notice2 {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_notice2.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.png_icon.icon_plan {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_plan.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.png_icon.icon_push {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_push.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.png_icon.icon_house {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_house.png);
  width: 16px;
  min-width: 16px;
  height: 20px;
}
.png_icon.icon_play {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_play.png);
  width: 60px;
  min-width: 60px;
  height: 60px;
}
.png_icon.icon_chk_l {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_chk_l.png);
  width: 42px;
  min-width: 42px;
  height: 33.5px;
}
.png_icon.icon_answer {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_answer.png);
  width: 22px;
  min-width: 22px;
  height: 22px;
}
.png_icon.icon_kakao {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_kakao.png);
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.png_icon.icon_google {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_google.png);
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.png_icon.icon_naver {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_naver.png);
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.png_icon.icon_apple {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_apple.png);
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.png_icon.icon_reset {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_reset.png);
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.png_icon.icon_main_estimate.l {
  min-width: 43px;
  width: 43px;
  height: 40px;
}
.png_icon.icon_main_faq.l {
  min-width: 43px;
  width: 43px;
  height: 38px;
}
.png_icon.icon_main_qna.l {
  min-width: 45px;
  width: 45px;
  height: 33px;
}

.svg_icon {
  transition: all 0.2s;
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}
.svg_icon.icon_email {
  display: inline-block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%23666' d='M23 7.9v8.652c0 1.844-1.422 3.347-3.22 3.448H5.407C3.597 20.012 2.1 18.56 2 16.754V7.9l10.132 5.38c.225.127.499.127.736 0L23 7.9ZM5.419 3h14.175c1.771 0 3.219 1.364 3.393 3.107l-10.48 5.557L2.011 6.107C2.187 4.427 3.535 3.101 5.22 3h.2Z'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_share {
  display: inline-block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='24' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16.833 8.028a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM4.167 15.417a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM16.833 22.805a3.167 3.167 0 1 0 0-6.333 3.167 3.167 0 0 0 0 6.333ZM6.898 13.847l7.217 4.195M14.102 6.458l-7.204 4.196'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_arrow_right {
  display: inline-block;
  width: 19px;
  min-width: 19px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' fill='none'%3E%3Cpath stroke='%23666' stroke-width='2' d='m10.562.816 6.679 6.68m0 0-6.68 6.678m6.68-6.679H.709'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_link {
  display: inline-block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m5.333 13.333 5.333-5-5.333-5'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_toggle {
  display: inline-block;
  width: 20px;
  min-width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.75 7.083 10 13.75l6.25-6.667'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_glass {
  display: inline-block;
  width: 13.4px;
  min-width: 13.4px;
  height: 13px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='15' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M7.073 12.563a5.698 5.698 0 1 0 0-11.396 5.698 5.698 0 0 0 0 11.396ZM11.427 10.782l3.438 3.438M7.154 4.492v4.75M4.78 6.867h4.75'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_search {
  display: inline-block;
  width: 14.2px;
  min-width: 14.2px;
  height: 13.7px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' fill='none'%3E%3Cpath stroke='%23666'  stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M7.498 13.329a5.998 5.998 0 1 0 0-11.996 5.998 5.998 0 0 0 0 11.996ZM12.081 11.455l3.619 3.619'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_link_l {
  display: inline-block;
  width: 25px;
  min-width: 25px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m8.5 20 8-7.5-8-7.5'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_view_plan {
  display: inline-block;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none'%3E%3Cg stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M5.798 11.264a4.798 4.798 0 1 0 0-9.597 4.798 4.798 0 0 0 0 9.597ZM9.465 9.765l2.895 2.895M5.867 4.467v4M3.867 6.467h4'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_close_plan {
  display: inline-block;
  width: 14px;
  min-width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6.798 12.264a4.798 4.798 0 1 0 0-9.597 4.798 4.798 0 0 0 0 9.597ZM10.465 10.765l2.895 2.895M4.867 7.467h4'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_chk {
  display: inline-block;
  width: 15px;
  min-width: 15px;
  height: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M2 7.72 5.385 13 13 2'/%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_set {
  display: inline-block;
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cg stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' clip-path='url(%23a)'%3E%3Cpath d='M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3Cpath d='M12.934 10a1.099 1.099 0 0 0 .22 1.213l.04.04a1.335 1.335 0 1 1-1.887 1.887l-.04-.04a1.1 1.1 0 0 0-1.213-.22 1.1 1.1 0 0 0-.667 1.006V14a1.333 1.333 0 1 1-2.667 0v-.06A1.1 1.1 0 0 0 6 12.933a1.1 1.1 0 0 0-1.213.22l-.04.04a1.334 1.334 0 1 1-1.887-1.886l.04-.04a1.1 1.1 0 0 0 .22-1.214 1.1 1.1 0 0 0-1.006-.667H2A1.333 1.333 0 1 1 2 6.72h.06A1.1 1.1 0 0 0 3.067 6a1.1 1.1 0 0 0-.22-1.213l-.04-.04A1.333 1.333 0 1 1 4.694 2.86l.04.04a1.1 1.1 0 0 0 1.213.22H6a1.1 1.1 0 0 0 .667-1.007V2a1.333 1.333 0 0 1 2.667 0v.06A1.1 1.1 0 0 0 10 3.066a1.1 1.1 0 0 0 1.214-.22l.04-.04a1.333 1.333 0 0 1 2.277.944 1.333 1.333 0 0 1-.39.943l-.04.04a1.1 1.1 0 0 0-.22 1.214V6a1.1 1.1 0 0 0 1.006.667H14a1.333 1.333 0 1 1 0 2.666h-.06a1.1 1.1 0 0 0-1.006.667Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: contain;
}
.svg_icon.icon_email.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%23CCCED6' d='M23 7.9v8.652c0 1.844-1.422 3.347-3.22 3.448H5.407C3.597 20.012 2.1 18.56 2 16.754V7.9l10.132 5.38c.225.127.499.127.736 0L23 7.9ZM5.419 3h14.175c1.771 0 3.219 1.364 3.393 3.107l-10.48 5.557L2.011 6.107C2.187 4.427 3.535 3.101 5.22 3h.2Z'/%3E%3C/svg%3E");
}
.svg_icon.icon_email.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%2302A267' d='M23 7.9v8.652c0 1.844-1.422 3.347-3.22 3.448H5.407C3.597 20.012 2.1 18.56 2 16.754V7.9l10.132 5.38c.225.127.499.127.736 0L23 7.9ZM5.419 3h14.175c1.771 0 3.219 1.364 3.393 3.107l-10.48 5.557L2.011 6.107C2.187 4.427 3.535 3.101 5.22 3h.2Z'/%3E%3C/svg%3E");
}
.svg_icon.icon_share.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='24' fill='none'%3E%3Cpath stroke='%23CCCED6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16.833 8.028a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM4.167 15.417a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM16.833 22.805a3.167 3.167 0 1 0 0-6.333 3.167 3.167 0 0 0 0 6.333ZM6.898 13.847l7.217 4.195M14.102 6.458l-7.204 4.196'/%3E%3C/svg%3E");
}
.svg_icon.icon_share.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='24' fill='none'%3E%3Cpath stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16.833 8.028a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM4.167 15.417a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM16.833 22.805a3.167 3.167 0 1 0 0-6.333 3.167 3.167 0 0 0 0 6.333ZM6.898 13.847l7.217 4.195M14.102 6.458l-7.204 4.196'/%3E%3C/svg%3E");
}
.svg_icon.icon_arrow_right.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' fill='none'%3E%3Cpath stroke='%2302A267' stroke-width='2' d='m10.562.816 6.679 6.68m0 0-6.68 6.678m6.68-6.679H.709'/%3E%3C/svg%3E");
}
.svg_icon.icon_arrow_right.dark-point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' fill='none'%3E%3Cpath stroke='%23164E33' stroke-width='2' d='m10.562.816 6.679 6.68m0 0-6.68 6.678m6.68-6.679H.709'/%3E%3C/svg%3E");
}
.svg_icon.icon_arrow_right.white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='15' fill='none'%3E%3Cpath stroke='%23fff' stroke-width='2' d='m10.562.816 6.679 6.68m0 0-6.68 6.678m6.68-6.679H.709'/%3E%3C/svg%3E");
}
.svg_icon.icon_link.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath stroke='%23B7B7B7' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m5.333 13.333 5.333-5-5.333-5'/%3E%3C/svg%3E");
}
.svg_icon.icon_link_l.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='24' fill='none'%3E%3Cpath stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m8.5 20 8-7.5-8-7.5'/%3E%3C/svg%3E");
}
.svg_icon.icon_toggle.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath stroke='%23A9A9A9' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.75 7.083 10 13.75l6.25-6.667'/%3E%3C/svg%3E");
}
.svg_icon.icon_toggle.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.75 7.083 10 13.75l6.25-6.667'/%3E%3C/svg%3E");
}
.svg_icon.icon_glass.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='15' fill='none'%3E%3Cpath stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M7.073 12.563a5.698 5.698 0 1 0 0-11.396 5.698 5.698 0 0 0 0 11.396ZM11.427 10.782l3.438 3.438M7.154 4.492v4.75M4.78 6.867h4.75'/%3E%3C/svg%3E");
}
.svg_icon.icon_view_plan.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none'%3E%3Cg stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Cpath d='M5.798 11.264a4.798 4.798 0 1 0 0-9.597 4.798 4.798 0 0 0 0 9.597ZM9.465 9.765l2.895 2.895M5.867 4.467v4M3.867 6.467h4'/%3E%3C/g%3E%3C/svg%3E");
}
.svg_icon.icon_close_plan.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6.798 12.264a4.798 4.798 0 1 0 0-9.597 4.798 4.798 0 0 0 0 9.597ZM10.465 10.765l2.895 2.895M4.867 7.467h4'/%3E%3C/svg%3E");
}
.svg_icon.icon_chk.white {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='none'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M2 7.72 5.385 13 13 2'/%3E%3C/svg%3E");
}
.svg_icon.icon_set.point {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cg stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' clip-path='url(%23a)'%3E%3Cpath d='M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3Cpath d='M12.934 10a1.099 1.099 0 0 0 .22 1.213l.04.04a1.335 1.335 0 1 1-1.887 1.887l-.04-.04a1.1 1.1 0 0 0-1.213-.22 1.1 1.1 0 0 0-.667 1.006V14a1.333 1.333 0 1 1-2.667 0v-.06A1.1 1.1 0 0 0 6 12.933a1.1 1.1 0 0 0-1.213.22l-.04.04a1.334 1.334 0 1 1-1.887-1.886l.04-.04a1.1 1.1 0 0 0 .22-1.214 1.1 1.1 0 0 0-1.006-.667H2A1.333 1.333 0 1 1 2 6.72h.06A1.1 1.1 0 0 0 3.067 6a1.1 1.1 0 0 0-.22-1.213l-.04-.04A1.333 1.333 0 1 1 4.694 2.86l.04.04a1.1 1.1 0 0 0 1.213.22H6a1.1 1.1 0 0 0 .667-1.007V2a1.333 1.333 0 0 1 2.667 0v.06A1.1 1.1 0 0 0 10 3.066a1.1 1.1 0 0 0 1.214-.22l.04-.04a1.333 1.333 0 0 1 2.277.944 1.333 1.333 0 0 1-.39.943l-.04.04a1.1 1.1 0 0 0-.22 1.214V6a1.1 1.1 0 0 0 1.006.667H14a1.333 1.333 0 1 1 0 2.666h-.06a1.1 1.1 0 0 0-1.006.667Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.png_icon {
  vertical-align: top;
}
.png_icon.icon_notice {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_notice.png);
  width: 21px;
  min-width: 21px;
  height: 18px;
}
.png_icon.icon_faq {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_faq.png);
  width: 22px;
  min-width: 22px;
  height: 22px;
}
.png_icon.icon_main_estimate {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_main_estimate.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.png_icon.icon_main_faq {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_main_faq.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.png_icon.icon_main_qna {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_main_qna.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.png_icon.icon_notice2 {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_notice2.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.png_icon.icon_plan {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_plan.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.png_icon.icon_push {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_push.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.png_icon.icon_house {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_house.png);
  width: 16px;
  min-width: 16px;
  height: 20px;
}
.png_icon.icon_play {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_play.png);
  width: 60px;
  min-width: 60px;
  height: 60px;
}
.png_icon.icon_chk_l {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_chk_l.png);
  width: 42px;
  min-width: 42px;
  height: 33.5px;
}
.png_icon.icon_answer {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_answer.png);
  width: 22px;
  min-width: 22px;
  height: 22px;
}
.png_icon.icon_kakao {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_kakao.png);
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.png_icon.icon_google {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_google.png);
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.png_icon.icon_naver {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_naver.png);
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.png_icon.icon_apple {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_apple.png);
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.png_icon.icon_reset {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_reset.png);
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.png_icon.icon_main_estimate.l {
  min-width: 43px;
  width: 43px;
  height: 40px;
}
.png_icon.icon_main_faq.l {
  min-width: 43px;
  width: 43px;
  height: 38px;
}
.png_icon.icon_main_qna.l {
  min-width: 45px;
  width: 45px;
  height: 33px;
}

a.com_btn:hover {
  cursor: pointer;
}

.com_btn {
  padding: 0 10px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: normal;
  box-sizing: border-box;
  gap: 6px;
  word-break: keep-all;
  line-height: initial;
  line-height: 1;
}
.com_btn_wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 10px;
}
.com_btn_wrap.bottom {
  padding-top: 15px;
}
.com_btn_wrap.bottom.pt_l {
  padding-top: 30px;
}
.com_btn_wrap.bottom.between {
  justify-content: space-between;
}
.com_btn_wrap.left {
  justify-content: flex-start;
}
.com_btn_wrap.right {
  justify-content: flex-end;
}
.com_btn_wrap.row {
  flex-wrap: wrap;
}
.com_btn.full {
  width: 100%;
}
.com_btn.extend {
  flex: 1;
}
.com_btn.point {
  background-color: #02A267;
  color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(18, 133, 67, 0.36);
}
.com_btn.gray {
  background-color: #E1E3EB;
  color: #767678;
  border: 1px solid #D3D5DE;
  box-shadow: 0px 4px 4px 0px rgba(225, 227, 235, 0.7);
}
.com_btn.dark {
  background-color: #444;
  color: #fff;
}
.com_btn.white {
  background-color: #fff;
  color: #02A267;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.com_btn.line {
  border: solid 1px;
}
.com_btn.line.point {
  border-color: #02A267;
  background-color: #E2F1E9;
  color: #02A267;
  box-shadow: 0px 4px 4px 0px rgba(18, 133, 67, 0.3);
}
.com_btn.line.gray {
  border: 1px solid #D3D5DE;
  background-color: #fff;
  color: #666;
  box-shadow: none;
}
.com_btn.line.dark {
  border-color: #444;
  background-color: #fff;
  color: #444;
}
.com_btn.line.white {
  border-color: #02A267;
  box-shadow: 0px 4px 4px 0px rgba(18, 133, 67, 0.3);
}
.com_btn.icon {
  aspect-ratio: 1/1;
}
.com_btn.xl {
  height: 60px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  padding-inline: 40px;
}
.com_btn.xl .icon_arrow_right {
  margin-left: auto;
}
.com_btn.l {
  height: 50px;
  font-size: 17px;
  font-weight: 700;
}
.com_btn.m {
  height: 44px;
  font-size: 14px;
  font-weight: 600;
}
.com_btn.s {
  height: 30px;
  font-size: 13px;
  font-weight: 500;
}
.com_btn.oval {
  border-radius: 38px;
}

/*!페이징 << < > >> */
.sec-paging {
  overflow: hidden;
  text-align: center;
}
.sec-paging :is(.pg-btn, .btn-page) {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  color: #222;
}
.sec-paging .pg-btn {
  background-image: url("../img/arrow_right.png");
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
}
.sec-paging .pg-btn.disabled {
  cursor: auto;
  opacity: 0.4;
}
.sec-paging .group-prev {
  background-image: url("../img/arrow_last.png");
  transform: rotate(180deg);
}
.sec-paging .group-next {
  background-image: url("../img/arrow_last.png");
}
.sec-paging :is(.group-prev, .prev) {
  transform: rotate(180deg);
}
.sec-paging .btn-page {
  line-height: inherit;
  cursor: pointer;
}
.sec-paging .btn-page.active {
  font-weight: bold;
  color: #02A267;
}

.com_tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  background: #F3F3F8;
  border-radius: 10px 10px 0 0;
}
.com_tab .tab {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  background: #F3F3F8;
  color: #666;
  min-height: 38px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  flex: 1;
  position: relative;
  border-radius: 10px 10px 0 0;
}
.com_tab .tab.active {
  background-color: #02A267;
  color: #fff;
  border-radius: 10px 10px 0 0;
  z-index: 1;
}
.com_tab_contents {
  display: none;
  border: 2px solid #02A267;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
}
.com_tab_contents.active {
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  gap: 10px;
}

.com_chk {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 5px;
  cursor: pointer;
  line-height: initial;
}
.com_chk__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 10px 20px !important;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.com_chk__wrap.align_c {
  justify-content: center;
}
.com_chk:has(:disabled) {
  color: #B7B7B7;
}
.com_chk input[type=checkbox],
.com_chk input[type=radio] {
  display: inline-block;
  padding-right: 0;
  height: 18px;
}
.com_chk input[type=checkbox]::before,
.com_chk input[type=radio]::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  cursor: pointer;
  border-radius: 50%;
}
.com_chk input[type=checkbox]:checked::before,
.com_chk input[type=radio]:checked::before {
  background: #02A267 url("../img/chk_on.png") no-repeat center/18px auto;
  border-color: #02A267;
}
.com_chk input[type=checkbox]:disabled,
.com_chk input[type=radio]:disabled {
  border: none;
  opacity: 0.4;
}
.com_chk.circle {
  position: relative;
  margin: 0;
}
.com_chk.circle input::before {
  border-radius: 50%;
}
.com_chk.circle input:checked::before {
  background: url("../img/radio_on.png") no-repeat center/18px auto;
  background-size: 18px auto;
}
.com_chk.l {
  font-size: 16px;
  font-weight: 700;
}
.com_chk.l input[type=checkbox],
.com_chk.l input[type=radio] {
  height: 20px;
}
.com_chk.l input[type=checkbox]::before,
.com_chk.l input[type=radio]::before {
  width: 22px;
  height: 22px;
}

.com_chk_btn {
  cursor: pointer;
}
.com_chk_btn.full {
  flex: 1;
}
.com_chk_btn__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 5px;
}
.com_chk_btn input {
  display: none;
}
.com_chk_btn .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #E1E3EB;
  color: #666;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.42;
  text-align: center;
  border-radius: 6px;
  padding-inline: 5px;
  height: 44px;
  width: 100%;
  min-width: 40px;
}
.com_chk_btn .btn.s {
  height: 30px;
}
.com_chk_btn input:checked + .btn {
  background-color: #E2F1E9;
  color: #02A267;
  border-color: #02A267;
}
.com_chk_btn input:disabled + .btn {
  background-color: #F3F3F8;
  color: #B7B7B7;
  border-color: #F3F3F8;
}
.com_chk_btn.full {
  width: 100%;
}
.com_chk_btn.has_icon_chk .btn {
  border: none;
  background-position: center !important;
  background-size: cover !important;
}
.com_chk_btn.has_icon_chk input:checked + .btn {
  position: relative;
}
.com_chk_btn.has_icon_chk input:checked + .btn:before {
  content: "";
  display: block;
  border: 2px solid #02A267;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 6px;
}
.com_chk_btn.has_icon_chk input:checked + .btn:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/svg/icon_chk_point.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
}

.com_btn_like input[type=checkbox]:before {
  cursor: pointer;
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_like_off.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.com_btn_like input[type=checkbox]:checked::before {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_like_on.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}

.com_btn_thumb input[type=checkbox]:before {
  cursor: pointer;
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_thumb_off.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.com_btn_thumb input[type=checkbox]:checked::before {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_thumb_on.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}

.com_btn_star input[type=checkbox]:before {
  cursor: pointer;
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_star_off.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}
.com_btn_star input[type=checkbox]:checked::before {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_star_on.png);
  width: 24px;
  min-width: 24px;
  height: 24px;
}

.com_btn_bookmark input[type=checkbox]:before {
  cursor: pointer;
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_bookmark_off.png);
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.com_btn_bookmark input[type=checkbox]:checked::before {
  content: "";
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/icon_bookmark_on.png);
  width: 16px;
  min-width: 16px;
  height: 16px;
}

.com_switch {
  width: 40px;
  height: 20px;
  display: inline-block;
  -webkit-appearance: none;
  background-color: #E1E3EB;
  border-radius: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.com_switch__wrap {
  position: relative;
  width: 40px;
  height: 20px;
}
.com_switch:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.com_switch:checked[type=checkbox] {
  background-color: #02A267;
  transition: all 0.3s ease;
}
.com_switch:checked[type=checkbox]:after {
  left: 22px;
  transition: all 0.3s ease;
  background: #fff;
  border: none;
}

.com_btn_email:hover .icon_email.icon_email.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath fill='%2302A267' d='M23 7.9v8.652c0 1.844-1.422 3.347-3.22 3.448H5.407C3.597 20.012 2.1 18.56 2 16.754V7.9l10.132 5.38c.225.127.499.127.736 0L23 7.9ZM5.419 3h14.175c1.771 0 3.219 1.364 3.393 3.107l-10.48 5.557L2.011 6.107C2.187 4.427 3.535 3.101 5.22 3h.2Z'/%3E%3C/svg%3E");
}

.com_btn_share:hover .icon_share.icon_share.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='24' fill='none'%3E%3Cpath stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16.833 8.028a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM4.167 15.417a3.167 3.167 0 1 0 0-6.334 3.167 3.167 0 0 0 0 6.334ZM16.833 22.805a3.167 3.167 0 1 0 0-6.333 3.167 3.167 0 0 0 0 6.333ZM6.898 13.847l7.217 4.195M14.102 6.458l-7.204 4.196'/%3E%3C/svg%3E");
}

.com_square_btn_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
.com_square_btn_wrap .btn_squere {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #e2e3e5;
  border-radius: 5px;
  height: 60px;
  width: calc(50% - 10px);
  flex: auto;
}
.com_square_btn_wrap .btn_squere.active {
  border: 1px solid transparent;
  border-image-source: linear-gradient(122deg, #0e8ef9 19.21%, #6c34f9 80.79%);
  background-image: linear-gradient(#fff, #fff), linear-gradient(122deg, #0e8ef9 19.21%, #6c34f9 80.79%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  color: #02A267;
}

.com_btn_zoom {
  border-radius: 30px;
  height: 30px;
  width: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  position: absolute;
  bottom: 10px;
  right: 10px;
  border: 1px solid #E1E3EB;
}

.com_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: calc(var(--vh, 1vh) * 100);
  z-index: 100;
  display: none;
  justify-content: center;
  align-items: center;
}
.com_popup.active {
  display: flex;
  align-items: flex-end;
}
.com_popup.active {
  display: flex;
  align-items: center;
}
.com_popup .bg_close {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.7);
}
.com_popup .pop_container {
  position: relative;
  background: #fff;
  margin-inline: auto;
  z-index: 101;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
  max-width: calc(100vw - 72px) !important;
}
.com_popup .pop_container.l {
  width: 650px;
}
.com_popup .pop_container.xs {
  width: 300px;
}
.com_popup .content_container {
  padding: 25px 20px 20px;
  scrollbar-face-color: #999;
  scrollbar-highlight-color: #999; /*스크롤*/
  scrollbar-3dlight-color: #999; /*하이라이트*/
  scrollbar-darkshadow-color: #999; /*왼쪽외곽음영*/
  scrollbar-shadow-color: #999; /*오른쪽외곽음영*/
  scrollbar-arrow-color: #999; /*오른쪽 안쪽음영*/
  scrollbar-track-color: #999; /*화살*/
  /*스크롤영역*/
  overflow: hidden;
  overflow-y: auto;
  text-align: left;
  max-height: calc(95vh - 220px);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-face-color: transparent; /*스크롤*/
  scrollbar-highlight-color: #e2e8f0; /*하이라이트*/
  scrollbar-3dlight-color: transparent; /*왼쪽외곽음영*/
  scrollbar-darkshadow-color: transparent; /*오른쪽외곽음영*/
  scrollbar-shadow-color: transparent; /*오른쪽 안쪽음영*/
  scrollbar-arrow-color: transparent; /*화살*/
  scrollbar-track-color: transparent; /*스크롤영역*/
}
.com_popup .content_container::-webkit-scrollbar { /*스크롤바*/
  width: 5px;
  height: 5px;
}
.com_popup .content_container::-webkit-scrollbar-button { /*스크롤바 버튼(아래 위 화살표)*/
  width: 0px;
  height: 0px;
}
.com_popup .content_container::-webkit-scrollbar-thumb { /*스크롤바 핸들*/
  background-color: #e2e8f0;
  background-clip: padding-box;
  border-radius: 5px;
}
.com_popup .content_container::-webkit-scrollbar-track { /*스크롤바 진행줄*/
  background-color: none;
}
.com_popup .content_container::-webkit-scrollbar-track-piece { /*진행줄에서 핸들로 덮이지 않은 영역 */
  background-color: none;
}
.dark .com_popup .content_container {
  scrollbar-highlight-color: #6b6b6b;
}
.dark .com_popup .content_container::-webkit-scrollbar-thumb { /*스크롤바 핸들*/
  background-color: #6b6b6b;
}
.dark .com_popup .content_container::-webkit-scrollbar-track-piece { /*진행줄에서 핸들로 덮이지 않은 영역 */
  background-color: #6b6b6b;
}
.com_popup .content_container.layout_column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  gap: 10px;
}
.com_popup .btn_container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.com_popup .btn_container .com_btn {
  width: 100%;
  border-radius: 0;
  height: 40px;
}
.com_popup .pop_tit {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #222;
  text-align: center;
  padding-bottom: 15px;
}
.com_popup .btn_close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  background: url("../img/icon_del.png") no-repeat center/100% auto;
  z-index: 99;
}
.com_popup .txt {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.57;
  color: #222;
  letter-spacing: -0.3px;
}
.com_popup .txt_center {
  text-align: center;
}
.com_popup.type_alert {
  z-index: 1000;
}
.com_popup.type_alert .pop_container {
  width: 330px;
}
.com_popup.type_alert .pop_tit + .content_container {
  padding-top: 20px;
}
.com_popup.type_alert .content_container {
  padding: 25px 20px 15px;
  font-size: 15px;
  line-height: 1.47;
  letter-spacing: -0.38px;
  text-align: center;
}
.com_popup.type_alert .content_container .txt {
  padding-bottom: 15px;
}

.com_full_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: calc(var(--vh, 1vh) * 100);
  z-index: 100;
  display: none;
  background-color: #fff;
}
.com_full_popup.active {
  display: block;
}
.com_full_popup .pop_container .pop_header {
  height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
}
.com_full_popup .pop_container .pop_header .btn_close {
  position: static;
  margin-left: auto;
  width: 16px;
  height: 16px;
  background: url(../img/svg/icon_close.svg) no-repeat center/16px 16px;
  margin-left: auto;
}
.com_full_popup .pop_container .com_center_wrap {
  width: 100%;
}
.com_full_popup .pop_container .fixed_bottom {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  padding-block: 20px 50px;
  padding-inline: 22.5px;
}

.pop_policy .com_pg_tit {
  padding-bottom: 20px;
  border-bottom: 1px solid #555;
  margin-bottom: 0 !important;
}
.pop_policy .policy_scroll {
  padding-bottom: 20px;
  margin-top: 20px;
  height: 336px;
  overflow-y: auto;
  line-height: 1.5;
  border-bottom: 1px solid #E1E3EB;
}
.pop_policy .policy_scroll::-webkit-scrollbar {
  width: 3px;
  height: 0;
  background-color: #ddd;
}
.pop_policy .policy_scroll::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: #ddd;
}
.pop_policy .policy_scroll::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: #ddd;
}

.pop_store_register .pop_container {
  background: radial-gradient(70% 60% at 50% 80%, #d8e1ff 0%, #fff 100%);
}
.pop_store_register .content_container {
  padding-bottom: 165px;
  background: url(../img/icon_ok.png) no-repeat center 135px/240px;
}
.pop_store_register .btn_container {
  padding-top: 0;
}

.pop_manage_store .store_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  gap: 10px;
}
.pop_manage_store .store_list .item {
  font-size: 20px;
  font-weight: 700;
}
.pop_manage_store .store_list .item.selected {
  color: #02A267;
}

.pop_wifi .ip {
  font-size: 24px;
  font-weight: 700;
  color: #02A267;
}

.pop_logistics_info .pop_tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}
.pop_logistics_info .pop_tit .icon_info {
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
}
.pop_logistics_info .content_container {
  padding-bottom: 40px;
}
.pop_logistics_info .content_container .txt {
  text-align: center;
}

.pop_filter .com_btn_wrap {
  gap: 5px;
}
.pop_filter .com_btn_wrap .com_btn {
  gap: 5px;
  font-size: 16px;
  font-weight: 500;
}

.pop_share .com_btn_wrap .com_btn {
  box-shadow: none;
  height: 120px;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.com_toast {
  display: none;
  position: fixed;
  bottom: 240px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  height: 47px;
  border: 2px solid transparent;
  -webkit-text-fill-color: transparent;
  border-image-source: linear-gradient(122deg, #0e8ef9 19.21%, #6c34f9 80.79%);
  background-image: linear-gradient(#fff, #fff), linear-gradient(122deg, #0e8ef9 19.21%, #6c34f9 80.79%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 5px 5px 15px 0px rgba(108, 52, 249, 0.3);
}
.com_toast.active {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
}
.com_toast .txt {
  background: linear-gradient(180deg, #0e8ef9 0%, #6c34f9 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.PopResume .com_btn.px_no {
  padding-inline: 0;
}

.pop_store_info {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  padding: 20px;
  border-radius: 20px 20px 0px 0px;
  display: none;
  z-index: 99;
}
.pop_store_info .com_store_list_info .item {
  padding: 0;
}
.pop_store_info.active {
  display: block;
}

.pop_img_view.active {
  display: flex;
  align-items: center;
}
.pop_img_view .pop_container {
  background: none;
  border-radius: 0;
}
.pop_img_view .pop_header {
  position: fixed;
  top: 18px;
  left: 0;
  width: 100%;
}
.pop_img_view .bg_close {
  background-color: #353638;
}

.pop_contract_info .pop_tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  gap: 5px;
  margin-top: 20px;
}
.pop_contract_info .dot_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  gap: 15px;
}
.pop_contract_info .dot_list .item {
  padding-left: 10px;
  position: relative;
  line-height: 1.5;
}
.pop_contract_info .dot_list .item:before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #222;
  position: absolute;
  top: 5px;
  left: 0;
}
.pop_contract_info .btn_container {
  padding-inline: 20px;
}

.pop_add_plan .com_input_sec .input[type=number] {
  width: 70px;
}

body {
  background-color: #edf3f1;
}

main {
  padding-bottom: 20px;
  padding-top: 60px;
  min-height: calc(var(--vh, 1vh) * 100);
}
main.pb_0 {
  padding-bottom: 0;
}

.com_bg {
  background-color: #fff;
}

.com_center_wrap {
  width: 650px;
  margin: 0 auto;
}
@media screen and (max-width: 1299.9px) {
  .com_center_wrap {
    width: auto;
    margin-inline: 20px;
  }
}

.com_no_header .head, .com_no_header .head__link_area {
  display: none;
}
.com_no_header main {
  padding-top: 0;
}
.com_no_header_link .head__link_area {
  display: none;
}

.head {
  position: fixed;
  height: 60px;
  border-bottom: 1px solid #D0E0D4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #edf3f1;
  z-index: 80;
}
.head__logo {
  padding: 11px 20px;
  display: none;
}
.head__tit {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 8px;
  padding-left: 20px;
}
.head__tit * {
  font-size: 18px;
  font-weight: 700;
}
.head__tit:before {
  content: "";
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  border: solid #222;
  border-width: 2px 2px 0 0;
  transform: rotate(-135deg);
}
.head__wrap {
  position: fixed;
  top: 0;
  left: -200%;
  border-bottom: 1px solid #D0E0D4;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.head__wrap:after {
  content: "";
  display: inline-block;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  text-align: center;
  line-height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(34, 34, 34, 0.8);
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  display: none;
}
.head__wrap.open {
  z-index: 90;
  left: 0;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.head__wrap.open .head__inner {
  right: 0;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.head__wrap.open:after {
  display: block;
}
.head__inner {
  width: 80vw;
  background-color: #fff;
  z-index: 101;
  position: fixed;
  top: 0;
  right: -200%;
  height: calc(var(--vh, 1vh) * 100);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.head__inner .btn_logout {
  margin: auto 30px 20px;
  border-radius: 50px;
  border: 1px solid #D3D5DE;
  background: #E1E3EB;
  color: #767678;
}
.head__inner .btn_login {
  margin: auto 30px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 5px;
}
.head__my {
  background-color: #EDF3F1;
  padding: 20px;
  border-top: 1px solid #D0E0D4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  margin-top: 60px;
}
.head__link img {
  width: 24px;
  height: 24px;
}
.head__link_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  gap: 8px;
  padding-inline: 20px;
  height: 60px;
  position: fixed;
  z-index: 100;
  right: 0;
}
.head__link_area.open .menu {
  display: none;
}
.head__link_area.open .close {
  display: block;
}
.head__link.close {
  display: none;
}
.head__link.close img {
  width: 13px;
  height: 13px;
}
.head__link.menu img {
  width: 18px;
  height: 15px;
}
.head__link.lang {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 4px;
}
.head.open .head__link_area {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 102;
  height: 60px;
}

.head__lang {
  position: relative;
}
.head__lang:hover .head__lang_layer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
}
.head__lang_layer {
  background: #fff;
  position: absolute;
  border: 1px solid #E1E3EB;
  padding: 16px 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  border-radius: 8px;
  width: 64px;
  gap: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}
.head__lang_menu {
  color: #666;
  font-weight: bold;
}
.head__lang_menu:hover {
  color: #02A267;
}

[class^=head] .com_btn {
  box-shadow: none !important;
}

.gnb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  padding: 50px 20px;
  gap: 35px;
}
.gnb__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  padding-inline: 7px;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
}
.gnb__menu:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 8px;
  height: 8px;
  border: solid #666;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  margin-left: auto;
}

.com_height_full {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  min-height: calc(var(--vh, 1vh) * 100);
}
.com_height_full .com_btn_wrap.bottom {
  margin-top: auto;
}

.footer {
  background-color: #fff;
  padding: 30px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  border-top: 1px solid #E1E3EB;
  gap: 15px;
  display: none;
}
.footer .links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  gap: 10px;
}
.footer .links .link {
  font-weight: 600;
  font-size: #565656;
  letter-spacing: -0.28px;
}
.footer .address li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  gap: 10px;
  color: #9A9A9A;
  letter-spacing: -0.28px;
  line-height: 1.3;
}

.numberOnly {
  text-align: right !important;
}

.com_point_txt {
  color: #02A267 !important;
}

.com_red_txt {
  color: #FC2929 !important;
}

.com_gray_txt {
  color: #B7B7B7 !important;
}

.com_sec_tit {
  font-size: 16px;
  font-weight: 700;
  margin-block: 15px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 5px;
}
.com_sec_tit.m_0 {
  margin-block: 0;
}
.com_sec_tit .sub {
  font-size: 13px;
}
.com_sec_tit__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 0;
}
.com_sec_tit__wrap + .com_t_bar__wrap.box {
  margin-top: 10px;
}

/*common input form*/
.com_input_sec {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  gap: 15px;
}
.com_center_wrap > .com_input_sec {
  padding-top: 20px;
}

.com_input_sec.type_row {
  gap: 10px;
}
.com_input_sec.type_row .com_divider {
  margin-block: 5px;
}
.com_input_sec.type_row .tit_field {
  white-space: nowrap;
  margin-right: 10px;
  width: 70px;
  margin-bottom: 0;
}
.com_input_sec.type_row .tit_field.top {
  align-self: flex-start;
  margin-top: 14px;
}
.com_input_sec.type_row .input_field {
  flex: 1;
}
.com_input_sec.type_row .input_field .com_chk {
  height: 44px;
}
.com_input_sec .error_txt {
  color: #FC2929;
  font-size: 12px;
  line-height: 1.5;
}
.com_input_sec .info_txt {
  margin-top: 5px;
  color: #666;
  font-size: 13px;
  line-height: 1.5;
}
.com_input_sec .info_txt.bullet .item {
  padding-left: 15px;
}
.com_input_sec .info_txt.bullet .item:before {
  content: "*";
  margin-left: -10px;
  padding-right: 5px;
}
.com_input_sec .group_tit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  color: #222;
  font-size: 15px;
  font-weight: 700;
}
.com_input_sec .group_tit .com_red_txt, .com_input_sec .group_tit .com_gray_txt {
  font-size: 13px;
  font-weight: 400;
}
.com_input_sec .tit_field {
  font-size: 14px;
  font-weight: 400;
  color: #222;
  margin-bottom: 10px;
}
.com_input_sec .input_field:not(.com_flex_row) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  gap: 6px;
}
.com_input_sec .input_field .com_btn {
  box-shadow: none !important;
  min-width: 90px;
}
.com_input_sec .input_field input[type=text],
.com_input_sec .input_field input[type=password],
.com_input_sec .input_field input[type=number],
.com_input_sec .input_field input[type=date],
.com_input_sec .input_field input[type=email] {
  width: 100%;
}
.com_input_sec .disabled .tit_field {
  color: #B7B7B7;
}

.com_flex_row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 5px;
}
.com_flex_row .tit_field {
  margin-right: 0 !important;
}

.com_divider {
  width: 100%;
  min-height: 1px;
  height: 1px;
  border: none;
  border-bottom: 1px solid #E1E3EB;
}

.com_input_unit {
  position: relative;
}
.com_input_unit .tit {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
}
.com_input_unit .tit + .input {
  padding-left: 40px;
}
.com_input_unit .unit {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.com_input_unit .input {
  padding-right: 35px;
  padding-left: 5px;
}
.disabled .com_input_unit {
  color: #B7B7B7;
}

.com_add_file {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.com_add_file .btn_del_thumb {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background: url("../img/icon_del.png") #e8e8e8 center center no-repeat;
  background-size: 9px auto;
  font-size: 0;
  width: 22px;
  height: 22px;
  border-radius: 100%;
}
.com_add_file .blind {
  display: none;
}
.com_add_file .input_form {
  flex: 1; /* input_form이 남은 공간을 꽉 채울 수 있도록 설정 */
}
.com_add_file .input_form .input {
  border: 1px solid #ddd;
  margin-left: 0;
  padding-inline: 10px;
}
.com_add_file .input_form + .com_btn {
  min-height: 44px;
}
@media screen and (min-width: 575.9px) {
  .com_add_file .input_form + .com_btn {
    margin-left: 10px;
  }
}
@media screen and (max-width: 575.9px) {
  .com_add_file .input_form + .com_btn {
    margin: 0 0 0 10px;
  }
}
.com_add_file .com_btn {
  flex: 0; /* com_btn이 필요한 만큼의 공간만 차지하도록 설정 */
}
.com_add_file .com_file_thumb {
  position: relative;
  display: none;
  margin-top: 5px;
  width: 100%; /* 가로 크기를 100%로 설정하여 줄바꿈이 되도록 함 */
}
.com_add_file .com_file_thumb_img {
  position: relative;
  z-index: 0;
  display: inline-block;
}
.com_add_file .com_file_thumb .preview_img {
  width: 120px;
}
.com_add_file_img {
  position: relative;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 575.9px) {
  .com_add_file_img + .com_add_file {
    margin-top: 25px;
  }
}
.com_add_file_img .btn_del_img {
  background: url("../img/icon_del.png") #e8e8e8 center center no-repeat;
  background-size: 9px auto;
  font-size: 0;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  display: inline-block;
}
.com_add_file_img .img {
  position: relative;
  max-width: 200px;
  z-index: 0;
  width: 120px;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.com_add_file_img .add_file_value {
  display: inline-block;
  margin-right: 5px;
  cursor: pointer;
}
.com_add_file_img .btn_btm {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 5px;
}
.com_add_file + .com_add_file {
  margin-top: 10px;
}

.com_date_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 5px;
}

.textarea.m {
  min-height: 180px;
}
.textarea.l {
  min-height: 230px;
}
.textarea.xl {
  min-height: 340px;
}

.com_table {
  table-layout: fixed;
  border-bottom: 1px solid #E1E3EB;
}
.com_table th {
  background-color: #F3F3F8;
  line-height: 1;
}
.com_table th, .com_table td {
  border-block: 1px solid #E1E3EB;
  padding: 8px 5px;
  text-align: center;
  font-size: 13px;
}
.com_table tr:last-child th, .com_table tr:last-child td {
  border-bottom: none;
}
.com_table td:last-child, .com_table th:last-child {
  border-right: none;
}
.com_table__scroll {
  max-height: none;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-face-color: transparent; /*스크롤*/
  scrollbar-highlight-color: #e2e8f0; /*하이라이트*/
  scrollbar-3dlight-color: transparent; /*왼쪽외곽음영*/
  scrollbar-darkshadow-color: transparent; /*오른쪽외곽음영*/
  scrollbar-shadow-color: transparent; /*오른쪽 안쪽음영*/
  scrollbar-arrow-color: transparent; /*화살*/
  scrollbar-track-color: transparent; /*스크롤영역*/
  width: 100%;
  padding-bottom: 5px;
}
.com_table__scroll::-webkit-scrollbar { /*스크롤바*/
  width: 5px;
  height: 5px;
}
.com_table__scroll::-webkit-scrollbar-button { /*스크롤바 버튼(아래 위 화살표)*/
  width: 0px;
  height: 0px;
}
.com_table__scroll::-webkit-scrollbar-thumb { /*스크롤바 핸들*/
  background-color: #e2e8f0;
  background-clip: padding-box;
  border-radius: 5px;
}
.com_table__scroll::-webkit-scrollbar-track { /*스크롤바 진행줄*/
  background-color: none;
}
.com_table__scroll::-webkit-scrollbar-track-piece { /*진행줄에서 핸들로 덮이지 않은 영역 */
  background-color: none;
}
.dark .com_table__scroll {
  scrollbar-highlight-color: #6b6b6b;
}
.dark .com_table__scroll::-webkit-scrollbar-thumb { /*스크롤바 핸들*/
  background-color: #6b6b6b;
}
.dark .com_table__scroll::-webkit-scrollbar-track-piece { /*진행줄에서 핸들로 덮이지 않은 영역 */
  background-color: #6b6b6b;
}
.com_table__scroll .total {
  position: sticky;
  left: 0;
  background-color: #F3F3F8;
  border-bottom: 1px solid #E1E3EB;
  text-align: right;
  padding: 8px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  gap: 10px;
}
.com_table__scroll .total .tit {
  font-size: 13px;
}
.com_table__scroll .total .price {
  font-size: 14px;
  font-weight: 700;
  color: #02A267;
}

/*!스크롤*/
.scroll {
  scrollbar-face-color: #d5d3d7;
  /*스크롤*/
  scrollbar-highlight-color: #d5d3d7;
  /*하이라이트*/
  scrollbar-3dlight-color: #d5d3d7;
  /*왼쪽외곽음영*/
  scrollbar-darkshadow-color: #d5d3d7;
  /*오른쪽외곽음영*/
  scrollbar-shadow-color: #d5d3d7;
  /*오른쪽 안쪽음영*/
  scrollbar-arrow-color: #d5d3d7;
  /*화살*/
  scrollbar-track-color: rgba(255, 255, 255, 0);
  /*스크롤영역*/
  overflow: auto;
  /*스크롤바*/
  /*스크롤바 버튼(아래 위 화살표)*/
  /*스크롤바 핸들*/
  /*스크롤바 진행줄*/
  /*진행줄에서 핸들로 덮이지 않은 영역 */
  /*상하 좌우 스크롤이 만나는 공간*/
}
.scroll::-webkit-scrollbar {
  opacity: 0;
  width: 15px;
  height: 15px;
}
.scroll::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
  border: 4px solid transparent;
  border-radius: 10px;
}
.scroll::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0);
}
.scroll::-webkit-scrollbar-track-piece {
  background-color: rgba(255, 255, 255, 0);
}
.scroll::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.08);
}

.scroll_lock {
  touch-action: none;
  overflow-y: hidden !important;
}
.scroll_lock body {
  touch-action: none;
  overflow-y: hidden !important;
}

.com_toggle_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}
.com_toggle_list .item {
  border: 1px solid #E1E3EB;
  border-radius: 15px;
  background-color: #fff;
}
.com_toggle_list .item .toggle_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  gap: 7px;
  padding: 20px 15px;
}
.com_toggle_list .item .toggle_head .count {
  background-color: #E1E3EB;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #666;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  border-radius: 20px;
  flex: 0 0 auto;
}
.com_toggle_list .item .toggle_head .tit {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.com_toggle_list .item .toggle_head .btn_open {
  margin-left: auto;
  transition: 0.15s;
}
.com_toggle_list .item .toggle_body {
  position: relative;
  padding: 0 15px 20px 45px;
  line-height: 1.5;
  overflow: hidden;
  height: 0;
  padding-block: 0;
  transition: 0.15s;
}
.com_toggle_list .item .toggle_body .btn_edit {
  display: inline-flex;
  margin-left: auto;
  color: #02A267;
  border-bottom: 1px solid #02A267;
  float: right;
}
.com_toggle_list .item.active {
  border: 2px solid #02A267;
}
.com_toggle_list .item.active .toggle_head {
  padding-bottom: 10px;
}
.com_toggle_list .item.active .toggle_head .tit {
  font-size: 16px;
  font-weight: 700;
  white-space: normal;
}
.com_toggle_list .item.active .toggle_head .count {
  background-color: #02A267;
  color: #fff;
}
.com_toggle_list .item.active .toggle_head .btn_open {
  transform: rotate(180deg);
}
.com_toggle_list .item.active .toggle_head .btn_open .svg_icon.icon_toggle.gray {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none'%3E%3Cpath stroke='%2302A267' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.75 7.083 10 13.75l6.25-6.667'/%3E%3C/svg%3E");
}
.com_toggle_list .item.active .toggle_body {
  height: auto;
  padding-block: 0 20px;
}

.com_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  gap: 9px;
  padding-top: 20px;
}
.com_list__top {
  padding-top: 20px;
}
.com_list__top + .com_list {
  padding-top: 10px;
}
.com_list .item {
  border-radius: 10px;
  background: #FFF;
  padding: 15px 50px 15px 20px;
  position: relative;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 5px;
}
.com_list .item:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  border: solid #A9A9A9;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -5px;
}
.com_list .item .date_field {
  font-size: 12px;
  color: #666;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
}
.com_list .item .tit_field {
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  display: block;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.com_list .item .status {
  border-radius: 5px;
  height: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  padding-inline: 5px;
  font-size: 12px;
  margin-left: 10px;
}
.com_list .item .status.off {
  background-color: #E2F1E9;
  color: #02A267;
}
.com_list .item .status.on {
  background-color: #FFDADA;
  color: #FC2929;
}
.com_list .item .new {
  border-radius: 5px;
  height: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  padding-inline: 5px;
  font-size: 12px;
  margin-left: 10px;
  background-color: #E2F1E9;
  color: #02A267;
}

.com_detail .detail_info {
  padding: 15px 20px 20px;
  background-color: #edf3f1;
}
.com_detail .detail_info .info_area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  gap: 10px;
}
.com_detail .detail_info .info_area .info {
  font-size: 12px;
  color: #666;
}
.com_detail .detail_info .info_area .info.com_point_txt {
  font-size: 13px;
  font-weight: 700;
}
.com_detail .detail_info .tit {
  font-size: 16px;
  font-weight: 700;
  margin-top: 5px;
}
.com_detail .detail_contents {
  padding: 20px;
  height: 437px;
  line-height: 1.7;
}
.com_detail .detail_contents.answer {
  height: auto;
  border-radius: 5px;
  background-color: #edf3f1;
  padding: 15px;
}
.com_detail.answer {
  padding: 0 20px 20px;
  border-top: 1px solid #E1E3EB;
}

.com_total {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 15px;
  line-height: initial;
}
.com_total .price {
  font-size: 18px;
  font-weight: 700;
  color: #02A267;
}
.com_total.type_box {
  border-radius: 5px;
  border: 1px solid #E1E3EB;
  background: #F3F3F8;
  border-radius: 5px;
  font-weight: 400;
  margin-top: 5px;
}
.com_total.type_box .price {
  font-size: 14px;
}