@charset "UTF-8";
/*=================================================
    컬러
=================================================*/
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
/*=================================================
    컬러
=================================================*/
/*=================================================
    폰트
=================================================*/
/*=================================================
    미디어쿼리
=================================================*/
.fix-menu {
  position: fixed;
  right: 22px;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 99950;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  box-sizing: border-box;
}
.fix-menu * {
  pointer-events: auto;
}

.fix-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.fix-quick,
.fix-top,
.fix-ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fix-quick:hover,
.fix-top:hover,
.fix-ai:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}
.fix-quick:focus-visible,
.fix-top:focus-visible,
.fix-ai:focus-visible {
  outline: 2px solid rgba(235, 202, 109, 0.85);
  outline-offset: 2px;
}

.fix-quick {
  width: 72px;
  height: 72px;
  background: rgba(235, 202, 109, 0.88);
  color: #2c2721;
  gap: 2px;
  padding-bottom: 2px;
}

.fix-chat {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.fix-chat:hover {
  opacity: 0.92;
}
.fix-chat:focus-visible {
  outline: 2px solid rgba(235, 202, 109, 0.85);
  outline-offset: 2px;
  border-radius: 8px;
}
.fix-chat .fix-img {
  display: block;
  width: 78px;
  height: auto;
  object-fit: contain;
}

.fix-top {
  width: 51px;
  height: 51px;
  background: #3c3c3c;
  color: #fff;
}

.fix-ai {
  width: 56px;
  height: 56px;
  display: none;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #583c22;
  background-color: #ebca6d;
}

.fix-txt {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  letter-spacing: -0.02em;
}

.fix-chev--tog {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-135deg);
  margin-top: 4px;
}

.fix-menu.is-open .fix-quick .fix-chev--tog {
  transform: rotate(45deg);
  margin-top: 0;
}

.fix-chev--up {
  width: 12px;
  height: 12px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: 4px;
}

.fix-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  box-sizing: border-box;
}

.fix-drop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fix-drop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 72px;
  height: 72px;
  min-height: 0;
  margin: 0;
  padding: 10px 8px;
  border-radius: 50%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.88);
  border: 0.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #63593f;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.fix-drop-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}
.fix-drop-item:focus-visible {
  outline: 2px solid rgba(235, 202, 109, 0.85);
  outline-offset: 2px;
}

.fix-drop-ic {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  object-fit: contain;
}

.fix-drop-txt {
  display: block;
  font-size: 12px;
  font-weight: inherit;
  line-height: 1.15;
  letter-spacing: inherit;
}

.fix-menu.is-open .fix-drop {
  animation: fix-drop-in 0.22s ease;
}

@keyframes fix-drop-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fix-drop[hidden] {
  display: none !important;
}

@media screen and (max-width: 767.98px) {
  .fix-menu {
    right: 14px;
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
  .fix-ai {
    display: flex;
    width: 47px;
    height: 47px;
    margin-top: 10px;
    font-size: 20px;
    background-color: rgba(235, 202, 109, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .fix-chat .fix-img {
    width: 66px;
  }
  .fix-quick {
    width: 59px;
    height: 59px;
    background: rgba(255, 255, 255, 0.88);
    border: 0.5px solid rgba(255, 255, 255, 0.65);
    color: #2c2721;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .fix-txt {
    font-size: 12px;
  }
  .fix-drop-item {
    width: 56px;
    height: 56px;
    min-height: 0;
    padding: 8px 6px;
    gap: 4px;
  }
  .fix-drop-txt {
    font-size: 9px;
  }
  .fix-drop-ic {
    width: 22px;
    height: 22px;
  }
}
.quick-consult-float {
  position: fixed;
  z-index: 99940;
  box-sizing: border-box;
  pointer-events: none;
}
@media screen and (min-width: 992px) {
  .quick-consult-float {
    left: 50%;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    width: min(1420px, 100% - 50px * 2);
    max-width: calc(100% - 50px * 2);
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 991.98px) {
  .quick-consult-float {
    left: 0;
    right: 0;
    bottom: calc(env(safe-area-inset-bottom, 0px));
    transform: none;
    width: 100%;
    max-width: 100%;
  }
  .quick-consult-float.is-open {
    z-index: 100020;
  }
}
.quick-consult-float .quick-form {
  pointer-events: auto;
}

.quick-consult-trigger {
  display: none;
  pointer-events: auto;
  width: 100%;
  margin: 0;
  padding: 16px 20px 18px;
  border: 0;
  border-radius: 30px 30px 0 0;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #fff;
  box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.12);
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}
@media screen and (max-width: 991.98px) {
  .quick-consult-trigger {
    display: flex;
    visibility: visible;
    opacity: 1;
  }
}
.quick-consult-trigger:hover {
  background: #fafafa;
}
.quick-consult-trigger:focus-visible {
  outline: 2px solid rgba(235, 202, 109, 0.9);
  outline-offset: 2px;
}
.quick-consult-trigger__txt {
  font-size: 16px;
  font-weight: 600;
  color: #746b64;
  letter-spacing: -0.02em;
}
.quick-consult-trigger__ic {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #ebca6d;
  position: relative;
}
.quick-consult-trigger__ic::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  margin: -4px 0 0 -5px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

@media screen and (min-width: 992px) {
  .quick-consult-sheet {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
    z-index: 0;
    pointer-events: auto;
  }
}
@media screen and (max-width: 991.98px) {
  .quick-consult-sheet {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(12px, env(safe-area-inset-top, 0px)) 20px max(12px, env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    pointer-events: none;
    visibility: hidden;
    transition: visibility 0.3s step-end;
  }
}

@media screen and (max-width: 991.98px) {
  .quick-consult-float.is-open .quick-consult-trigger {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s step-end;
  }
}

@media screen and (max-width: 991.98px) {
  .quick-consult-float.is-open .quick-consult-sheet {
    pointer-events: auto;
    visibility: visible;
    transition: visibility 0s step-start;
  }
}

@media screen and (min-width: 992px) {
  .quick-consult-sheet__backdrop {
    display: none;
  }
}
@media screen and (max-width: 991.98px) {
  .quick-consult-sheet__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0, 0, 0, 0.52);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}

@media screen and (max-width: 991.98px) {
  .quick-consult-float.is-open .quick-consult-sheet__backdrop {
    opacity: 1;
  }
}

.quick-consult-sheet__panel {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  pointer-events: auto;
}
@media screen and (max-width: 991.98px) {
  .quick-consult-sheet__panel {
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(100%, 400px);
    max-width: 100%;
    max-height: min(85dvh, 100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 48px);
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: 4px;
    overflow: visible;
    overscroll-behavior: contain;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06), 0 24px 48px rgba(0, 0, 0, 0.16);
    opacity: 0;
    transform: scale(0.96) translate3d(0, 10px, 0);
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }
}

@media screen and (max-width: 991.98px) {
  .quick-consult-float.is-open .quick-consult-sheet__panel {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
    pointer-events: auto;
  }
}

@media screen and (min-width: 992px) {
  .quick-consult-sheet__scroll {
    display: contents;
  }
}
@media screen and (max-width: 991.98px) {
  .quick-consult-sheet__scroll {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
    isolation: isolate;
  }
}

@media screen and (min-width: 992px) {
  .quick-consult-sheet__scroll-inner {
    display: contents;
  }
}
@media screen and (max-width: 991.98px) {
  .quick-consult-sheet__scroll-inner {
    flex: 1 1 auto;
    align-self: stretch;
    min-height: 0;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .quick-consult-sheet__scroll-inner > .quick-consult-sheet__head {
    flex: 0 0 auto;
  }
  .quick-consult-sheet__scroll-inner > .quick-form {
    flex: 0 1 auto;
    min-height: 0;
  }
  .quick-consult-sheet__scroll-inner > .submit-btn--footer {
    flex: 0 0 auto;
  }
}

.quick-consult-sheet__close {
  display: none;
}
@media screen and (max-width: 991.98px) {
  .quick-consult-sheet__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 3;
    width: 33px;
    height: 33px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(44, 39, 33, 0.1);
    border-radius: 50%;
    background: #eceae8;
    color: #2c2721;
    line-height: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  .quick-consult-sheet__close .quick-consult-sheet__close-icon {
    display: block;
    width: 72%;
    height: 72%;
    flex-shrink: 0;
  }
}
.quick-consult-sheet__close:focus-visible {
  outline: 2px solid rgba(235, 202, 109, 0.9);
  outline-offset: 2px;
}

.quick-consult-sheet__head {
  display: none;
}
@media screen and (max-width: 991.98px) {
  .quick-consult-sheet__head {
    display: block;
    padding: 22px 20px 16px;
    background: #f9f6f2;
    border-radius: 4px 4px 0 0;
  }
}
.quick-consult-sheet__head p {
  margin: 0;
  text-align: center;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-size: 22px;
  line-height: 1.25;
  color: #2c2721;
}

.quick-consult-sheet__head-soft {
  font-weight: 400;
  color: #9d968e;
}

.quick-consult-sheet__head-bold {
  font-weight: 700;
  color: #2c2721;
}

.quick-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 40px);
  width: 100%;
  margin: 0;
  padding: 18px clamp(20px, 2.5vw, 40px);
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
}
@media screen and (max-width: 991.98px) {
  .quick-form {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 20px 23px;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
  }
}

@media screen and (max-width: 991.98px) {
  .quick-consult-sheet .quick-form > .quick-title {
    display: none;
  }
}
.quick-title {
  flex: 0 0 auto;
  margin: 0;
  padding-right: 8px;
}
.quick-title p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #746b64;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.quick-fields {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  flex: 1 1 auto;
  gap: clamp(12px, 1.5vw, 24px);
  min-width: 0;
}
@media screen and (max-width: 991.98px) {
  .quick-fields {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    flex: none;
    width: 100%;
  }
}

.quick-form .field {
  flex: 1 1 0;
  min-width: 0;
}
@media screen and (max-width: 991.98px) {
  .quick-form .field {
    flex: none;
    width: 100%;
  }
}
.quick-form .field--contact-type {
  flex: 0 1 150px;
}
@media screen and (max-width: 991.98px) {
  .quick-form .field--contact-type {
    flex: none;
  }
}
.quick-form .field--code {
  flex: 0 0 88px;
}
@media screen and (max-width: 991.98px) {
  .quick-form .field--code {
    flex: none;
  }
}
.quick-form .field--phone {
  flex: 1.25 1 0;
  min-width: 120px;
}
@media screen and (max-width: 991.98px) {
  .quick-form .field--phone {
    flex: none;
    min-width: 0;
  }
}
.quick-form .field--area {
  flex: 0 1 160px;
}
@media screen and (max-width: 991.98px) {
  .quick-form .field--area {
    flex: none;
  }
}
.quick-form .field input,
.quick-form .field select {
  display: block;
  width: 100%;
  margin: 0;
  padding: 8px 0 10px;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid #afafaf;
  border-radius: 0;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #2c2721;
  outline: none;
  transition: border-color 0.2s ease;
}
@media screen and (max-width: 991.98px) {
  .quick-form .field input,
  .quick-form .field select {
    padding: 12px 14px;
    border: 1px solid #e5e1dc;
    border-radius: 10px;
    border-bottom: 1px solid #e5e1dc;
    background: #fff;
    font-size: 14px;
  }
}
.quick-form .field input::placeholder,
.quick-form .field select::placeholder {
  color: #cbc6c2;
  font-weight: 400;
}
.quick-form .field input:hover,
.quick-form .field select:hover {
  border-bottom-color: #9d968e;
}
@media screen and (max-width: 991.98px) {
  .quick-form .field input:hover,
  .quick-form .field select:hover {
    border-color: #d4cec8;
  }
}
.quick-form .field input:focus,
.quick-form .field select:focus {
  border-bottom-color: #ebca6d;
}
@media screen and (max-width: 991.98px) {
  .quick-form .field input:focus,
  .quick-form .field select:focus {
    border-color: #ebca6d;
  }
}
.quick-form .field select {
  appearance: none;
  padding-right: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%239d968e' stroke-linecap='round' stroke-width='1.5' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
  cursor: pointer;
}
@media screen and (max-width: 991.98px) {
  .quick-form .field select {
    padding-right: 36px;
  }
}
.quick-form .field select:invalid {
  color: #9d968e;
}
.quick-form .field select option {
  color: #2c2721;
}

.quick-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  flex: 0 0 auto;
}
@media screen and (max-width: 991.98px) {
  .quick-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0;
    box-sizing: border-box;
  }
}

.quick-form .agree {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 4px;
  row-gap: 4px;
  align-items: center;
  margin: 0;
  cursor: pointer;
  user-select: none;
}
@media screen and (max-width: 991.98px) {
  .quick-form .agree {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
.quick-form .agree input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  pointer-events: none;
}
.quick-form .agree input:focus-visible + .agree-mark {
  outline: 2px solid rgba(235, 202, 109, 0.9);
  outline-offset: 2px;
}
.quick-form .agree input:checked + .agree-mark {
  border-color: #746b64;
  background: #746b64;
  box-shadow: inset 0 0 0 2px #fff;
}

.agree-mark {
  grid-column: 1;
  grid-row: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #b5aca5;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
}
@media screen and (max-width: 991.98px) {
  .agree-mark {
    flex: 0 0 auto;
    grid-column: auto;
    grid-row: auto;
  }
}

.agree-text__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #63593f;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 991.98px) {
  .agree-text__title {
    flex: 0 0 auto;
    grid-column: auto;
    grid-row: auto;
  }
}

.agree-text__sub {
  grid-column: 1/-1;
  grid-row: 2;
  margin: 0;
  padding: 0 0 2px;
  justify-self: start;
  width: fit-content;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #9d968e;
  letter-spacing: -0.01em;
  border-bottom: 1px solid #c4bcb4;
}
@media screen and (max-width: 991.98px) {
  .agree-text__sub {
    min-width: 0;
    margin-left: auto;
    grid-column: auto;
    grid-row: auto;
    text-align: right;
  }
}

.quick-consult-sheet .submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 14px 28px 14px 32px;
  border: 0;
  border-radius: 24px;
  background: #746b64;
  color: #fff;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.quick-consult-sheet .submit-btn__text--mo {
  display: none;
}
@media screen and (max-width: 991.98px) {
  .quick-consult-sheet .submit-btn__text--mo {
    display: inline;
    font-size: 13px;
  }
  .quick-consult-sheet .submit-btn__text--mo::after {
    content: " →";
    font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
    font-weight: 400;
  }
}
@media screen and (max-width: 991.98px) {
  .quick-consult-sheet .submit-btn__text--pc {
    display: none;
  }
}
.quick-consult-sheet .submit-btn__text--pc::after {
  content: "→";
  margin-left: 10px;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .quick-consult-sheet .submit-btn:hover {
    background: #1f1b18;
  }
}
@media screen and (max-width: 991.98px) {
  .quick-consult-sheet .submit-btn:hover {
    filter: brightness(1.05);
  }
}
.quick-consult-sheet .submit-btn:active {
  transform: scale(0.98);
}
.quick-consult-sheet .submit-btn:focus-visible {
  outline: 2px solid #ebca6d;
  outline-offset: 3px;
}

@media screen and (max-width: 991.98px) {
  .quick-form .submit-btn--bar {
    display: none !important;
  }
}

.quick-consult-sheet .submit-btn--footer {
  display: none;
}
@media screen and (max-width: 991.98px) {
  .quick-consult-sheet .submit-btn--footer {
    display: flex;
    width: 100%;
    flex-shrink: 0;
    margin: 0 0 -6px;
    padding: 18px 24px 24px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, #c9a86a 0%, #8b6b3e 100%);
    font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif;
    letter-spacing: 0.04em;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1.25;
    box-sizing: border-box;
    transform: translateZ(0);
    backface-visibility: hidden;
    box-shadow: 0 1px 0 #7a5c42;
  }
}

@media screen and (max-width: 991.98px) {
  html.quick-consult-sheet-open {
    overflow: hidden;
  }
}

#section01 {
  margin-top: 80px;
  padding: 0 !important;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  #section01 {
    margin-top: 50px;
  }
}
#section01 .swiper {
  overflow: visible;
}
#section01 .swiper .swiper-slide {
  position: relative;
  color: #fff;
  padding: 300px 0 298px;
  border-radius: 0 0 0 200px;
  overflow: hidden;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  min-height: 985px;
}
@media screen and (max-width: 1600px) {
  #section01 .swiper .swiper-slide {
    border-radius: 0 0 0 100px;
    padding: 200px 0 200px;
  }
}
@media screen and (max-width: 991.98px) {
  #section01 .swiper .swiper-slide {
    min-height: 526px;
    border-radius: 0;
    padding: 250px 0;
  }
}
@media screen and (max-width: 543.98px) {
  #section01 .swiper .swiper-slide {
    padding: 116px 0 120px;
  }
}
#section01 .swiper .swiper-slide p {
  font-size: 28px;
  font-weight: 800;
}
@media screen and (max-width: 991.98px) {
  #section01 .swiper .swiper-slide p {
    font-size: 14px;
  }
}
#section01 .swiper .swiper-slide h2 {
  font-size: 70px;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-weight: 700;
  margin: 24px 0;
}
@media screen and (max-width: 991.98px) {
  #section01 .swiper .swiper-slide h2 {
    font-size: 35px;
    line-height: 36px;
    margin: 13px 0 5px;
  }
}
#section01 .swiper .swiper-slide span {
  font-size: 19px;
  line-height: 29px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 991.98px) {
  #section01 .swiper .swiper-slide span {
    font-size: 13px;
    line-height: 18px;
  }
}
#section01 .swiper .swiper-slide a {
  display: flex;
  border: 1px solid #fff;
  padding: 25px 64px;
  border-radius: 37px;
  width: fit-content;
  margin-top: 40px;
  align-items: center;
  gap: 18px;
}
@media screen and (max-width: 991.98px) {
  #section01 .swiper .swiper-slide a {
    padding: 17px 35px;
    margin-top: 20px;
  }
}
#section01 .swiper .swiper-slide a p {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 991.98px) {
  #section01 .swiper .swiper-slide a p {
    font-size: 13px;
  }
}
#section01 .swiper .swiper-slide a img {
  width: 12px;
}
@media screen and (max-width: 991.98px) {
  #section01 .swiper .swiper-slide a img {
    width: 10px;
  }
}
#section01 .swiper .swiper-slide .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#section01 .swiper .swiper-slide .bg img {
  width: 100%;
  height: 100%;
}
#section01 .swiper .swiper-slide.is-empty {
  background: linear-gradient(125deg, #4a433c 0%, #353029 45%, #2c2721 100%);
}
#section01 [data-aos] {
  opacity: 0;
  visibility: hidden;
}
#section01 [data-aos].aos-animate {
  opacity: 1;
  visibility: visible;
}
#section01 .swiper-controller {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  transform: rotate(90deg);
}
@media screen and (max-width: 1800px) {
  #section01 .swiper-controller {
    left: 0;
  }
}
@media screen and (max-width: 1600px) {
  #section01 .swiper-controller {
    transform: rotate(0);
    width: 100%;
    top: 83%;
  }
}
@media screen and (max-width: 991.98px) {
  #section01 .swiper-controller {
    top: 90%;
  }
}
#section01 .swiper-controller .swiper-button-prev,
#section01 .swiper-controller .swiper-button-next {
  width: 9px;
  height: 14px;
  color: #fff;
  position: relative;
  top: 12px;
}
@media screen and (max-width: 991.98px) {
  #section01 .swiper-controller .swiper-button-prev,
  #section01 .swiper-controller .swiper-button-next {
    display: none;
  }
}
#section01 .swiper-controller .swiper-button-prev svg path,
#section01 .swiper-controller .swiper-button-next svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
#section01 .swiper-controller .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
#section01 .swiper-controller .swiper-pagination .swiper-pagination-bullet {
  background-color: #c2b7b1;
  opacity: 1;
  width: 9px;
  height: 9px;
  margin: 0;
}
@media screen and (max-width: 991.98px) {
  #section01 .swiper-controller .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
#section01 .swiper-controller .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ebca6d;
}

#section02 {
  padding: 70px 0 !important;
  max-width: 1520px;
  margin: 0 auto;
  /* scrollbar */
}
@media screen and (max-width: 991.98px) {
  #section02 {
    padding: 30px 0 !important;
  }
}
#section02 .area {
  position: relative;
}
#section02 .wrap {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#section02 .wrap::-webkit-scrollbar {
  display: none;
}
#section02 ul {
  display: flex;
  gap: 20px;
  width: max-content;
  justify-content: flex-start;
}
@media screen and (max-width: 991.98px) {
  #section02 ul {
    gap: 12px;
  }
}
#section02 ul li {
  border: 1px solid #cbc6c2;
  border-radius: 38px;
  padding: 10px;
  display: flex;
  gap: 9px;
  align-items: center;
  width: 265px;
  flex: 0 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 991.98px) {
  #section02 ul li {
    gap: 8px;
    width: 200px;
    padding: 8px;
  }
}
#section02 ul li img {
  flex: 0 0 auto;
}
@media screen and (max-width: 991.98px) {
  #section02 ul li img {
    width: 33px;
  }
}
#section02 ul li p {
  color: #746b64;
  font-size: 16px;
  line-height: 21px;
}
@media screen and (max-width: 991.98px) {
  #section02 ul li p {
    font-size: 12px;
    line-height: 14px;
  }
}
#section02 .scrollbar {
  margin-top: 34px;
  display: none;
}
@media screen and (max-width: 1520px) {
  #section02 .scrollbar {
    display: block;
    margin-top: 20px;
  }
}
#section02 .scrollbar-track {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
}
#section02 .scrollbar-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #9d968e;
}
#section02 .scrollbar-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 84px;
  height: 2px;
  border: 0;
  background-color: #9d968e;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}
#section02 .scrollbar-thumb img {
  width: 18px;
  transform: rotate(90deg);
}

#section03 {
  background-color: #f5f0ea;
}
#section03 .title-area {
  display: flex;
  gap: 13px;
  align-items: flex-end;
  margin-bottom: 40px;
}
@media screen and (max-width: 991.98px) {
  #section03 .title-area {
    margin-bottom: 20px;
  }
}
#section03 .title-area h3 {
  font-size: 60px;
  font-weight: 700;
  color: #2c2721;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 991.98px) {
  #section03 .title-area h3 {
    font-size: 30px;
  }
}
#section03 .title-area h3 span {
  color: #9d968e;
}
@media screen and (max-width: 991.98px) {
  #section03 .title-area a {
    display: none;
  }
}
#section03 .tab-area {
  position: relative;
}
#section03 .tab-area .step-tabs {
  position: absolute;
  right: 0;
  top: -75px;
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 1439.98px) {
  #section03 .tab-area .step-tabs {
    position: static;
    width: 100%;
    justify-content: space-around;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .step-tabs {
    gap: 0;
  }
}
@media screen and (max-width: 1439.98px) {
  #section03 .tab-area .step-tabs button {
    border-radius: 20px;
  }
}
#section03 .tab-area .step-tabs button.active {
  position: relative;
}
@media screen and (max-width: 1439.98px) {
  #section03 .tab-area .step-tabs button.active {
    background-color: #ebca6d;
  }
}
#section03 .tab-area .step-tabs button.active::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ebca6d;
  border-radius: 23px;
  content: "";
  width: 100px;
  height: 46px;
}
@media screen and (max-width: 1439.98px) {
  #section03 .tab-area .step-tabs button.active::after {
    display: none;
  }
}
#section03 .tab-area .step-tabs button.active p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .step-tabs button.active p {
    font-size: 13px;
  }
}
#section03 .tab-area .step-tabs button p {
  color: #9d968e;
  line-height: 1;
  font-size: 18px;
}
@media screen and (max-width: 1439.98px) {
  #section03 .tab-area .step-tabs button p {
    padding: 12px 17px;
  }
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .step-tabs button p {
    font-size: 13px;
  }
}
#section03 .tab-area .sec3-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  min-width: 0;
  align-items: start;
}
@media screen and (max-width: 1439.98px) {
  #section03 .tab-area .sec3-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .sec3-media {
    gap: 30px;
  }
}
#section03 .tab-area .sec3-media .sec3-pinned {
  min-width: 0;
  width: 100%;
}
#section03 .tab-area .sec3-media .step-contents {
  min-width: 0;
  width: 100%;
  position: relative;
}
#section03 .tab-area .sec3-media .left {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 1439.98px) {
  #section03 .tab-area .sec3-media .left {
    width: 100%;
  }
}
#section03 .tab-area .sec3-media .left img {
  width: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .sec3-media .left img {
    border-radius: 10px;
  }
}
#section03 .tab-area .sec3-media .left .text-area {
  position: absolute;
  bottom: 40px;
  left: 42px;
  width: 90%;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .sec3-media .left .text-area {
    left: 21px;
    bottom: 24px;
  }
}
#section03 .tab-area .sec3-media .left .text-area p {
  color: #ebca6d;
  font-size: 15px;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .sec3-media .left .text-area p {
    font-size: 12px;
  }
}
#section03 .tab-area .sec3-media .left .text-area h4 {
  font-size: 22px;
  color: #fff;
  line-height: 25px;
  font-weight: 700;
  margin: 17px 0;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .sec3-media .left .text-area h4 {
    font-size: 14px;
    line-height: 20px;
    margin: 14px 0 0;
  }
}
#section03 .tab-area .sec3-media .left .text-area span {
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .sec3-media .left .text-area span {
    display: none;
  }
}
#section03 .tab-area .sec3-media .left.is-empty {
  min-height: clamp(220px, 38vw, 400px);
  background: linear-gradient(155deg, #ede8e2 0%, #e3ddd6 52%, #dbd4cc 100%);
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .sec3-media .left.is-empty {
    min-height: 200px;
    border-radius: 10px;
  }
}
#section03 .tab-area .sec3-media .left.is-empty .empty-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#section03 .tab-area .sec3-media .left.is-empty .empty-icon svg {
  width: min(72px, 16vw);
  height: min(72px, 16vw);
  opacity: 0.5;
}
#section03 .tab-area .sec3-media .left.is-empty .text-area {
  z-index: 1;
}
#section03 .tab-area .sec3-media .left.is-empty .text-area p {
  color: #b8a574;
}
#section03 .tab-area .sec3-media .left.is-empty .text-area h4 {
  color: #2c2721;
}
#section03 .tab-area .sec3-media .left.is-empty .text-area span {
  color: #746b64;
}
#section03 .tab-area .step-content {
  display: none;
}
#section03 .tab-area .step-content.active {
  display: block;
  min-width: 0;
  width: 100%;
}
#section03 .tab-area .step-content .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 1439.98px) {
  #section03 .tab-area .step-content .right {
    gap: 13px;
  }
}
#section03 .tab-area .step-content .right .title {
  font-size: 20px;
  color: #746b64;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-weight: 700;
}
#section03 .tab-area .step-content .right .line {
  width: 100%;
  height: 1px;
  padding-top: 14px;
  padding-bottom: 14px;
  box-sizing: content-box;
  background-color: #bcb7b4;
  background-clip: content-box;
}
#section03 .tab-area .step-content .right .line:first-of-type {
  padding-top: 0;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .step-content .right .line {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #section03 .tab-area .step-content .right .line:first-of-type {
    padding-top: 0;
  }
}
@media screen and (max-width: 1439.98px) {
  #section03 .tab-area .step-content .right .line {
    display: none;
  }
}
#section03 .tab-area .step-content .right .con {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 110px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}
#section03 .tab-area .step-content .right .con.is-placeholder {
  pointer-events: none;
  align-items: flex-start;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px dashed #c6c4c1;
  border-radius: 10px;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .step-content .right .con.is-placeholder {
    padding: 12px 0;
    min-height: 0;
  }
}
#section03 .tab-area .step-content .right .con.is-placeholder .text p {
  color: #bcb7b4;
  font-weight: 500;
  white-space: normal;
}
#section03 .tab-area .step-content .right .con.is-placeholder .text h4 {
  color: #9d968e;
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0 6px;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  white-space: normal;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .step-content .right .con.is-placeholder .text h4 {
    font-size: 14px;
    margin: 6px 0 4px;
  }
}
#section03 .tab-area .step-content .right .con.is-placeholder .text span {
  color: #9d968e;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
  white-space: normal;
  word-break: keep-all;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .step-content .right .con.is-placeholder .text span {
    font-size: 12px;
    line-height: 18px;
  }
}
#section03 .tab-area .step-content .right .con img {
  flex-shrink: 0;
  display: block;
  margin-right: 20px;
  border-radius: 10px;
  width: 161px;
  height: 110px;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .step-content .right .con img {
    margin-right: 12px;
  }
}
#section03 .tab-area .step-content .right .con .text {
  flex: 1 1 0%;
  min-width: 0;
  width: auto;
  max-width: 100%;
  overflow: hidden;
}
#section03 .tab-area .step-content .right .con .text p {
  color: #9d968e;
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .step-content .right .con .text p {
    font-size: 12px;
  }
}
#section03 .tab-area .step-content .right .con .text h4 {
  color: #746b64;
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .step-content .right .con .text h4 {
    font-size: 13px;
    line-height: 18px;
    margin: 10px 0 0;
  }
}
#section03 .tab-area .step-content .right .con .text span {
  color: #9d968e;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
@media screen and (max-width: 991.98px) {
  #section03 .tab-area .step-content .right .con .text span {
    display: none;
  }
}
#section03 .tab-area .step-content .right a.con {
  color: inherit;
  text-decoration: none;
}

html.view-media-modal-open {
  overflow: hidden;
}

.view-media-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.view-media-modal.is-open {
  display: block;
}
.view-media-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.view-media-modal__dialog {
  position: relative;
  width: min(960px, 100% - 32px);
  margin: 0 auto;
  top: calc((100vh + var(--mega-dim-top, 88px)) / 2);
  transform: translateY(-50%);
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}
.view-media-modal__close {
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 26px;
  line-height: 40px;
  cursor: pointer;
}
.view-media-modal__frame {
  width: 100%;
  aspect-ratio: 16/9;
}
.view-media-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.view-media-modal__tiktok {
  padding: 0;
  background: #000;
  display: flex;
  justify-content: center;
}
.view-media-modal.is-tiktok .view-media-modal__dialog {
  width: min(420px, 100% - 32px);
}
.view-media-modal.is-tiktok .view-media-modal__frame {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .view-media-modal__dialog {
    top: calc((100vh + 50px) / 2);
  }
}
#section04 .title-area {
  display: flex;
  gap: 13px;
  align-items: flex-end;
  margin-bottom: 30px;
}
@media screen and (max-width: 991.98px) {
  #section04 .title-area {
    margin-bottom: 15px;
  }
}
#section04 .title-area h3 {
  font-size: 60px;
  font-weight: 700;
  color: #2c2721;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 991.98px) {
  #section04 .title-area h3 {
    font-size: 30px;
  }
}
#section04 .title-area h3 span {
  color: #9d968e;
}
@media screen and (max-width: 991.98px) {
  #section04 .title-area a {
    display: none;
  }
}
#section04 .con-area .section11-empty {
  margin: 0;
}
#section04 .con-area .section11-empty__title,
#section04 .con-area .section11-empty__text,
#section04 .con-area .section11-empty__hint {
  max-width: 860px;
}
#section04 .con-area .swiper {
  overflow: visible;
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide {
    flex-direction: column;
    gap: 20px;
  }
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .left {
  width: 820px;
  border-radius: 20px;
  overflow: hidden;
  max-width: 820px;
  aspect-ratio: 820/620;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .left {
    width: 101vw;
    margin-left: -50px;
    border-radius: 0;
    max-width: 100vw;
    aspect-ratio: 820/620;
  }
}
@media screen and (max-width: 991.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .left {
    margin-left: -19px;
  }
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .left img {
  width: 100%;
  overflow: hidden;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .left img {
    width: 100%;
  }
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .right {
  margin-top: -106px;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right {
    margin-top: 0;
  }
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 991.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area {
    margin-bottom: 40px;
    gap: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area .left-img {
  border-radius: 20px;
  overflow: hidden;
  width: 310px;
  max-width: 310px;
  aspect-ratio: 310/310;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area .left-img {
    width: 100%;
    border-radius: 5px;
    max-width: 100%;
    aspect-ratio: 310/310;
  }
}
@media screen and (max-width: 991.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area .left-img {
    aspect-ratio: 487/290;
  }
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area .right-img {
  border-radius: 20px;
  overflow: hidden;
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  aspect-ratio: 200/310;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area .right-img {
    width: 100%;
    border-radius: 5px;
    min-width: auto;
    max-width: 100%;
    aspect-ratio: 200/310;
  }
}
@media screen and (max-width: 991.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area .right-img {
    aspect-ratio: 487/290;
  }
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area .left-img img,
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area .right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area .left-img img,
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area .right-img img {
    width: 100%;
  }
}
@media screen and (max-width: 991.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area .left-img img,
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area .right-img img {
    border-radius: 5px;
  }
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area > img {
  display: block;
  height: auto;
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area > img.pc:nth-of-type(1) {
  border-radius: 20px;
  overflow: hidden;
  width: 310px;
  max-width: 310px;
  flex-shrink: 0;
  object-fit: cover;
  aspect-ratio: 310/310;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area > img.pc:nth-of-type(1) {
    width: 100%;
    max-width: 100%;
    border-radius: 5px;
    aspect-ratio: 310/310;
  }
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area > img.pc:nth-of-type(2) {
  border-radius: 20px;
  overflow: hidden;
  width: 200px;
  min-width: 200px;
  max-width: 200px;
  flex-shrink: 0;
  object-fit: cover;
  aspect-ratio: 200/310;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area > img.pc:nth-of-type(2) {
    width: 100%;
    min-width: auto;
    max-width: 100%;
    border-radius: 5px;
    aspect-ratio: 200/310;
  }
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .right .img-area > img.mo {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  aspect-ratio: 487/290;
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .right dl dt {
  font-size: 28px;
  color: #746b64;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 25px;
}
@media screen and (max-width: 991.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right dl dt {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 19px;
  }
}
#section04 .con-area .swiper .swiper-wrapper .swiper-slide .right dl dd {
  font-size: 16px;
  color: #9d968e;
  line-height: 26px;
}
@media screen and (max-width: 991.98px) {
  #section04 .con-area .swiper .swiper-wrapper .swiper-slide .right dl dd {
    font-size: 14px;
    line-height: 21px;
  }
}
#section04 .con-area .swiper .swiper-controller {
  position: absolute;
  bottom: 70px;
  left: 940px;
  z-index: 1;
}
@media screen and (max-width: 1500px) {
  #section04 .con-area .swiper .swiper-controller {
    left: 62vw;
  }
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-controller {
    position: static;
    margin-top: 30px;
    justify-content: center;
    display: flex;
    gap: 50px;
  }
}
#section04 .con-area .swiper .swiper-controller .swiper-pagination {
  display: none;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-controller .swiper-pagination {
    display: block;
    color: #9d968e;
    font-size: 16px;
  }
}
#section04 .con-area .swiper .swiper-controller .swiper-pagination .swiper-pagination-current {
  color: #746b64;
  font-weight: 700;
}
#section04 .con-area .swiper .swiper-controller .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: url("../img/main/sec04_img5.png") no-repeat center/contain;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-controller .swiper-button-prev {
    background: none;
    position: static;
  }
}
#section04 .con-area .swiper .swiper-controller .swiper-button-prev svg {
  display: none;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-controller .swiper-button-prev svg {
    display: block;
    width: 7px;
    color: #000000;
    margin-top: 10px;
  }
}
#section04 .con-area .swiper .swiper-controller .swiper-button-next {
  width: 45px;
  height: 45px;
  background: url("../img/main/sec04_img4.png") no-repeat center/contain;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-controller .swiper-button-next {
    background: none;
    position: static;
  }
}
#section04 .con-area .swiper .swiper-controller .swiper-button-next svg {
  display: none;
}
@media screen and (max-width: 1439.98px) {
  #section04 .con-area .swiper .swiper-controller .swiper-button-next svg {
    display: block;
    width: 7px;
    color: #000000;
    margin-top: 8px;
  }
}
#section04.section04--empty .con-area {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1439.98px) {
  #section04.section04--empty .con-area {
    min-height: 520px;
  }
}
@media screen and (max-width: 991.98px) {
  #section04.section04--empty .con-area {
    min-height: 420px;
  }
}

#section05 {
  position: relative;
  overflow: hidden;
  background-color: #f9f9f7;
  padding-bottom: 270px !important;
}
@media screen and (max-width: 991.98px) {
  #section05 {
    padding-bottom: 100px !important;
  }
}
#section05 .title-area {
  margin-bottom: 30px;
}
#section05 .title-area h3 {
  text-align: center;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #2c2721;
}
@media screen and (max-width: 991.98px) {
  #section05 .title-area h3 {
    font-size: 30px;
  }
}
#section05 .title-area h3 .color1 {
  font-size: 60px;
  color: #9d968e;
}
@media screen and (max-width: 991.98px) {
  #section05 .title-area h3 .color1 {
    font-size: 30px;
  }
}
#section05 .title-area h3 .color2 {
  font-size: 60px;
  color: #746b64;
}
@media screen and (max-width: 991.98px) {
  #section05 .title-area h3 .color2 {
    font-size: 30px;
  }
}
#section05 .tab-area .step-tabs-wrap {
  max-width: 800px;
  margin: 0 auto 34px;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  #section05 .tab-area .step-tabs-wrap {
    max-width: 90%;
    padding: 0 45px;
  }
}
#section05 .tab-area .step-tabs {
  overflow: hidden;
}
#section05 .tab-area .step-tabs .step-tab {
  padding: 15px 21px;
  background: transparent;
  font-size: 18px;
  color: #9d968e;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
@media screen and (max-width: 991.98px) {
  #section05 .tab-area .step-tabs .step-tab {
    font-size: 13px;
    padding: 0;
    gap: 10px;
  }
}
@media screen and (max-width: 543.98px) {
  #section05 .tab-area .step-tabs .step-tab {
    gap: 5px;
  }
}
#section05 .tab-area .step-tabs .step-tab .wrap {
  display: none;
}
@media screen and (max-width: 991.98px) {
  #section05 .tab-area .step-tabs .step-tab .wrap {
    display: block;
    width: 45px;
  }
}
#section05 .tab-area .step-tabs .step-tab p {
  white-space: nowrap;
}
#section05 .tab-area .step-tabs .step-tab.active {
  background-color: #ebca6d;
  border-radius: 23px;
}
@media screen and (max-width: 991.98px) {
  #section05 .tab-area .step-tabs .step-tab.active {
    background-color: rgba(0, 0, 0, 0);
  }
}
#section05 .tab-area .step-tabs .step-tab.active .wrap {
  background-color: #ebca6d;
  border-radius: 50%;
  width: 45px;
  height: 45px;
}
#section05 .tab-area .step-tabs .step-tab.active .wrap img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
#section05 .tab-area .step-tabs .step-tab.active p {
  color: #fff;
  font-weight: 700;
  padding: 0;
}
@media screen and (max-width: 991.98px) {
  #section05 .tab-area .step-tabs .step-tab.active p {
    color: #746b64;
    font-weight: 700;
  }
}
#section05 .tab-area .swiper-controller .swiper-button-prev,
#section05 .tab-area .swiper-controller .swiper-button-next {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
@media screen and (max-width: 991.98px) {
  #section05 .tab-area .swiper-controller .swiper-button-prev,
  #section05 .tab-area .swiper-controller .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
#section05 .tab-area .swiper-controller .swiper-button-prev svg,
#section05 .tab-area .swiper-controller .swiper-button-next svg {
  display: none;
}
#section05 .tab-area .swiper-controller .swiper-button-prev {
  background: url("../img/main/sec05_img1.png") no-repeat center/contain;
  left: -60px;
}
@media screen and (max-width: 991.98px) {
  #section05 .tab-area .swiper-controller .swiper-button-prev {
    left: 0;
  }
}
#section05 .tab-area .swiper-controller .swiper-button-next {
  background: url("../img/main/sec05_img2.png") no-repeat center/contain;
  right: -60px;
}
@media screen and (max-width: 991.98px) {
  #section05 .tab-area .swiper-controller .swiper-button-next {
    right: 0;
  }
}
#section05 .step-contents {
  position: relative;
}
#section05 .step-content {
  display: none;
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-image: var(--s5pc, none);
}
@media screen and (max-width: 991.98px) {
  #section05 .step-content {
    background-image: var(--s5mo, var(--s5pc, none));
  }
}
#section05 .step-content.active {
  display: block;
}
#section05 .step-content .swiper {
  overflow: visible;
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .con-wrap img {
  filter: grayscale(0);
  opacity: 1;
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .con-wrap .text-area {
  display: block;
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap {
  position: relative;
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap img {
  filter: grayscale(1);
  opacity: 0.8;
  width: 100%;
  margin: 0 auto;
  display: block;
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap--sec05-placeholder > img {
  filter: grayscale(1);
  opacity: 0.72;
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area {
  position: absolute;
  right: 0;
  bottom: -120px;
  z-index: 1;
  background-color: #fff;
  display: none;
  width: 580px;
  height: 220px;
  padding: 40px 0 0 38px;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(58, 54, 52, 0.18);
}
@media screen and (max-width: 991.98px) {
  #section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area {
    position: relative;
    width: 100%;
    margin-top: 14px;
    bottom: 0;
    border-radius: 10px;
    padding: 28px 0 0 30px;
    height: 100%;
    min-height: 172px;
  }
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area .text-area__badge {
  position: absolute;
  bottom: 19px;
  right: 20px;
  width: 91px;
  height: auto;
  max-height: 82px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
@media screen and (max-width: 991.98px) {
  #section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area .text-area__badge {
    width: 70px;
    max-height: 63px;
  }
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area dl dt {
  font-size: 35px;
  font-weight: 600;
  color: #746b64;
  margin-bottom: 15px;
}
@media screen and (max-width: 991.98px) {
  #section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area dl dt {
    font-size: 20px;
    margin-bottom: 13px;
  }
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area dl dd {
  font-size: 16px;
  line-height: 26px;
  color: #746b64;
}
@media screen and (max-width: 991.98px) {
  #section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area dl dd {
    font-size: 14px;
    line-height: 21px;
  }
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area a {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #bab3a1;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991.98px) {
  #section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area a {
    width: 50px;
    height: 50px;
  }
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area a[href=""] {
  pointer-events: none;
  cursor: default;
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area a p {
  color: #fff;
  font-size: 13px;
}
@media screen and (max-width: 991.98px) {
  #section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area a p {
    display: none;
  }
}
#section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area a img {
  width: 10px;
  margin: 0;
}
@media screen and (max-width: 991.98px) {
  #section05 .step-content .swiper .swiper-wrapper .swiper-slide .con-wrap .text-area a img {
    width: 15px;
  }
}
#section05 .step-content .swiper .swiper-controller {
  display: none;
}
@media screen and (max-width: 991.98px) {
  #section05 .step-content .swiper .swiper-controller {
    display: flex;
    gap: 50px;
    margin-top: 30px;
    justify-content: center;
    padding: 0 19px;
  }
}
#section05 .step-content .swiper .swiper-controller .swiper-button-prev {
  background-image: none;
  width: 7px;
  position: relative;
}
#section05 .step-content .swiper .swiper-controller .swiper-button-prev svg {
  display: block;
  color: #000;
  width: 7px;
}
#section05 .step-content .swiper .swiper-controller .swiper-button-next {
  background-image: none;
  width: 7px;
  position: relative;
}
#section05 .step-content .swiper .swiper-controller .swiper-button-next svg {
  display: block;
  color: #000;
  width: 7px;
}
#section05 .step-content .swiper .swiper-controller .swiper-pagination {
  color: #9d968e;
  font-size: 15px;
  position: relative;
  width: fit-content;
}
#section05 .step-content .swiper .swiper-controller .swiper-pagination .swiper-pagination-current {
  color: #746b64;
  font-weight: 700;
}
#section05 .s3-drag {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 12;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 115px;
  height: 115px;
  padding-inline: 10px;
  border-radius: 50%;
  background: rgba(90, 85, 82, 0.82);
  color: #fff;
  box-shadow: 0 4px 16px rgba(58, 54, 52, 0.18);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  will-change: transform;
}
#section05 .s3-drag.show {
  opacity: 1;
  visibility: visible;
}
#section05 .s3-drag-arr {
  font-family: "Philosopher", "Pretendard Variable", sans-serif, "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif, sans-serif;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  opacity: 0.95;
  user-select: none;
  transform: translateY(-0.5px);
}
#section05 .s3-drag-arr:first-of-type {
  justify-self: start;
}
#section05 .s3-drag-arr:last-of-type {
  justify-self: end;
}
#section05 .s3-drag-txt {
  justify-self: center;
  grid-column: 2;
  font-family: "Pretendard Variable", "맑은 고딕", "Apple SD Gothic Neo", sans-serif, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

#section06 {
  position: relative;
  padding-bottom: 220px !important;
}
@media screen and (max-width: 991.98px) {
  #section06 {
    padding-bottom: 80px !important;
  }
}
#section06::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url("../img/main/sec06_bg.png") no-repeat center;
  width: 1021px;
  height: 198px;
  content: "";
}
@media screen and (max-width: 991.98px) {
  #section06::after {
    background-size: 100%;
    bottom: 180px;
    width: 100%;
    z-index: -1;
  }
}
#section06 .title-area {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 991.98px) {
  #section06 .title-area {
    margin-bottom: 18px;
  }
}
#section06 .title-area h3 {
  line-height: 1;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #2c2721;
}
@media screen and (max-width: 991.98px) {
  #section06 .title-area h3 {
    font-size: 30px;
  }
}
#section06 .title-area h3 .color1 {
  font-size: 60px;
  color: #746b64;
}
@media screen and (max-width: 991.98px) {
  #section06 .title-area h3 .color1 {
    font-size: 30px;
  }
}
#section06 .title-area h3 .color2 {
  font-size: 60px;
  color: #cbc6c2;
}
@media screen and (max-width: 991.98px) {
  #section06 .title-area h3 .color2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 991.98px) {
  #section06 .title-area a {
    display: none;
  }
}
#section06 .tab-area {
  display: flex;
  gap: 45px;
  justify-content: center;
}
@media screen and (max-width: 1439.98px) {
  #section06 .tab-area {
    flex-direction: column;
  }
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area {
    gap: 20px;
  }
}
#section06 .tab-area .step-tabs-wrap {
  position: relative;
  width: 183px;
}
@media screen and (max-width: 1439.98px) {
  #section06 .tab-area .step-tabs-wrap {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 45px;
  }
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-tabs-wrap {
    max-width: 100%;
    padding: 0 45px;
  }
}
#section06 .tab-area .sec6-main-tabs {
  width: 100%;
  overflow: hidden;
  margin: 0;
}
#section06 .tab-area .sec6-main-tabs .swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 1439.98px) {
  #section06 .tab-area .sec6-main-tabs .swiper-wrapper {
    flex-direction: row;
    gap: 18px;
  }
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .sec6-main-tabs .swiper-wrapper {
    gap: 0;
  }
}
#section06 .tab-area .sec6-main-tabs .swiper-wrapper .step-tab {
  background-color: #fff;
  border-radius: 23px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 1439.98px) {
  #section06 .tab-area .sec6-main-tabs .swiper-wrapper .step-tab {
    margin: 0;
  }
}
#section06 .tab-area .sec6-main-tabs .swiper-wrapper .step-tab.active {
  background-color: #ebca6d;
}
#section06 .tab-area .sec6-main-tabs .swiper-wrapper .step-tab.active p {
  color: #fff;
  font-weight: 700;
}
#section06 .tab-area .sec6-main-tabs .swiper-wrapper .step-tab p {
  padding: 12px 22px;
  font-size: 18px;
  color: #9d968e;
  white-space: nowrap;
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .sec6-main-tabs .swiper-wrapper .step-tab p {
    font-size: 13px;
    padding: 12px 18px;
  }
}
#section06 .tab-area .step-tabs-wrap > .swiper-controller {
  display: none;
}
@media screen and (max-width: 1439.98px) {
  #section06 .tab-area .step-tabs-wrap > .swiper-controller {
    display: block;
  }
}
#section06 .tab-area .step-tabs-wrap > .swiper-controller .swiper-button-prev,
#section06 .tab-area .step-tabs-wrap > .swiper-controller .swiper-button-next {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-tabs-wrap > .swiper-controller .swiper-button-prev,
  #section06 .tab-area .step-tabs-wrap > .swiper-controller .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
#section06 .tab-area .step-tabs-wrap > .swiper-controller .swiper-button-prev svg,
#section06 .tab-area .step-tabs-wrap > .swiper-controller .swiper-button-next svg {
  display: none;
}
#section06 .tab-area .step-tabs-wrap > .swiper-controller .swiper-button-prev {
  background: url("../img/main/sec05_img1.png") no-repeat center/contain;
  left: -10px;
}
#section06 .tab-area .step-tabs-wrap > .swiper-controller .swiper-button-next {
  background: url("../img/main/sec05_img2.png") no-repeat center/contain;
  right: -10px;
}
#section06 .tab-area .step-content {
  display: none;
  position: relative;
}
#section06 .tab-area .step-content.active {
  display: block;
}
#section06 .tab-area .step-content .main-img {
  margin-bottom: 17px;
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-content .main-img {
    margin-bottom: 20px;
    width: 100vw;
    margin-left: -19px;
  }
}
#section06 .tab-area .step-content .main-img .tab-area2 {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
}
@media screen and (max-width: 1439.98px) {
  #section06 .tab-area .step-content .main-img .tab-area2 {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-content .main-img .tab-area2 {
    gap: 20px;
  }
}
#section06 .tab-area .step-content .main-img .tab-area2 .step-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1439.98px) {
  #section06 .tab-area .step-content .main-img .tab-area2 .step-tabs {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-content .main-img .tab-area2 .step-tabs {
    gap: 5px;
  }
}
#section06 .tab-area .step-content .main-img .tab-area2 .step-tabs button {
  background-color: #f6f5f3;
  width: 69px;
  height: 69px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-content .main-img .tab-area2 .step-tabs button {
    width: 48px;
    height: 48px;
    border-radius: 5px;
  }
}
#section06 .tab-area .step-content .main-img .tab-area2 .step-tabs button p {
  color: #9d968e;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-content .main-img .tab-area2 .step-tabs button p {
    font-size: 12px;
  }
}
#section06 .tab-area .step-content .main-img .tab-area2 .step-tabs button.active {
  background-color: #7a6e66;
}
#section06 .tab-area .step-content .main-img .tab-area2 .step-tabs button.active p {
  color: #fff;
}
#section06 .tab-area .step-content .main-img .tab-area2 .step-contents {
  position: relative;
  flex: 1 1 auto;
  width: 840px;
  max-width: 840px;
}
@media screen and (max-width: 1439.98px) {
  #section06 .tab-area .step-content .main-img .tab-area2 .step-contents {
    width: 100%;
    max-width: 100%;
  }
}
#section06 .tab-area .step-content .main-img .tab-area2 .step-content2 {
  display: none;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 5/3;
}
@media screen and (max-width: 1439.98px) {
  #section06 .tab-area .step-content .main-img .tab-area2 .step-content2 {
    border-radius: 0;
  }
}
#section06 .tab-area .step-content .main-img .tab-area2 .step-content2.active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  width: 100%;
}
#section06 .tab-area .step-content .main-img .tab-area2 .step-content2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74px;
  height: 74px;
  background: url("../img/main/sec06_img5.png") no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-content .main-img .tab-area2 .step-content2::after {
    width: 42px;
    height: 42px;
    background-size: 42px;
  }
}
#section06 .tab-area .step-content .main-img .tab-area2 .step-content2 img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
@media screen and (max-width: 1439.98px) {
  #section06 .tab-area .step-content .main-img .tab-area2 .step-content2 img {
    width: 100%;
  }
}
#section06 .tab-area .step-content .main-img .tab-area2 .step-content2 p {
  color: #fff;
}
#section06 .tab-area .step-content .swiper {
  max-width: 840px;
  margin: 0;
}
@media screen and (max-width: 1439.98px) {
  #section06 .tab-area .step-content .swiper {
    max-width: 100%;
  }
}
#section06 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  filter: grayscale(1);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  aspect-ratio: 5/3;
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide {
    border-radius: 5px;
    filter: grayscale(0);
  }
}
#section06 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide.is-thumb-active {
  filter: grayscale(0);
}
#section06 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide.sec6-empty-slide {
  position: relative;
  filter: grayscale(0);
}
#section06 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide.sec6-empty-slide img {
  opacity: 0.35;
}
#section06 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  display: block;
}
#section06 .tab-area .step-content .swiper .swiper-wrapper .sec6-empty-msg {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
  background: rgba(44, 39, 33, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-content .swiper .swiper-wrapper .sec6-empty-msg {
    font-size: 11px;
  }
}
#section06 .tab-area .step-content .swiper .swiper-wrapper .sec6-cat-slide {
  position: relative;
  filter: none;
}
#section06 .tab-area .step-content .swiper .swiper-wrapper .sec6-cat-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(44, 39, 33, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-content .swiper .swiper-wrapper .sec6-cat-label {
    left: 8px;
    bottom: 8px;
    font-size: 11px;
  }
}
#section06 .tab-area .step-content .swiper .swiper-wrapper .sec6-cat-slide.is-thumb-active {
  outline: 2px solid #7a6e66;
  outline-offset: 2px;
}
#section06 .tab-area .step-content .swiper-controller {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: absolute;
  z-index: 99;
  width: 840px;
  margin-top: 30px;
}
@media screen and (max-width: 1439.98px) {
  #section06 .tab-area .step-content .swiper-controller {
    width: 100%;
  }
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-content .swiper-controller {
    gap: 50px;
    margin-top: 20px;
  }
}
#section06 .tab-area .step-content .swiper-controller .swiper-button-prev,
#section06 .tab-area .step-content .swiper-controller .swiper-button-next {
  width: 9px;
  height: 14px;
  color: #272727;
  position: relative;
  top: 12px;
}
#section06 .tab-area .step-content .swiper-controller .swiper-button-prev svg path,
#section06 .tab-area .step-content .swiper-controller .swiper-button-next svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
#section06 .tab-area .step-content .swiper-controller .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
@media screen and (max-width: 991.98px) {
  #section06 .tab-area .step-content .swiper-controller .swiper-pagination {
    color: #9d968e;
    font-size: 15px;
  }
}
#section06 .tab-area .step-content .swiper-controller .swiper-pagination .swiper-pagination-current {
  color: #746b64;
  font-weight: 700;
}
#section06 .tab-area .step-content .swiper-controller .swiper-pagination .swiper-pagination-bullet {
  background-color: #c2b7b1;
  opacity: 1;
  width: 9px;
  height: 9px;
  margin: 0;
}
#section06 .tab-area .step-content .swiper-controller .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #7a6e66;
}
#section06 .more {
  margin-top: 60px;
}

#section07 {
  overflow: hidden;
  background: url("../img/main/sec07_bg.png") no-repeat center;
  background-size: cover;
  border-radius: 0 200px 0 0;
}
@media screen and (max-width: 991.98px) {
  #section07 {
    border-radius: 0 54px 0 0;
    background: url("../img/main/sec07_bg_m.png") no-repeat center;
    background-size: cover;
  }
}
#section07 .title-area {
  display: flex;
  gap: 13px;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 30px;
}
@media screen and (max-width: 991.98px) {
  #section07 .title-area {
    margin-bottom: 23px;
  }
}
#section07 .title-area h3 {
  color: #fff;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 991.98px) {
  #section07 .title-area h3 {
    text-align: center;
    font-size: 30px;
    line-height: 31px;
  }
}
#section07 .title-area h3 span {
  color: #e1e0de;
}
#section07 .title-area a {
  border: 1px solid #fff;
}
@media screen and (max-width: 991.98px) {
  #section07 .title-area a {
    display: none;
  }
}
#section07 .title-area a p {
  color: #fff;
}
#section07 .title-area a img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 991.98px) {
  #section07 .swiper {
    overflow: visible;
  }
}
#section07 .swiper .swiper-wrapper .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 991.98px) {
  #section07 .swiper .swiper-wrapper .swiper-slide {
    border-radius: 10px;
  }
}
#section07 .swiper .swiper-wrapper .swiper-slide .img-area {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 340/335;
}
#section07 .swiper .swiper-wrapper .swiper-slide .img-area img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
#section07 .swiper .swiper-wrapper .swiper-slide .img-area p {
  position: absolute;
  z-index: 1;
  left: 30px;
  top: 40px;
  font-size: 22px;
  color: #746b64;
  line-height: 30px;
  font-weight: 700;
}
@media screen and (max-width: 991.98px) {
  #section07 .swiper .swiper-wrapper .swiper-slide .img-area p {
    font-size: 15px;
    line-height: 20px;
    left: 21px;
    top: 30px;
  }
}
#section07 .swiper .swiper-wrapper .swiper-slide .text-area {
  background-color: #564c43;
  padding: 44px 33px;
}
@media screen and (max-width: 991.98px) {
  #section07 .swiper .swiper-wrapper .swiper-slide .text-area {
    padding: 20px 21px;
  }
}
#section07 .swiper .swiper-wrapper .swiper-slide .text-area p {
  color: #fff;
  font-size: 15px;
  line-height: 25px;
}
@media screen and (max-width: 991.98px) {
  #section07 .swiper .swiper-wrapper .swiper-slide .text-area p {
    font-size: 12px;
    line-height: 18px;
  }
}
#section07 .swiper .swiper-controller {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 46px;
}
@media screen and (max-width: 991.98px) {
  #section07 .swiper .swiper-controller {
    gap: 50px;
  }
}
#section07 .swiper .swiper-controller .swiper-button-prev,
#section07 .swiper .swiper-controller .swiper-button-next {
  position: relative;
}
#section07 .swiper .swiper-controller .swiper-button-prev svg,
#section07 .swiper .swiper-controller .swiper-button-next svg {
  color: #fff;
  width: 9px;
}
#section07 .swiper .swiper-controller .swiper-pagination {
  position: relative;
  width: fit-content;
  gap: 0;
  display: flex;
  margin-top: 5px;
}
@media screen and (max-width: 991.98px) {
  #section07 .swiper .swiper-controller .swiper-pagination {
    color: #fff;
    margin-top: 0;
    gap: 5px;
  }
}
#section07 .swiper .swiper-controller .swiper-pagination .swiper-pagination-current {
  font-weight: 700;
}
#section07 .swiper .swiper-controller .swiper-pagination .swiper-pagination-bullet {
  background-color: #97908a;
  opacity: 1;
}
#section07 .swiper .swiper-controller .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ccc9c5;
}
#section07 .more {
  border: 1px solid #fff;
}
#section07 .more p {
  color: #fff;
}

#section08 {
  background: url("../img/main/sec08_bg.png") no-repeat top;
}
@media screen and (max-width: 991.98px) {
  #section08 {
    background: none;
  }
}
#section08 .title-area .top {
  display: flex;
  gap: 13px;
  justify-content: center;
  align-items: flex-end;
}
#section08 .title-area .top h3 {
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #2c2721;
  line-height: 1;
}
@media screen and (max-width: 991.98px) {
  #section08 .title-area .top h3 {
    font-size: 30px;
  }
}
#section08 .title-area .top h3 span {
  color: #9d968e;
}
@media screen and (max-width: 991.98px) {
  #section08 .title-area .top a {
    display: none;
  }
}
#section08 .title-area .desc {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #9d968e;
  margin-top: 25px;
}
@media screen and (max-width: 991.98px) {
  #section08 .title-area .desc {
    font-size: 15px;
    margin-top: 13px;
  }
}
#section08 .img-area {
  margin: 80px auto 30px;
}
@media screen and (max-width: 991.98px) {
  #section08 .img-area {
    margin: 19px auto 0;
  }
}
#section08 .img-area img {
  display: block;
  margin: 0 auto;
}
#section08 .desc {
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #746b64;
  margin-bottom: 8px;
}
#section08 .sec8Swiper .swiper-wrapper .swiper-slide {
  filter: grayscale(1);
  transition: all 0.5s;
}
@media screen and (max-width: 991.98px) {
  #section08 .sec8Swiper .swiper-wrapper .swiper-slide {
    filter: grayscale(0);
  }
}
#section08 .sec8Swiper .swiper-wrapper .swiper-slide:hover {
  filter: grayscale(0);
}
#section08 .sec8Swiper .swiper-wrapper .swiper-slide a {
  position: relative;
  display: block;
  background-color: #f9f7f8;
  border: 1px solid #ddd8da;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 991.98px) {
  #section08 .sec8Swiper .swiper-wrapper .swiper-slide a {
    border: 0px solid;
  }
}
#section08 .sec8Swiper .swiper-wrapper .swiper-slide a::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "Dr. Choi Soon-woo";
  font-size: 41px;
  color: #f3f1f2;
  z-index: -1;
}
@media screen and (max-width: 991.98px) {
  #section08 .sec8Swiper .swiper-wrapper .swiper-slide a::after {
    bottom: 50%;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
  }
}
#section08 .sec8Swiper .swiper-wrapper .swiper-slide .text-area {
  position: absolute;
  left: 40px;
  bottom: 50%;
  transform: translateY(50%);
  width: max-content;
  z-index: 2;
}
@media screen and (max-width: 1439.98px) {
  #section08 .sec8Swiper .swiper-wrapper .swiper-slide .text-area {
    bottom: 50%;
    left: 50px;
  }
}
@media screen and (max-width: 991.98px) {
  #section08 .sec8Swiper .swiper-wrapper .swiper-slide .text-area {
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
  }
}
@media screen and (max-width: 543.98px) {
  #section08 .sec8Swiper .swiper-wrapper .swiper-slide .text-area {
    bottom: 40px;
  }
}
#section08 .sec8Swiper .swiper-wrapper .swiper-slide .text-area dt {
  font-size: 16px;
  color: #746b64;
  margin-bottom: 11px;
}
@media screen and (max-width: 991.98px) {
  #section08 .sec8Swiper .swiper-wrapper .swiper-slide .text-area dt {
    font-size: 13px;
    margin-bottom: 0;
  }
}
#section08 .sec8Swiper .swiper-wrapper .swiper-slide .text-area dd {
  font-size: 12px;
  color: #9a9a9a;
}
@media screen and (max-width: 991.98px) {
  #section08 .sec8Swiper .swiper-wrapper .swiper-slide .text-area dd {
    display: none;
  }
}
@media screen and (max-width: 991.98px) {
  #section08 .sec8Swiper .swiper-wrapper .swiper-slide .bg-img {
    border: 1px solid #ddd8da;
    border-bottom: 0px solid;
    border-radius: 5px;
  }
}
#section08 .sec8Swiper .swiper-wrapper .swiper-slide .bg-img img {
  display: block;
  width: 100%;
}
#section08 .sec8Swiper .swiper-wrapper .swiper-slide .decs {
  background-color: #7a6e66;
  text-align: center;
  color: #fff;
  font-size: 12px;
  padding: 8px 0;
}
#section08 .sec8Swiper .swiper-controller {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}
@media screen and (max-width: 991.98px) {
  #section08 .sec8Swiper .swiper-controller {
    gap: 50px;
    margin-top: 20px;
  }
}
#section08 .sec8Swiper .swiper-controller .swiper-button-prev,
#section08 .sec8Swiper .swiper-controller .swiper-button-next {
  position: static;
  width: 9px;
  height: auto;
  margin-top: 0;
  color: #000;
}
@media screen and (max-width: 991.98px) {
  #section08 .sec8Swiper .swiper-controller .swiper-button-prev,
  #section08 .sec8Swiper .swiper-controller .swiper-button-next {
    width: 7px;
  }
}
#section08 .sec8Swiper .swiper-controller .swiper-button-prev::after,
#section08 .sec8Swiper .swiper-controller .swiper-button-next::after {
  font-size: 18px;
  color: #000;
}
#section08 .sec8Swiper .swiper-controller .swiper-pagination {
  position: static;
  width: fit-content;
}
@media screen and (max-width: 991.98px) {
  #section08 .sec8Swiper .swiper-controller .swiper-pagination {
    color: #9d968e;
    font-size: 15px;
  }
}
#section08 .sec8Swiper .swiper-controller .swiper-pagination .swiper-pagination-current {
  color: #746b64;
  font-weight: 700;
}
#section08 .sec8Swiper .swiper-controller .swiper-pagination .swiper-pagination-bullet {
  background-color: #c2b8b1;
  opacity: 1;
}
#section08 .sec8Swiper .swiper-controller .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #7a6e66;
}
#section08 .more {
  margin-top: 36px;
}

#section09 {
  background: url("../img/main/sec09_bg.png") no-repeat center;
  background-size: cover;
  border-radius: 200px 0 0 0;
  overflow: hidden;
}
@media screen and (max-width: 991.98px) {
  #section09 {
    border-radius: 54px 0 0 0;
    background: url("../img/main/sec09_bg_m.png") no-repeat center;
    background-size: cover;
  }
}
#section09 .title-area {
  display: flex;
  gap: 13px;
  align-items: flex-end;
  margin-bottom: 40px;
}
@media screen and (max-width: 991.98px) {
  #section09 .title-area {
    margin-bottom: 20px;
  }
}
#section09 .title-area h3 {
  font-size: 60px;
  font-weight: 700;
  color: #2c2721;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 991.98px) {
  #section09 .title-area h3 {
    font-size: 30px;
  }
}
#section09 .title-area h3 .color1 {
  color: #746b64;
}
#section09 .title-area h3 .color2 {
  color: #9d968e;
}
@media screen and (max-width: 991.98px) {
  #section09 .title-area a {
    display: none;
  }
}
#section09 .tab-area {
  position: relative;
}
#section09 .tab-area .step-tabs {
  position: absolute;
  right: 0;
  top: -75px;
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 1439.98px) {
  #section09 .tab-area .step-tabs {
    position: static;
    width: 100%;
    justify-content: space-around;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-tabs {
    gap: 0;
  }
}
@media screen and (max-width: 1439.98px) {
  #section09 .tab-area .step-tabs button {
    border-radius: 20px;
  }
}
#section09 .tab-area .step-tabs button.active {
  position: relative;
}
@media screen and (max-width: 1439.98px) {
  #section09 .tab-area .step-tabs button.active {
    background-color: #7a6e66;
  }
}
#section09 .tab-area .step-tabs button.active::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #7a6e66;
  border-radius: 23px;
  content: "";
  width: 100px;
  height: 46px;
}
@media screen and (max-width: 1439.98px) {
  #section09 .tab-area .step-tabs button.active::after {
    display: none;
  }
}
#section09 .tab-area .step-tabs button.active p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-tabs button.active p {
    font-size: 13px;
  }
}
#section09 .tab-area .step-tabs button p {
  color: #9d968e;
  line-height: 1;
}
@media screen and (max-width: 1439.98px) {
  #section09 .tab-area .step-tabs button p {
    padding: 12px 17px;
  }
}
#section09 .tab-area .step-content {
  display: none;
}
#section09 .tab-area .step-content.active {
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 1439.98px) {
  #section09 .tab-area .step-content.active {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-content.active {
    gap: 30px;
  }
}
#section09 .tab-area .step-content .swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 70px;
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-content .swiper {
    padding-bottom: 50px;
  }
}
#section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .img-area {
  width: 100%;
  max-width: 330px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 330/243;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .img-area {
    max-width: 100%;
    border-radius: 5px;
  }
}
#section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .img-area img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
#section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .img-area p {
  position: absolute;
  left: 20px;
  top: 20px;
  border-radius: 4px;
  padding: 8px 9px;
  font-size: 12px;
  font-weight: 700;
  background-color: #f4f0ea;
  color: #746b64;
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .img-area p {
    left: 7px;
    top: 8px;
    border-radius: 2px;
    padding: 4px 8px;
  }
}
#section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .img-area p.art {
  color: #b29565;
  background-color: #fff0db;
}
#section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area {
  padding: 30px 20px 0;
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area {
    padding: 15px 0 0;
  }
}
#section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area h3 {
  font-size: 18px;
  font-weight: 700;
  color: #746b64;
  line-height: 25px;
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area h3 {
    font-size: 13px;
    line-height: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
#section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area p {
  font-size: 15px;
  color: #746b64;
  line-height: 24px;
  margin: 25px 0 27px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area p {
    display: none;
  }
}
#section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area span {
  color: #9d958f;
  font-size: 14px;
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area span {
    display: none;
  }
}
#section09 .tab-area .step-content .swiper .swiper-controller {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-content .swiper .swiper-controller {
    gap: 50px;
  }
}
#section09 .tab-area .step-content .swiper .swiper-controller .swiper-button-prev,
#section09 .tab-area .step-content .swiper .swiper-controller .swiper-button-next {
  position: static;
  width: 9px;
  height: auto;
  margin-top: 0;
  color: #000;
  flex-shrink: 0;
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-content .swiper .swiper-controller .swiper-button-prev,
  #section09 .tab-area .step-content .swiper .swiper-controller .swiper-button-next {
    width: 7px;
  }
}
#section09 .tab-area .step-content .swiper .swiper-controller .swiper-button-prev::after,
#section09 .tab-area .step-content .swiper .swiper-controller .swiper-button-next::after {
  font-size: 18px;
  color: #000;
}
#section09 .tab-area .step-content .swiper .swiper-controller .swiper-pagination {
  position: static;
  width: fit-content;
  flex-shrink: 0;
}
@media screen and (max-width: 991.98px) {
  #section09 .tab-area .step-content .swiper .swiper-controller .swiper-pagination {
    color: #9d968e;
    font-size: 15px;
  }
}
#section09 .tab-area .step-content .swiper .swiper-controller .swiper-pagination .swiper-pagination-current {
  color: #746b64;
  font-weight: 700;
}
#section09 .tab-area .step-content .swiper .swiper-controller .swiper-pagination .swiper-pagination-bullet {
  background-color: #c2b8b1;
  opacity: 1;
}
#section09 .tab-area .step-content .swiper .swiper-controller .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #7a6e66;
}
#section09 .view-an-no-swiper {
  width: 100%;
}
#section09 .view-an-flat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  #section09 .view-an-flat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
  }
}
#section09 .view-an-flat-grid .img-area {
  width: 100%;
  max-width: 330px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 330/243;
  height: auto;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  #section09 .view-an-flat-grid .img-area {
    max-width: 100%;
    border-radius: 5px;
  }
}
#section09 .view-an-flat-grid .img-area img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
#section09 a.view-an-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
#section09 a.view-an-card-link:hover {
  opacity: 0.92;
}
#section09 .more {
  margin-top: 25px;
}

#section10 .title-area {
  display: flex;
  gap: 13px;
  align-items: flex-end;
  margin-bottom: 40px;
}
@media screen and (max-width: 991.98px) {
  #section10 .title-area {
    margin-bottom: 20px;
  }
}
#section10 .title-area h3 {
  font-size: 60px;
  font-weight: 700;
  color: #2c2721;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 991.98px) {
  #section10 .title-area h3 {
    font-size: 30px;
  }
}
#section10 .title-area h3 span {
  color: #9d968e;
}
@media screen and (max-width: 991.98px) {
  #section10 .title-area a {
    display: none;
  }
}
#section10 .swiper {
  overflow: visible;
}
#section10 .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 991.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide {
    gap: 30px;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .left {
  border-radius: 20px;
  overflow: hidden;
  max-width: 600px;
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .left {
    max-width: 100%;
    width: 100%;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .left .img-area {
  width: 600px;
  height: 462px;
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .left .img-area {
    width: 100%;
    height: auto;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .left .img-area img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#section10 .swiper .swiper-wrapper .swiper-slide .left .text-area {
  background-color: #f9f9f7;
  padding: 42px 40px;
}
@media screen and (max-width: 991.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .left .text-area {
    padding: 20px;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .left .text-area .title {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .left .text-area .title {
    flex-direction: column;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .left .text-area .title .wrap {
  background-color: #7a6e66;
  width: 50px;
  height: 50px;
  border-radius: 7px;
  position: relative;
  align-items: center;
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .left .text-area .title .wrap {
    width: fit-content;
    height: auto;
    padding: 4px 10px;
    border-radius: 20px;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .left .text-area .title .wrap img {
  position: absolute;
  left: 0;
  top: 0;
}
#section10 .swiper .swiper-wrapper .swiper-slide .left .text-area .title .wrap p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 991.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .left .text-area .title .wrap p {
    font-size: 12px;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .left .text-area .title p {
  width: 80%;
  color: #746b64;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .left .text-area .title p {
    width: 100%;
  }
}
@media screen and (max-width: 991.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .left .text-area .title p {
    font-size: 14px;
    line-height: 19px;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .left .text-area span {
  color: #746b64;
  font-size: 15px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .left .text-area span {
    display: none;
  }
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .right {
    width: 100%;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .right .desc {
  font-size: 30px;
  font-weight: 700;
  color: #746b64;
  margin-bottom: 10px;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
}
@media screen and (max-width: 991.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .right .desc {
    font-size: 20px;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .right ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  height: 100%;
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .right ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .right ul li {
    display: flex;
    gap: 14px;
    align-items: center;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .right ul li .img-area {
  border-radius: 15px;
  overflow: hidden;
  width: 370px;
  height: 260px;
  margin-bottom: 15px;
}
@media screen and (max-width: 991.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .right ul li .img-area {
    width: 161px;
    height: 110px;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .right ul li .img-area img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
#section10 .swiper .swiper-wrapper .swiper-slide .right ul li .text-area {
  display: flex;
  gap: 16px;
  width: 360px;
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .right ul li .text-area {
    flex-direction: column;
    width: 70%;
  }
}
@media screen and (max-width: 991.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .right ul li .text-area {
    gap: 9px;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .right ul li .text-area .wrap {
  background-color: #ccc2b2;
  width: 50px;
  height: 50px;
  border-radius: 7px;
  position: relative;
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .right ul li .text-area .wrap {
    width: fit-content;
    height: auto;
    padding: 4px 8px;
    border-radius: 20px;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .right ul li .text-area .wrap img {
  position: absolute;
  left: 0;
  top: 0;
}
#section10 .swiper .swiper-wrapper .swiper-slide .right ul li .text-area .wrap p {
  font-size: 18px;
}
@media screen and (max-width: 991.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .right ul li .text-area .wrap p {
    font-size: 12px;
  }
}
#section10 .swiper .swiper-wrapper .swiper-slide .right ul li .text-area p {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  color: #746b64;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 80%;
}
@media screen and (max-width: 1439.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .right ul li .text-area p {
    -webkit-line-clamp: 3;
    width: 100%;
  }
}
@media screen and (max-width: 991.98px) {
  #section10 .swiper .swiper-wrapper .swiper-slide .right ul li .text-area p {
    font-size: 13px;
    line-height: 18px;
  }
}
#section10 .swiper .swiper-controller {
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  #section10 .swiper .swiper-controller {
    gap: 50px;
  }
}
#section10 .swiper .swiper-controller .swiper-button-prev,
#section10 .swiper .swiper-controller .swiper-button-next {
  position: static;
  width: 9px;
  height: auto;
  margin-top: 0;
  color: #000;
  flex-shrink: 0;
}
@media screen and (max-width: 991.98px) {
  #section10 .swiper .swiper-controller .swiper-button-prev,
  #section10 .swiper .swiper-controller .swiper-button-next {
    width: 7px;
  }
}
#section10 .swiper .swiper-controller .swiper-button-prev::after,
#section10 .swiper .swiper-controller .swiper-button-next::after {
  font-size: 18px;
  color: #000;
}
#section10 .swiper .swiper-controller .swiper-pagination {
  position: static;
  width: fit-content;
  flex-shrink: 0;
}
@media screen and (max-width: 991.98px) {
  #section10 .swiper .swiper-controller .swiper-pagination {
    color: #9d968e;
    font-size: 15px;
  }
}
#section10 .swiper .swiper-controller .swiper-pagination .swiper-pagination-current {
  color: #746b64;
  font-weight: 700;
}
#section10 .swiper .swiper-controller .swiper-pagination .swiper-pagination-bullet {
  background-color: #c2b8b1;
  opacity: 1;
}
#section10 .swiper .swiper-controller .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #7a6e66;
}
#section10 .more {
  margin-top: 80px;
}

#section11 .section11-empty,
#section09 .section11-empty,
#section10 .section11-empty,
#section04 .section11-empty,
#section05 .section11-empty {
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 48px 28px;
  text-align: center;
  border: 1px dashed #c9c4be;
  border-radius: 16px;
  background: #fff;
  color: #5c534c;
}
@media screen and (max-width: 991.98px) {
  #section11 .section11-empty,
  #section09 .section11-empty,
  #section10 .section11-empty,
  #section04 .section11-empty,
  #section05 .section11-empty {
    margin-bottom: 48px;
    padding: 32px 20px;
  }
}
#section11 .section11-empty .section11-empty__title,
#section09 .section11-empty .section11-empty__title,
#section10 .section11-empty .section11-empty__title,
#section04 .section11-empty .section11-empty__title,
#section05 .section11-empty .section11-empty__title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: #2c2721;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
}
@media screen and (max-width: 991.98px) {
  #section11 .section11-empty .section11-empty__title,
  #section09 .section11-empty .section11-empty__title,
  #section10 .section11-empty .section11-empty__title,
  #section04 .section11-empty .section11-empty__title,
  #section05 .section11-empty .section11-empty__title {
    font-size: 18px;
  }
}
#section11 .section11-empty .section11-empty__text,
#section09 .section11-empty .section11-empty__text,
#section10 .section11-empty .section11-empty__text,
#section04 .section11-empty .section11-empty__text,
#section05 .section11-empty .section11-empty__text {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
}
#section11 .section11-empty .section11-empty__hint,
#section09 .section11-empty .section11-empty__hint,
#section10 .section11-empty .section11-empty__hint,
#section04 .section11-empty .section11-empty__hint,
#section05 .section11-empty .section11-empty__hint {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid #ece8e2;
  font-size: 13px;
  line-height: 1.55;
  color: #8e8177;
  text-align: left;
}

#section09 .step-content.step-content--empty.active {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: clamp(340px, 52vh, 580px);
  box-sizing: border-box;
  padding-block: 24px 48px;
}
@media screen and (max-width: 991.98px) {
  #section09 .step-content.step-content--empty.active {
    min-height: clamp(280px, 46vh, 480px);
    padding-block: 16px 40px;
  }
}

#section09 .step-content--empty.active .section11-empty {
  margin-bottom: 0;
}
@media screen and (max-width: 991.98px) {
  #section09 .step-content--empty.active .section11-empty {
    margin-bottom: 0;
  }
}

#section11 {
  background-color: #f9f9f7;
}
#section11 .title-area {
  display: flex;
  gap: 13px;
  align-items: flex-end;
  margin-bottom: 40px;
  justify-content: center;
}
@media screen and (max-width: 991.98px) {
  #section11 .title-area {
    margin-bottom: 20px;
  }
}
#section11 .title-area h3 {
  font-size: 60px;
  font-weight: 700;
  color: #2c2721;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 991.98px) {
  #section11 .title-area h3 {
    font-size: 30px;
  }
}
#section11 .title-area h3 span {
  color: #9d968e;
}
@media screen and (max-width: 991.98px) {
  #section11 .title-area a {
    display: none;
  }
}
#section11 .tab-area .step-tabs {
  display: flex;
  max-width: 1180px;
  margin: 0 auto 60px;
  border: 1px solid #bab6b0;
  border-radius: 999px;
}
#section11 .tab-area .step-tabs .step-tab {
  flex: 1;
  height: 56px;
  border: 0;
  border-radius: 999px;
  background-color: transparent;
  color: #8e8177;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
#section11 .tab-area .step-tabs .step-tab p {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 0 auto;
}
#section11 .tab-area .step-tabs .step-tab.active p {
  color: #fff;
  font-weight: 700;
}
#section11 .tab-area .step-tabs .step-tab.active::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background-color: #7a6e66;
  z-index: 1;
}
@media screen and (max-width: 1439.98px) {
  #section11 .tab-area .step-tabs {
    border: 0;
    border-radius: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    /* ?�� �? �? 4�? */
    /* ?�� ?���? �? 5�? */
  }
  #section11 .tab-area .step-tabs .step-tab {
    height: 48px;
    border: 1px solid #d3cdc6;
    background-color: #fff;
  }
  #section11 .tab-area .step-tabs .step-tab:nth-child(-n+4) {
    flex: 0 0 calc((100% - 30px) / 4);
    max-width: calc((100% - 30px) / 4);
  }
  #section11 .tab-area .step-tabs .step-tab:nth-child(n+5) {
    flex: 0 0 calc((100% - 40px) / 5);
    max-width: calc((100% - 40px) / 5);
  }
  #section11 .tab-area .step-tabs .step-tab.active p {
    color: #fff;
  }
  #section11 .tab-area .step-tabs .step-tab.active::after {
    background-color: #ebca6d;
  }
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-tabs {
    max-width: 100%;
    padding: 0 16px;
    gap: 8px;
  }
  #section11 .tab-area .step-tabs .step-tab {
    flex: 0 0 calc((100% - 16px) / 3);
    max-width: calc((100% - 16px) / 3);
    height: 44px;
    font-size: 14px;
  }
}
@media screen and (max-width: 543.98px) {
  #section11 .tab-area .step-tabs .step-tab {
    flex: 0 0 calc((100% - 8px) / 2);
    max-width: calc((100% - 8px) / 2);
  }
}
#section11 .tab-area .step-content {
  display: none;
}
#section11 .tab-area .step-content.active {
  display: flex;
  gap: 80px;
}
#section11 .tab-area .step-content .swiper {
  width: 100%;
  overflow: visible;
  /* 슬라이드 1장: Swiper loop 시 swiper-slide-active 가 안 붙어 텍스트·컬러가 빠지는 경우 보정 */
}
#section11 .tab-area .step-content .swiper.swiper--single-slide .swiper-slide {
  filter: grayscale(0);
  height: 780px;
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-content .swiper.swiper--single-slide .swiper-slide {
    height: auto;
  }
}
#section11 .tab-area .step-content .swiper.swiper--single-slide .swiper-slide .text-area {
  display: flex;
}
#section11 .tab-area .step-content .swiper .swiper-wrapper {
  align-items: center;
}
#section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide {
  position: relative;
  filter: grayscale(1);
  height: 591px;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 1439.98px) {
  #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide {
    border-radius: 0;
  }
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide {
    height: auto;
  }
}
#section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide.swiper-slide-active, #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active {
  filter: grayscale(0);
  height: 780px;
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide.swiper-slide-active, #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active {
    height: auto;
  }
}
#section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .text-area, #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide.swiper-slide-duplicate-active .text-area {
  display: flex;
}
#section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .img-area {
  border-radius: 19px;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 1439.98px) {
  #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .img-area {
    border-radius: 0;
  }
}
#section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .img-area img {
  width: 100%;
  height: 100%;
}
#section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area {
  position: absolute;
  left: 90px;
  bottom: 70px;
  color: #fff;
  display: none;
  align-items: center;
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area {
    position: static;
    color: #746b64;
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}
#section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area div {
  display: flex;
  align-items: center;
}
#section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area div h4 {
  font-size: 90px;
  font-weight: 700;
  font-family: "Philosopher", "Pretendard Variable", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area div h4 {
    font-size: 50px;
  }
}
#section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area div p {
  font-size: 28px;
  line-height: 34px;
  font-weight: 600;
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area div p {
    font-size: 17px;
    line-height: 19px;
  }
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area > .line {
    display: none;
  }
}
#section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area .line {
  height: stretch;
  width: 1px;
  background-color: #fff;
  margin: 0 32px 0 27px;
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area .line {
    background-color: #746b64;
    height: 35px;
    margin: 0 15px;
  }
}
#section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area span {
  font-size: 18px;
  line-height: 27px;
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-content .swiper .swiper-wrapper .swiper-slide .text-area span {
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    width: 95%;
  }
}
#section11 .tab-area .step-content .swiper .swiper-controller {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: auto;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-content .swiper .swiper-controller {
    gap: 50px;
  }
}
#section11 .tab-area .step-content .swiper .swiper-controller .swiper-button-prev,
#section11 .tab-area .step-content .swiper .swiper-controller .swiper-button-next {
  position: static;
  width: 9px;
  height: auto;
  margin-top: 0;
  color: #000;
  flex-shrink: 0;
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-content .swiper .swiper-controller .swiper-button-prev,
  #section11 .tab-area .step-content .swiper .swiper-controller .swiper-button-next {
    width: 7px;
    display: none;
  }
}
#section11 .tab-area .step-content .swiper .swiper-controller .swiper-button-prev::after,
#section11 .tab-area .step-content .swiper .swiper-controller .swiper-button-next::after {
  font-size: 18px;
  color: #000;
}
#section11 .tab-area .step-content .swiper .swiper-controller .swiper-pagination {
  position: static;
  width: fit-content;
  flex-shrink: 0;
}
@media screen and (max-width: 991.98px) {
  #section11 .tab-area .step-content .swiper .swiper-controller .swiper-pagination {
    color: #9d968e;
    font-size: 15px;
  }
}
#section11 .tab-area .step-content .swiper .swiper-controller .swiper-pagination .swiper-pagination-current {
  color: #746b64;
  font-weight: 700;
}
#section11 .tab-area .step-content .swiper .swiper-controller .swiper-pagination .swiper-pagination-bullet {
  background-color: #c2b8b1;
  opacity: 1;
}
#section11 .tab-area .step-content .swiper .swiper-controller .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #7a6e66;
}