@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "URWClassico";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/URWClassico-Regular.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "URWClassico";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/URWClassico-Bold.woff") format("woff");
}
@font-face {
  font-display: fallback;
  font-family: "Pretendard";
  font-weight: 300;
  src: url("./fonts/Pretendard-Light.woff2") format("woff2"), url("./fonts/Pretendard-Light.woff") format("woff");
}
@font-face {
  font-display: fallback;
  font-family: "Pretendard";
  font-weight: 400;
  src: url("./fonts/Pretendard-Regular.woff2") format("woff2"), url("./fonts/Pretendard-Regular.woff") format("woff");
}
@font-face {
  font-display: fallback;
  font-family: "Pretendard";
  font-weight: 500;
  src: url("./fonts/Pretendard-Medium.woff2") format("woff2"), url("./fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-display: fallback;
  font-family: "Pretendard";
  font-weight: 700;
  src: url("./fonts/Pretendard-Bold.woff2") format("woff2"), url("./fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-display: fallback;
  font-family: "Pretendard";
  font-weight: 800;
  src: url("./fonts/Pretendard-ExtraBold.woff2") format("woff2"), url("./fonts/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "SUIT";
  font-weight: 400;
  text-rendering: optimizeLegibility;
  src: url("./fonts/SUIT-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "SUIT";
  font-weight: 500;
  text-rendering: optimizeLegibility;
  src: url("./fonts/SUIT-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "SUIT";
  font-weight: 600;
  text-rendering: optimizeLegibility;
  src: url("./fonts/SUIT-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "SUIT";
  font-weight: 700;
  text-rendering: optimizeLegibility;
  src: url("./fonts/SUIT-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "SUIT";
  font-weight: 800;
  text-rendering: optimizeLegibility;
  src: url("./fonts/SUIT-ExtraBold.woff2") format("woff2");
}
:root {
  --font-4xl: 4.8rem;
  --font-3xl: 4rem;
  --font-2xl: 3.2rem;
  --font-xl: 2.8rem;
  --font-lg: 2.2rem;
  --font-md: 1.8rem;
  --font-sm: 1.6rem;
  --font-xs: 1.3rem;
  --font-2xs: 1.2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard", "Apple SD Gothic Neo", "맑은 고딕", "Malgun Gothic", "Dotum", "돋움", sans-serif;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
  -webkit-text-size-adjust: none;
  text-size-adjust: 100%;
  -ms-overflow-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  word-break: keep-all;
}

img,
fieldset,
iframe {
  border: 0;
  vertical-align: top;
}

button {
  padding: 0;
  border: none;
  background: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

em,
address,
i {
  font-style: normal;
}

strong {
  font-weight: 700;
}

ul,
ol,
li {
  list-style: none;
}

input,
select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  vertical-align: middle;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button {
  -moz-appearance: none;
  appearance: none;
}

input[type=search]::-moz-search-cancel-button {
  display: none;
}

input[type=search]::-ms-clear {
  display: none;
}

textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
  resize: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  word-break: normal;
}

th,
td {
  text-align: center;
  vertical-align: middle;
}

caption {
  overflow: hidden;
  position: static;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

hr {
  margin: 50px 0;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

video {
  border: 0;
  outline: none;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ====================
  스크롤바
==================== */
html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 6px;
}

html::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 6px;
}

html::-webkit-scrollbar-track {
  background-color: #E5E5E5;
}

body * ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 6px;
}

body * ::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 6px;
}

body * ::-webkit-scrollbar-track {
  background-color: #E5E5E5;
}

.scroll-x-sec::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

:root {
  --header-top-height: 56px;
  --header-height: 72px;
  --main-inner: 1480px;
  --form-inner: 1040px;
  --spacing-x: 20px;
  --sub-bottom-margin: 120px;
  --footer-height: 264px;
  --header-duration: .6s;
}
@media screen and (max-width: 1199px) {
  :root {
    --main-inner: 100%;
    --form-inner: 100%;
    --header-height: 60px;
    --nav-top-height: 80px;
    --nav-util-height: 50px;
    --sub-bottom-margin: 60px;
    --footer-height: 174px;
  }
}

/* ====================
  기본 정의
==================== */
html {
  overscroll-behavior-y: contain;
  position: relative;
  min-height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  min-height: 100%;
  margin: 0;
  background-color: #fff;
  font-family: "Pretendard", "Apple SD Gothic Neo", "맑은 고딕", "Malgun Gothic", "Dotum", "돋움", sans-serif;
  color: #1D1D1D;
  font-size: var(--font-md);
  font-weight: 400;
  line-height: 1.5;
}

a,
table,
input,
select,
textarea,
button,
pre {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-family: "Pretendard", "Apple SD Gothic Neo", "맑은 고딕", "Malgun Gothic", "Dotum", "돋움", sans-serif;
  color: #1D1D1D;
  font-size: var(--font-sm);
  font-weight: 400;
  line-height: 1.4;
  border: 0;
}

select {
  background-color: #fff;
}

button:disabled {
  cursor: default;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
.bold {
  font-weight: 700;
}

.offscreen {
  overflow: hidden;
  display: inline-block;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}

.ellipsis {
  display: inline-block;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ellipsis2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis3 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a[href^=tel], a:focus, a:hover {
  color: inherit;
}

.nowrap {
  white-space: nowrap;
}

/* 정렬 */
.align_l {
  text-align: left !important;
}

.align_c {
  text-align: center !important;
}

.align_r {
  text-align: right !important;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 디스플레이 */
.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.visi_hidden {
  visibility: hidden !important;
}

.pc-br {
  display: block;
}

.mo-br {
  display: none;
}

.pc-only {
  display: block !important;
}

.mo-only {
  display: none !important;
}

@media screen and (max-width: 1199px) {
  .pc-only {
    display: none !important;
  }
  .mo-only {
    display: block !important;
  }
  .pc-br {
    display: none;
  }
  .mo-br {
    display: block;
  }
}
/* ====================
  폰트 & 타이틀
==================== */
.font1-h1 {
  font-family: "Pretendard";
  font-size: 80px;
  font-weight: 500;
  line-height: 1.5;
  color: #212842;
}

.font2-h1 {
  font-family: "URWClassico";
  font-size: 80px;
  font-weight: 400;
  line-height: 1.5;
  color: #212842;
  letter-spacing: -1px;
}

.font1-h2 {
  font-family: "Pretendard";
  font-size: 62px;
  font-weight: 500;
  line-height: 1.5;
  color: #212842;
}

.font2-h2 {
  font-family: "URWClassico";
  font-size: 62px;
  font-weight: 400;
  line-height: 1.5;
  color: #212842;
  letter-spacing: -1px;
}

.font1-h3 {
  font-family: "Pretendard";
  font-size: 52px;
  font-weight: 500;
  line-height: 1.5;
  color: #212842;
}

.font2-h3 {
  font-family: "URWClassico";
  font-size: 52px;
  font-weight: 400;
  line-height: 1.5;
  color: #212842;
  letter-spacing: -1px;
}

.font1-h4 {
  font-family: "Pretendard";
  font-size: 40px;
  font-weight: 500;
  line-height: 1.5;
  color: #212842;
}

.font2-h4 {
  font-family: "URWClassico";
  font-size: 40px;
  font-weight: 400;
  line-height: 1.5;
  color: #212842;
  letter-spacing: -1px;
}

.font1-h5 {
  font-family: "Pretendard";
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  color: #212842;
}

.font2-h5 {
  font-family: "URWClassico";
  font-size: 32px;
  font-weight: 400;
  line-height: 1.5;
  color: #212842;
  letter-spacing: -1px;
}

.font1-h6 {
  font-family: "Pretendard";
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  color: #212842;
}

.font2-h6 {
  font-family: "URWClassico";
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  color: #212842;
  letter-spacing: -1px;
}

.font1-h7 {
  font-family: "Pretendard";
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #212842;
}

.font2-h7 {
  font-family: "URWClassico";
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #212842;
  letter-spacing: -1px;
}

/* ====================
  form
==================== */
.area-form {
  position: relative;
  margin-top: 24px;
}
.area-form .box-label {
  display: flex;
  width: 100%;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #1D1D1D;
}
.area-form .box-label .right {
  margin-left: auto;
}
.area-form .ipt {
  padding: 0 12px;
  width: 100%;
  height: 56px;
  border: 1px solid #BABABA;
  border-radius: 2px;
}
.area-form .ipt.calendar {
  padding: 0 40px 0 12px;
  text-align: left;
  background: url(../images/common/ico_calendar_gray.svg) right 12px top 50%/20px no-repeat;
}
.area-form .textarea {
  display: block;
  width: 100%;
  padding: 16px 8px;
  min-height: 204px;
  resize: none;
  font-size: 16px;
  white-space: pre-wrap;
  border: 1px solid #CBCBCB;
  border-radius: 2px;
}
.area-form .form-item {
  display: inline-block;
  width: calc(50% - 12px);
  vertical-align: top;
}
.area-form .form-item + .form-item {
  margin-left: 19px;
}
.area-form.email {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.area-form.email .ipt {
  width: calc((100% - 30px) / 2);
}
.area-form.email .dot {
  margin: 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #1D1D1D;
}
.area-form.email .select-form {
  width: calc((100% - 30px) / 2);
}
.area-form.email .form-item {
  width: calc((100% - 30px) / 2);
}
.area-form.email .form-item .ipt {
  width: 100%;
}
.area-form .select-form {
  position: relative;
  width: 100%;
  height: 56px;
  border: 1px solid #BABABA;
  border-radius: 2px;
}
.area-form .select-form::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 20px;
  height: 20px;
  background-position: center;
  background-image: url(../images/common/ico_arrow_down_gray.svg);
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.area-form .select-form select {
  width: 100%;
  height: 100%;
  padding: 0 42px 0 12px;
  font-size: 16px;
  color: #7D7D7D;
}
.area-form .select-form select optgroup {
  color: #1D1D1D;
}
.area-form .select-form select option {
  color: #272B2F;
}
.area-form .select-form select option[disabled] {
  color: #7D7D7D;
}
.area-form .select-form select.change {
  color: #272B2F;
}
.area-form .select-form.on::after {
  transform: translateY(-50%) rotate(-180deg);
}
@media screen and (max-width: 1199px) {
  .area-form {
    margin-top: 20px;
  }
  .area-form .ipt {
    height: 48px;
  }
  .area-form .select-form {
    height: 48px;
  }
  .area-form .form-item {
    width: 100%;
  }
  .area-form .form-item + .form-item {
    margin-left: 0;
    margin-top: 20px;
  }
}

.hint {
  display: none;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #FF383C;
}

.file-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.file-item label {
  flex: none;
  display: block;
  width: auto;
  min-width: 80px;
  min-height: 32px;
  padding: 5px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #212842;
  cursor: pointer;
}
.file-item .file-name-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: 8px;
}
.file-item .file-name {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  min-height: 26px;
  font-size: 12px;
  font-weight: 600;
  color: #1D1D1D;
  border-radius: 26px;
  background-color: #E9ECEF;
}
.file-item .file-name .btn-delete {
  flex: none;
  width: 12px;
  height: 12px;
  background: url(../images/common/ico_delete.svg) center/cover no-repeat;
}
@media screen and (max-width: 1199px) {
  .file-item label {
    min-width: 100%;
    text-align: center;
  }
  .file-item .file-name-wrap {
    align-items: flex-start;
    flex-direction: column;
    margin-left: 0;
    margin-top: 8px;
  }
}

.block-terms {
  margin-top: 24px;
  display: flex;
  width: 100%;
  padding: 16px 24px;
  border: 1px solid #BABABA;
  border-radius: 2px;
}
.block-terms .btn-terms {
  margin-left: auto;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  color: #272B2F;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.check-item {
  display: inline-flex;
  align-items: center;
}
.check-item input[type=checkbox] {
  flex: none;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
  border: 1px solid #5A5A5A;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  background-position: center;
  background-size: 12px;
  background-repeat: no-repeat;
}
.check-item input[type=checkbox] + label {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.2px;
  cursor: pointer;
}
.check-item input[type=checkbox]:checked {
  background-color: #212842;
  background-image: url(../images/common/ico_check_white.svg);
}
.check-item input[type=checkbox]:checked:disabled, .check-item input[type=checkbox]:checked[readonly] {
  background-image: url(../images/common/ico_check_disabled.svg);
}
.check-item input[type=checkbox]:disabled, .check-item input[type=checkbox][readonly] {
  border-color: #BABABA;
  background-color: #E9ECEF;
}

.required {
  display: inline-block;
  margin-left: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #FF383C;
  vertical-align: top;
}

/* ====================
  Breadcrumb
==================== */
.breadcrumb {
  display: flex;
}
.breadcrumb > li {
  position: relative;
}
.breadcrumb > li:not(:last-child) {
  padding-right: 24px;
}
.breadcrumb > li:not(:last-child)::after {
  content: "";
  overflow: hidden;
  position: absolute;
  z-index: 1;
  width: 6px;
  height: 6px;
  box-sizing: border-box;
  border: 1px solid #5A5A5A;
  border-width: 0 1px 1px 0;
  transform: rotate(-45deg);
  position: absolute;
  top: 11px;
  right: 11px;
}
.breadcrumb > li:last-child > a {
  cursor: default;
  font-weight: 600;
  color: #1D1D1D;
}
.breadcrumb > li > a {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #5A5A5A;
}
.breadcrumb .tabs {
  display: none;
}

/* ====================
  리스트
==================== */
.list-disc > li {
  position: relative;
  padding-left: 22px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #1D1D1D;
}
.list-disc > li::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 12px;
  left: 8px;
  z-index: 1;
  width: 3px;
  height: 3px;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: #1D1D1D;
}
@media screen and (max-width: 1199px) {
  .list-disc > li {
    font-size: 14px;
  }
  .list-disc > li::before {
    top: 9px;
  }
}

/* ====================
  테이블
==================== */
.area-table {
  margin-top: 20px;
}
.area-table [class^=table-] {
  position: relative;
  background-color: #fff;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}
.area-table [class^=table-]::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 2px;
  box-sizing: border-box;
  background-color: #1D1D1D;
  z-index: 3;
}
.area-table [class^=table-]::after {
  content: "";
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 2px;
  box-sizing: border-box;
  background-color: #1D1D1D;
  z-index: 3;
}
.area-table [class^=table-] tr.line th,
.area-table [class^=table-] tr.line td {
  position: relative;
}
.area-table [class^=table-] tr.line th::before,
.area-table [class^=table-] tr.line td::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  box-sizing: border-box;
  background-color: #282828;
}
.area-table [class^=table-] th,
.area-table [class^=table-] td {
  padding: 16px 14px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  height: 56px;
  color: #1D1D1D;
  word-break: break-word;
  border-left: 1px solid #D6D7D9;
  border-bottom: 1px solid #D6D7D9;
}
.area-table [class^=table-] th .btn-default,
.area-table [class^=table-] td .btn-default {
  vertical-align: middle;
}
.area-table [class^=table-] th:first-child,
.area-table [class^=table-] td:first-child {
  border-left: 0;
}
.area-table [class^=table-] th[rowspan],
.area-table [class^=table-] td[rowspan] {
  border-right: 1px solid #D6D7D9;
}
.area-table [class^=table-] th:last-child,
.area-table [class^=table-] td:last-child {
  border-right: 0;
}
.area-table [class^=table-] th.text-r,
.area-table [class^=table-] td.text-r {
  text-align: right;
}
.area-table [class^=table-] th.text-l,
.area-table [class^=table-] td.text-l {
  text-align: left;
}
.area-table [class^=table-] th {
  font-weight: 600;
}
.area-table [class^=table-].wid-hall {
  min-width: 2280px;
}
.area-table [class^=table-].wid-mini {
  min-width: 360px;
}
.area-table [class^=table-].wid-500 {
  min-width: 500px;
}
.area-table [class^=table-].wid-600 {
  min-width: 600px;
}
.area-table [class^=table-].pd-sm th,
.area-table [class^=table-].pd-sm td {
  padding: 16px 8px;
}
.area-table .table-col thead {
  position: relative;
}
.area-table .table-col thead::after {
  content: "";
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  box-sizing: border-box;
  background-color: #282828;
}
.area-table.is-pc {
  display: block;
}
.area-table.is-mo {
  display: none;
}
.area-table .ico-tbl {
  display: block;
  margin: auto;
  max-width: 100%;
}
.area-table .link {
  font-size: inherit;
}
@media screen and (min-width: 1200px) {
  .area-table .link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .area-table .link:hover:has(.point1) {
    text-decoration-color: #A47864;
  }
}
.area-table .point1 {
  font-weight: 600;
  color: #A47864;
}
.area-table .point2 {
  color: #7D7D7D;
}
.area-table .semibold {
  font-weight: 600;
}
@media screen and (max-width: 1199px) {
  .area-table [class^=table-] th,
  .area-table [class^=table-] td {
    font-size: 14px;
  }
  .area-table.is-pc {
    display: none;
  }
  .area-table.is-mo {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .area-table .ico-tbl {
    width: auto;
    height: 36px;
  }
}
.area-table.table-fixed {
  position: relative;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.area-table.table-fixed th,
.area-table.table-fixed td {
  background-color: #fff;
}
.area-table.table-fixed th.fixed,
.area-table.table-fixed td.fixed {
  position: sticky;
  z-index: 2;
  background-color: #fff;
}
.area-table.table-fixed th.fixed::after,
.area-table.table-fixed td.fixed::after {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 1px;
  right: -1px;
  z-index: 1;
  width: 1px;
  height: 100%;
  box-sizing: border-box;
  background-color: #D6D7D9;
}
.area-table.table-fixed th.fixed::before,
.area-table.table-fixed td.fixed::before {
  content: "";
  overflow: hidden;
  position: absolute;
  bottom: -1px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 1px;
  box-sizing: border-box;
  background-color: #D6D7D9;
}
.area-table.table-fixed::-webkit-scrollbar-track {
  background-color: #fff;
}

.detail-info {
  display: block;
  margin-top: 20px;
  text-align: right;
}
.detail-info .text {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #7D7D7D;
}
@media screen and (max-width: 1199px) {
  .detail-info {
    margin-top: 8px;
    text-align: left;
  }
}

.area-table-img {
  display: none;
}

@media screen and (max-width: 1199px) {
  .area-table-img {
    position: relative;
    display: block;
    padding: 12px;
    border: 1px solid #E9ECEF;
  }
  .area-table-img img {
    width: 100%;
  }
  .area-table-img .ico-zoom {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    background-size: 24px;
    background-position: center;
    background-image: url(../images/common/ico_zoom_white.svg);
    background-repeat: no-repeat;
  }
}
/* ====================
  셀렉트
==================== */
.area-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.area-filter [class^=select-] {
  margin-right: 10px;
}
.area-filter .right {
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  .area-filter {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .area-filter [class^=select-] {
    margin-right: 0;
  }
  .area-filter .right {
    display: none;
  }
}

.select-item {
  display: inline-block;
  height: 26px;
  position: relative;
  vertical-align: middle;
}
.select-item::after {
  content: "";
  overflow: hidden;
  position: absolute;
  z-index: 1;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border: 1px solid #06080E;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  top: 9px;
  right: 4px;
  transition: all 0.3s ease;
}
.select-item select {
  width: 100%;
  height: 100%;
  padding-right: 24px;
  font-size: 16px;
  font-weight: 700;
  color: #1D1D1D;
  background-color: transparent;
}
.select-item.on::after {
  transform: rotate(-135deg);
  top: 13px;
}

.select-border {
  display: inline-block;
  position: relative;
  width: 122px;
  height: 48px;
  vertical-align: middle;
  border: 1px solid #BABABA;
  border-radius: 2px;
}
.select-border::after {
  content: "";
  overflow: hidden;
  position: absolute;
  z-index: 1;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border: 1px solid #06080E;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  top: 16px;
  right: 14px;
  transition: all 0.3s ease;
}
.select-border select {
  width: 100%;
  height: 100%;
  padding: 8px 32px 8px 16px;
  font-size: 16px;
  font-weight: 400;
  color: #1D1D1D;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.select-border.on::after {
  top: 20px;
  transform: rotate(-135deg);
}
@media screen and (max-width: 1199px) {
  .select-border {
    width: 100%;
    height: 40px;
  }
  .select-border::after {
    top: 12px;
  }
  .select-border select {
    font-size: 14px;
  }
  .select-border.on::after {
    top: 16px;
  }
}

.filter-refresh {
  flex: none;
  display: inline-block;
  width: 48px;
  height: 48px;
  background-position: center;
  background-size: 20px;
  background-image: url(../images/common/ico_refresh.svg);
  background-repeat: no-repeat;
  border: 1px solid #1D1D1D;
}

.filter-search {
  display: inline-block;
  padding: 8px 44px 8px 20px;
  min-width: 120px;
  height: 48px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  background-color: #A47864;
  background-size: 20px;
  background-position: right 20px top 14px;
  background-image: url(../images/common/ico_search2_white.svg);
  background-repeat: no-repeat;
}

/* ====================
  버튼
==================== */
.area-sticky-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
}
.area-sticky-btn .btn-inquiry {
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: top;
  width: 100%;
  min-height: 60px;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background-color: #A47864;
}
.area-sticky-btn .btn-inquiry:hover, .area-sticky-btn .btn-inquiry:focus {
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .area-sticky-btn {
    display: block;
  }
}

.btn-default {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: top;
  position: relative;
  width: auto;
  min-width: 210px;
  min-height: 60px;
  padding: 0 16px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  transition: all 0.2s ease;
  overflow: hidden;
}
.btn-default > span {
  position: relative;
  z-index: 1;
}
.btn-default > i {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.btn-default .arrow {
  margin-left: 8px;
  background-image: url(../images/common/ico_arrow_right.svg);
}
.btn-default .download {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  background-image: url(../images/common/ico_download_white.svg);
}
.btn-default .download2 {
  margin-left: 8px;
  background-image: url(../images/common/ico_download.svg);
}
.btn-default .vr {
  width: 24px;
  height: 24px;
  margin-left: 8px;
  background-image: url(../images/common/ico_vr.svg);
}
.btn-default .location {
  margin-left: 8px;
  background-image: url(../images/common/ico_location.svg);
}
.btn-default .instagram {
  margin-left: 8px;
  background-image: url(../images/common/ico_instagram_black.svg);
}
.btn-default .heart {
  width: 32px;
  height: 32px;
  margin-right: 4px;
  background-image: url(../images/common/ico_heart.svg);
}
.btn-default.auto {
  min-width: auto;
}
.btn-default.wid-120 {
  min-width: 120px;
}
.btn-default.lg {
  min-height: 64px;
}
.btn-default.md {
  min-width: auto;
  padding: 0 32px;
  min-height: 48px;
  font-size: 16px;
}
.btn-default.sm {
  min-height: 40px;
  font-size: 16px;
}
.btn-default.xsm {
  min-height: 32px;
  font-size: 14px;
}
.btn-default.pry {
  background: #212842;
  color: #fff;
}
.btn-default.pry:disabled, .btn-default.pry.disabled {
  background: #212842;
  color: #fff;
}
.btn-default.sec1 {
  background: #A47864;
  color: #fff;
}
.btn-default.sec1:disabled, .btn-default.sec1.disabled {
  background: #A47864;
  color: #fff;
}
.btn-default.sec2 {
  background: #46514C;
  color: #fff;
}
.btn-default.sec2:disabled, .btn-default.sec2.disabled {
  background: #46514C;
  color: #fff;
}
.btn-default.sec3 {
  background: #212842;
  color: #fff;
}
.btn-default.sec3:disabled, .btn-default.sec3.disabled {
  background: #212842;
  color: #fff;
}
.btn-default.line1 {
  border: 1px solid #1D1D1D;
  color: #1D1D1D;
  background: transparent;
}
.btn-default.line1:disabled, .btn-default.line1.disabled {
  border: 1px solid #1D1D1D;
  color: #1D1D1D;
  background: transparent;
}
.btn-default.line2 {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-default.line2:disabled, .btn-default.line2.disabled {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.area-btns .btn-default.md.line1::before,
.right .btn-default.md.line1::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -150%;
  z-index: 1;
  width: 130%;
  height: 103%;
  box-sizing: border-box;
  background-color: #1D1D1D;
  transform: skew(-16deg);
  transition: all 0.35s ease-in-out;
}
.area-btns .btn-default.md.line1:not(:disabled):hover, .area-btns .btn-default.md.line1:not(:disabled):focus-visible,
.right .btn-default.md.line1:not(:disabled):hover,
.right .btn-default.md.line1:not(:disabled):focus-visible {
  color: #fff;
  border: 1px solid #fff;
}
.area-btns .btn-default.md.line1:not(:disabled):hover::before, .area-btns .btn-default.md.line1:not(:disabled):focus-visible::before,
.right .btn-default.md.line1:not(:disabled):hover::before,
.right .btn-default.md.line1:not(:disabled):focus-visible::before {
  left: -10%;
}
.area-btns .btn-default.md.line1:not(:disabled):hover .arrow, .area-btns .btn-default.md.line1:not(:disabled):focus-visible .arrow,
.right .btn-default.md.line1:not(:disabled):hover .arrow,
.right .btn-default.md.line1:not(:disabled):focus-visible .arrow {
  background-image: url(../images/common/ico_arrow_white.svg);
}
.area-btns .btn-default.md.line1:not(:disabled):hover .download2, .area-btns .btn-default.md.line1:not(:disabled):focus-visible .download2,
.right .btn-default.md.line1:not(:disabled):hover .download2,
.right .btn-default.md.line1:not(:disabled):focus-visible .download2 {
  background-image: url(../images/common/ico_download_white.svg);
}
.area-btns .btn-default.md.line1:not(:disabled):hover .location, .area-btns .btn-default.md.line1:not(:disabled):focus-visible .location,
.right .btn-default.md.line1:not(:disabled):hover .location,
.right .btn-default.md.line1:not(:disabled):focus-visible .location {
  background-image: url(../images/common/ico_location_white.svg);
}
.area-btns .btn-default.md.line1:not(:disabled):hover .instagram, .area-btns .btn-default.md.line1:not(:disabled):focus-visible .instagram,
.right .btn-default.md.line1:not(:disabled):hover .instagram,
.right .btn-default.md.line1:not(:disabled):focus-visible .instagram {
  background-image: url(../images/common/ico_instagram_white.svg);
}

@media screen and (max-width: 1199px) {
  .right .btn-default.md.line1.is-pc {
    display: none;
  }
}

.btn-default.lg.pry::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -150%;
  z-index: 1;
  width: 130%;
  height: 103%;
  box-sizing: border-box;
  background-color: #fff;
  transform: skew(-16deg);
  transition: all 0.35s ease-in-out;
}
.btn-default.lg.pry:not(:disabled):hover, .btn-default.lg.pry:not(:disabled):focus-visible {
  color: #212842;
  border: 1px solid #212842;
}
.btn-default.lg.pry:not(:disabled):hover::before, .btn-default.lg.pry:not(:disabled):focus-visible::before {
  left: -10%;
}
.btn-default.lg.pry:not(:disabled):hover .vr, .btn-default.lg.pry:not(:disabled):focus-visible .vr {
  background-image: url(../images/common/ico_vr_active.svg);
}

.btn-default.lg.line1::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -150%;
  z-index: 1;
  width: 130%;
  height: 103%;
  box-sizing: border-box;
  background-color: #1D1D1D;
  transform: skew(-16deg);
  transition: all 0.35s ease-in-out;
}
.btn-default.lg.line1:not(:disabled):hover, .btn-default.lg.line1:not(:disabled):focus-visible {
  color: #fff;
  border: 1px solid #fff;
}
.btn-default.lg.line1:not(:disabled):hover::before, .btn-default.lg.line1:not(:disabled):focus-visible::before {
  left: -10%;
}

.btn-default.menu-download::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -150%;
  z-index: 1;
  width: 130%;
  height: 103%;
  box-sizing: border-box;
  background-color: #1D1D1D;
  transform: skew(-16deg);
  transition: all 0.35s ease-in-out;
}
.btn-default.menu-download:not(:disabled):hover, .btn-default.menu-download:not(:disabled):focus-visible {
  color: #fff;
  border: 1px solid #fff;
}
.btn-default.menu-download:not(:disabled):hover::before, .btn-default.menu-download:not(:disabled):focus-visible::before {
  left: -10%;
}
.btn-default.menu-download:not(:disabled):hover .download2, .btn-default.menu-download:not(:disabled):focus-visible .download2 {
  background-image: url(../images/common/ico_download_white.svg);
}

.btn-default.heart::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -150%;
  z-index: 1;
  width: 130%;
  height: 103%;
  box-sizing: border-box;
  background-color: #1D1D1D;
  transform: skew(-16deg);
  transition: all 0.35s ease-in-out;
}
.btn-default.heart:not(:disabled):hover, .btn-default.heart:not(:disabled):focus-visible {
  color: #fff;
  border: 1px solid #fff;
}
.btn-default.heart:not(:disabled):hover::before, .btn-default.heart:not(:disabled):focus-visible::before {
  left: -10%;
}
.btn-default.heart:not(:disabled):hover .heart, .btn-default.heart:not(:disabled):focus-visible .heart {
  background-image: url(../images/common/ico_heart3_white.svg);
}

/* ====================
  Tab
==================== */
.tab-menu {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  .tab-menu:not(.tab-page) {
    display: none;
  }
  .tab-menu.tab-page .list-tab {
    flex-wrap: nowrap;
    gap: 4px;
    overflow-x: auto;
    margin-right: calc(-1 * var(--spacing-x));
    padding-right: var(--spacing-x);
  }
  .tab-menu.tab-page .btn-tab {
    min-height: 36px;
    font-size: 14px;
    white-space: nowrap;
  }
}

.list-tab {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.list-tab > li.active .btn-tab {
  color: #fff;
  font-weight: 700;
  border-color: #1D1D1D;
  background-color: #1D1D1D;
}
.list-tab .btn-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  min-height: 40px;
  font-size: 16px;
  font-weight: 500;
  color: #1D1D1D;
  border-radius: 50px;
  border: 1px solid #BABABA;
  background-color: #fff;
}

.tab-content {
  margin-top: 60px;
}
.tab-content .tab-panel {
  display: none;
}
.tab-content .tab-panel.active {
  display: block;
}
.tab-content .tab-panel .area-title:first-child {
  margin-top: 0;
}
@media screen and (max-width: 1199px) {
  .tab-content {
    margin-top: 40px;
  }
}

/* ====================
  paginate
==================== */
.paginate {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.paginate [class^=page] {
  width: 24px;
  height: 24px;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.paginate .first {
  margin: 0;
  background-image: url(../images/common/ico_arrow_first.svg);
}
.paginate .first:disabled {
  background-image: url(../images/common/ico_arrow_first_disabled.svg);
}
.paginate .prev {
  margin: 0 46px 0 24px;
  background-image: url(../images/common/ico_arrow_prev.svg);
}
.paginate .prev:disabled {
  background-image: url(../images/common/ico_arrow_prev_disabled.svg);
}
.paginate .next {
  margin: 0 24px 0 46px;
  background-image: url(../images/common/ico_arrow_next.svg);
}
.paginate .next:disabled {
  background-image: url(../images/common/ico_arrow_next_disabled.svg);
}
.paginate .last {
  margin: 0;
  background-image: url(../images/common/ico_arrow_last.svg);
}
.paginate .last:disabled {
  background-image: url(../images/common/ico_arrow_last_disabled.svg);
}
.paginate button {
  width: 40px;
  height: 40px;
  margin: 0 14px;
  font-size: 20px;
  font-weight: 400;
  color: #5A5A5A;
}
.paginate button[title] {
  color: #fff;
  background-color: #1D1D1D;
  border-radius: 32px;
}
@media screen and (max-width: 1199px) {
  .paginate {
    margin-top: 40px;
  }
  .paginate .prev,
  .paginate .next {
    margin: 0 8px;
  }
  .paginate button {
    width: 32px;
    height: 32px;
    margin: 0 4px;
    font-size: 16px;
  }
}

/* ====================
  quick
==================== */
@media screen and (min-width: 1200px) {
  .quick {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  .quick.hidden {
    opacity: 0;
    visibility: hidden;
  }
  .quick .list-quick {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  .quick .list-quick > li:hover .quick-like {
    width: auto;
    background-color: #FBF9F6;
    background-image: url(../images/common/ico_heart_brown.svg);
  }
  .quick .list-quick > li:hover .quick-reserve {
    width: auto;
    background-color: #FBF9F6;
    background-image: url(../images/common/ico_calendar_brown.svg);
  }
  .quick .list-quick > li:hover .text {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
  }
  .quick .list-quick > li .text {
    opacity: 0;
    display: flex;
    padding-right: 32px;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #A47864;
    transform: translateX(-20px);
  }
  .quick .list-quick > li > a {
    display: flex;
    align-items: center;
    width: 52px;
    height: 52px;
    padding: 0 20px;
    border-radius: 52px;
    background-color: #A47864;
    background-position: right 14px top 50%;
    background-size: 24px;
    background-repeat: no-repeat;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  .quick .list-quick .close {
    display: none;
  }
  .quick .quick-like {
    background-image: url(../images/common/ico_heart_white.svg);
  }
  .quick .quick-reserve {
    background-image: url(../images/common/ico_calendar_white.svg);
  }
  .quick .quick-close,
  .quick .quick-allmenu {
    display: none;
  }
  .quick .anchor-top {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #282828;
    background-size: 24px;
    background-position: center;
    background-image: url(../images/common/ico_anchor_top.svg);
    background-repeat: no-repeat;
  }
  .quick .anchor-top .text {
    overflow: hidden;
    display: inline-block;
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
  }
}
@media screen and (max-width: 1199px) {
  .quick {
    position: fixed;
    bottom: 30px;
    right: 10px;
    z-index: 8;
    display: flex;
    flex-direction: column;
  }
  .quick .list-quick {
    display: none;
    position: absolute;
    bottom: 48px;
    flex-direction: column;
    gap: 8px;
  }
  .quick .list-quick > li {
    opacity: 0;
    visibility: hidden;
    transform: rotate(0);
    transition: all 0.5s ease;
  }
  .quick .list-quick > li:nth-child(1) {
    transition-delay: 0.4s;
  }
  .quick .list-quick > li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .quick .list-quick > li:nth-child(3) {
    transition-delay: 0s;
  }
  .quick .list-quick.open > li {
    opacity: 1;
    visibility: visible;
    transform: rotate(1turn);
  }
  .quick .list-quick .items {
    display: none;
  }
  .quick .list-quick [class^=quick-] {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .quick .list-quick [class^=quick-] .text {
    overflow: hidden;
    display: inline-block;
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
  }
  .quick .quick-like {
    background: #A47864 url(../images/common/ico_heart2_white.svg) center/20px no-repeat;
  }
  .quick .quick-reserve {
    background: #A47864 url(../images/common/ico_calendar2_white.svg) center/20px no-repeat;
  }
  .quick .quick-close {
    background: #A47864 url(../images/common/ico_close2_white.svg) center/20px no-repeat;
  }
  .quick-allmenu {
    position: relative;
    z-index: 1;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #A47864 url(../images/common/ico_quick_allmenu_white.svg) center/24px no-repeat;
    bottom: 0;
    transform: rotate(0);
    transition: transform 0.4s, bottom 0.3s ease;
  }
  .quick-allmenu.active {
    bottom: -48px;
    transform: rotate(1turn);
  }
  .anchor-top {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #282828;
  }
  .anchor-top .text {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
  }
}
/* ====================
  (헤더,푸터,레이아웃)
==================== */
.skip-navi a {
  display: block;
  padding: 10px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-align: center;
  background-color: #1D1D1D;
  transform: translate(0, -100%);
  z-index: 10;
}
.skip-navi a:focus, .skip-navi a:active {
  transform: translate(0, 0);
}

.inner {
  width: 100%;
  max-width: var(--main-inner);
  margin: 0 auto;
  padding: 0 var(--spacing-x);
  box-sizing: border-box;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background-color: transparent;
  transition: margin-top 0.3s ease;
  transition: all 0.3s linear;
}
.header::after {
  content: "";
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.2);
  transition: opacity 0.3s linear;
}
.header.is-open {
  background-color: #212842 !important;
  transition: none;
}
.header.is-open .nav {
  display: block;
}
.header.is-scroll {
  background-color: rgba(38, 38, 38, 0.95);
  margin-top: calc(-1 * var(--header-top-height));
  transition: all 0.3s linear;
}
.header.is-scroll::after {
  opacity: 0;
}
.header.is-scroll .item-depth1 {
  color: #fff;
}
.header.is-hover::after {
  opacity: 1;
}
.header .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(38, 38, 38, 0.95);
  transition: height var(--header-duration) ease;
  z-index: -1;
}
.header .inner {
  max-width: 1920px;
  width: 100%;
  padding: 0 60px;
}
.header .top {
  height: var(--header-top-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header .top .inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .top .util {
  margin-left: auto;
}
.header .top .util [class^=btn-] {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.header .top .util [class^=btn-]:not(:first-child) {
  margin-left: 24px;
}
.header .top .util [class^=btn-]::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.header .top .util .btn-search::before {
  background-image: url(../images/common/ico_search_white.svg);
}
.header .top .util .btn-mypage::before {
  background-image: url(../images/common/ico_user_white.svg);
}
.header .logo > a {
  display: block;
  width: 135px;
  height: 52px;
  background: url(../images/common/logo_white.svg) center/cover no-repeat;
}
.header .allmenu {
  display: none;
}
@media screen and (max-width: 1199px) {
  .header.is-scroll {
    margin-top: 0;
    background-color: rgb(38, 38, 38);
    transition: none;
  }
  .header::after {
    display: none;
  }
  .header .layer,
  .header .top {
    display: none;
  }
  .header .gnb {
    border-bottom: 0;
  }
  .header .inner {
    max-width: 100%;
    padding: 0 var(--spacing-x);
  }
  .header .logo > a {
    width: 80px;
    height: 31px;
  }
  .header .allmenu {
    display: block;
    margin-left: auto;
  }
  .header .allmenu .btn-menu {
    width: 32px;
    height: 32px;
    background-position: center;
    background-size: cover;
    background-image: url(../images/common/ico_allmenu_white.svg);
    background-repeat: no-repeat;
  }
  .header .allmenu .btn-menu.close {
    background-image: url(../images/common/ico_close_white.svg) !important;
  }
}
.header.sub .btn-back,
.header.sub .heading,
.header.sub .heading-tabs {
  display: none;
}
@media screen and (max-width: 1199px) {
  .header.sub {
    background-color: #fff;
  }
  .header.sub.is-open .btn-back,
  .header.sub.is-open .heading,
  .header.sub.is-open .heading-tabs {
    display: none;
  }
  .header.sub.is-open .logo {
    display: block;
  }
  .header.sub.is-open .logo > a {
    background: url(../images/common/logo_white.svg) center/cover no-repeat;
  }
  .header.sub .logo {
    display: none;
  }
  .header.sub .btn-back {
    flex: none;
    display: block;
    width: 32px;
    height: 32px;
    background: url(../images/common/ico_arrow_prev.svg) center/cover no-repeat;
  }
  .header.sub .heading {
    display: block;
    width: 100%;
    padding: 0 40px;
    font-size: 14px;
    font-weight: 700;
    color: #1D1D1D;
    text-align: center;
  }
  .header.sub .heading-tabs {
    display: block;
    width: 100%;
    padding: 0 40px;
    text-align: center;
  }
  .header.sub .heading-tabs .btn-heading {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    color: #1D1D1D;
    padding-right: 24px;
  }
  .header.sub .heading-tabs .btn-heading::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 0;
    width: 16px;
    height: 16px;
    background: url(../images/common/ico_arrow_under.svg) center/16px no-repeat;
    transition: transform 0.3s ease;
  }
  .header.sub .heading-tabs .btn-heading.active::after {
    top: 0;
    transform: rotate(180deg);
  }
  .header.sub .heading-tabs .btn-heading.active + .list-heading {
    display: block;
    max-height: calc(100dvh - 324px);
    overflow-y: auto;
  }
  .header.sub .list-heading {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #E9ECEF;
  }
  .header.sub .list-heading a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    min-height: 40px;
    font-size: 14px;
    font-weight: 700;
    color: #1D1D1D;
    border-bottom: 1px solid #E9ECEF;
  }
  .header.sub .allmenu .btn-menu {
    background-image: url(../images/common/ico_allmenu.svg);
  }
}
@media screen and (min-width: 1200px) {
  .header:has(~ .sub.theme) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .header:has(~ .sub.theme) .top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .header:has(~ .sub.theme) .top [class^=btn-] {
    color: #1D1D1D;
  }
  .header:has(~ .sub.theme) .top .btn-search::before {
    background-image: url(../images/common/ico_search.svg);
  }
  .header:has(~ .sub.theme) .top .btn-mypage::before {
    background-image: url(../images/common/ico_user.svg);
  }
  .header:has(~ .sub.theme) .logo > a {
    background: url(../images/common/logo.svg) center/cover no-repeat;
  }
  .header:has(~ .sub.theme) .item-depth1 {
    color: #1D1D1D;
  }
  .header:has(~ .sub.theme).is-scroll, .header:has(~ .sub.theme).is-hover {
    border-bottom: 0;
  }
  .header:has(~ .sub.theme).is-scroll .top, .header:has(~ .sub.theme).is-hover .top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header:has(~ .sub.theme).is-scroll .top [class^=btn], .header:has(~ .sub.theme).is-hover .top [class^=btn] {
    color: #fff;
  }
  .header:has(~ .sub.theme).is-scroll .top .btn-search::before, .header:has(~ .sub.theme).is-hover .top .btn-search::before {
    background-image: url(../images/common/ico_search_white.svg);
  }
  .header:has(~ .sub.theme).is-scroll .top .btn-mypage::before, .header:has(~ .sub.theme).is-hover .top .btn-mypage::before {
    background-image: url(../images/common/ico_user_white.svg);
  }
  .header:has(~ .sub.theme).is-scroll .logo > a, .header:has(~ .sub.theme).is-hover .logo > a {
    background: url(../images/common/logo_white.svg) center/cover no-repeat;
  }
  .header:has(~ .sub.theme).is-scroll .item-depth1, .header:has(~ .sub.theme).is-hover .item-depth1 {
    color: #fff;
  }
}

.gnb {
  height: var(--header-height);
}
.gnb .inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav {
  margin-left: clamp(4%, calc(4% + (100vw - 1199px) * calc(0.0097087379% / 1px)), 11%);
  height: 100%;
}
.nav .nav-top {
  display: none;
}
.nav .depth1 {
  display: flex;
  height: 100%;
}
.nav .depth1 > li.active .depth-box {
  opacity: 1;
  visibility: visible;
  transition: opacity calc(var(--header-duration) * 2) 0.2s ease, visibility calc(var(--header-duration) * 2);
}
.nav .depth1 .item-depth1 {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(0px, calc(0px + (100vw - 1199px) * 0), 0px) clamp(22px, calc(22px + (100vw - 1199px) * 0.0152565881), 33px) clamp(0px, calc(0px + (100vw - 1199px) * 0), 0px) clamp(22px, calc(22px + (100vw - 1199px) * 0.0152565881), 33px);
  height: 100%;
  font-size: clamp(16px, calc(16px + (100vw - 1199px) * 0.0027739251), 18px);
  font-weight: 400;
  color: #fff;
}
.nav .depth-box {
  opacity: 0;
  visibility: hidden;
  display: flex;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translateX(-50%);
}
.nav .depth-box .depth-title {
  width: 340px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 40px 80px 0 0;
  font-size: 20px;
  font-weight: 700;
  color: #999;
  text-align: right;
}
.nav .depth2 {
  max-width: 1152px;
  width: 100%;
  padding: 40px 40px 60px;
  margin-left: 340px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.nav .depth2 > li:not(:first-child) {
  margin-top: 28px;
}
.nav .depth2 .item-depth2 {
  padding-right: 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  background: url(../images/common/ico_arrow_right2_white.svg) right 0 top -3px/24px no-repeat;
}
@media screen and (min-width: 1200px) {
  .nav .depth2 .item-depth2:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}
.nav .depth3 {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
}
.nav .depth3 > li {
  flex: 0 0 25%;
}
.nav .depth3 .item-depth3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #BABABA;
}
@media screen and (min-width: 1200px) {
  .nav .depth3 .item-depth3:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
    color: #fff;
  }
}
.nav .depth4 {
  display: none;
  width: 100%;
  margin-bottom: 12px;
}
.nav .mo-util {
  display: none;
}
@media screen and (max-width: 1199px) {
  .nav {
    display: none;
    margin-left: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: var(--header-height);
    background-color: #fff;
  }
  .nav .nav-top {
    display: block;
    height: 80px;
    padding: 20px;
    background-color: #212842;
  }
  .nav .nav-top .link-line {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    border: 1px solid #fff;
  }
  .nav .depth1 {
    display: block;
    width: 150px;
    height: calc(100dvh - (var(--header-height) + var(--nav-top-height) + var(--nav-util-height)));
    background-color: #E9ECEF;
    overflow-y: auto;
  }
  .nav .depth1 > li.active .item-depth1 {
    font-size: 16px;
    color: #06080E;
    background-color: #fff;
  }
  .nav .depth1 > li.active .depth-box {
    display: block;
  }
  .nav .depth1 .item-depth1 {
    padding: 12px 14px;
    min-height: 60px;
    font-family: "URWClassico";
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    color: #212842;
    letter-spacing: -1px;
  }
  .nav .depth-box {
    display: none;
    opacity: 1;
    visibility: visible;
    top: var(--nav-top-height);
    left: 150px;
    right: 0;
    width: calc(100% - 150px);
    height: calc(100dvh - (var(--header-height) + var(--nav-top-height) + var(--nav-util-height)));
    background-color: #fff;
    transform: none;
    transition: none;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav .depth-box .depth-title {
    display: none;
  }
  .nav .depth2 {
    max-width: 100%;
    padding: 0;
    margin-left: 0;
    border-left: 0;
  }
  .nav .depth2 > li {
    padding: 0 20px;
    border-bottom: 1px solid #D6D7D9;
  }
  .nav .depth2 > li.active .btn-depth-acc {
    transform: rotate(180deg);
  }
  .nav .depth2 > li.active > [role=button]::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .nav .depth2 > li:not(:first-child) {
    margin-top: -1px;
  }
  .nav .depth2 > li:has(.btn-depth-acc) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav .depth2 .item-depth2 {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 60px;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #5A5A5A;
    background: none;
  }
  .nav .depth2 .item-depth2[role=button] {
    padding: 16px 26px 16px 0;
  }
  .nav .depth2 .item-depth2[role=button]::after {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    top: 50%;
    right: 0;
    background: url(../images/common/ico_arrow_under.svg) center/cover no-repeat;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  .nav .depth2 .item-depth2:has(+ .btn-depth-acc) {
    background: none;
  }
  .nav .depth2 .btn-depth-acc {
    flex: none;
    margin-left: auto;
    width: 16px;
    height: 16px;
    background: url(../images/common/ico_arrow_under.svg) center/16px no-repeat;
    transition: transform 0.3s ease;
  }
  .nav .depth3 {
    display: none;
    margin-top: 0;
    width: 100%;
  }
  .nav .depth3 > li {
    margin-top: 6px;
  }
  .nav .depth3 > li.active > [role=button]::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .nav .depth3 .item-depth3 {
    position: relative;
    display: block;
    min-height: 32px;
    padding: 6px 0;
    font-size: 14px;
    font-weight: 700;
    color: #424E7C;
  }
  .nav .depth3 .item-depth3[role=button] {
    padding: 6px 24px 6px 0;
  }
  .nav .depth3 .item-depth3[role=button]::after {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 0;
    background: url(../images/common/ico_arrow_under2.svg) center/cover no-repeat;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
  }
  .nav .depth3 .item-depth3:hover {
    color: #424E7C;
    text-decoration: none;
  }
  .nav .depth4 .item-depth4 {
    position: relative;
    display: block;
    min-height: 28px;
    padding: 3px 24px 3px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #424E7C;
  }
  .nav .depth4 .item-depth4::before {
    content: "";
    overflow: hidden;
    position: absolute;
    top: 11px;
    left: 0;
    z-index: 1;
    width: 4px;
    height: 4px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #424E7C;
  }
  .nav .mo-util {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--nav-util-height);
    padding: 0 var(--spacing-x);
    background-color: #fff;
    border-top: 1px solid #D6D7D9;
  }
  .nav .mo-util .link-insta {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/common/ico_instagram.svg) center/24px no-repeat;
  }
  .nav .mo-util .right {
    margin-left: auto;
  }
  .nav .mo-util .right [class^=link-] {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #5A5A5A;
  }
  .nav .mo-util .right [class^=link-]:not(:first-child) {
    margin-left: 20px;
  }
  .nav .mo-util .right [class^=link-]:not(:first-child)::before {
    content: "";
    overflow: hidden;
    position: absolute;
    top: 3px;
    left: -12px;
    z-index: 1;
    width: 1px;
    height: 14px;
    box-sizing: border-box;
    background-color: #D6D7D9;
  }
  .nav ul[class^=depth]:not(.depth1) li.active:has([role=button]) > ul {
    display: block;
  }
}

.section-reserve {
  padding: 40px 0;
  background-color: #F4F5F6;
}
.section-reserve .font1-h6 {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}
.section-reserve .font1-h6 .text {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 24px;
  font-size: 18px;
  font-weight: 400;
  color: #1D1D1D;
}
.section-reserve .font1-h6 .text::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 5px;
  left: -11px;
  z-index: 1;
  width: 1px;
  height: 18px;
  box-sizing: border-box;
  background-color: #BABABA;
}
.section-reserve .list-reserve {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.section-reserve .list-reserve > li {
  flex: 0 0 calc((100% - 100px) / 6);
}
.section-reserve .list-reserve .tit {
  display: block;
  padding: 10px 0;
  font-size: clamp(16px, calc(16px + (100vw - 360px) * 0.0012820513), 18px);
  font-weight: 700;
  color: #1D1D1D;
  border-bottom: 1px solid #000;
  pointer-events: none;
}
.section-reserve .list-reserve .detail {
  margin-top: 16px;
}
.section-reserve .list-reserve .detail > li {
  margin-top: 8px;
}
.section-reserve .list-reserve .detail .copy {
  font-size: clamp(14px, calc(14px + (100vw - 1199px) * 0.0027739251), 16px);
  font-weight: 400;
  line-height: 1.5;
  color: #5A5A5A;
}
.section-reserve .list-reserve .detail .text {
  display: block;
  font-size: clamp(14px, calc(14px + (100vw - 1199px) * 0.0027739251), 16px);
  font-weight: 600;
  line-height: 1.5;
  color: #1D1D1D;
}
@media screen and (max-width: 1199px) {
  .section-reserve {
    padding: 0;
    background-color: #fff;
  }
  .section-reserve .inner {
    padding: 0;
  }
  .section-reserve .font1-h6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px var(--spacing-x);
    font-size: 20px;
  }
  .section-reserve .font1-h6 .text {
    font-size: 14px;
    margin-left: 0;
  }
  .section-reserve .font1-h6 .text::before {
    display: none;
  }
  .section-reserve .list-reserve {
    margin-top: 0;
    display: block;
  }
  .section-reserve .list-reserve .tit {
    position: relative;
    padding: 16px 56px 16px var(--spacing-x);
    min-height: 56px;
    background-color: #F4F5F6;
    border-bottom: 0;
    border-top: 1px solid #D6D7D9;
    pointer-events: auto;
    cursor: pointer;
  }
  .section-reserve .list-reserve .tit::after {
    content: "";
    position: absolute;
    top: auto;
    right: 20px;
    width: 24px;
    height: 24px;
    background-position: center;
    background-image: url(../images/common/ico_plus.svg);
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
  }
  .section-reserve .list-reserve .tit.active::after {
    background-image: url(../images/common/ico_minus.svg);
    transform: rotate(180deg);
    transition: transform 0.5s ease;
  }
  .section-reserve .list-reserve .tit.active + .detail {
    display: block;
  }
  .section-reserve .list-reserve .detail {
    display: none;
    padding: 16px 30px;
    margin: 0;
    border-top: 1px solid #D6D7D9;
  }
  .section-reserve .list-reserve .detail > li {
    margin-top: 0;
    display: flex;
  }
  .section-reserve .list-reserve .detail .copy {
    position: relative;
    flex: 0 0 42px;
    margin-right: 34px;
  }
  .section-reserve .list-reserve .detail .copy::after {
    content: "";
    overflow: hidden;
    position: absolute;
    top: 2px;
    right: -14px;
    z-index: 1;
    width: 1px;
    height: 14px;
    box-sizing: border-box;
    background-color: #BABABA;
  }
}

.footer {
  position: relative;
  padding: 60px 0 80px;
  min-height: var(--footer-height);
  background-color: #282828;
}
.footer .inner {
  position: relative;
}
.footer .util {
  display: flex;
  margin-bottom: 30px;
}
.footer .util li {
  display: flex;
  align-items: center;
  padding: 2px 16px;
}
.footer .util li:not(:first-child) {
  position: relative;
}
.footer .util li:not(:first-child)::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 0px;
  z-index: 1;
  width: 3px;
  height: 3px;
  box-sizing: border-box;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: #939393;
}
.footer .util li a {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
.footer .info {
  padding-left: 156px;
}
.footer .info span {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #A9A9A9;
}
.footer .info span + span {
  position: relative;
  padding-left: 32px;
}
.footer .info span + span::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 4px;
  left: 13px;
  z-index: 1;
  width: 1px;
  height: 14px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.3);
}
.footer .info .tel {
  font-family: "SUIT";
  color: #fff;
}
.footer .logo {
  position: absolute;
  bottom: 8px;
  left: 20px;
  width: 120px;
}
.footer .copyright {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #A9A9A9;
}
@media screen and (max-width: 1199px) {
  .footer {
    padding: 40px 0;
  }
  .footer .util {
    margin-bottom: 10px;
  }
  .footer .util li a {
    font-size: 12px;
  }
  .footer .logo {
    display: none;
  }
  .footer .info {
    padding-left: 0;
  }
  .footer .info span {
    display: block;
    font-size: 12px;
  }
  .footer .info span + span {
    padding-left: 0;
  }
  .footer .info span + span::before {
    display: none;
  }
  .footer .copyright {
    font-size: 12px;
  }
}

/* ====================
 팝업
==================== */
body.scroll-lock {
  position: fixed;
  width: 100%;
  overflow-y: scroll; /* 스크롤바가 사라지며 화면이 옆으로 출렁이는 현상 방지 */
}

.popup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: 100%;
  padding: 80px 20px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: opacity 0.1s ease;
}
.popup-wrap.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.popup-wrap.open .dimmed {
  opacity: 1;
}
.popup-wrap.full {
  padding: 0;
}
.popup-wrap.full .popup-container {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.popup-wrap.full .popup-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.popup-wrap .dimmed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.popup-wrap .popup-container {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 800px;
  max-width: 100%;
  min-height: 100px;
  padding: 40px;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
}
.popup-wrap .popup-container.terms {
  width: 1000px;
  border: 1px solid #5A5A5A;
  border-radius: 2px;
}
.popup-wrap .popup-container.wid1 {
  width: 880px;
}
.popup-wrap .popup-container.per {
  background-color: #1D1D1D;
}
.popup-wrap .popup-container.per .popup-head {
  color: #fff;
}
.popup-wrap .popup-container.per .body-inner {
  max-width: 800px;
}
.popup-wrap .popup-container.per .popup-close {
  background-image: url(../images/common/ico_close2_white.svg);
}
.popup-wrap .popup-head {
  flex-shrink: 0;
  display: block;
  min-height: 42px;
  padding-right: 64px;
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 600;
  color: #1D1D1D;
}
.popup-wrap .popup-body {
  flex: 1;
  position: relative;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.popup-wrap .body-inner {
  padding-right: 2px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #5A5A5A;
  word-break: keep-all;
}
.popup-wrap .body-inner img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.popup-wrap .tit {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #5A5A5A;
}
.popup-wrap .tit ~ .tit {
  margin-top: 16px;
}
.popup-wrap .popup-close {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 40px;
  right: 32px;
  background-position: center;
  background-size: cover;
  background-image: url(../images/common/ico_close.svg);
  background-repeat: no-repeat;
}
.popup-wrap .list-tab {
  width: 100%;
  gap: 0;
}
.popup-wrap .list-tab > li {
  position: relative;
  flex: 1;
  margin-left: -1px;
  height: 100%;
}
.popup-wrap .list-tab > li:first-child::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 1px;
  z-index: 1;
  width: 1px;
  height: 100%;
  box-sizing: border-box;
  background-color: #BABABA;
}
.popup-wrap .list-tab .btn-tab {
  padding: 0 8px;
  height: 100%;
  min-height: 48px;
  border-radius: 0;
  font-size: 16px;
}
.popup-wrap .tab-content {
  margin-top: 10px;
}
.popup-wrap .per-swiper .swiper-slide {
  height: auto;
}
.popup-wrap .per-swiper .swiper-slide img {
  aspect-ratio: 800/600;
}
.popup-wrap .per-swiper .swiper-button-prev {
  top: 50%;
  left: 0;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  background-position: center;
  background-image: url(../images/common/ico_slide3_left.svg);
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.popup-wrap .per-swiper .swiper-button-prev::after {
  display: none;
}
.popup-wrap .per-swiper .swiper-button-next {
  top: 50%;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  background-position: center;
  background-image: url(../images/common/ico_slide3_right.svg);
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.popup-wrap .per-swiper .swiper-button-next::after {
  display: none;
}
.popup-wrap .per-swiper .swiper-button-disabled {
  opacity: 0.5;
}
.popup-wrap .text-per {
  display: block;
  max-height: 96px;
  margin-top: 26px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  overflow-y: auto;
}
@media screen and (max-width: 1199px) {
  .popup-wrap {
    padding: 60px 20px;
  }
  .popup-wrap .popup-container {
    width: 100%;
    padding: 20px;
  }
  .popup-wrap .popup-container.wid1 {
    width: 100%;
  }
  .popup-wrap .popup-container.per .body-inner {
    width: 100%;
  }
  .popup-wrap .popup-head {
    min-height: 30px;
    padding-right: 34px;
    font-size: 20px;
  }
  .popup-wrap .popup-close {
    width: 24px;
    height: 24px;
    top: 20px;
    right: 18px;
  }
  .popup-wrap .tab-menu {
    display: block;
  }
  .popup-wrap .list-tab {
    flex-direction: column;
  }
  .popup-wrap .list-tab > li {
    width: 100%;
    margin-left: 0;
    margin-top: -1px;
  }
  .popup-wrap .list-tab > li:first-child::before {
    width: 100%;
    height: 1px;
    top: 1px;
    left: 0;
  }
  .popup-wrap .list-tab .btn-tab {
    min-height: 40px;
    font-size: 14px;
  }
  .popup-wrap .per-swiper {
    position: relative;
  }
  .popup-wrap .per-swiper .swiper-button-prev,
  .popup-wrap .per-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
    background-size: 10px;
    transform: none;
  }
}

@media screen and (max-width: 1199px) {
  .area-btns .btn-default.lg,
  .area-btns .btn-default.md {
    min-width: 100%;
    min-height: 48px;
    font-size: 16px;
    font-weight: 400;
  }
}

/* ====================
 레이아웃
==================== */
main .breadcrumb {
  padding-top: 20px;
}
main.sub {
  min-height: calc(100dvh - (var(--footer-height) + var(--sub-bottom-margin)));
}
main.theme {
  padding-top: calc(var(--header-top-height) + var(--header-height));
}
@media screen and (max-width: 1199px) {
  main .breadcrumb {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding-top: 0;
  }
  main.theme {
    padding-top: var(--header-height);
  }
}

/* ====================
  메인
==================== */
:root {
  --sns-img-w: 256px;
  --sns-duration: 8s;
}
@media screen and (max-width: 1199px) {
  :root {
    --sns-img-w: 160px;
    --sns-duration: 5s;
  }
}

.wrapper.main .area-title {
  display: flex;
}
.wrapper.main .area-title .right {
  margin-left: auto;
  align-self: flex-end;
}
@media screen and (max-width: 1199px) {
  .wrapper.main .area-title {
    flex-direction: column;
  }
  .wrapper.main .area-title .right {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
    align-self: flex-end;
  }
  .wrapper.main .area-title .right .btn-default {
    font-size: 14px;
    font-weight: 400;
    min-width: 100%;
    min-height: 48px;
  }
}
.wrapper.main .title {
  font-family: "URWClassico";
  font-size: clamp(28px, calc(28px + (100vw - 360px) * 0.0076923077), 40px);
  font-weight: 400;
  color: #212842;
  letter-spacing: -1px;
}
.wrapper.main .desc {
  display: block;
  margin-top: clamp(16px, calc(16px + (100vw - 360px) * 0.0012820513), 18px);
  font-size: clamp(14px, calc(14px + (100vw - 360px) * 0.0038461538), 20px);
  color: #7D7D7D;
}
@media screen and (max-width: 1199px) {
  .wrapper.main .desc {
    color: #5A5A5A;
  }
}
.wrapper.main .footer {
  margin-top: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.visual {
  height: 100vh;
  height: 100svh;
}
.visual .inner {
  position: absolute;
  bottom: clamp(95px, calc(95px + (100vw - 360px) * 0.0865384615), 230px);
  left: 50%;
  transform: translateX(-50%);
}
.visual .inner .copy {
  opacity: 0;
  transform: translateY(30px);
  display: block;
  font-family: "URWClassico";
  font-size: 52px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  letter-spacing: -1px;
  font-size: clamp(28px, calc(28px + (100vw - 360px) * 0.0153846154), 52px);
  word-break: break-word;
  font-weight: 400;
}
.visual .inner p {
  opacity: 0;
  transform: translateY(30px);
  display: block;
  margin-top: clamp(12px, calc(12px + (100vw - 360px) * 0.0076923077), 24px);
  font-size: clamp(14px, calc(14px + (100vw - 360px) * 0.0051282051), 22px);
  font-weight: 300;
  color: #fff;
}
.visual .inner.active .copy {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 1s ease;
}
.visual .inner.active p {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 1s ease;
  transition-delay: 0.3s;
}
.visual .visual-swiper {
  height: 100%;
}
.visual .visual-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.visual .visual-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: var(--main-inner);
  padding: 0 var(--spacing-x);
  position: absolute;
  left: 50%;
  bottom: clamp(46px, calc(46px + (100vw - 360px) * 0.0538461538), 130px);
  z-index: 1;
  transform: translateX(-50%);
}
.visual .visual-controls .swiper-pagination {
  position: initial;
  width: auto;
  font-size: clamp(14px, calc(14px + (100vw - 360px) * 0.0025641026), 18px);
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
}
.visual .visual-controls .swiper-control {
  display: flex;
  align-items: self-end;
}
.visual .visual-controls .btn-control {
  width: 24px;
  height: 24px;
  background-position: center;
  background-size: 24px;
  background-repeat: no-repeat;
}
.visual .visual-controls .btn-control.pause {
  background-image: url(../images/common/ico_pause_white.svg);
}
.visual .visual-controls .btn-control.play {
  background-image: url(../images/common/ico_play_white.svg);
}
.visual .visual-controls .swiper-button-prev {
  position: initial;
  width: 24px;
  height: 24px;
  background: url(../images/common/ico_arrow_right2_white.svg) center/24px no-repeat;
  transform: rotate(180deg);
}
.visual .visual-controls .swiper-button-prev::after {
  display: none;
}
.visual .visual-controls .swiper-button-next {
  position: initial;
  width: 24px;
  height: 24px;
  background: url(../images/common/ico_arrow_right2_white.svg) center/24px no-repeat;
}
.visual .visual-controls .swiper-button-next::after {
  display: none;
}
.visual .autoplay-progress .progress-bar {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3019607843);
}
.visual .autoplay-progress .progress-fill {
  display: block;
  height: 100%;
  background-color: #fff;
  width: 0%;
}

.card {
  padding: clamp(60px, calc(60px + (100vw - 1199px) * 0.1248266297), 150px) clamp(0px, calc(0px + (100vw - 1199px) * 0), 0px) clamp(60px, calc(60px + (100vw - 1199px) * 0.1248266297), 150px) clamp(0px, calc(0px + (100vw - 1199px) * 0), 0px);
  background-color: #FAFAFA;
  overflow: hidden;
}
.card .area-card {
  position: relative;
  width: 100%;
  margin-top: clamp(20px, calc(20px + (100vw - 360px) * 0.0230769231), 56px);
  margin-left: clamp(10px, calc(10px + (100vw - 1440px) * 0.4583333333), 230px);
}
@media screen and (min-width: 1920px) {
  .card .area-card {
    margin-left: clamp(230px, calc(230px + (100vw - 1920px) * 0.5165289256), 480px);
  }
}
.card .area-card {
  overflow: hidden;
}
.card .area-card .inner {
  max-width: 100%;
  width: 1440px;
  padding: 0;
  margin: initial;
}
.card .card-swiper {
  max-width: 100%;
}
.card .card-swiper .swiper-slide > a {
  display: block;
  overflow: hidden;
}
.card .card-swiper .swiper-slide figure {
  display: block;
  margin-bottom: 16px;
  aspect-ratio: 464/408;
  overflow: hidden;
}
.card .card-swiper .swiper-slide figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.card .card-swiper .swiper-slide figure:hover img {
  transform: scale(1.05);
}
.card .card-swiper .box-cnt .category {
  display: block;
  font-size: clamp(16px, calc(16px + (100vw - 1199px) * 0.0027739251), 18px);
  font-weight: 500;
  line-height: 1.5;
  color: #7D7D7D;
}
.card .card-swiper .box-cnt .tit {
  margin-top: 8px;
  display: block;
  font-size: clamp(18px, calc(18px + (100vw - 1199px) * 0.0027739251), 20px);
  font-weight: 500;
  color: #1D1D1D;
}
.card .card-swiper .box-cnt .tag {
  display: inline-block;
  margin-right: 12px;
  font-size: clamp(14px, calc(14px + (100vw - 1199px) * 0.0055478502), 18px);
  font-weight: 500;
  line-height: 1.5;
  color: #A47864;
}
.card .card-swiper .swiper-control {
  display: none;
}
@media screen and (max-width: 1199px) {
  .card .area-card {
    margin-left: 0;
  }
  .card .area-card .inner {
    position: relative;
    padding-left: var(--spacing-x);
    width: auto;
  }
  .card .card-swiper {
    max-width: 100%;
    overflow-x: auto;
    margin-left: var(--spacing-x);
  }
  .card .card-swiper .swiper-slide {
    width: 86%;
    padding-right: 20px;
  }
  .card .card-swiper .swiper-slide figure {
    aspect-ratio: 280/342;
  }
}

@media screen and (min-width: 1200px) {
  .hall {
    height: 100vh;
  }
  .hall .title {
    display: none;
  }
  .hall .inner {
    padding: clamp(0px, calc(0px + (100vw - 1500px) * 0), 0px) clamp(20px, calc(60px + (100vw - 1500px) * -0.0952380952), 60px) clamp(0px, calc(0px + (100vw - 1500px) * 0), 0px) clamp(20px, calc(60px + (100vw - 1500px) * -0.0952380952), 60px);
  }
  .hall .hall-swiper {
    height: 100%;
  }
  .hall .hall-swiper .swiper-slide > img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hall .hall-swiper .swiper-slide .inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .hall .hall-swiper .box-cnt {
    padding-top: 90px;
  }
  .hall .hall-swiper .box-cnt .copy {
    display: block;
    font-family: "Pretendard";
    font-size: 52px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    font-size: clamp(28px, calc(28px + (100vw - 360px) * 0.0076923077), 40px);
  }
  .hall .hall-swiper .box-cnt p {
    display: block;
    margin-top: clamp(18px, calc(18px + (100vw - 360px) * 0.0038461538), 24px);
    font-size: clamp(14px, calc(14px + (100vw - 360px) * 0.0038461538), 20px);
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
  }
  .hall .hall-swiper .box-cnt .btn-default {
    margin-top: 56px;
  }
  .hall .hall-swiper .box-hall {
    margin-left: auto;
    padding: 24px 24px 40px;
    background-color: #fff;
  }
  .hall .hall-swiper .box-hall img {
    display: block;
    width: 100%;
    aspect-ratio: 572/322;
    object-fit: cover;
  }
  .hall .hall-swiper .box-hall .cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    margin-top: clamp(24px, calc(24px + (100vw - 360px) * 0.0102564103), 40px);
  }
  .hall .hall-swiper .box-hall .cnt .btn-default {
    display: none;
  }
  .hall .hall-swiper .box-hall .tit {
    font-family: "URWClassico";
    font-size: 40px;
    font-weight: 400;
    line-height: 1.5;
    color: #212842;
    letter-spacing: -1px;
  }
  .hall .hall-swiper .box-hall .copy {
    position: relative;
    display: inline-block;
    padding: 0 12px;
    margin-top: 8px;
    font-size: clamp(16px, calc(16px + (100vw - 360px) * 0.0025641026), 20px);
    font-weight: 500;
    line-height: 1.5;
    color: #1D1D1D;
  }
  .hall .hall-swiper .box-hall .copy::before {
    content: "";
    overflow: hidden;
    position: absolute;
    top: 14px;
    left: 0;
    z-index: 1;
    width: 4px;
    height: 4px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #1D1D1D;
  }
  .hall .hall-swiper .box-hall .copy::after {
    content: "";
    overflow: hidden;
    position: absolute;
    top: 14px;
    right: 0;
    z-index: 1;
    width: 4px;
    height: 4px;
    box-sizing: border-box;
    border-radius: 50%;
    background-color: #1D1D1D;
  }
  .hall .hall-swiper .box-hall .text {
    display: block;
    margin-top: 12px;
    font-size: clamp(14px, calc(14px + (100vw - 360px) * 0.0025641026), 18px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.02px;
    color: #5A5A5A;
    text-align: center;
  }
  .hall .hall-swiper .swiper-button-prev {
    left: var(--spacing-x);
    background: url(../images/common/ico_slide_left.svg) center/cover no-repeat;
  }
  .hall .hall-swiper .swiper-button-prev::after {
    display: none;
  }
  .hall .hall-swiper .swiper-button-next {
    right: var(--spacing-x);
    background: url(../images/common/ico_slide_right.svg) center/cover no-repeat;
  }
  .hall .hall-swiper .swiper-button-next::after {
    display: none;
  }
  .hall .hall-swiper .swiper-pagination {
    max-width: var(--main-inner);
    width: 100%;
    padding: 0 var(--spacing-x);
    margin-bottom: 42px;
    position: absolute;
    left: 50%;
    text-align: left;
    transform: translateX(-50%);
  }
  .hall .hall-swiper .swiper-pagination-bullet {
    margin: 0 10px;
    width: auto;
    height: auto;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff;
    opacity: 1;
    background: transparent;
  }
  .hall .hall-swiper .swiper-pagination-bullet-active {
    position: relative;
  }
  .hall .hall-swiper .swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
  }
}
@media screen and (max-width: 1199px) {
  .hall {
    padding: clamp(60px, calc(60px + (100vw - 360px) * 0.1072705602), 150px) clamp(0px, calc(0px + (100vw - 360px) * 0), 0px) clamp(60px, calc(60px + (100vw - 360px) * 0.1072705602), 150px) clamp(0px, calc(0px + (100vw - 360px) * 0), 0px);
    background: url(../images/main/img_hall1.jpg) center/cover no-repeat;
  }
  .hall .title {
    padding: 0 var(--spacing-x);
    color: #fff !important;
  }
  .hall .box-cnt {
    display: none;
  }
  .hall .bg-img {
    display: none;
  }
  .hall .hall-swiper {
    margin-top: 40px;
    padding-left: var(--spacing-x);
  }
  .box-hall {
    display: block;
    padding: 20px;
    background-color: #fff;
  }
  .box-hall img {
    display: block;
    width: 100%;
    aspect-ratio: 220/178;
  }
  .box-hall .cnt {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
  }
  .box-hall .cnt .tit {
    font-family: "URWClassico";
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    color: #212842;
    letter-spacing: -1px;
    text-align: center;
  }
  .box-hall .cnt .copy {
    display: block;
    margin-top: 8px;
    font-family: "Pretendard";
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #1D1D1D;
    text-align: center;
  }
  .box-hall .cnt .text {
    display: block;
    margin-top: 8px;
    font-family: "Pretendard";
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #5A5A5A;
    text-align: center;
    word-break: keep-all;
  }
  .box-hall .cnt .btn-default.sm {
    min-width: 100%;
    margin-top: 20px;
    font-size: 14px;
  }
  .hall-swiper .inner {
    padding: 0;
  }
  .hall-swiper .swiper-pagination,
  .hall-swiper .swiper-button-prev,
  .hall-swiper .swiper-button-next {
    display: none;
  }
}
.wedding {
  position: relative;
  padding-top: clamp(60px, calc(60px + (100vw - 360px) * 0.0576923077), 150px);
  padding-bottom: clamp(60px, calc(60px + (100vw - 360px) * 0.0576923077), 150px);
  background-color: #FBF9F6;
}
.wedding::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 59%;
  background-color: #F0E3DA;
}
.wedding .inner {
  position: relative;
}
.wedding .box-cnt {
  position: absolute;
  top: 0;
  right: 20px;
  width: calc(50% - 60px);
}
.wedding .box-cnt .btn-default {
  width: 210px;
  margin-top: clamp(20px, calc(20px + (100vw - 360px) * 0.0230769231), 56px);
}
.wedding .box-cnt .btn-default::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -150%;
  z-index: 1;
  width: 130%;
  height: 103%;
  box-sizing: border-box;
  background-color: #FBF9F6;
  transform: skew(-16deg);
  transition: all 0.35s ease-in-out;
}
.wedding .box-cnt .btn-default:not(:disabled):hover, .wedding .box-cnt .btn-default:not(:disabled):focus-visible {
  color: #A47864;
  border: 1px solid #A47864;
}
.wedding .box-cnt .btn-default:not(:disabled):hover::before, .wedding .box-cnt .btn-default:not(:disabled):focus-visible::before {
  left: -10%;
}
.wedding .box-wedding {
  width: 50%;
}
.wedding .wedding-swiper .swiper-slide > a {
  display: block;
  width: 100%;
  height: 100%;
}
.wedding .wedding-swiper .swiper-slide > a img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 830/580;
  object-fit: cover;
}
.wedding .wedding-swiper .swiper-button-prev {
  width: 60px;
  height: 60px;
  left: 0;
  background-position: center;
  background-size: auto;
  background-image: url(../images/common/ico_slide3_left.svg);
  background-repeat: no-repeat;
}
.wedding .wedding-swiper .swiper-button-prev::after {
  display: none;
}
.wedding .wedding-swiper .swiper-button-next {
  width: 60px;
  height: 60px;
  right: 0;
  background-position: center;
  background-size: auto;
  background-image: url(../images/common/ico_slide3_right.svg);
  background-repeat: no-repeat;
}
.wedding .wedding-swiper .swiper-button-next::after {
  display: none;
}
.wedding .wedding-controls {
  position: absolute;
  bottom: -34px;
  z-index: 1;
  left: var(--spacing-x);
  display: flex;
  align-items: center;
  gap: 8px;
}
.wedding .wedding-controls .current {
  font-size: 14px;
  font-weight: 400;
  color: #1D1D1D;
}
.wedding .wedding-controls .total {
  font-size: 14px;
  font-weight: 400;
  color: #7D7D7D;
}
.wedding .wedding-controls .swiper-pagination {
  position: relative;
  width: 20px;
  height: 2px;
  background-color: #fff;
}
.wedding .wedding-controls .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #1D1D1D;
}
.wedding .box-thumb {
  position: absolute;
  bottom: -33px;
  right: 0;
  left: 0;
  margin-left: calc(50% + 30px);
}
.wedding .thum-swiper .swiper-slide figure {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 10px;
  height: 100px;
  overflow: hidden;
}
.wedding .thum-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.wedding .thum-swiper .swiper-slide .copy {
  display: block;
  margin-top: clamp(4px, calc(4px + (100vw - 360px) * 0.0051282051), 12px);
  padding: 0 10px;
  font-size: clamp(14px, calc(14px + (100vw - 360px) * 0.0012820513), 16px);
  font-weight: 400;
  line-height: 1.5;
  color: #5A5A5A;
}
.wedding .thum-swiper .swiper-slide-thumb-active figure::after {
  content: "";
  overflow: hidden;
  position: absolute;
  z-index: 1;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  box-sizing: border-box;
  border: 1px solid #A47864;
  border-width: 0 4px 4px 0;
  transform: rotate(0deg);
  top: 0;
  left: 10px;
  height: 100%;
}
.wedding .thum-swiper .swiper-slide-thumb-active figure::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 1;
  width: calc(100% - 20px);
  height: 100%;
  box-sizing: border-box;
  border: 4px solid #A47864;
  border-width: 0 4px 4px 0;
  transform: rotate(180deg);
}
@media screen and (max-width: 1199px) {
  .wedding {
    padding-bottom: 0;
    background-color: #fff;
  }
  .wedding::before {
    display: none;
  }
  .wedding .box-cnt {
    position: initial;
    width: 100%;
    padding-right: 0;
  }
  .wedding .box-cnt .btn-default {
    margin-top: 20px;
    width: 100%;
    min-height: 48px;
    font-size: 14px;
  }
  .wedding .box-wedding {
    margin-top: 20px;
    width: 100%;
  }
  .wedding .box-thumb {
    position: initial;
    margin-top: 10px;
    margin-left: 0;
  }
  .wedding .thum-swiper .swiper-slide figure {
    padding: 0;
    height: auto;
  }
  .wedding .thum-swiper .swiper-slide figure::before {
    width: 100%;
    right: 0;
  }
  .wedding .thum-swiper .swiper-slide figure::after {
    width: 100%;
    left: 0;
  }
  .wedding .thum-swiper .swiper-slide .copy {
    padding: 0;
  }
  .wedding .wedding-swiper .swiper-button-prev,
  .wedding .wedding-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
    background-size: 12px;
  }
  .wedding .wedding-controls {
    display: none;
  }
}

.dining {
  padding: clamp(60px, calc(60px + (100vw - 360px) * 0.0576923077), 150px) clamp(0px, calc(0px + (100vw - 360px) * 0), 0px) clamp(60px, calc(60px + (100vw - 360px) * 0.0576923077), 150px) clamp(0px, calc(0px + (100vw - 360px) * 0), 0px);
}
.dining .area-title .btn-default::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -150%;
  z-index: 1;
  width: 130%;
  height: 103%;
  box-sizing: border-box;
  background-color: #fff;
  transform: skew(-16deg);
  transition: all 0.35s ease-in-out;
}
.dining .area-title .btn-default:not(:disabled):hover, .dining .area-title .btn-default:not(:disabled):focus-visible {
  color: #212842;
  border: 1px solid #212842;
}
.dining .area-title .btn-default:not(:disabled):hover::before, .dining .area-title .btn-default:not(:disabled):focus-visible::before {
  left: -10%;
}
.dining .area-dining {
  margin-top: clamp(20px, calc(20px + (100vw - 1199px) * 0.0499306519), 56px);
}
.dining .dining-swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.dining .dining-swiper .swiper-slide a:hover {
  transform: scale(1.02);
}
.dining .dining-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1440/600;
}
.dining .dining-swiper .swiper-button-prev {
  width: 60px;
  height: 60px;
  left: 0;
  background-position: center;
  background-size: auto;
  background-image: url(../images/common/ico_slide3_left.svg);
  background-repeat: no-repeat;
}
.dining .dining-swiper .swiper-button-prev::after {
  display: none;
}
.dining .dining-swiper .swiper-button-next {
  width: 60px;
  height: 60px;
  right: 0;
  background-position: center;
  background-size: auto;
  background-image: url(../images/common/ico_slide3_right.svg);
  background-repeat: no-repeat;
}
.dining .dining-swiper .swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 1199px) {
  .dining .area-title .title {
    font-size: 28px;
  }
  .dining .area-dining .dining-swiper .swiper-slide a {
    aspect-ratio: 320/180;
  }
  .dining .dining-swiper .swiper-button-prev,
  .dining .dining-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
    background-size: 12px;
  }
}

.story {
  padding: clamp(60px, calc(60px + (100vw - 1200px) * 0.125), 150px) clamp(0px, calc(0px + (100vw - 1200px) * 0), 0px) clamp(52px, calc(52px + (100vw - 1200px) * 0.1361111111), 150px) clamp(0px, calc(0px + (100vw - 1200px) * 0.2), 144px);
  overflow-x: hidden;
  background: url(../images/main/img_bg_story.jpg) center/cover no-repeat;
}
.story .inner {
  text-align: center;
}
.story .inner .title {
  text-align: center;
}
.story .inner .desc {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: clamp(20px, calc(20px + (100vw - 1199px) * 0.0194174757), 34px);
  color: #5A5A5A;
  text-align: center;
}
.story .inner .desc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(12px, calc(12px + (100vw - 1199px) * 0.0055478502), 16px);
  height: clamp(12px, calc(12px + (100vw - 1199px) * 0.0055478502), 16px);
  background: url(../images/main/icon_instagram_sm.png) top 0 left 0/cover no-repeat;
  transform: translateY(-50%);
}
.story .inner .btn-story-insta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  margin-left: 16px;
  font-size: clamp(12px, calc(12px + (100vw - 1199px) * 0.0083217753), 18px);
  font-weight: 700;
  color: #fff;
  border-radius: 12px;
  background: radial-gradient(104.11% 342.2% at 7.74% 100%, #FFDD55 0%, #FF7644 0%, #FFDD55 0.01%, #FF543E 27.15%, #C837AB 92.79%), linear-gradient(138.48deg, #4268C9 1.55%, rgba(200, 57, 171, 0) 50.2%);
}
.story .inner .btn-story-insta::before {
  content: "";
  margin-right: 4px;
  width: clamp(16px, calc(16px + (100vw - 1199px) * 0.0166435506), 28px);
  height: clamp(16px, calc(16px + (100vw - 1199px) * 0.0166435506), 28px);
  background: url(../images/common/ico_instagram_white.svg) top 0 right 0/cover no-repeat;
}
.story .area-sns {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  margin-top: 56px;
}
.story .area-sns a {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 256px;
  overflow: hidden;
}
.story .area-sns a:hover img {
  transform: scale(1.05);
}
.story .area-sns a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.story .area-sns .sns {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 36px;
  height: 36px;
  background: url(../images/common/ico_instagram_white.svg) center/36px no-repeat;
}
@media screen and (min-width: 1200px) {
  .story .list-sns {
    display: flex;
    will-change: transform;
    gap: 24px;
    transform: translateZ(0);
    animation: snsMove calc(var(--sns-duration) * var(--sns-img-length)) linear infinite;
  }
  .story .list-sns.reverse {
    animation: snsMoveReverse calc(var(--sns-duration) * var(--sns-img-length)) linear infinite;
  }
}
@media screen and (max-width: 1199px) {
  .story .inner .desc {
    flex-direction: column;
  }
  .story .inner .desc::before {
    top: 4px;
    transform: none;
  }
  .story .inner .desc .btn-stroy-wrap {
    margin-top: 16px;
    display: flex;
    gap: 8px;
  }
  .story .inner .desc .btn-story-insta {
    margin-left: 0;
  }
  .story .area-sns {
    flex-direction: row;
    gap: 0;
    margin-top: 24px;
    will-change: transform;
    animation: snsMove calc(var(--sns-duration) * var(--sns-img-length)) linear infinite;
  }
  .story .area-sns a {
    width: 160px;
    margin: 0 6px;
  }
  .story .area-sns .sns {
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background-size: 24px;
  }
}

@keyframes snsMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--sns-img-length) * var(--sns-img-w)));
  }
}
@keyframes snsMoveReverse {
  0% {
    transform: translateX(calc(-1 * var(--sns-img-length) * var(--sns-img-w)));
  }
  100% {
    transform: translateX(0);
  }
}
.reserve {
  padding: clamp(60px, calc(60px + (100vw - 1199px) * 0.1248266297), 150px) clamp(0px, calc(0px + (100vw - 1199px) * 0), 0px) clamp(60px, calc(60px + (100vw - 1199px) * 0.1248266297), 150px) clamp(0px, calc(0px + (100vw - 1199px) * 0), 0px);
  background: url(../images/main/img_bg_reserve.jpg) center/cover no-repeat;
}
.reserve .area-title .title {
  color: #fff;
}
.reserve .area-title .btn-default::before {
  content: "";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: -150%;
  z-index: 1;
  width: 130%;
  height: 103%;
  box-sizing: border-box;
  background-color: #fff;
  transform: skew(-16deg);
  transition: all 0.35s ease-in-out;
}
.reserve .area-title .btn-default:not(:disabled):hover, .reserve .area-title .btn-default:not(:disabled):focus-visible {
  color: #212842;
  border: 1px solid #212842;
}
.reserve .area-title .btn-default:not(:disabled):hover::before, .reserve .area-title .btn-default:not(:disabled):focus-visible::before {
  left: -10%;
}

.list-reserve {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  overflow-x: auto;
}
.list-reserve::-webkit-scrollbar-track {
  background: #282828;
}
.list-reserve > li {
  flex: 0 0 calc((100% - 72px) / 4);
}
.list-reserve > li > a {
  display: block;
  width: 100%;
}
.list-reserve > li > a > img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 342/214;
  object-fit: cover;
}
.list-reserve .box-cnt {
  margin-top: 32px;
}
.list-reserve .box-cnt + .box-cnt {
  margin-top: 16px;
}
.list-reserve .box-cnt > li {
  display: flex;
}
.list-reserve .box-cnt > li:not(:first-child) {
  margin-top: 6px;
}
.list-reserve .box-cnt .point {
  margin-bottom: 8px;
}
.list-reserve .box-cnt .point strong {
  font-size: clamp(16px, calc(16px + (100vw - 1199px) * 0.0110957004), 24px);
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}
.list-reserve .box-cnt .copy {
  position: relative;
  flex: 0 0 125px;
  padding-right: 16px;
  font-size: clamp(12px, calc(12px + (100vw - 1199px) * 0.0055478502), 16px);
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
.list-reserve .box-cnt .copy::after {
  content: "";
  overflow: hidden;
  position: absolute;
  top: auto;
  right: 16px;
  z-index: 1;
  width: 1px;
  height: 14px;
  box-sizing: border-box;
  top: clamp(4px, calc(4px + (100vw - 1199px) * 0), 4px);
  background-color: rgba(255, 255, 255, 0.3);
}
.list-reserve .box-cnt .text {
  font-size: clamp(14px, calc(14px + (100vw - 1199px) * 0.0055478502), 18px);
  font-weight: 500;
  line-height: 1.5;
  color: #F0EFEB;
}
@media screen and (max-width: 1199px) {
  .list-reserve {
    flex-wrap: nowrap;
    margin-top: 20px;
    margin-right: calc(-1 * var(--spacing-x));
    padding-right: var(--spacing-x);
    gap: 12px;
  }
  .list-reserve > li {
    flex: 0 0 288px;
  }
  .list-reserve .box-cnt {
    margin-top: 20px;
  }
}

/* ====================
 메인팝업
==================== */
body.stop-scroll {
  overflow-y: hidden;
}

.main-popup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: 100%;
  padding: clamp(60px, calc(60px + (100vw - 1199px) * 0.027739251), 80px) clamp(80px, calc(80px + (100vw - 1199px) * 0.346740638), 330px) clamp(60px, calc(60px + (100vw - 1199px) * 0.027739251), 80px) clamp(80px, calc(80px + (100vw - 1199px) * 0.346740638), 330px);
}
.main-popup-wrap .dimmed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.main-popup-wrap .popup-container {
  position: relative;
  width: 100%;
  max-width: 1260px;
  min-width: 420px;
}
.main-popup-wrap .wrap-swiper {
  position: relative;
}
.main-popup-wrap .wrap-swiper .swiper-button-prev {
  width: clamp(50px, calc(50px + (100vw - 1199px) * 0.0138696255), 60px);
  height: clamp(50px, calc(50px + (100vw - 1199px) * 0.0138696255), 60px);
  left: clamp(-100px, calc(-80px + (100vw - 1199px) * -0.027739251), -80px);
  background: url(../images/common/ico_slide_left.svg) center/cover no-repeat;
}
.main-popup-wrap .wrap-swiper .swiper-button-prev::after {
  display: none;
}
.main-popup-wrap .wrap-swiper .swiper-button-next {
  width: clamp(50px, calc(50px + (100vw - 1199px) * 0.0138696255), 60px);
  height: clamp(50px, calc(50px + (100vw - 1199px) * 0.0138696255), 60px);
  right: clamp(-100px, calc(-80px + (100vw - 1199px) * -0.027739251), -80px);
  background: url(../images/common/ico_slide_right.svg) center/cover no-repeat;
}
.main-popup-wrap .wrap-swiper .swiper-button-next::after {
  display: none;
}
@media screen and (min-width: 1200px) {
  .main-popup-wrap .wrap-swiper[data-total="2"] .popup-bottom {
    width: clamp(700px, calc(700px + (100vw - 1199px) * 0.1941747573), 840px);
  }
  .main-popup-wrap .wrap-swiper[data-total="1"] .popup-bottom {
    width: clamp(350px, calc(350px + (100vw - 1199px) * 0.0970873786), 420px);
  }
}
.main-popup-wrap .swiper-slide > a {
  display: block;
  max-width: 100%;
  width: 420px;
  aspect-ratio: 420/560;
}
.main-popup-wrap .swiper-slide > a > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main-popup-wrap .swiper-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: -42px;
  z-index: 1;
  transform: translateX(-50%);
}
.main-popup-wrap .swiper-controls .btn-control {
  display: none;
  width: 16px;
  height: 16px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-popup-wrap .swiper-controls .btn-control.pause {
  background-image: url(../images/common/ico_pause_gray.svg);
}
.main-popup-wrap .swiper-controls .btn-control.play {
  background-image: url(../images/common/ico_play_gray.svg);
}
.main-popup-wrap .swiper-pagination {
  position: initial;
  width: auto;
}
.main-popup-wrap .swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
  background: #fff;
  opacity: 0.5;
  border-radius: 8px;
}
.main-popup-wrap .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  opacity: 1;
}
.main-popup-wrap .popup-bottom {
  display: flex;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: -40px;
  left: 50%;
  margin-top: clamp(14px, calc(14px + (100vw - 1199px) * 0.0055478502), 18px);
  transform: translateX(-50%);
}
.main-popup-wrap .popup-bottom .check-item label {
  font-size: clamp(14px, calc(14px + (100vw - 1199px) * 0.0027739251), 16px);
  font-weight: 400;
  color: #fff;
}
.main-popup-wrap .popup-bottom .btn-close {
  margin-left: auto;
  padding-right: 28px;
  font-size: clamp(14px, calc(14px + (100vw - 1199px) * 0.0027739251), 16px);
  font-weight: 400;
  color: #fff;
  background: url(../images/common/ico_close2_white.svg) right 0 top 50%/24px no-repeat;
}
@media screen and (max-width: 1199px) {
  .main-popup-wrap .popup-bottom {
    width: clamp(520px, calc(560px + (100vw - 600px) * -0.0667779633), 560px);
  }
}
@media screen and (max-width: 600px) {
  .main-popup-wrap .popup-bottom {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .main-popup-wrap {
    padding: clamp(60px, calc(60px + (100vw - 360px) * 0.0715137068), 120px) clamp(20px, calc(20px + (100vw - 360px) * 0), 20px) clamp(60px, calc(60px + (100vw - 360px) * 0.0715137068), 120px) clamp(20px, calc(20px + (100vw - 360px) * 0), 20px);
  }
  .main-popup-wrap .popup-container {
    height: 100%;
    min-width: auto;
  }
  .main-popup-wrap .wrap-swiper {
    height: 100%;
  }
  .main-popup-wrap .wrap-swiper .swiper {
    height: 100%;
  }
  .main-popup-wrap .wrap-swiper .swiper-button-prev,
  .main-popup-wrap .wrap-swiper .swiper-button-next {
    display: none;
  }
  .main-popup-wrap .swiper-controls {
    bottom: 14px;
  }
  .main-popup-wrap .swiper-controls .btn-control {
    display: block;
  }
  .main-popup-wrap .swiper-slide > a {
    width: auto;
    height: 100%;
    margin: auto;
  }
  .main-popup-wrap .swiper-slide > a > img {
    object-fit: contain;
  }
  .main-popup-wrap .swiper-pagination {
    margin: 0 5px 6px 0;
  }
  .main-popup-wrap .swiper-pagination .swiper-pagination-bullet {
    opacity: 1;
  }
  .main-popup-wrap .swiper-pagination .swiper-pagination-bullet-active {
    background: #444;
  }
}

/*# sourceMappingURL=main.css.map */
