@charset "UTF-8";
:root {
  --primary-50: #f8fafc;
  --primary-100: #f1f5f9;
  --primary-200: #e2e8f0;
  --primary-400: #94a3b8;
  --primary-300: #cbd5e1;
  --primary-500: #64748b;
  --primary-600: #475569;
  --primary-700: #334155;
  --primary-800: #1e293b;
  --primary-900: #0f172a;
  --color-primary: #1e293b;
  --color-secondary: #312e81;
  --color-success: #22c55e;
  --color-bg: #fff;
  --color-bg2: #f1f5f9;
  --color-bg3: #f8fafc;
  --color-line: #cbd5e1;
  --color-disabled: #cbd5e1;
  --color-white: #fff;
  --text-title: #1e293b;
  --text-body: #475569;
  --text-desc: #64748b;
  --text-placeholder: #94a3b8;
  --text-reverse: #e2e8f0;
}

[data-theme=dark] {
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #0172FF;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;
  --color-primary: #0172FF;
  --color-success: #22c55e;
  --color-bg: #1d1f2e;
  --color-bg2: #1e293b;
  --color-line: #334155;
  --color-disabled: #64748b;
  --color-white: #fff;
  --text-title: #f8fafc;
  --text-body: #94a3b8;
  --text-desc: #94a3b8;
  --text-placeholder: #64748b;
  --text-reverse: #cbd5e1;
}

:root {
  --fs-display-sm: 4rem;
  --fs-display-md: 5rem;
  --fs-display-lg: 6.6rem;
  --fs-heading-xsm: 2.4rem;
  --fs-heading-sm: 3.2rem;
  --fs-heading-md: 4rem;
  --fs-heading-lg: 5rem;
  --fs-title-xsm: 1.4rem;
  --fs-title-sm: 1.6rem;
  --fs-title-md: 1.8rem;
  --fs-title-lg: 2.0rem;
  --fs-title-xlg: 2.4rem;
  --fs-title-xxlg: 3.2rem;
  --fs-body-sm: 1.4rem;
  --fs-body-md: 1.6rem;
  --fs-body-lg: 1.8rem;
  --fs-link-sm: 1.4rem;
  --fs-link-md: 1.6rem;
  --fs-link-lg: 1.8rem;
  --fs-detail-sm: 1.2rem;
  --fs-detail-md: 1.4rem;
  --fs-detail-lg: 1.5rem;
  --fs-label-xsm: 1.2rem;
  --fs-label-sm: 1.4rem;
  --fs-label-md: 1.6rem;
  --fs-label-lg: 1.8rem;
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-bolder: 800;
  --rd-sm: .4rem;
  --rd-md: .8rem;
  --rd-lg: 1.2rem;
  --rd-xlg: 1.6rem;
  --rd-xxlg: 2rem;
  --rd-full: 999px;
}

html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--text-body);
  font-weight: var(--fw-normal);
  line-height: 1.5;
  word-break: keep-all;
  word-wrap: break-word;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth;
  letter-spacing: -0.02em;
}

html {
  font-size: 62.5%;
}

body {
  font-size: var(--fs-body-md);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  overflow-x: hidden;
}
body.modal-open {
  overflow: hidden;
}

* {
  transition: background-color 0.1s ease, color 0.1s ease;
}

body,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
input,
textarea,
a,
button,
select,
ul,
li,
span,
em,
label,
:before,
:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  font-family: inherit;
  line-height: 1.5;
  letter-spacing: inherit;
}

pre {
  font-family: inherit;
}

input,
textarea,
a,
button,
select,
span,
label,
:before,
:after {
  font-size: inherit;
  font-weight: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: var(--fw-bold);
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img,
fieldset {
  border: 0;
}

fieldset {
  min-width: 100%;
}

img {
  max-width: 100%;
  vertical-align: top;
}

ul,
ol {
  list-style: none;
}

em,
address,
i {
  font-style: normal;
}

a,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

button,
input[type=submit],
input[type=button] {
  overflow: visible;
  margin: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  resize: none;
}

label {
  cursor: pointer;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=text],
input[type=tel],
input[type=password],
input[type=file],
input[type=number],
input[type=email],
input[type=date],
input[type=search],
textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

caption {
  position: static !important;
  margin: 0 !important;
}

table {
  table-layout: fixed;
  max-width: none;
  width: auto;
  min-width: 100%;
  border-collapse: collapse;
}

[role=button] {
  cursor: pointer;
}

.img img {
  min-width: 100%;
  max-width: 100%;
}

.img.bg-img {
  background-size: cover;
}

.blind,
hr,
.sr-only,
legend,
caption {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.al {
  text-align: left !important;
}

.ac {
  text-align: center !important;
}

.ar {
  text-align: right !important;
}

@media (max-width: 599px) {
  .pc-only {
    display: none !important;
  }
  .pc-only.read {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  .mob-line {
    display: block;
    line-height: inherit;
  }
}
@media (min-width: 600px) {
  .mob-only {
    display: none !important;
  }
  .mob-only.read {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  .pc-line {
    display: block;
    line-height: inherit;
  }
}
/* *** Layout *** */
body {
  background-color: var(--color-bg);
}

.wrapper {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: calc(6rem + 3.2rem);
}
@media (max-width: 599px) {
  .wrapper {
    padding-top: calc(5.4rem + 3.2rem);
  }
}
.wrapper.locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/* header */
.header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  background: var(--color-bg);
  z-index: 1000;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 599px) {
  .header {
    box-shadow: none;
  }
}
.header.add-shadow {
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
}
.header.remove-shadow {
  box-shadow: none;
}
.header__translate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  background-color: var(--color-bg2);
  padding: 0 2.4rem;
  height: 3.2rem;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  min-width: 120rem;
  height: 6rem;
  padding: 0 2.4rem;
}
.header__inner.narrow {
  max-width: 124.8rem;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .header__inner {
    min-width: 100%;
  }
}
@media (max-width: 599px) {
  .header__inner {
    height: 5.4rem;
  }
}
.header .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.8rem;
}
@media (max-width: 599px) {
  .header .logo {
    display: none;
  }
}
.header .logo h1 {
  font-size: var(--fs-title-lg);
  font-weight: var(--fw-bold);
  color: var(--primary-700);
  padding-top: 0.2rem;
}
.header .logo::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url("../img/logo.png") no-repeat center/cover;
}
.header .sch-wrap {
  margin-left: auto;
}
.header__sch {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.8rem;
}
.header__sch .hs-select {
  position: relative;
  width: 26rem;
  height: 4rem;
  line-height: 4rem;
  border: 1px solid var(--color-line);
  border-radius: var(--rd-full);
}
@media (max-width: 599px) {
  .header__sch .hs-select {
    border-width: 0;
  }
}
.header__sch .hs-select select {
  width: 100%;
  line-height: 4rem;
  padding: 0 3.6rem 0 1.2rem;
  font-weight: var(--fw-medium);
  color: var(--text-title);
  border: 0;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: nowrap;
}
@media (max-width: 599px) {
  .header__sch .hs-select select {
    padding: 0 2.4rem 0 0.8rem;
    font-size: var(--fs-title-lg);
    font-weight: var(--fw-bold);
  }
}
.header__sch .hs-select__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  background-color: var(--primary-100);
  border: 1px solid var(--color-primary);
  border-radius: var(--rd-full);
  color: var(--color-primary);
  line-height: 3.4rem;
  font-weight: var(--fw-medium);
  padding: 0.2rem 1.2rem 0;
  font-size: var(--fs-body-sm);
}
html[data-theme=dark] .header__sch .hs-select__btn {
  background-color: var(--color-primary);
  color: var(--text-reverse);
}
.header__sch .hs-select::after {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  content: "";
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-color: var(--color-primary);
  -webkit-mask: url("../img/icons/chevron-down.svg") no-repeat center/cover;
  mask: url("../img/icons/chevron-down.svg") no-repeat center/cover;
  z-index: -1;
}
.header__info {
  margin-left: 1.6rem;
  padding-top: 0.2rem;
}
.header__info::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-color: var(--primary-400);
  -webkit-mask: url("../img/icons/info.svg") no-repeat center/cover;
  mask: url("../img/icons/info.svg") no-repeat center/cover;
}
.header__btn::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background-color: var(--text-title);
}
.header__btn--back {
  -webkit-mask: url("../img/icons/arrow-left.svg") no-repeat center/cover;
  mask: url("../img/icons/arrow-left.svg") no-repeat center/cover;
}
@media (max-width: 599px) {
  .header__btn {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.header__toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  position: relative;
  margin-left: 1.6rem;
}
.header__toggle::before {
  content: "";
  height: 2.4rem;
  border-left: 1px solid var(--color-line);
  padding-left: 1.6rem;
}
.header .theme-toggle {
  height: 3.8rem;
  width: auto;
  padding: 0 1.2rem;
}
.header .theme-toggle::before {
  content: "다크모드";
  color: var(--text-reverse);
  margin-right: 0.4rem;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
}
.header .theme-toggle::after {
  width: 2rem;
  height: 2rem;
}
.header .theme-toggle.dark::before {
  content: "라이트모드";
}

/* container */
.container {
  position: relative;
  width: 100%;
  height: calc(100vh - calc(6rem + 3.2rem));
}
.container--list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
}
.container__inner {
  width: 100%;
  max-width: 124.8rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

/* sidebar */
.sidebar {
  position: absolute;
  top: 2.4rem;
  bottom: 2.4rem;
  left: 2.4rem;
  width: 40rem;
  background: var(--color-bg);
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: var(--rd-xxlg);
  z-index: 999;
}
@media (max-width: 599px) {
  .sidebar {
    position: fixed;
    top: calc(5.4rem + 3.2rem);
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 6.4rem;
    border-radius: 0;
    transition: left 0.3s ease-in-out;
  }
  .sidebar.view-map {
    width: 100%;
    left: -120%;
  }
}

/* bottom bar */
.bottom-nav__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  position: fixed;
  bottom: 2.4rem;
  width: 100%;
  height: 6.4rem;
  padding: 0 2.4rem;
  z-index: 1000;
}
.bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  height: 100%;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 부드러운 그림자 */
  border-radius: var(--rd-full);
  backdrop-filter: blur(5px) saturate(180%); /* 유리 효과 */
  -webkit-backdrop-filter: blur(5px) saturate(180%); /* 크로스 브라우징 */
}
.bottom-nav.dark {
  background: rgba(30, 41, 59, 0.8);
}
.bottom-nav__btn {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.6rem;
  font-weight: var(--fw-medium);
  color: var(--text-title);
  height: 100%;
  padding: 0 1.6rem;
  border-radius: var(--rd-full);
}
.bottom-nav__btn::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--text-title);
}
.bottom-nav__btn span {
  padding-top: 0.4rem;
}
.bottom-nav__btn.active {
  background-color: var(--color-primary);
  color: var(--text-reverse);
  font-weight: var(--fw-bold);
}
.bottom-nav__btn.active::before {
  background: var(--text-reverse);
}
.bottom-nav__btn--list::before {
  -webkit-mask: url("../img/icons/list.svg") no-repeat center/cover;
  mask: url("../img/icons/list.svg") no-repeat center/cover;
}
.bottom-nav__btn--map::before {
  -webkit-mask: url("../img/icons/map.svg") no-repeat center/cover;
  mask: url("../img/icons/map.svg") no-repeat center/cover;
}
.bottom-nav__btn--info::before {
  -webkit-mask: url("../img/icons/info.svg") no-repeat center/cover;
  mask: url("../img/icons/info.svg") no-repeat center/cover;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: var(--rd-full);
  background: var(--primary-500);
  transition: all 0.3s ease-in-out;
}
.theme-toggle::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--text-reverse);
  -webkit-mask: url("../img/icons/moon-star.svg") no-repeat center/cover;
  mask: url("../img/icons/moon-star.svg") no-repeat center/cover;
  transition: all 0.3s ease-in-out;
}
.theme-toggle.dark {
  background: var(--color-bg2);
}
.theme-toggle.dark::after {
  background-color: #fde047;
  -webkit-mask: url("../img/icons/sun.svg") no-repeat center/cover;
  mask: url("../img/icons/sun.svg") no-repeat center/cover;
}

/* google translate */
#google_translate_element > div {
  display: flex;
  align-items: center;
}
#google_translate_element > div > div {
  position: relative;
  height: auto;
}
#google_translate_element > div > div > select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  max-width: 200px;
  height: 24px;
  float: right;
  padding: 0px 16px;
  margin: 0 8px 0 0 !important;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-title);
  border: 1px solid var(--color-line);
  -ms-word-break: normal;
  word-break: normal;
  border-radius: 8px;
  background-color: var(--color-bg);
}
#google_translate_element > div > div > select::-ms-expand {
  display: none;
}
#google_translate_element > div > div::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 16px;
  height: 16px;
  background: url(../img/select.png) no-repeat center/cover;
  pointer-events: none;
  transform: translateY(-50%);
}

/* sidebar */
.sidebar {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  padding: 2.4rem 0;
}
@media (max-width: 599px) {
  .sidebar {
    padding: 0;
  }
}
.sidebar__sch {
  width: 100%;
  padding: 0 2.4rem;
}
.sidebar__sch .schform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 1.6rem;
  width: 100%;
  height: 4rem;
  padding: 0 1.6rem;
  background-color: var(--color-bg2);
  border-radius: var(--rd-full);
}
.sidebar__sch .schform input[type=search] {
  flex-grow: 1;
  line-height: 4rem;
  background: transparent;
  border: none;
}
.sidebar__sch .schform input[type=search]::placeholder {
  color: var(--text-placeholder);
}
.sidebar__sch .schform__btn {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--text-title);
}
.sidebar__sch .schform__btn--sch {
  -webkit-mask: url("../img/icons/search.svg") no-repeat center/cover;
  mask: url("../img/icons/search.svg") no-repeat center/cover;
}
.sidebar__sch .schform__btn--x {
  -webkit-mask: url("../img/icons/x.svg") no-repeat center/cover;
  mask: url("../img/icons/x.svg") no-repeat center/cover;
}
.sidebar__sort {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  width: 100%;
  padding: 1.6rem 2.4rem 0.8rem;
  gap: 0.8rem;
  overflow-x: auto;
}
@media (max-width: 599px) {
  .sidebar__sort {
    padding: 1.6rem 2.4rem;
    justify-content: space-between;
  }
  .sidebar__sort:last-of-type {
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
    padding-top: 0;
  }
}
.sidebar__sort > button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.4rem;
  height: 3.2rem;
  padding: 0 1.6rem 0 1.6rem;
  border-radius: var(--rd-full);
  font-size: var(--fs-body-sm);
  border: 1px solid var(--color-disabled);
  color: var(--color-disabled);
  white-space: nowrap;
}
.sidebar__sort > button.up, .sidebar__sort > button.down, .sidebar__sort > button.active {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  font-weight: var(--fw-bold);
}
.sidebar__sort > button.up::after, .sidebar__sort > button.down::after, .sidebar__sort > button.active::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--color-secondary);
}
.sidebar__sort > button.active:after {
  display: none;
}
.sidebar__sort > button.up::after {
  -webkit-mask: url("../img/icons/move-up.svg") no-repeat center/cover;
  mask: url("../img/icons/move-up.svg") no-repeat center/cover;
}
.sidebar__sort > button.down::after {
  -webkit-mask: url("../img/icons/move-down.svg") no-repeat center/cover;
  mask: url("../img/icons/move-down.svg") no-repeat center/cover;
}
.sidebar__list {
  flex-grow: 1;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  overflow-y: auto;
}

.data-list {
  padding-bottom: 10rem;
}
.data-list__item {
  padding: 0 2.4rem;
}
.data-list__item a {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--color-line);
}
.data-list__item .item-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 1.6rem;
}
.data-list__item .item-name .title {
  color: var(--text-title);
  font-weight: var(--fw-bold);
}
.data-list__item .addr {
  font-size: var(--fs-body-sm);
}
.data-list__item .item-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 1.6rem;
  padding-top: 0.8rem;
}
.data-list__item .item-info dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.4rem;
  font-size: var(--fs-body-sm);
  color: var(--text-desc);
}
.data-list__item .item-info dl dt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  text-indent: -9999px;
}
.data-list__item .item-info dl dt::after {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background-color: var(--text-desc);
}
.data-list__item .item-info dl.hits dt::after {
  -webkit-mask: url("../img/icons/eye.svg") no-repeat center/cover;
  mask: url("../img/icons/eye.svg") no-repeat center/cover;
}
.data-list__item .item-info dl.review dt::after {
  -webkit-mask: url("../img/icons/message-square-more.svg") no-repeat center/cover;
  mask: url("../img/icons/message-square-more.svg") no-repeat center/cover;
}

.map-float {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  width: 28rem;
  overflow: hidden;
  border-radius: var(--rd-xxlg);
  background: var(--color-bg);
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
}
.map-float__top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  padding: 2.4rem;
}
.map-float__top .item-name {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  height: auto;
}
.map-float__top .item-name .name {
  font-weight: var(--fw-bold);
  color: var(--text-title);
}
.map-float__top .addr {
  font-size: var(--fs-body-sm);
}
.map-float__top .item-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 1.6rem;
  padding-top: 0.8rem;
}
.map-float__top .item-info dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.4rem;
  font-size: var(--fs-body-sm);
  color: var(--text-desc);
}
.map-float__top .item-info dl dt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  text-indent: -9999px;
}
.map-float__top .item-info dl dt::after {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background-color: var(--text-desc);
}
.map-float__top .item-info dl.hits dt::after {
  -webkit-mask: url("../img/icons/eye.svg") no-repeat center/cover;
  mask: url("../img/icons/eye.svg") no-repeat center/cover;
}
.map-float__top .item-info dl.review dt::after {
  -webkit-mask: url("../img/icons/message-square-more.svg") no-repeat center/cover;
  mask: url("../img/icons/message-square-more.svg") no-repeat center/cover;
}
.map-float__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  border-top: 1px solid var(--color-line);
}
.map-float__btn {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.8rem;
  color: var(--text-title);
  height: 4.8rem;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
}
.map-float__btn::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-color: var(--text-title);
}
.map-float__btn--navi::before {
  -webkit-mask: url("../img/icons/route.svg") no-repeat center/cover;
  mask: url("../img/icons/route.svg") no-repeat center/cover;
}
.map-float__btn--detail::before {
  -webkit-mask: url("../img/icons/file-search.svg") no-repeat center/cover;
  mask: url("../img/icons/file-search.svg") no-repeat center/cover;
}
.map-float__btn ~ .map-float__btn {
  border-left: 1px solid var(--color-line);
}

.btn-my-location {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  position: fixed;
  top: 11.6rem;
  left: 44rem;
  width: 4.8rem;
  height: 4.8rem;
  line-height: 4rem;
  border-radius: var(--rd-full);
  background-color: var(--color-primary);
  color: var(--text-reverse);
  z-index: 10;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease-in-out;
}
.btn-my-location::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--text-reverse);
  -webkit-mask: url("../img/icons/locate-fixed.svg") no-repeat center/cover;
  mask: url("../img/icons/locate-fixed.svg") no-repeat center/cover;
}
@media (max-width: 599px) {
  .btn-my-location {
    position: fixed;
    top: 11rem;
    left: -10rem;
  }
  .btn-my-location.active {
    left: 2.4rem;
  }
}

.container__inner {
  padding: 4rem 2.4rem;
  gap: 7.2rem;
}
@media (max-width: 599px) {
  .container__inner {
    padding: 2.4rem 1.6rem;
    gap: 4.8rem;
  }
}

.sect {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  width: 100%;
  gap: 1.6rem;
}
.sect__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
}
.sect__title > span {
  color: var(--text-title);
  font-size: var(--fs-title-md);
  margin-right: auto;
}
.sect__title button {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  text-decoration: underline;
  cursor: pointer;
}
.sect__body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  position: relative;
  width: 100%;
}

/* 타이틀 */
.page-title {
  gap: 0.4rem;
  margin-bottom: -2.4rem;
}
.page-title h2 {
  font-size: var(--fs-heading-sm);
  font-weight: var(--fw-bold);
  color: var(--text-title);
}
@media (max-width: 599px) {
  .page-title h2 {
    font-size: var(--fs-heading-xsm);
  }
}
.page-title p {
  color: var(--color-secondary);
}

/* 지도 */
.sect-map {
  height: auto;
  min-height: 300px;
  background-color: var(--color-bg2);
  border-radius: var(--rd-xxlg);
  overflow: hidden;
}
@media (max-width: 599px) {
  .sect-map {
    min-height: 200px;
    border-radius: var(--rd-lg);
  }
}
.sect-map .map-btn__wrap {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.8rem;
}
.sect-map .map-btn__wrap--full {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.8rem;
}
.sect-map .map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  min-width: 4rem;
  height: 4rem;
  line-height: 4rem;
  border-radius: var(--rd-full);
  background-color: var(--color-primary);
  color: var(--text-reverse);
  z-index: 10;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease-in-out;
}
.sect-map .map-btn__mylocation::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--text-reverse);
  -webkit-mask: url("../img/icons/locate-fixed.svg") no-repeat center/cover;
  mask: url("../img/icons/locate-fixed.svg") no-repeat center/cover;
}
.sect-map .map-btn__align {
  border: 1px solid var(--color-primary);
  background-color: var(--color-bg);
  color: var(--text-title);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  padding: 0 1.6rem;
}
.sect-map .map-btn__full {
  border: 1px solid var(--color-secondary);
  background-color: var(--color-secondary);
  color: var(--text-reverse);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  padding: 0 1.6rem;
}

.sect-group {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 4.8rem;
  width: 100%;
}
@media (max-width: 599px) {
  .sect-group {
    gap: 2.4rem;
  }
}

/* 상세 정보 */
.sect-info dl {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 1.6rem;
  padding: 0 1.6rem;
}
@media (max-width: 599px) {
  .sect-info dl {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 0 0.8rem;
  }
}
.sect-info dl dt {
  min-width: 6rem;
  font-weight: var(--fw-bold);
  color: var(--text-title);
}
.sect-info dl ~ dl {
  margin-top: 1.6rem;
}
.sect-info__box {
  width: 100%;
  height: auto;
  border: 1px solid var(--color-line);
  border-radius: var(--rd-xxlg);
  padding: 1.6rem;
}

/* 근처 목록 */
.sect-near {
  overflow-x: auto;
}
.sect-near__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 1.6rem;
}
.sect-near__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 24rem;
  background-color: var(--color-bg2);
  border-radius: var(--rd-xlg);
  padding: 1.6rem;
  border: 1px solid var(--color-bg2);
}
.sect-near__item .distance {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
  margin-bottom: 0.4rem;
}
.sect-near__item .title {
  height: 5.6rem;
  font-size: var(--fs-body-md);
  font-weight: var(--fw-bold);
  color: var(--text-title);
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sect-near__item .addr {
  word-break: break-all;
}
.sect-near__item:hover {
  background-color: var(--color-bg);
  border-color: var(--color-primary);
}
.sect-near .gobtn {
  text-decoration: underline;
  font-size: var(--fs-body-sm);
}

/* 이미지 */
.sect-img {
  overflow-x: auto;
}
.sect-img__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 1.6rem;
}
.sect-img__item {
  width: 24rem;
  height: 16rem;
  flex-shrink: 0;
  border-radius: var(--rd-xlg);
  overflow: hidden;
}
.sect-img__item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 블로그 */
.sect-blog {
  overflow-x: auto;
}
.sect-blog__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.sect-blog__list > * {
  flex: 0 1 calc((100% - 1.6rem * (3 - 1)) / 3);
  box-sizing: border-box;
}
@media (min-width: 600px) and (max-width: 1023px) {
  .sect-blog__list > * {
    flex: 0 1 calc((100% - 1.6rem) / 2);
  }
}
@media (max-width: 599px) {
  .sect-blog__list > * {
    flex: 0 1 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 599px) {
  .sect-blog__list {
    flex-wrap: nowrap;
  }
}
.sect-blog__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1.6rem;
  padding: 1.6rem;
  border-radius: var(--rd-xlg);
  overflow: hidden;
  border: 1px solid var(--color-line);
}
@media (max-width: 599px) {
  .sect-blog__item {
    width: 30rem;
  }
}
.sect-blog__item .cont {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-grow: 1;
  gap: 0.8rem;
  text-align: left;
}
.sect-blog__item .cont .info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.4rem;
}
.sect-blog__item .cont .name {
  font-weight: var(--fw-bold);
  color: var(--text-title);
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: nowrap;
}
.sect-blog__item .cont .desc {
  color: var(--text-body);
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sect-blog__item .cont .date {
  font-size: var(--fs-body-sm);
  color: var(--text-desc);
}
.sect-blog__item .thumb {
  width: 10rem;
  height: 10rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--rd-lg);
}
.sect-blog__item .thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sect-blog__item .logo {
  width: 12rem;
  height: 1.6rem;
  overflow: hidden;
}
.sect-blog__item .logo > img {
  width: 100%;
  height: auto;
}

/* 주변 관광지 */
.sect-tour {
  overflow-x: auto;
}
.sect-tour__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 2.4rem;
}
.sect-tour__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1.6rem;
  width: 24rem;
  flex-shrink: 0;
}
.sect-tour__item .thumb {
  width: 24rem;
  height: 18rem;
  flex-shrink: 0;
  border-radius: var(--rd-xlg);
  overflow: hidden;
}
.sect-tour__item .thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sect-tour__item .info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.4rem;
}
.sect-tour__item .title {
  font-weight: var(--fw-bold);
  color: var(--text-title);
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sect-tour__item .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--text-desc);
}
.sect-tour__item .distance {
  color: var(--color-secondary);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
}

/* 날씨 */
.sect-weather {
  overflow-x: auto;
}
.sect-weather__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  gap: 1.6rem;
}
.sect-weather__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 13rem;
  flex-shrink: 0;
  border: 1px solid var(--color-line);
  padding: 1.6rem;
  border-radius: var(--rd-xlg);
}
.sect-weather__item .title {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-bold);
  color: var(--text-title);
}
.sect-weather__item .desc {
  font-weight: var(--fw-bold);
  color: var(--color-secondary);
}

.ad-placeholder {
  position: relative;
  background-color: var(--color-bg3);
  border-radius: var(--rd-xxlg);
  width: 100%;
  min-height: 12rem;
}
.ad-placeholder::after {
  content: "AD";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--fs-title-xxlg);
  font-weight: var(--fw-bold);
  color: var(--text-placeholder);
  z-index: 0;
}
@media (max-width: 599px) {
  .ad-placeholder {
    border-radius: var(--rd-lg);
  }
}
.ad-placeholder .adsbygoogle {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
}

.accordion {
  width: 100%;
  border-bottom: 1px solid var(--color-line);
}
.accordion:first-of-type {
  border-top: 1px solid var(--color-line);
}
.accordion__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.8rem;
  cursor: pointer;
  width: 100%;
  height: 5.6rem;
  padding: 0 1.6rem;
  transition: background-color 0.3s ease;
}
@media (max-width: 599px) {
  .accordion__btn {
    padding: 0 0.8rem;
  }
}
.accordion__btn p {
  color: var(--text-title);
  font-size: var(--fs-body-md);
  font-weight: var(--fw-bold);
  line-height: 1;
}
.accordion__btn::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-color: var(--color-primary);
  -webkit-mask: url("../img/icons/chevron-down.svg") no-repeat center/cover;
  mask: url("../img/icons/chevron-down.svg") no-repeat center/cover;
}
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion__inner {
  padding: 2.4rem 0;
}
.accordion--open .accordion__btn {
  background-color: var(--color-bg2);
}
.accordion--open .accordion__btn::after {
  transform: rotate(180deg);
}
.accordion dl dt {
  min-width: 10rem;
  font-size: var(--fs-body-sm);
  color: var(--text-desc);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 1.6rem;
  border-radius: var(--rd-xxlg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 90%;
  max-height: 90%;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 599px) {
  .modal {
    width: 100%;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0;
    padding: 2.4rem;
  }
}
.modal--show {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  opacity: 1;
}
.modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-size: var(--fs-title-xlg);
  font-weight: var(--fw-bold);
  color: var(--text-title);
  cursor: pointer;
}
.modal__title {
  margin-bottom: 1.6rem;
  font-size: var(--fs-title-md);
  font-weight: var(--fw-bold);
  color: var(--text-title);
}
.modal__cont {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
  height: auto;
  overflow-y: auto;
}
.modal__cont .img-list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.8rem;
}
.modal__cont .addr {
  color: var(--color-secondary);
  font-weight: var(--fw-bold);
}
.modal__cont .addr::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.4rem;
  background-color: var(--color-secondary);
  -webkit-mask: url("../img/icons/map-pin.svg") no-repeat center/cover;
  mask: url("../img/icons/map-pin.svg") no-repeat center/cover;
  vertical-align: middle;
}
.modal__cont .blog-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  padding-bottom: 0.8rem;
  border-top: 1px solid var(--color-line);
  gap: 1.6rem;
}
@media (max-width: 599px) {
  .modal__cont .blog-info {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}
.modal__cont .blog-info .name {
  font-weight: var(--fw-bold);
  color: var(--text-title);
}
.modal__cont .blog-info .blog-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  gap: 1.6rem;
}
.modal__cont .blog-info .blog-btn button {
  color: var(--color-secondary);
  font-weight: var(--fw-bold);
}
.modal__cont .blog-info .blog-btn button::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 0.4rem;
  background-color: var(--color-secondary);
  -webkit-mask: url("../img/icons/square-arrow-out-up-right.svg") no-repeat center/cover;
  mask: url("../img/icons/square-arrow-out-up-right.svg") no-repeat center/cover;
  vertical-align: middle;
}
.modal__image {
  width: 100%;
  height: auto;
  border-radius: var(--rd-xlg);
}
@media (max-width: 599px) {
  .modal__image {
    max-width: 70rem;
  }
}

.modal-backdrop {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease;
}
.modal-backdrop--show {
  display: block;
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */
