.wrapper {
  margin-inline: auto;
  max-width: 1600px;
  width: 100%;
}

.full-width {
  width: 100%;
}

header ~ * {
  width: 100%;
}

.mobile-only {
  display: none;
}

.tab-wrapper {
  display: flex;
  flex-direction: column;
}
.tab-wrapper .tabs {
  display: inline-flex;
  border-width: 0 1px;
  border-style: solid;
  border-color: var(--text-color-body);
  margin-inline: auto;
}
.tab-wrapper .tabs > li {
  display: inline-flex;
  justify-content: center;
  flex: 1;
  position: relative;
  border-style: solid;
  border-color: var(--text-color-body);
  border-width: 1px 0;
}
.tab-wrapper .tabs > li:not(:first-child) {
  border-left-width: 1px;
}
.tab-wrapper .tabs > li:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: -1px;
  right: -1px;
  left: -1px;
  bottom: -1px;
  border: 1px solid transparent;
  transition: all 0.2s;
  z-index: 10;
}
.tab-wrapper .tabs > li > button {
  transition: all 0.2s;
  flex: 1;
  background-color: transparent;
  color: var(--text-color-body);
  font-weight: 500;
  padding-block: 1.25rem;
  border-radius: 0;
  padding: 0;
  height: 4rem;
}
.tab-wrapper .tabs > li:hover {
  cursor: pointer;
}
.tab-wrapper .tabs > li:hover > button {
  background-color: var(--text-color-body02);
  font-weight: 700;
  color: #fff;
}
.tab-wrapper .tabs > li:has([aria-selected=true]):after {
  border-color: var(--text-color-body);
}
.tab-wrapper .tabs > li:has([aria-selected=true]) > button {
  background-color: var(--text-color-body);
  font-weight: 700;
  color: #fff;
}
.tab-wrapper .tab-pannels {
  margin-top: 2rem;
}
.tab-wrapper .tab-pannels > div[hidden] {
  display: none;
}

button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  font-weight: 700;
  background-color: var(--button-background);
  border: 1px solid transparent;
  color: #fff;
  padding-block: 1.125rem;
  padding-inline: 1.25rem;
  line-height: 1;
  transition: all 0.2s;
}
.form-field > button,
.form-field > .button {
  width: 100%;
}
.form-field button,
.form-field .button {
  min-width: 7.5rem;
  max-width: fit-content;
  flex: 1;
}

button:hover,
.button:hover {
  background-color: var(--button-hover-background);
}
button:disabled,
.button:disabled {
  background-color: var(--button-disabled-background);
}
button.outlined,
.button.outlined {
  color: var(--button-outlined-text-color);
  background-color: var(--bg-white);
  border: 1px solid var(--button-outlined-border-color);
}
button.outlined:hover,
.button.outlined:hover {
  color: var(--button-outlined-hover-text-color);
  border-color: var(--button-outlined-hover-border-color);
  color: var(--button-outlined-hover-border-color);
}
button.outlined:disabled,
.button.outlined:disabled {
  color: var(--button-outlined-disabled-text-color);
  border-color: var(--button-outlined-disabled-border-color);
}
button.large,
.button.large {
  min-height: 4rem;
}
button.medium,
.button.medium {
  min-height: 3.25rem;
}
button.text,
.button.text {
  background-color: transparent;
  padding: 0;
  border: none;
}
table button,
table .button {
  min-height: 2rem;
  margin: 0.25rem;
  padding: 0.25rem 0.75rem;
  font-weight: 500;
  color: var(--text-color-body02);
  border: 1px solid var(--line-03);
  font-size: 0.875rem;
  line-height: 1.375rem;
  background-color: #efefef;
}
table button:hover,
table .button:hover {
  background-color: #e0e0e0;
}

.sub-info {
  display: flex;
  flex-wrap: wrap;
  color: var(--text-color-desc);
  font-size: 0.875rem;
}

header {
  position: relative;
  transition: all 0.2s;
  padding-inline: 1.5rem;
  z-index: 1010;
  background-color: #fff;
}
header:after {
  content: "";
  position: absolute;
  display: block;
  top: var(--gnb-height);
  left: 0;
  right: 0;
  height: 0;
  background-color: #fff;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.12);
  transition: all 0.4s;
  z-index: -1;
}
header:has(.menu-list:hover):after {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  height: 346px;
}
header:has(.menu-list:hover) .link-list:has(.item.block) {
  display: inline-flex;
}
header .gnb {
  display: flex;
  position: relative;
  height: var(--gnb-height);
  max-height: var(--gnb-height);
}
header h1 {
  position: absolute;
  left: 0;
  top: 26px;
  display: inline-flex;
}
header h1 a {
  font-size: 0;
}
header h1 img {
  max-height: 46px;
}
.en header h1 img {
  max-width: 320px;
}

header .menu-list {
  display: flex;
  margin-inline: auto;
  padding-left: 220px;
  padding-right: 300px;
  justify-content: center;
  flex: 1;
}
header .menu-list:hover > .item > ul {
  display: block;
}
header .menu-list > .item {
  display: inline-flex;
  flex-direction: column;
  max-width: 160px;
  min-width: 135px;
  flex: 1;
}
header .menu-list > .item:has(.link-list) {
  width: 0;
  min-width: 0;
  flex: none;
}
header .menu-list > .item:hover > span:after {
  width: 100%;
}
header .menu-list > .item > span {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 1.875rem;
  min-height: var(--gnb-height);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: default;
}
header .menu-list > .item > span:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--point-green);
  transition: all 0.2s;
}
header .menu-list > .item > ul {
  display: none;
  padding-top: 24px;
  min-height: calc(264px + 4rem);
}
header .menu-list > .item > ul > li {
  padding-block: 0.5rem;
}
header .menu-list > .item > ul a:hover {
  text-decoration: underline;
}
header .link-list {
  position: absolute;
  right: 0;
  height: var(--gnb-height);
  display: inline-flex;
  align-items: center;
}
header .link-list .item {
  position: relative;
  padding-right: 12px;
  margin-right: 12px;
  line-height: 1;
  display: inline-flex;
  gap: 0.25rem;
}
header .link-list .item:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 1em;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-color: var(--line-01);
}
header .link-list .item:last-child {
  padding-right: 0;
  margin-right: 0;
}
header .link-list .item:last-child:after {
  display: none;
}
header .link-list:has(.item.block) {
  flex-direction: column;
  top: var(--gnb-height);
  right: 0;
  align-items: flex-end;
  width: calc(50vw - 375px);
  max-width: 480px;
  height: auto;
}
header .link-list:has(.item.block) > li {
  width: 100%;
  padding-block: 0.25rem;
  text-align: right;
}
header .link-list:has(.item.block) .item {
  display: inline-block;
  width: 220px;
  text-align: left;
}
header .link-list:has(.item.block) .item:after {
  display: none;
}
header .link-list:has(.item.block) .item span:has(.title) {
  display: inline-flex;
  flex-direction: column;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--line-01);
  width: 100%;
}
header .link-list:has(.item.block) .item .title {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #4b4b4b;
}
header .link-list:has(.item.block) .item .title.sub {
  font-size: 0.5625rem;
  line-height: 1;
  color: #c8c8c8;
}
header .link-list:has(.item.block) .item .ki {
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
}
header .link-list button {
  min-height: 0;
  padding: 0;
  background-color: transparent;
  font-weight: 500;
  color: var(--text-color-body);
}
header .menu-btn {
  width: 48px;
  height: 48px;
  top: 50%;
  right: -12px;
}
header .menu-btn .line {
  stroke: black;
  stroke-width: 4;
  stroke-linecap: round;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
header .menu-btn.active .top {
  transform: translateX(-8px) translateY(8px) rotate(45deg);
}
header .menu-btn.active .middle {
  opacity: 0;
}
header .menu-btn.active .bottom {
  transform: translateX(-8px) translateY(-15px) rotate(-45deg);
}
header .toggle-btn {
  min-height: 1.5rem;
  justify-content: flex-end;
  top: 35px;
  left: 0;
  right: 0;
}
header .toggle-btn .line {
  position: absolute;
  background-color: #333;
  transition: transform 0.3s ease-in-out, opacity 0.3s;
  top: 50%;
  transform: translateY(-50%);
}
header .toggle-btn .horizontal {
  width: 20px;
  height: 2px;
  right: 0;
}
header .toggle-btn .vertical {
  width: 2px;
  height: 20px;
  right: 9px;
}
header .toggle-btn.active .vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}
header .menu-btn, header .toggle-btn {
  display: none;
  position: absolute;
  background-color: transparent;
  padding: 0;
  z-index: 1001;
  transform: translateY(-50%);
}

html:has(.en) header .menu-list {
  padding-left: 440px;
}
html:has(.en) header .menu-list > .item {
  max-width: 240px;
}

footer {
  margin-top: 112px;
  background-color: var(--bg-footer);
  padding-block: 3.75rem;
  padding-inline: 1.5rem;
}
footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1480px;
  row-gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}
footer .footer-inner > h1,
footer .footer-inner > .footer-info {
  flex: 1 1 calc(100% - 28.125rem);
}
footer .footer-inner > .footer-links,
footer .footer-inner > .select-box {
  flex: 0 0 28.125rem;
}
footer .footer-inner h1 {
  order: 1;
}
footer .footer-inner h1 img {
  height: 42px;
}
footer .footer-inner .footer-links {
  order: 2;
}
footer .footer-inner .footer-info {
  order: 3;
}
footer .footer-inner .form-field:has(.select-box) {
  order: 4;
}
footer .footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  font-size: 0.8125rem;
  color: var(--text-color-footer);
}
footer .footer-info > div {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
footer .footer-info > div > * {
  position: relative;
}
footer .footer-info > div > *:before {
  content: "";
  display: inline-block;
  width: 1px;
  position: absolute;
  top: 0.25rem;
  left: 0;
  bottom: 0.25rem;
}
footer .footer-info > div > *:not(:first-child) {
  padding-left: 0.875rem;
}
footer .footer-info > div > *:not(:first-child):before {
  background-color: var(--line-f02);
}
footer .footer-info .copyright {
  margin-top: 0.5rem;
}
footer .form-field:has(.select-box) .select-box {
  min-width: 327px;
  max-width: 327px;
  flex: 1 0 auto;
  border-color: var(--line-f02);
}
footer .form-field:has(.select-box) .select-box.is-active {
  border-color: var(--line-f02);
}
footer .select-box:has(input[value]) .selected {
  color: var(--text-color-footer);
}

footer .form-field:has(.select-box) .select-box .selected {
  color: var(--text-color-footer);
}
footer .form-field:has(.select-box) .select-box .option-list {
  background-color: var(--bg-footer);
  border-color: var(--line-f02);
}
footer .form-field:has(.select-box) .select-box .option {
  color: var(--text-color-footer);
}
footer .form-field:has(.select-box) .select-box .option:hover {
  background-color: var(--footer-select-hover-background);
}
footer .footer-links {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  height: 3.125rem;
  font-size: 0.875rem;
  gap: 0.875rem;
  color: var(--text-color-footer);
}
footer .footer-links > li {
  position: relative;
}
footer .footer-links > li:before {
  content: "";
  display: inline-block;
  width: 1px;
  position: absolute;
  top: 0.25rem;
  left: 0;
  bottom: 0.25rem;
}
footer .footer-links > li:not(:first-child) {
  padding-left: 0.875rem;
}
footer .footer-links > li:not(:first-child):before {
  background-color: var(--line-f02);
}
footer .select-box {
  background-color: transparent;
}

html:has(.en) footer .footer-inner {
  flex-wrap: nowrap;
  justify-content: space-between;
}
html:has(.en) footer .footer-info > div {
  justify-content: flex-end;
}
html:has(.en) footer .footer-info .copyright {
  text-align: right;
}

@media screen and (max-width: 1200px) {
  .tab-wrapper .tabs > li > button {
    height: 3rem;
  }
  .form-field:has([type=file]) .file-list-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.375rem;
    margin-inline: 0;
  }
  .form-field:has([type=file]) .file-list-container .file-item {
    margin-inline: 0;
    width: fit-content;
    padding-right: 2rem;
  }
  .swiper {
    width: calc(100% + 24px + 24px);
    max-width: calc(100% + 24px + 24px);
    left: -24px;
  }
  .swiper .swiper-slide {
    flex: 0 0 auto;
    padding-inline: 0.5rem;
    display: inline-flex;
  }
  .swiper .swiper-wrapper {
    gap: 0;
    padding-bottom: 3.25rem;
    padding-inline: 0.75rem;
  }
  .ki.ki-home {
    width: 24px;
    height: 24px;
    background-position-y: -80px;
  }
  .wrapper {
    max-width: 1200px;
  }
  :root {
    --gnb-height: 64px;
  }
  header:has(.menu-list:hover):after, header:has(.menu-btn.active):after {
    height: 100vh;
  }
  header h1 {
    height: 50%;
    top: 14px;
  }
  header h1 a {
    display: inline-flex;
    align-items: center;
  }
  header h1 img {
    height: 26px;
  }
  header .gnb {
    height: var(--gnb-height);
  }
  header .gnb .menu-btn {
    display: inline-flex;
    top: 30px;
  }
  html:has(header .gnb .menu-btn.active) {
    overflow-y: hidden;
  }
  header .gnb .menu-btn.active ~ .menu-list {
    height: 100vh;
    overflow-y: auto;
    transition: all 0.4s;
    background-color: #fff;
  }
  html:has(.en) header .gnb .menu-btn.active ~ .menu-list {
    padding-left: 0;
  }
  header .gnb .menu-btn.active ~ .menu-list > .item > ul, header .gnb .menu-btn.active ~ .menu-list:hover > .item > ul {
    height: 0;
  }
  header .gnb .menu-btn.active ~ .menu-list > .item {
    position: relative;
    max-width: none;
    flex: none;
  }
  header .gnb .menu-btn.active ~ .menu-list > .item > span {
    padding-block: 1.25rem;
    min-height: 0;
  }
  header .gnb .menu-btn.active ~ .menu-list > .item > ul {
    display: block;
    overflow: hidden;
    min-height: 0;
    padding-block: 0;
  }
  header .gnb .menu-btn.active ~ .menu-list > .item:has(.toggle-btn.active) > ul {
    height: auto;
    padding-block: 1.25rem;
    border-bottom: 1px solid var(--line-01);
  }
  header .gnb .menu-btn.active ~ .menu-list > .item:has(.toggle-btn.active) > span:after {
    background-color: var(--point-green);
  }
  header .gnb .menu-btn.active ~ .menu-list > .item:not(:has(.link-list)) > span:after {
    width: 100%;
    height: 1px;
    background-color: var(--line-01);
  }
  header .gnb .menu-btn.active ~ .menu-list > .item .link-list {
    display: none;
  }
  header .gnb .menu-btn.active ~ .link-list {
    display: flex;
    justify-content: flex-end;
    height: auto;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    background-color: #fff;
  }
  header .gnb .toggle-btn {
    display: inline-flex;
  }
  header .gnb .menu-list {
    height: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding-inline: 0;
    width: 100vw;
    margin-top: var(--gnb-height);
    max-height: calc(100vh - 140px);
    overflow: hidden;
    position: relative;
  }
  html:has(.en) header .menu-list {
    padding-left: 0;
  }
  header .gnb .link-list,
  header .gnb .item:has(.link-list) {
    display: none;
  }
  footer .footer-inner {
    flex-direction: column;
    flex-wrap: nowrap;
    max-width: 100%;
  }
  footer .footer-inner > h1,
  footer .footer-inner > .footer-info {
    flex: 1 1 0%;
  }
  footer .footer-inner > .footer-links,
  footer .footer-inner > .select-box {
    flex: 0 0 100%;
  }
  footer .footer-inner h1 {
    order: 1;
  }
  footer .footer-inner .footer-links {
    order: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
    height: auto;
  }
  footer .footer-inner .select-box {
    order: 3;
  }
  footer .footer-inner .footer-info {
    order: 10;
    margin-top: 0.25rem;
    gap: 0;
  }
  footer .footer-inner .footer-info > div {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
  footer .footer-inner .footer-info > div > *:not(:first-child) {
    padding-left: 0;
  }
  footer .footer-inner .footer-info > div > *:before {
    display: none;
  }
  footer .footer-inner .footer-info .copyright {
    margin-top: 0.625rem;
  }
  footer .select-box .option-list {
    max-height: 35vh;
    overflow-y: auto;
  }
  .content:has(.reservation-form) ~ footer {
    margin-bottom: 11.125rem;
  }
  .location-bar {
    padding-right: 0;
    top: 0;
  }
  .location-bar > .wrapper {
    padding-right: 0;
  }
  .location-bar > .wrapper:before, .location-bar > .wrapper:after {
    height: 4rem;
  }
  .location-bar > .wrapper {
    column-gap: 0;
    grid-template-columns: 4rem 1fr 1fr;
  }
  .location-bar > .wrapper:before, .location-bar > .wrapper:after {
    height: 4rem;
  }
  .location-bar .btn-home {
    border-right: 1px solid var(--bg-b40);
    max-width: 4rem;
  }
  .location-bar .select-box {
    height: 4rem;
  }
  .location-bar .select-box .selected {
    height: 4rem;
    padding-left: 1rem;
    padding-right: 0.875rem;
  }
  .location-bar .select-box .option-list {
    top: 4rem;
  }
  .location-bar .select-box .option {
    padding-left: 1rem;
    padding-right: 0.875rem;
  }
  .location-bar .select-box .option:after {
    right: 0.875rem;
  }
  .content {
    min-width: 360px;
  }
  .content h5 {
    font-size: 1.25rem;
  }
  .content .menu-banner .title-wrap {
    padding-top: 7.25rem;
    padding-bottom: 6.25rem;
    height: auto;
    justify-content: start;
  }
  .content .menu-banner .title-wrap .title {
    font-size: 2rem;
    line-height: 1.75;
  }
  .content .menu-banner .title-wrap .title.sub {
    font-size: 0.875rem;
  }
  .content .page-content-wrap h4 {
    font-size: 1.5rem;
    line-height: 1.5;
    display: block;
  }
  .content .page-content-wrap .title-wrap {
    gap: 1rem;
    padding-top: 4rem;
    padding-bottom: 2.5rem;
  }
  .content .page-content-wrap .title-wrap .title {
    font-size: 2.25rem;
    line-height: 1.5;
  }
  .content .page-content-wrap .title-wrap .title.sub {
    font-size: 1rem;
  }
  .content .page-content-wrap .form-grid > div > .form-field {
    gap: 0.5rem;
    grid-template-columns: 1fr;
    margin-block: 0.5rem;
  }
  .content .page-content-wrap .form-grid > div > .form-field .label {
    padding-left: 0;
    min-height: auto;
    padding-top: 0.75rem;
    flex-direction: row;
    column-gap: 1.5rem;
  }
  .content .page-content-wrap .form-grid > div > .form-field .label .button.floor-plan {
    min-height: auto;
    margin-top: 0.75rem;
  }
  .content .page-content-wrap .form-grid > div > .form-field > div {
    min-width: 0;
    max-width: none;
  }
  .content.page-my-rental .page-content-wrap .form-grid > div > .form-field {
    grid-template-columns: minmax(96px, 132px) minmax(0, 1fr);
    gap: 0.75rem 1rem;
    margin-block: 0.625rem;
  }
  .content.page-my-rental .page-content-wrap .form-grid > div > .form-field .label {
    padding-top: 0;
    align-items: center;
    min-height: 0;
  }
  .content.page-my-rental .page-content-wrap .form-grid > div > .form-field > div {
    min-width: 0;
  }
  .content.page-my-rental .section-card .form-field {
    flex-direction: row;
  }
  .content.page-my-rental .section-card .form-field .form-field {
    flex-direction: row;
    align-items: center;
  }
  .content.page-my-rental .reservation-status .section-card-header {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
  }
  .content .privacy-info .form-field > div {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .content .privacy-info .form-field > div button {
    margin-left: auto;
    width: fit-content;
  }
  .content .privacy-info .form-field > div:has(input) label {
    flex: 1;
    align-items: flex-start;
    width: auto;
  }
  .content .privacy-info .form-field > div:has(input) label > span:not([class]) {
    margin-top: 0;
    line-height: 1.5;
    max-width: 100%;
  }
  .content .button-wrap {
    padding-inline: 0;
  }
  .content .button-wrap > button,
  .content .button-wrap > .button {
    max-width: none;
  }
  .form-field {
    flex-direction: column;
  }
  .content.page-my-rental .section-card .form-field {
    flex-direction: row;
  }
  .form-field.email label.full-width,
  .form-field > div:has([type*=checkbox]) label.full-width,
  .form-field > div:has([type*=radio]) label.full-width {
    min-width: 100% !important;
    width: 100%;
  }
  .form-field.email label.full-width > span:not([class]),
  .form-field > div:has([type*=checkbox]) label.full-width > span:not([class]),
  .form-field > div:has([type*=radio]) label.full-width > span:not([class]) {
    flex-grow: 0;
  }
  .form-field .form-field {
    flex-direction: row;
    gap: 0.5rem;
  }
  .content.page-my-rental .section-card .form-field .select-box,
  .content.page-my-rental .section-card .form-field input,
  .content.page-my-rental .section-card .form-field textarea {
    max-width: 100%;
  }
  .form-field .form-field > .label {
    min-width: 100px;
    width: auto;
  }
  .form-field .form-field > div label > span:not([class]) {
    margin-right: 0;
    padding-right: 0;
    flex: 0 0 auto;
  }
  .form-field .select-box {
    min-width: 0;
  }
  .board-wrapper .board-ctrl {
    flex-direction: column;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .board-wrapper .board-ctrl .right-area {
    width: 100%;
  }
  .board-wrapper .board-ctrl .form-field {
    min-width: 0;
  }
  .board-wrapper .board-view-container .board-view img {
    object-fit: contain;
    height: auto !important;
  }
  .board-wrapper .board-view-container .board-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .board-wrapper .board-view-container .title {
    line-height: 1.5;
  }
  .board-wrapper .board-view-container .board-header,
  .board-wrapper .board-view-container .board-body {
    padding-inline: 0.25rem;
  }
  .board-wrapper .list-item {
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
  }
  .board-wrapper .list-item > [class*=col] {
    padding-inline: 0.25rem;
    padding-block: 0;
  }
  .board-wrapper .col-subject a {
    padding-top: 1.25rem;
    padding-inline: 0.5rem;
    padding-bottom: 2.375rem;
  }
  .board-wrapper .col-date {
    flex-basis: auto;
    position: absolute;
    left: 0.5rem;
    bottom: 1.25rem;
  }
  .board-wrapper .board-navigation .board-nav-item {
    padding-inline: 0.25rem;
  }
  .board-wrapper .board-navigation .board-nav-item .nav-title {
    flex-shrink: 1;
  }
  .board-wrapper .board-navigation .board-nav-item .nav-date {
    display: none;
  }
  .board-wrapper .board-navigation .board-nav-item .label {
    flex-basis: auto;
  }
  .customer-voice .title {
    font-size: 1.25rem;
  }
  .customer-voice .desc {
    font-size: 1rem;
  }
  .reservation-form .form-grid .selected-times + .total {
    padding-inline: 0;
  }
  .reservation-form .form-body {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0;
  }
  .reservation-form .form-body .calendar {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
  }
  .reservation-form .form-body .calendar-ui + .flatpickr-calendar {
    margin-bottom: 0;
  }
  .reservation-form .form-body > div:has(.total-summary) {
    display: none;
  }
  .content.page-my-rental .reservation-form .form-body > div:has(.total-summary) {
    display: block;
  }
  .reservation-form .form-grid div:has(> .selected-times) {
    flex-direction: column;
    align-items: flex-start;
  }
  .reservation-form .selected-times > ul {
    padding-inline: 1rem;
  }
  .reservation-form .time-select-area .times {
    gap: 0.5rem;
  }
  .reservation-form .time-select-area .times > li {
    flex-basis: calc(20% - 0.4rem);
  }
  .reservation-form .btn-expander {
    min-height: 1.5rem;
  }
  .reservation-form .total-summary .selected-times {
    overflow-y: visible;
    max-height: none;
  }
  .reservation-form .expand-wrapper {
    z-index: 1009;
  }
  .content.page-my-rental .reservation-form .expand-wrapper {
    display: none !important;
  }
  html:has(.reservation-form .expand-wrapper) footer {
    margin-bottom: 170px;
  }
  html:has(.content.page-my-rental .reservation-form .expand-wrapper) footer {
    margin-bottom: 0;
  }
  .reservation-form .expand-wrapper .button-wrap {
    flex-direction: row-reverse;
  }
  .content.page-my-rental .reservation-form .expand-wrapper .button-wrap {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .content.page-my-rental .reservation-form .expand-wrapper .button-wrap .button {
    width: 100%;
  }
  .reservation-form:has(.expand-list.open):after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-dimmed);
    z-index: 1008;
  }
  html:has(.expand-list.open) header {
    z-index: 1007;
  }
  .reservation-hall-list .info-list .file-download {
    margin-top: 2rem;
    position: static;
    width: 12.5rem;
    max-width: 12.5rem;
    margin-inline: auto;
  }
  .reserve-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .reserve-steps .step-item {
    min-height: 0;
  }
  .introduce-hall > .item-block:has(.hall) {
    gap: 2.5rem;
  }
  .introduce-hall > .item-block:has(.hall) h5 {
    font-size: 1.75rem;
    line-height: 2.5rem;
  }
  .introduce-hall > .item-block:has(.hall) h5 + div {
    display: inline-flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  .introduce-hall > .item-block:has(.hall) h6 {
    font-size: 1.25rem;
    line-height: 2rem;
  }
  .introduce-hall > .item-block:has(.hall) .hall-desc {
    padding-inline: 0;
  }
  .introduce-hall .hall {
    display: flex;
    flex-direction: column;
  }
  .introduce-hall .hall .hall-desc {
    order: 1;
  }
  .introduce-hall .hall[class*=swiper] {
    flex-direction: column;
    order: 2;
  }
  .introduce-hall .hall .photo-list {
    padding-inline: 0;
  }
  .introduce-hall .hall .photo-item {
    position: relative;
    padding-inline: 0.25rem;
  }
  .introduce-hall .hall .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .introduce-hall .hall-point {
    flex-wrap: wrap;
  }
  .introduce-hall .hall-point .item {
    flex-basis: calc(50% - 1.5rem);
    max-width: calc(50% - 1.5rem);
    gap: 0.75rem;
  }
  .introduce-hall .hall-point .item p {
    text-align: center;
  }
  .introduce-hall .hall-point .item > div {
    height: calc(50vw - 2.5rem);
  }
  .tenant .tenant-list {
    flex-wrap: nowrap;
    flex-direction: column;
    row-gap: 40px;
  }
  .tenant .tenant-list > li {
    flex-basis: 100%;
  }
  .form-field .label:has(.floor-plan) {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .form-field .label > button.floor-plan {
    min-height: auto;
  }
  .tenant-login {
    box-shadow: none;
    padding: 0;
    margin-block: 0;
    width: 100%;
  }
  .tenant-login .login-input input {
    width: 100%;
  }
  .tenant-login:after {
    display: none;
  }
  .form-field .value {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding-inline: 0;
  }
  .form-field:has(.datepicker-wrapper) > div, .form-field:has(.timepicker-wrapper) > div {
    min-width: 0;
    flex-wrap: nowrap;
    max-width: 100%;
  }
  .form-field:has(.datepicker-wrapper) > div:not([class]) > span, .form-field:has(.timepicker-wrapper) > div:not([class]) > span {
    margin-inline: 0.25rem;
  }
  .form-field > div [type=text],
  .form-field > div [type=number],
  .form-field > div [type=password] {
    min-width: 0;
  }
  .form-field > div label > span:not([class]) {
    flex-grow: 1;
    flex-shrink: 0;
  }
  .building-specs .swiper .swiper-slide {
    padding-inline: 0;
  }
  .building-specs .item-block {
    padding-block: 0;
  }
  .building-specs .item-block .eyebrow {
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-align: center;
  }
  .building-specs .item-block > strong {
    text-align: center;
    font-size: 1.75rem;
    line-height: 2.5rem;
  }
  .building-specs .item-block p {
    text-align: center;
  }
  .building-specs .item-block .button-wrap {
    padding-inline: 0;
    order: initial;
  }
  .building-specs .item-block .building-img {
    position: static;
    margin-top: 1.5rem;
    width: 100%;
    max-width: none;
  }
  .building-specs .item-block .building-img img {
    box-shadow: none;
  }
  .building-specs .item-block:has(.swiper) {
    height: auto;
    flex-direction: column;
    align-items: center;
  }
  .building-specs .item-block:has(.swiper) .swiper {
    left: auto;
    width: 100%;
    max-width: none;
  }
  .building-specs .item-block:has(.swiper) .swiper .swiper-wrapper {
    padding-bottom: 0;
  }
  .building-specs .item-block:has(.swiper) + .item-block {
    margin-top: 60px;
  }
  .building-specs #lease-info-text {
    --swiper-pagination-bottom: 0;
    padding-bottom: 0;
  }
  .building-specs #lease-info-text strong {
    text-align: center;
    font-size: 1.75rem;
    line-height: 2.5rem;
  }
  .building-specs #lease-info-text .swiper-slide {
    padding-top: 0;
    padding-inline: 0;
  }
  .building-specs #lease-info-text .swiper-pagination {
    text-align: center;
  }
  .building-specs #lease-info-photo {
    box-shadow: none;
    max-width: 100%;
  }
  .building-specs #lease-info-photo .swiper-wrapper {
    padding-inline: 0;
  }
  .building-specs .lease-info-pagination {
    text-align: center;
    transform: translateY(1rem);
  }
  .building-specs .item-block:has(dl) {
    padding-block: 2rem;
    gap: 0.25rem;
  }
  .building-specs .item-block:has(dl):after {
    left: -24px;
    right: -24px;
  }
  .building-specs .item-block:has(dl) .building-img {
    transform: none;
    width: auto;
    max-width: none;
    margin-top: 0.25rem;
    position: static;
  }
  .building-specs .item-block:has(dl) strong {
    font-size: 1.5rem;
    text-align: left;
  }
  .building-specs .item-block:has(dl) > div {
    text-align: left;
  }
  .building-specs .item-block:has(dl) .button-wrap {
    width: auto;
    margin-top: 0.5rem;
  }
  .building-specs dl {
    margin-top: 1.5rem;
    width: 100%;
  }
  .building-specs dl .row {
    padding-block: 0.75rem;
  }
  .building-specs dl dt {
    width: 5rem;
  }
  .building-specs .gallery-wrap .gallery-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .building-specs .gallery-wrap .gallery-item strong {
    font-size: 1.25rem;
  }
  .building-specs .button-wrap {
    margin-inline: auto;
  }
  .introduce-building .point1 {
    flex-direction: column;
    align-items: center;
  }
  .introduce-building .point1 > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .introduce-building .point1 .eyebrow {
    font-size: 1.125rem;
    line-height: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .introduce-building .point1 h4 {
    font-size: 2rem;
    line-height: 2.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .introduce-building .point1 p {
    text-align: center;
    justify-content: center;
  }
  .introduce-building .point1 > div:has(.eyebrow) p {
    display: block;
  }
  .introduce-building .point1 .img-wrap {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
  .introduce-building .item-block + .item-block.point2 {
    margin-top: 6.25rem;
  }
  .introduce-building .point2:after {
    bottom: 0;
  }
  .introduce-building .point2 .swiper {
    padding-bottom: 60px;
  }
  .introduce-building .point2 ul {
    gap: 0;
    padding-bottom: 1rem;
    max-width: calc(100% - 24px - 24px);
    padding-inline: 12px;
  }
  .introduce-building .point2 ul li {
    flex: none;
    flex-direction: column;
    padding-inline: 0;
  }
  .introduce-building .point2 .text-wrap {
    padding: 2rem 1.25rem;
  }
  .introduce-building .point2 .text-wrap strong {
    font-size: 1.25rem;
    line-height: 2rem;
  }
  .introduce-building .point2 .text-wrap p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .introduce-building .point2 {
    --swiper-pagination-bottom: 42px;
  }
  .introduce-building .point2 .swiper-pagination {
    flex-direction: row;
    gap: 0;
    padding-block: 0;
  }
  .introduce-building .point3 {
    padding-top: 0;
    gap: 40px;
  }
  .introduce-building .point3 h4 > span {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .introduce-building .point3 .spec-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin-top: 0;
  }
  .introduce-building .point3 .spec-grid .img-area {
    width: auto;
  }
  .introduce-building .point3 .spec-grid .body-area {
    gap: 16px;
    margin-top: 40px;
  }
  .introduce-building .point3 .spec-grid .body-area h5 {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
  .introduce-building .point3 .spec-grid .body-area dl {
    gap: 20px;
    margin-top: 0;
  }
  .introduce-building .point3 .spec-grid .body-area dl dt {
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  .introduce-building .point3 .spec-grid .body-area .item {
    flex-basis: 100%;
  }
  .introduce-building .point3 .spec-detail h5 {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .introduce-building .point3 .spec-detail > div {
    overflow: auto;
  }
  .introduce-building .point3 .spec-detail.active > div {
    margin-bottom: 70px;
    gap: 1rem;
  }
  .introduce-building .point3 .table-wrap {
    min-width: 1000px;
  }
  .introduce-building .point4 .tab-wrapper .tabs {
    width: 100%;
  }
  .introduce-building .point4 .tab-wrapper .tabs > li {
    width: auto;
    flex-basis: 20%;
  }
  .introduce-building .point4 .tab-wrapper .tabs > li > button {
    height: auto;
    padding: 0;
  }
  .introduce-building .point4 .tab-wrapper .map {
    aspect-ratio: 5/4;
    margin-top: 40px;
    justify-content: center;
    margin-inline: auto;
  }
  .introduce-building .point4 .tab-wrapper .map svg {
    transform-origin: 0 0;
  }
  .introduce-building .point4 .tab-wrapper .map svg:has(g.intro-building-1.active) {
    transform: scale(1.45) translate(-17%, -21.2%);
  }
  .introduce-building .point4 .tab-wrapper .map svg:has(g.intro-building-2.active) {
    transform: scale(1.55) translate(-22%, -35.2%);
  }
  .introduce-building .point4 .tab-wrapper .map svg:has(g.intro-building-3.active) {
    transform: scale(1.55) translate(0%, -30%);
  }
  .introduce-building .point4 .tab-wrapper .map svg:has(g.intro-building-4.active) {
    transform: scale(1.5) translate(-27%, -4%);
  }
  .introduce-building .point4 .tab-wrapper .map svg:has(g.intro-building-5.active) {
    transform: scale(1.5) translate(-11%, -2%);
  }
  .introduce-building .point4 .tab-wrapper .building-gallery {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 0;
  }
  .introduce-building .point4 .tab-wrapper .building-gallery .gallery-img {
    height: 59.7333333333vw;
    position: relative;
    overflow: hidden;
  }
  .introduce-building .point4 .tab-wrapper .building-gallery .gallery-img > img {
    object-fit: cover;
    transform: none;
    width: 100%;
    height: 100%;
  }
  .convenient-service .service-list {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .convenient-service .service-list strong {
    font-size: 1.25rem;
    line-height: 1.55;
  }
  .convenient-service .service-list .service-img {
    height: 59.7333333333vw;
    position: relative;
    overflow: hidden;
  }
  .convenient-service .info-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .convenient-service .info-list > div {
    padding-left: 0;
  }
  .convenient-service .info-list > div + ul {
    padding-left: 0;
  }
  .convenient-service .info-list > div + ul:before {
    display: none;
  }
  .retail-service .tab-wrapper .tabs {
    width: 100%;
  }
  .retail-service .tab-wrapper .tabs > li {
    width: auto;
    flex: 1;
  }
  .retail-service .retail-gallery {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .parking h5 {
    font-size: 1.5rem;
  }
  .parking .spec-grid {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }
  .parking .spec-grid .body-area {
    gap: 24px;
  }
  .parking .spec-grid .body-area dl {
    flex-direction: column;
    align-items: stretch;
  }
  .parking .spec-grid .body-area dl:first-child {
    gap: 24px;
  }
  .parking .spec-grid .body-area .item li {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
  .form-complete-section > div:has(i) {
    max-height: 80px;
    transform: scale(0.5);
    display: flex;
    align-items: center;
  }
  .form-complete-section strong.title {
    font-size: 1.25rem;
    line-height: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .form-complete-section strong.title + p {
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .facility-detail .tab-wrapper .tabs {
    width: 100%;
  }
  .facility-detail .tab-wrapper .tabs > li > button {
    width: auto;
  }
  .facility-detail svg:has(.hall-cover.dae.active) {
    transform: translate(-40%, -9%) scale(1.3);
  }
  .facility-detail svg:has(.hall-cover.dochang.active) {
    transform: translate(0, -35%) scale(1.7);
  }
  .facility-detail .tab-hall:after {
    height: 632px;
  }
  .facility-detail .tab-hall > div:has(svg) {
    padding-top: 68px;
    padding-bottom: 32px;
  }
  .facility-detail .tab-hall [id*=-detail] h5 {
    font-size: 1.5rem;
    line-height: 1.5;
    display: none;
  }
  .facility-detail .tab-hall [id*=-detail] .spec-grid h5 {
    display: block;
  }
  .facility-detail .gallery-container .swiper .swiper-wrapper {
    padding-inline: 0;
  }
  .facility-detail .gallery-container .thumb-swiper {
    display: none;
  }
  .facility-detail .gallery-container .main-swiper {
    height: auto;
    left: auto;
    margin-inline: -24px;
    padding-bottom: 3.25rem;
  }
  .facility-detail .gallery-container .main-swiper .swiper-wrapper {
    padding-bottom: 0;
  }
  .facility-detail .gallery-container .main-swiper .swiper-slide {
    flex: 0 0 auto;
    overflow: visible;
  }
  .facility-detail .gallery-container .main-swiper .swiper-slide img {
    position: static;
    transform: none;
    max-width: 100%;
  }
  .facility-detail .gallery-container .swiper-pagination {
    display: block;
  }
  .facility-detail .spec-grid {
    display: block;
  }
  .facility-detail .spec-grid .body-area {
    gap: 40px;
  }
  .facility-detail .spec-grid .body-area dl {
    display: block;
  }
  .facility-detail .spec-grid .body-area dl .item {
    margin-top: 1rem;
  }
  .facility-detail .spec-grid .body-area dl .item + .item {
    margin-top: 1.25rem;
  }
  .facility-detail .spec-grid .body-area dl .item:has(.sub-info) {
    margin-bottom: 3.5rem;
  }
  .facility-detail .spec-grid .body-area .item .sub-info {
    top: 100%;
    bottom: auto;
  }
  .facility-detail .spec-grid .body-area dl:last-child .item.block {
    display: flex;
  }
  .facility-detail .spec-grid .body-area dl:last-child .item.block + .item.block {
    margin-top: 0.5rem;
  }
  .facility-detail .info-list {
    flex-direction: column;
    gap: 32px;
  }
  .facility-detail .info-list .btn-dialog-open,
  .facility-detail .info-list .file-download {
    position: static;
  }
  .gallery-wrap .gallery-list {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
  .gallery-wrap .gallery-list li:hover img {
    transform: scale(1.025);
  }
  .gallery-wrap .gallery-list .gallery-img {
    aspect-ratio: 4 / 3;
  }
  .main .title-wrap {
    padding-inline: 24px;
  }
  .main .title-wrap h4,
  .main .title-wrap p {
    text-align: center;
  }
  .main.img-slider > .swiper {
    width: auto;
    max-width: none;
    left: auto;
  }
  .main.img-slider > .swiper > .wrapper {
    left: 24px;
    top: -98px;
  }
  .main.img-slider > .swiper .swiper-wrapper,
  .main.img-slider > .swiper .swiper-slide {
    padding-inline: 0;
  }
  .main.img-slider > .swiper .swiper-slide {
    height: calc(100vh - 64px);
  }
  .main.img-slider .text-wrap {
    max-width: calc(100vw - 24px - 24px);
    width: 100%;
    padding-inline: 0;
  }
  .main.img-slider .text-wrap [class*="-1"] {
    font-size: 3.25rem;
    line-height: 1;
  }
  .main.img-slider .text-wrap [class*="-2"] {
    font-size: 2.625rem;
    line-height: 1;
  }
  .main.img-slider .text-wrap [class*="-3"] {
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 0.875rem;
  }
  .main.img-slider .text-wrap:after {
    display: inline-block;
  }
  .main.img-slider .text-wrap.mo-white [class*=text] {
    color: #fff;
  }
  .main.img-slider .main-img {
    left: 0;
    right: 0;
    display: flex;
    max-width: none;
    bottom: 0;
  }
  .main.img-slider .main-img img {
    width: 100%;
    max-height: 100vh;
    object-fit: cover;
    max-width: none;
  }
  .main.img-slider .board-pager-controls {
    padding: 12px;
    gap: 0.75rem;
  }
  .main.img-slider .board-pager-controls > button {
    width: 16px;
    height: 16px;
    min-height: 0;
  }
  .main.img-slider .board-pager-controls .swiper-pagination {
    gap: 0.75rem;
  }
  .main.img-slider .board-pager-controls .swiper-pagination-bullet {
    --swiper-pagination-bullet-width: 22px;
    --swiper-pagination-bullet-height: 22px;
    font-size: 0.875rem;
    line-height: 1;
  }
  .main.banner .banner-wrap {
    position: relative;
  }
  .main.banner ul:has(.hover) > li .text-wrap {
    opacity: 1;
  }
  .main.banner .content-wrap,
  .main.banner .img-wrap {
    flex-direction: column;
  }
  .main.banner .content-wrap li,
  .main.banner .img-wrap li {
    height: 160px;
  }
  .main.banner .content-wrap {
    top: 0;
  }
  .main.banner .content-wrap li {
    height: 100%;
  }
  .main.banner .content-wrap li .text-wrap {
    padding: 24px;
    gap: 0.25rem;
  }
  .en .main.banner .content-wrap li .text-wrap {
    padding: 24px;
  }
  .main.banner .content-wrap li strong {
    font-size: 1.375rem;
    line-height: 1.4;
  }
  .main.banner .content-wrap li p {
    font-size: 0.875rem;
  }
  .main.banner .content-wrap li a > span {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .main.banner .img-wrap li {
    padding-inline: 24px;
  }
  .main.banner .img-wrap li.hover {
    overflow: hidden;
  }
  .main.banner .img-wrap li.hover img {
    transform: scale(1);
  }
  .main.banner .img-wrap li:nth-child(1) img, .main.banner .img-wrap li:nth-child(2) img, .main.banner .img-wrap li:nth-child(3) img, .main.banner .img-wrap li:nth-child(4) img {
    left: 0;
  }
  .main.banner .img-wrap img {
    width: 100%;
    height: 100%;
  }
  .main.notice ul {
    flex-direction: column;
    gap: 2.5rem;
  }
  .main.notice strong {
    font-size: 1.25rem;
    line-height: 2rem;
  }
  .main.banner-slider .swiper {
    width: auto;
    max-width: none;
  }
  .main.banner-slider .img-wrap {
    bottom: 0;
    max-width: 50%;
    margin-left: auto;
  }
  .main.banner-slider a.swiper-slide {
    flex-direction: column;
    height: 360px;
  }
  .main.banner-slider a.swiper-slide .text-wrap {
    padding: 32px 18px;
    width: 100%;
  }
  .main.banner-slider .swiper-wrapper {
    padding-bottom: 0;
    padding-inline: 0;
  }
  .main.banner-slider .swiper-pagination {
    width: auto !important;
    left: 32px !important;
    --swiper-pagination-bottom: 18px;
    --swiper-pagination-bullet-width: 12px;
    --swiper-pagination-bullet-height: 12px;
    --swiper-pagination-bullet-border-radius: 0;
    --swiper-pagination-color: var(--primary);
  }
  .main .ki.main {
    background: url(../images/ico-main-mo.svg) no-repeat 0 0;
  }
  .main .ki.main.slider {
    width: 16px;
    height: 16px;
  }
  .main .ki.main.slider.left {
    background-position: 0 0;
  }
  *:hover > .ki.main.slider.left {
    background-position-y: -30px;
  }
  .main .ki.main.slider.right {
    background-position: -30px 0;
  }
  *:hover > .ki.main.slider.right {
    background-position-y: -30px;
  }
  .main .ki.main.more {
    width: 24px;
    height: 24px;
    background-position: -60px 0;
  }
  img[src*=-pc] {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
  .pc-only {
    display: none !important;
  }
  .form-field > div [type=text],
  .form-field > div [type=number],
  .form-field > div [type=password] {
    min-width: 0;
  }
  .form-field > div:has([type*=checkbox]) > label > span:not([class]), .form-field > div:has([type*=radio]) > label > span:not([class]) {
    padding-right: 0.5rem;
  }
  .form-field > div > .form-field .label {
    flex-shrink: 0;
    max-width: 6.25rem;
    align-items: center;
  }
  .form-field > div > .form-field .label > span {
    margin-top: 0;
  }
  .form-field > div label > span:not([class]) {
    flex-grow: 1;
    flex-shrink: 0;
    margin-right: 0;
  }
  .form-field:has(.select-box) {
    width: 100%;
  }
  .info-list {
    padding: 1.25rem 1rem;
    flex-direction: column;
  }
  .info-list > ul {
    width: 100%;
  }
  button,
  .button {
    min-height: 3rem;
  }
  button.medium,
  .button.medium {
    padding: 0.75rem 1.25rem;
    min-width: 0;
    min-height: 3rem;
  }
  .page-content-wrap:has(.map-area) {
    overflow: hidden;
  }
  .map-area .item-block:has([class*=map]) {
    flex-direction: column-reverse;
    min-height: 600px;
    gap: 2.5rem;
  }
  .map-area .item-block:has([class*=map]) > button {
    position: static;
  }
  .map-area .map {
    position: static;
  }
  .map-area .map > svg {
    position: relative;
    left: -24px;
    right: -24px;
    width: calc(100% + 24px + 24px);
    max-width: 100vw;
  }
  .map-area .map .region-count {
    left: 24px;
    text-align: left !important;
  }
  .map-area .map .region-arr, .map-area .map .region-arr.active {
    display: none;
  }
  .map-area .map-pin {
    transform: scale(1.25);
    transform-box: fill-box;
    transform-origin: center;
  }
  .map-area .info-card-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2.5rem;
  }
  .map-area .info-card-list .info-card .img-wrap {
    min-height: 420px;
  }
  .tenant.service-wrap {
    --swiper-pagination-bottom: 22px;
  }
  .tenant.service-wrap .step-list {
    column-gap: 0;
    padding-top: 32px;
    padding-bottom: 60px;
  }
  .tenant.service-wrap .swiper .swiper-wrapper {
    padding-inline: 0.75rem;
  }
  .tenant.service-wrap .swiper:after {
    content: "";
    position: absolute;
    top: 0;
    left: -50vw;
    right: -50vw;
    bottom: 0;
    background-color: var(--info-area-background);
    z-index: -1;
  }
  .tenant.service-wrap .list-search h4 {
    flex-direction: column;
    align-items: start;
  }
  .tenant.service-wrap .list-search h4 .title {
    font-size: 1.5rem;
  }
  .tenant.service-wrap .list-search-area {
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }
  .tenant.service-wrap .list-search-area .form-field {
    flex: 1;
    padding: 0 !important;
    gap: 0.75rem;
  }
  .directions dl .row {
    flex-direction: column;
    align-items: center;
  }
  .directions dl .row.bus li {
    flex-direction: column;
    gap: 0.5rem;
  }
  .directions dl li {
    display: inline-flex;
    align-items: start;
  }
  .directions dl li span:last-child {
    margin-top: 0.25rem;
  }
  .directions dl dd {
    padding-top: 0;
    width: 100%;
  }
  .directions dl dd .num {
    height: 30px;
  }
  .directions .img-wrap {
    left: -24px;
    transform: none;
    width: calc(100% + 24px + 24px);
  }
  .content .page-content-wrap .reservation-status .title-wrap {
    padding-bottom: 0;
  }
  .reservation-status .form-body .form-grid h4 {
    margin-top: 2.5rem;
  }
  .reservation-status .process-flow {
    margin-top: 1.5rem;
  }
  .reservation-status .step-track .step-item {
    padding-bottom: 4rem;
  }
  .reservation-status .record-wrap {
    gap: 0.625rem;
  }
  .reservation-status .record-wrap .list-item {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 1rem;
  }
  .reservation-status .record-wrap .list-item > .col-date {
    padding: 0.25rem;
    flex-basis: 0;
  }
  .reservation-status .record-wrap .col-subject {
    padding: 0.25rem;
  }
  .dialog-wrapper .dialog-content {
    max-width: 90vw;
    min-width: auto;
  }
  .dialog-wrapper.notice .dialog-content {
    max-width: 90vw;
    min-width: auto;
    padding-inline: 1rem;
  }
  .dialog-wrapper.notice .dialog-body .swiper {
    max-width: none;
    left: auto;
  }
  .dialog-wrapper.notice .dialog-body .swiper-wrapper {
    padding-inline: 0;
  }
}
@media screen and (min-width: 1200px) {
  .mobile-only {
    display: none !important;
  }
  .pc-only {
    display: flex;
  }
  .dialog-wrapper.notice .dialog-body .swiper-slide {
    width: 440px !important;
  }
  .introduce-hall > .item-block:has(.hall) .hall-desc {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    z-index: 1;
  }
  .introduce-hall > .item-block:has(.hall) .photo-item {
    flex: none;
  }
  .introduce-hall > .item-block:has(.hall) .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .introduce-hall > .item-block:has(.hall) .pc-only {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .introduce-hall > .item-block:has(.hall) .pc-only > .photo-item {
    flex-grow: 1;
    flex-shrink: 0;
    text-align: right;
    flex-basis: 100%;
    padding-left: clamp(620px, 52.5%, 660px);
  }
  .introduce-hall > .item-block:has(.hall) .pc-only > .photo-item img {
    width: 820px;
    max-width: none;
  }
  .introduce-hall > .item-block:has(.hall) .pc-only .swiper {
    width: 100%;
    padding-top: 40px;
  }
  .introduce-hall > .item-block:has(.hall) .pc-only .board-pager-controls {
    position: absolute;
    bottom: 86px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    left: -30px;
    right: -30px;
  }
  .introduce-hall > .item-block:has(.hall) .pc-only .board-pager-controls .btn-prev,
  .introduce-hall > .item-block:has(.hall) .pc-only .board-pager-controls .btn-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 0.75px solid var(--line-02);
  }
  .introduce-hall .item-block + .item-block {
    margin-top: 7.5rem;
  }
  .introduce-hall .item-block + .item-block h4 {
    text-align: center;
    font-size: 2.625rem;
    line-height: 1.4;
  }
  .introduce-hall .photo-list {
    display: flex;
  }
  .introduce-hall .hall-point {
    margin-top: 2.25rem;
    margin-bottom: 3.75rem;
  }
  .gallery-wrap .gallery-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .map-area .map .region-count {
    top: var(--y);
    left: var(--x);
  }
  .building-specs #lease-info-text {
    padding-right: 16px;
  }
  .building-specs .lease-info-pagination {
    --swiper-pagination-bottom: 146px;
    position: absolute;
    z-index: 1;
  }
  .tenant.service-wrap .swiper {
    overflow: visible;
    width: 100%;
  }
  .tenant.service-wrap .step-list:after {
    content: "";
    position: absolute;
    top: 0;
    left: -50vw;
    right: -50vw;
    bottom: 0;
    background-color: var(--info-area-background);
    z-index: -1;
  }
  .tenant .tenant-list {
    width: calc(100% + 40px);
  }
  .introduce-building .point2 .swiper .swiper-pagination {
    display: none;
  }
  .introduce-building .point3 .spec-grid .body-area .item dd {
    font-size: 1.25rem;
    line-height: 2rem;
  }
  .introduce-building .point3 .spec-grid .body-area .item dd > span {
    font-size: 1rem;
  }
  .form-complete-section strong.title {
    gap: 0.125rem;
  }
  .form-complete-section strong.title + p {
    gap: 0.125rem;
  }
  .parking .title-area.discount h5 {
    display: flex;
    flex-direction: column;
  }
}/*# sourceMappingURL=layouts.css.map */