html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select {
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

img,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

html {
  font-size: 16px;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

body,
button,
input,
select,
textarea {
  font-family: Pretendard, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

code,
pre {
  font-family: Courier, "Courier New", monospace;
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
}

body {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  word-break: keep-all;
  cursor: default;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

#map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.marker {
  width: 2rem !important;
  height: 2rem !important;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  border-radius: .25rem;
}

.marker:hover {
  z-index: 999 !important;
}

.marker > div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: .1rem solid rgba(0,0,0,.125);
}

.popup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  text-align: center;
  font-size: 10vw;
  font-weight: 900;
  line-height: 1.375;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}

.popup.show {
  opacity: 1;
}

.leaflet-popup-tip-container {
  display: none;
}

.form {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100% - 2rem);
  width: 24rem;
  max-height: calc(100% - 2rem);
  height: 24rem;
  padding: 1rem;
  border-radius: .5rem;
  border: .1rem solid rgba(0,0,0,.25);
}

.textarea {
  appearance: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  font: inherit;
  font-weight: 800;
  color: inherit;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  resize: none;
}

.buttons {
  display: flex;
  gap: .5rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .5rem;
}

.button {
  appearance: none;
  flex: 1 1 0;
  display: block;
  padding: .5rem;
  font: inherit;
  font-weight: 800;
  color: inherit;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  outline: 0;
  cursor: pointer;
}