@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent; /* 모바일 터치 하이라이트 제거 */
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: vertical;
  cursor: pointer;
}

/* Base */
html {
  font-size: 16px;
}

html, body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Layout */
body.is-locked {
  overflow: hidden;
  touch-action: none;
  position: fixed;
  width: 100%;
}

/* Content */
main {
  padding-top: 100px;
  box-sizing: border-box;
}
@media (max-width: 1187px) {
  main {
    padding-top: 58px;
  }
}

/* Header */
.header {
  z-index: 1000 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E8E8E8;
  box-sizing: border-box;
}
@media (max-width: 1187px) {
  .header {
    height: 58px;
  }
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1140px;
  margin: 0 auto;
}
@media (max-width: 1187px) {
  .header__inner {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }
}
@media (max-width: 1187px) {
  .header__inner {
    justify-content: normal;
  }
}
.header h1 img {
  height: 46px;
  vertical-align: middle;
}
@media (max-width: 1187px) {
  .header h1 img {
    height: 26px;
  }
}

.gnb--global ul {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-left: 32px;
}
@media (max-width: 1187px) {
  .gnb--global ul {
    gap: 17px;
    margin-left: 8px;
  }
}
.gnb--global ul li {
  position: relative;
}
.gnb--global ul li:first-child::before {
  display: none;
}
.gnb--global ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  display: block;
  width: 2px;
  height: 32px;
  background: #D9D9D9;
}
@media (max-width: 1187px) {
  .gnb--global ul li::before {
    left: -8.5px;
    width: 1px;
    height: 18px;
  }
}
.gnb--global ul li a {
  color: #1E1E1E;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1187px) {
  .gnb--global ul li a {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
  }
}
.gnb--global ul li img {
  height: 32px;
}
@media (max-width: 1187px) {
  .gnb--global ul li img {
    height: 16px;
  }
}

.gnb-toggle {
  z-index: 1100 !important;
  display: none;
  position: fixed;
  top: 19px;
  right: 28px;
  width: 24px;
  height: 21px;
}
@media (max-width: 1187px) {
  .gnb-toggle {
    display: block;
  }
}
.gnb-toggle span, .gnb-toggle::before, .gnb-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  height: 3px;
  background: #1E1E1E;
  transition: all 0.3s cubic-bezier(0.93, 0.635, 0.65, 0.97);
  border-radius: 3px;
}
.gnb-toggle::before {
  width: 21px;
}
.gnb-toggle::after {
  width: 16px;
}
.gnb-toggle span {
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.gnb-toggle::before {
  top: 0;
}
.gnb-toggle::after {
  bottom: 0;
}
.gnb-toggle.active span {
  opacity: 0;
}
.gnb-toggle.active::before, .gnb-toggle.active::after {
  width: 31px;
}
.gnb-toggle.active::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.gnb-toggle.active::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.gnb--local {
  margin-left: auto;
}
@media (max-width: 1187px) {
  .gnb--local {
    z-index: 1200 !important;
    position: fixed;
    top: 58px;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    transition: right 0.2s cubic-bezier(0.93, 0.635, 0.65, 0.97);
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.4);
  }
  .gnb--local.is-active {
    right: 0;
  }
}
.gnb--local ul {
  display: flex;
  gap: 8px;
}
@media (max-width: 1187px) {
  .gnb--local ul {
    gap: 33px;
    padding: 32px;
    background-color: #222;
    flex-direction: column;
  }
}
@media (max-width: 1187px) and (max-width: 1187px) {
  .gnb--local ul li {
    position: relative;
  }
  .gnb--local ul li:first-child:before {
    display: none;
  }
  .gnb--local ul li::before {
    content: "";
    position: absolute;
    top: -16.5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1490196078);
  }
}
@media (max-width: 1187px) {
  .gnb--local ul li a, .gnb--local ul li button {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02rem;
    padding: 0;
    display: block;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: left;
  }
}

/* Footer */
.footer__inner {
  width: 1140px;
  margin: 0 auto;
}
@media (max-width: 1187px) {
  .footer__inner {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  height: 72px;
}
@media (max-width: 1187px) {
  .footer__top {
    display: block;
    height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.footer__top .footer__menu {
  display: flex;
  gap: 48px;
}
.footer__top .footer__menu li a {
  color: #767676;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02rem;
  font-weight: 600;
}
.footer__top .footer__menu li:last-child a {
  color: #1E1E1E;
}
.footer__top .footer__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: right;
}
@media (max-width: 1187px) {
  .footer__top .footer__contact {
    margin-top: 12px;
  }
}
.footer__top .footer__contact span {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02rem;
  font-weight: 600;
}
.footer__top .footer__contact a {
  color: #F47820;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.015rem;
  font-weight: 600;
}

.footer__bottom-inner {
  position: relative;
  padding-top: 32px;
  padding-bottom: 32px;
}
.footer__bottom-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: #E8E8E8;
  transform: translateX(-50%);
}
.footer__bottom-inner img {
  height: 32px;
}
.footer__bottom-inner .footer__info {
  margin-top: 32px;
  display: flex;
  align-items: center;
}
@media (max-width: 1187px) {
  .footer__bottom-inner .footer__info {
    margin-top: 16px;
    display: block;
    width: 100%;
  }
}
.footer__bottom-inner .footer__info dt {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02rem;
  color: #1E1E1E;
}
.footer__bottom-inner .footer__info dd {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.015rem;
  margin-left: 16px;
  color: #555;
}
.footer__bottom-inner .footer__info dd + dt {
  margin-left: 32px;
}
@media (max-width: 1187px) {
  .footer__bottom-inner .footer__info {
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: 12px;
    column-gap: 16px;
  }
  .footer__bottom-inner .footer__info dt,
  .footer__bottom-inner .footer__info dd {
    margin: 0 !important;
  }
}
.footer__bottom-inner .footer__contact-phone {
  position: absolute;
  top: 87px;
  right: 0;
  font-weight: 700;
  font-size: 30px;
  line-height: 42px;
  letter-spacing: -0.0125rem;
}
@media (max-width: 1187px) {
  .footer__bottom-inner .footer__contact-phone {
    margin-top: 5px;
    position: static;
    display: block;
  }
}
.footer__bottom-inner .footer__copyright {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  color: #555;
}

.inquiry-layer {
  z-index: 1300 !important;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100vh - 100px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 62px;
  background-color: rgba(0, 0, 0, 0.4);
  box-sizing: border-box;
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  text-align: left;
}
@media (max-width: 1187px) {
  .inquiry-layer {
    top: 58px;
    height: calc(100vh - 58px);
    padding: 48px 24px;
  }
}
.inquiry-layer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.inquiry-popup {
  position: relative;
  width: 640px;
  max-width: 100%;
  max-height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 48px 32px;
  box-sizing: border-box;
}
@media (max-width: 1187px) {
  .inquiry-popup {
    padding: 32px 16px;
  }
}
.inquiry-popup__header {
  position: sticky;
  top: 0;
  padding-right: 24px;
  padding-bottom: 16px;
  background: #fff;
  border-bottom: 1px solid #A8A8A8;
}
@media (max-width: 1187px) {
  .inquiry-popup__header {
    padding-right: 0;
    padding-bottom: 24px;
  }
}
.inquiry-popup__header p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-top: 8px;
  color: #A0A0A0;
  letter-spacing: -0.028px;
}
.inquiry-popup__title {
  font-size: 34px;
  line-height: 52px;
  color: #1E1E1E;
  font-weight: 700;
}
@media (max-width: 1187px) {
  .inquiry-popup__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
  }
}
.inquiry-popup__close {
  z-index: 1300 !important;
  position: absolute;
  top: 62px;
  right: 37px;
  width: 24px;
  height: 24px;
}
@media (max-width: 1187px) {
  .inquiry-popup__close {
    top: 40px;
    right: 21px;
    width: 15px;
    height: 16px;
  }
}
.inquiry-popup__close span, .inquiry-popup__close::before, .inquiry-popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 3px;
  background-color: #1E1E1E;
  transform-origin: center;
  border-radius: 3px;
}
@media (max-width: 1187px) {
  .inquiry-popup__close span, .inquiry-popup__close::before, .inquiry-popup__close::after {
    width: 20px;
    height: 2px;
    border-radius: 2px;
  }
}
.inquiry-popup__close span {
  display: none;
}
.inquiry-popup__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.inquiry-popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.inquiry-popup__content {
  overflow-y: auto;
}
.inquiry-popup__content .inquiry-form {
  padding: 16px 0;
}
.inquiry-popup__content fieldset {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 767px) {
  .inquiry-popup__content fieldset {
    grid-template-columns: 1fr;
  }
}
.inquiry-popup__content fieldset .form-field {
  display: flex;
  align-items: center;
  height: 32px;
  gap: 12px;
}
.inquiry-popup__content fieldset .form-field label {
  font-weight: 400;
}
.inquiry-popup__content fieldset .form-field input {
  vertical-align: middle;
}
.inquiry-popup__content fieldset .form-field input[type=text] {
  width: 104px;
}
@media (max-width: 767px) {
  .inquiry-popup__content fieldset .form-field input[type=text] {
    width: 10rem;
  }
}

.inquiry-popup__btn {
  display: block;
  border-top: 1px solid #A8A8A8;
  padding-top: 32px;
  text-align: center;
}
.inquiry-popup__btn .btn {
  width: 180px;
}

.btn {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  padding: calc(8px - 1.5px) calc(16px - 1.5px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  min-width: 115px;
  border: 1.5px solid #666;
  color: #000;
  box-sizing: border-box;
}
.btn--sm {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  padding: 0 calc(16px - 1.5px);
  height: 36px;
}
.btn--lg {
  padding: calc(12px - 1.5px) calc(16px - 1.5px);
}
.btn--grey {
  border-color: #BABABA;
  color: #999;
}
.btn--line {
  font-weight: 600;
  border-color: #F46709;
  color: #FA582F;
}
.btn--bg-acc {
  font-weight: 600;
  border-color: #FA582F;
  background-color: #FA582F;
  color: #fff;
}
.btn--bg-acc-reverse {
  font-weight: 600;
  border-color: #FA582F;
  background-color: #fff;
  color: #FA582F;
}
.btn-bottom-spacing {
  margin-bottom: 2rem;
}
.btn--bg-bk {
  font-weight: 600;
  border-color: #000;
  background-color: #000;
  color: #fff;
}

.btn--text {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #F47820;
}

.required::before {
  content: "* ";
  color: #FA582F;
}

.form--column {
  display: grid;
}
.form--column label {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.0125rem;
  font-weight: 700;
  text-align: left;
}
.form--column label + input,
.form--column label + textarea,
.form--column label + select {
  margin-top: 8px;
}
.form--column input + label,
.form--column textarea + label,
.form--column select + label {
  margin-top: 24px;
}
.form--row {
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 0;
  row-gap: 12px;
}
@media (max-width: 1187px) {
  .form--row {
    grid-template-columns: 1fr;
  }
  .form--row label {
    margin-bottom: 4px;
  }
}
.form--row label {
  align-self: center;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #1E1E1E;
}
.form--row input:not([type=checkbox]):not([type=radio]),
.form--row textarea,
.form--row select {
  width: 100%;
}

input:not([type=checkbox]):not([type=radio]),
textarea {
  padding: calc(8px - 1px) calc(22px - 1px);
  height: 36px;
  border: 1px solid #DCDADA;
  border-radius: 4px;
  color: #1E1E1E;
  background-color: #fff;
  resize: vertical;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 20px;
}
input:not([type=checkbox]):not([type=radio])::placeholder,
textarea::placeholder {
  color: #A0A0A0;
  opacity: 1;
}
input:not([type=checkbox]):not([type=radio])::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #A0A0A0;
}
input:not([type=checkbox]):not([type=radio]):-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #A0A0A0;
}
input:not([type=checkbox]):not([type=radio])::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #A0A0A0;
}
input:not([type=checkbox]):not([type=radio]):focus,
textarea:focus {
  border-color: #FA582F;
  outline: none;
}
input:not([type=checkbox]):not([type=radio]):disabled,
textarea:disabled {
  background-color: #F8F8F8;
  color: #DCDADA;
  cursor: not-allowed;
}
input:not([type=checkbox]):not([type=radio]):disabled::placeholder, input:not([type=checkbox]):not([type=radio]):disabled::-webkit-input-placeholder, input:not([type=checkbox]):not([type=radio]):disabled:-ms-input-placeholder, input:not([type=checkbox]):not([type=radio]):disabled::-ms-input-placeholder,
textarea:disabled::placeholder,
textarea:disabled::-webkit-input-placeholder,
textarea:disabled:-ms-input-placeholder,
textarea:disabled::-ms-input-placeholder {
  color: #BABABA;
}

textarea {
  background-color: #F8F8F8;
  height: 192px;
}

input[type=checkbox] {
  width: 16px;
  height: 16px;
  border: 1px solid #BABABA;
  border-radius: 4px;
  vertical-align: middle;
}
input[type=checkbox]:checked {
  border-color: #1D1B20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.5L5 9.5L13 1.5' stroke='%231D1B20' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
input[type=checkbox] + span, input[type=checkbox] + label {
  margin-left: 6px;
  font-weight: 400;
  vertical-align: middle;
}

input[type=radio] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #A9A8AA;
  border-radius: 100%;
}
input[type=radio]:checked {
  border-color: #1D1B20;
}
input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #1D1B20;
}
