@charset "UTF-8";

/* font - color */
.prmr {
  color: var(--prmr);
}
.prmr-50 {
  color: var(--prmr-50);
}
.prmr-10 {
  color: var(--prmr-10);
}
.po {
  color: var(--po);
}
.text-def {
  color: var(--text-def);
}
.text-inv {
  color: var(--text-inv);
}
.text-sub {
  color: var(--text-sub);
}

/* font - size */
.d-xl {
  font-size: var(--d-xl);
}
.d-lg {
  font-size: var(--d-lg);
}
.h-xl {
  font-size: var(--h-xl);
}
.h-lg {
  font-size: var(--h-lg);
}
.h-md {
  font-size: var(--h-md);
}
.h-sm {
  font-size: var(--h-sm);
}
.h-xs {
  font-size: var(--h-xs);
}
.body-lg {
  font-size: var(--body-lg);
}
.body-md {
  font-size: var(--body-md);
}
.body-sm {
  font-size: var(--body-sm);
}
.body-xs {
  font-size: var(--body-xs);
}
.c-sm {
  font-size: var(--c-sm);
}
.c-xs {
  font-size: var(--c-xs);
}
/* font - weight */
.bold {
  font-weight: 700;
}
.semi-bold {
  font-weight: 600;
}
.medium {
  font-weight: 500;
}
.regular {
  font-weight: 400;
}

/* font - align */
.text-center {
  text-align: center;
}

/* letter-spacing */
.ls-1 {
  letter-spacing: var(--ls-1);
}

/* button */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-sm) var(--pad-lg);
  border: 1px solid transparent;
  border-radius: var(--r-12);
  background-color: var(--prmr);
  font-size: var(--body-sm);
  font-weight: 500;
  color: var(--wh);
  transition:
    background-color 0.25s linear,
    border-color 0.25s linear,
    color 0.25s linear;
}
.btn:hover {
  background-color: var(--wh);
  border-color: var(--prmr);
  color: var(--bk);
}
.btn.md {
  padding: var(--pad-2xs) var(--pad-xs);
  border-radius: var(--r-8);
  font-size: var(--body-xs);
  font-weight: 400;
}
.btn.icon {
  gap: var(--gap-xs);
}
.btn.icon .ic {
  width: 18px;
}
.btn.md.icon {
  gap: var(--gap-2xs);
}
.btn.md.icon .ic {
  width: 15px;
}
.btn.outline {
  background-color: transparent;
  border-color: var(--bk);
  color: var(--bk);
}
.btn.outline:hover {
  background-color: var(--prmr);
  border-color: var(--prmr);
  color: var(--wh);
}
/* tag */
.tag {
  padding: var(--pad-3xs) var(--pad-xs);
  background: var(--wh);
  border-radius: var(--r-full);
}
.tag::before {
  content: "# ";
}
/* checklist */
ul.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}
ul.check-list li {
  position: relative;
  padding-left: 18px;
  font-size: var(--body-xs);
}
ul.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 10px;
  height: 6px;
  background: url(/img/screen/place/icon_check.svg) no-repeat center;
}

/* text */
.info-text {
  position: relative;
  padding-left: 11px;
  font-size: var(--c-sm);
  color: var(--text-sub);
}
.info-text::before {
  content: "*";
  position: absolute;
  left: 0;
}

/* bg */
.bg-sub {
  background: var(--bg-sub);
}

/* input field */
.input-field {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}
.input-field p {
  font-size: var(--body-sm);
  font-weight: 500;
  color: var(--text-inv);
}
.input-field input {
  padding: var(--pad-sm) var(--pad-md);
  border-radius: var(--r-12);
  border: 1px solid #828282;
  font-size: var(--body-xs);
  color: var(--text-inv);
}
.input-field input::placeholder {
  color: var(--text-sub);
}
.input-field input:focus {
  border-color: var(--prmr);
}
.input-field input.has-value {
  border-color: var(--wh);
  color: var(--text-inv);
}

html,
body {
  font-family: var(--ff-comm);
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  word-break: keep-all;
}
body.is-open {
  overflow: hidden;
}
section {
  position: relative;
}
.width-wrap {
  position: relative;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  z-index: 1;
}

/* header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 68px;
  z-index: 100;
  background: var(--wh);
  border-bottom: 1px solid var(--brdr-def);
}
header .width-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1220px;
  height: 100%;
}

/* header - logo */
header #logo {
  width: 116px;
}
header #logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* header - nav */
header nav {
  display: flex;
  align-items: center;
}
nav .gnb {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
}
nav .gnb > li {
  position: relative;
}
nav .gnb > li > a {
  padding: var(--pad-3xs) var(--pad-sm);
  font-size: var(--body-xs);
  border-radius: var(--r-full);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}
nav .gnb > li:hover > a,
nav .gnb > li.on > a {
  background: var(--prmr);
  color: var(--wh);
}
nav .gnb > li:hover .depth2 {
  display: block;
}
nav .gnb .depth2 {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  min-width: 150px;
  padding: var(--pad-3xs);
  border: 1px solid var(--prmr);
  background: var(--wh);
  border-radius: var(--r-8);
}
nav .gnb .depth2::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: transparent;
}
nav .gnb .depth2 li > a {
  padding: var(--pad-2xs) var(--pad-xs);
  border-radius: var(--r-4);
  font-size: var(--body-xs);
}
nav .gnb .depth2 li:hover > a {
  background: var(--prmr-10);
}

/* header - MO */
#hamburger-btn {
  display: none;
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  z-index: 3;
}
#hamburger-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--bk);
  border-radius: var(--r-full);
  transition:
    transform 0.25s ease,
    opacity 0.15s linear;
}
#hamburger-btn span:nth-child(1) {
  top: 5px;
}
#hamburger-btn span:nth-child(2) {
  top: 11px;
}
#hamburger-btn span:nth-child(3) {
  top: 17px;
}
#hamburger-btn.on span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
#hamburger-btn.on span:nth-child(2) {
  opacity: 0;
}
#hamburger-btn.on span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* side menu */
#side-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
  overflow-y: auto;

  width: 80vw;
  max-width: 580px;
  background: var(--wh);
  transform: translateX(100%);
  transition: transform 0.4s ease-in;
}
#side-menu.on {
  transform: translateX(100%);
}
/* side menu - gnb */
#side-menu .menu-wrap {
  flex: 1;
  padding: var(--pad-sideMenu);
}
#side-menu .gnb > li > a {
  padding: var(--pad-sm) 0;
  font-size: var(--h-xs);
  font-weight: 600;
}
#side-menu .gnb .depth2 li > a {
  padding: var(--pad-xs) var(--pad-sm);
  font-size: var(--body-sm);
}

/* side menu - 정보 */
#side-menu .info {
  padding: var(--pad-sideMenu);
  border-top: 1px solid var(--brdr-def);
}
#side-menu .info p {
  margin-bottom: var(--gap-lg);
}
/* dim 레이어 */
.dim {
  display: none;

  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-in;
}
.dim.on {
  opacity: 0;
  visibility: hidden;
}

/* footer */
footer {
  padding: var(--pad-xl) 0;
  border-top: 1px solid var(--brdr-def);

  padding-bottom: calc(var(--pad-xl) + var(--sticky-form-h, 88px));
}
footer .width-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
footer .logo-area .kakao-btn {
  display: none;
}
footer #f-logo {
  width: 116px;
}
footer #f-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .info-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}
footer .info-area ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-3xs) var(--gap-md);
}
footer .info-area ul:not(:last-child) {
  margin-bottom: var(--gap-3xs);
}
footer .kakao-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-2xs);
  padding: var(--pad-2xs) var(--pad-xs);
  border-radius: var(--r-8);
  background: #fae100;
}
footer .kakao-btn img {
  width: 26px;
}

@media all and (max-width: 1300px) {
  .width-wrap {
    width: 93.85%;
  }
}
@media all and (max-width: 1200px) {
}
@media all and (max-width: 1024px) {
  .width-wrap {
    width: 92.19%;
  }
}
@media all and (max-width: 1000px) {
  /* header */
  nav .gnb {
    display: none;
  }
  #hamburger-btn {
    display: block;
  }
  #side-menu {
    display: flex;
  }
  #side-menu.on {
    transform: translateX(0%);
  }
  .dim {
    display: block;
  }
  .dim.on {
    opacity: 1;
    visibility: visible;
  }
  /* footer */
  footer .logo-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .logo-area .kakao-btn {
    display: flex;
  }
  footer .kakao-btn {
    display: none;
  }
  footer .info-area ul {
    flex-direction: column;
  }
}
@media all and (max-width: 800px) {
}
