@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");
* {
  position: relative;
  font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-optical-sizing: auto;
  word-break: keep-all;
}

html,
body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #E0E0E0;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C5C5C5;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h4 {
  font-size: 1.2em;
}

div {
  position: relative;
  box-sizing: border-box;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
}

img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wrap {
  width: 1176px;
  margin: auto;
  padding: 0 40px;
  box-sizing: content-box;
}

.red {
  color: red !important;
}

.none {
  display: none !important;
}

.r16 {
  border-radius: 16px;
}

.r8 {
  border-radius: 8px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 10px;
  background: #F9F9F9;
  border-radius: 10px;
  font-size: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
.button:hover {
  background: #40BE00;
  color: #fff;
}
.button.green {
  background: #40BE00;
  color: #fff;
}
.button.green:hover {
  background: #3DAE2B;
}
.button.cancel {
  background: #F9F9F9;
  color: #262626;
}
.button.cancel:hover {
  background: #E0E0E0;
}
.button img {
  width: 24px;
}

.center {
  text-align: center;
}

/* Form */
.inputbox input {
  background: #fff;
  color: #262626;
  border-radius: 10px;
  border: 1px #E0E0E0 solid;
  font-size: 18px;
  padding: 12px 64px 12px 16px;
  width: 100%;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
}
.inputbox input::-moz-placeholder {
  color: #C5C5C5;
}
.inputbox input::placeholder {
  color: #C5C5C5;
}
.inputbox input:focus {
  border-color: #40BE00;
  box-shadow: 0 0 10px 0 rgba(64, 190, 0, 0.5);
}
.inputbox input:-moz-read-only {
  background: #F9F9F9;
  color: #C5C5C5;
  cursor: not-allowed;
}
.inputbox input:read-only {
  background: #F9F9F9;
  color: #C5C5C5;
  cursor: not-allowed;
}
.inputbox button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.inputbox button.hidden {
  filter: saturate(0);
  opacity: 0.5;
}
.inputbox .icon {
  width: 24px;
}
.inputbox.flex {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.inputbox.flex input {
  flex: 1;
}
.inputbox.flex .code {
  width: 30%;
}
.inputbox.flex .code .c_code {
  background: #fff;
  color: #262626;
  border-radius: 10px;
  border: 1px #E0E0E0 solid;
  font-size: 18px;
  padding: 16px 64px 16px 16px;
  width: 100%;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
  background: url("../img/icons/ico_selectbox.png") center right 16px no-repeat;
}
.inputbox.flex .code .c_code.readonly {
  background: #F9F9F9;
  color: #C5C5C5;
  cursor: not-allowed;
}
.inputbox.flex .code .country_selector {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 240px;
  width: calc(100vw - 20px);
  background: #fff;
  border-radius: 10px;
  border: 1px #E0E0E0 solid;
  flex-direction: column;
  overflow-y: auto;
  max-height: 240px;
  z-index: 1000;
}
.inputbox.flex .code .country_selector.active {
  display: flex;
}
.inputbox.flex .code .country_selector button {
  position: relative;
  right: unset;
  top: unset;
  transform: none;
  width: 100%;
  text-align: left;
  padding: 8px;
}
.inputbox.flex .code .country_selector button:hover {
  background: #F9F9F9;
}

input[type=checkbox],
input[type=radio] {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  transition: all 0.2s;
  cursor: pointer;
  margin: 0 !important;
  filter: saturate(0);
  opacity: 0.2;
}
input[type=checkbox]:hover,
input[type=radio]:hover {
  opacity: 0.5;
}
input[type=checkbox]:checked,
input[type=radio]:checked {
  filter: saturate(1);
  opacity: 1;
}

input[type=checkbox] {
  background: url("../img/icons/checkbox.png") center no-repeat;
  background-size: cover;
}
input[type=checkbox]:checked {
  background: url("../img/icons/checkbox_on.png") center no-repeat;
}

input[type=radio] {
  background: url("../img/icons/radio.png") center no-repeat;
  background-size: cover;
}
input[type=radio]:checked {
  background: url("../img/icons/radio_on.png") center no-repeat;
}

/*Header*/
#header {
  position: relative;
  z-index: 100;
  height: 100px;
  top: 0;
  border-bottom: 1px #F9F9F9 solid;
  background: #fff;
  box-shadow: 0rem 0rem 0.5rem 0rem rgba(0, 0, 0, 0.1);
}
#header .wrap {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .logo img {
  height: 58px;
}
#header .gnb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#header .gnb ul {
  display: flex;
  gap: 80px;
}
#header .gnb ul li a {
  font-size: 18px;
  font-weight: 700;
  color: #262626;
}
#header .gnb ul li a:hover {
  color: #40BE00;
}
#header .gnb ul li.active a {
  color: #40BE00;
}
#header .membership {
  height: 40px;
  display: flex;
  gap: 16px;
}
#header .membership .button {
  font-weight: 700;
  color: #40BE00;
  padding: 8px 24px;
}
#header .membership .button:hover {
  color: #fff;
}
#header .membership .button:hover .icon {
  fill: #fff;
}
#header .membership .member {
  display: none;
}
#header .membership .member .dropdown {
  opacity: 0;
  position: absolute;
  top: 90%;
  width: 100%;
  transition: all 0.2s;
  filter: drop-shadow(0px 0 5px rgba(0, 0, 0, 0.1));
  pointer-events: none;
}
#header .membership .member .dropdown .function {
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 16px;
  margin-top: 5px;
  gap: 8px;
}
#header .membership .member .dropdown a {
  color: #C5C5C5;
}
#header .membership .member .dropdown a:hover {
  color: #40BE00;
}
#header .membership .member .dropdown::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: translateX(-50%) rotate(45deg);
}
#header .membership .member:hover .dropdown {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
}
#header .membership.signed .member {
  display: flex;
}
#header .membership.signed .signin {
  display: none;
}
#header .btn_menu {
  display: none;
}

/*Footer*/
footer {
  background: #262626;
  padding: 40px 0;
  color: #999;
}
footer .wrap {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
footer .wrap .logo_footer {
  height: 28px;
}
footer .info_footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .company_info {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .company_info .divider {
  color: #555;
}
footer .contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .contact li {
  line-height: 1.4;
}
footer .contact .label {
  color: #ccc;
  display: block;
  margin-bottom: 2px;
}
footer .contact .address,
footer .contact .tel {
  margin: 0;
  color: #999;
}
footer .contact .tel {
  color: #777;
}
footer .copyright {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Modal */
.modal_container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(2px);
  backdrop-filter: grayscale(100%);
}
.modal_container.active {
  display: flex;
}
.modal_container .modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 960px;
  font-size: 18px;
  margin: 10px;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal_container .modal h4 {
  font-size: 1.4em;
}
.modal_container .modal p {
  margin-bottom: 40px;
}
.modal_container .modal .button {
  font-weight: 700;
  font-size: 20px;
  padding: 16px 32px;
}
.modal_container .modal.center .button {
  width: 100%;
}
.modal_container .modal.terms p {
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
}
.modal_container .change_form {
  width: calc(100vw - 60px);
  max-width: 640px;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .wrap {
    padding: 0 20px;
    width: calc(100% - 40px);
  }
  #header .gnb ul {
    gap: 40px;
  }
  #header .gnb ul li a {
    font-size: 16px;
  }
  /*Footer*/
  footer {
    padding: 40px 0;
  }
  footer .wrap {
    flex-direction: column;
    gap: 20px;
    font-size: 14px;
  }
  footer .wrap .logo_footer {
    height: auto;
    width: 200px;
  }
}
@media (max-width: 768px) {
  /*Header - mobile*/
  #header {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 64px;
    top: 0;
  }
  #header .wrap {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
  }
  #header .wrap.expanded {
    height: 100dvh;
  }
  #header .wrap.expanded .gnb {
    display: block;
    left: 50%;
    top: 100px;
    transform: translateX(-50%);
  }
  #header .wrap.expanded .gnb ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  #header .wrap.expanded .gnb ul li a {
    font-size: 24px;
  }
  #header .wrap.expanded .membership {
    display: flex;
  }
  #header .logo {
    position: absolute;
    z-index: 10;
    top: 20px;
  }
  #header .logo img {
    height: 40px;
  }
  #header .gnb {
    display: none;
  }
  #header .membership {
    display: none;
    position: absolute;
    bottom: 20px;
    width: calc(100% - 40px);
  }
  #header .membership .button {
    width: 100%;
  }
  #header .membership .button:hover {
    color: #40BE00;
    background: #F9F9F9;
  }
  #header .membership .button:hover .icon {
    fill: #40BE00;
  }
  #header .membership .member {
    flex-wrap: wrap;
    transform: translateY(-60px);
  }
  #header .membership .member .dropdown {
    opacity: 1;
    position: absolute;
    top: 40px;
    width: 100%;
    transition: none;
    pointer-events: auto;
  }
  #header .membership .member .dropdown .function {
    flex-direction: row;
    padding: 16px;
    margin-top: 5px;
    gap: 10px;
  }
  #header .membership .member .dropdown a {
    width: calc(50% - 5px);
  }
  #header .membership .member:hover .dropdown {
    top: 40px;
  }
  #header .membership .signin {
    background: #40BE00;
    color: #fff;
  }
  #header .btn_menu {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
  }
}
@media (max-width: 767px) {
  /* Form */
  .inputbox.flex {
    flex-wrap: wrap;
    align-items: stretch;
  }
  .inputbox.flex .code {
    width: 40%;
  }
  .inputbox.flex .code .c_code {
    height: 100%;
    padding: 12px 60px 12px 12px;
    background: url("../img/icons/ico_selectbox.png") center right 12px no-repeat;
  }
  .inputbox.flex .code .country_selector {
    max-width: 80vw;
    width: calc(100vw - 20px);
  }
  .inputbox.flex .code .country_selector button {
    font-size: 14px;
  }
  .inputbox.flex .button.green {
    width: 100%;
  }
  input[type=checkbox],
  input[type=radio] {
    width: 20px;
    height: 20px;
  }
  /*Footer*/
  footer .wrap .logo_footer {
    height: auto;
    width: 200px;
    max-width: 50%;
  }
  footer .info_footer {
    font-size: 13px;
  }
  footer .copyright {
    font-size: 12px;
  }
  /* Modal */
  .modal_container .modal {
    padding: 20px;
    font-size: 14px;
  }
  .modal_container .modal p {
    margin-bottom: 20px;
  }
  .modal_container .modal .button {
    font-weight: 700;
    font-size: 16px;
    padding: 12px 24px;
  }
}/*# sourceMappingURL=common.css.map */