#map {
  position: relative;
  padding: 72px 0 0;
  height: 100vh;
  background: #F2F3F4;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 414px;
}

/* main */
#main {
  background: #fff;
}

/* list */
#list {
  position: relative;
  padding: 99px 27px 45px;
  overflow-y: scroll;
  box-sizing: border-box;
}

#list .block {
  position: relative;
  display: grid;
  gap: 18px;
  z-index: 1;
}

#list .item {
  display: grid;
  column-gap: 18px;
  grid-template-columns: 135px 1fr;
  cursor: pointer;
  padding: 9px;
  background: #fff;
}

#list .item.hide {
  display: none;
}

#list .tmb {
  height: 108px;
  background: var(--c-whisper);
}

#list .unit {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}

#list .ttl {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

#list .txt {
  margin: 9px 0 0;
  font-size: 1.4rem;
  color: var(--c-gray);
}

.ctrls {
  position: fixed;
  top: 72px;
  right: 18px;
  padding: 27px 9px 27px 27px;
  width: 360px;
  background: #F2F3F4;
  z-index: 3;
}

.ctrls::before {
  position: absolute;
  top: 27px;
  right: 9px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 2.34rem;
  pointer-events: none;
  z-index: 3;
}

select {
  display: block;
  padding: 0 18px;
  width: 100%;
  height: 45px;
  line-height: 45px;
  font-size: 1.62rem;
  background: #fff;
  border: 1px solid var(--c-iron);
}

#lat,
#lng {
  display: none;
}

/* modal */
#modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 3000;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 360ms var(--timing-function);
}

#modal.show {
  pointer-events: all;
  opacity: 1;
}

#modal .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .72);
  z-index: 1;
}

#modal .box {
  position: relative;
  display: flex;
  padding: 18px;
  max-width: 1080px;
  max-height: 630px;
  height: 72%;
  width: 90%;
  background: #fff;
  box-sizing: border-box;
  z-index: 3;
}

#modal .tmb {
  min-width: 60%;
  height: 100%;
  background: var(--c-whisper);
}

#modal .unit {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 27px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

#modal .ttl {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
}

#modal .txt {
  margin: 18px 0;
  font-size: 1.6rem;
  color: var(--c-gray);
}

#minMap {
  width: 100%;
  height: 100%;
  background: var(--c-whisper);
}


#tooltip {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  padding: 9px;
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 500;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1.5;
  transform: translate(-50%, 27px);
}

#tooltip.show {
  display: block;
}

/* google maps */
.gm-style-mtc {
  display: none;
}

.gm-control-active {
  display: none;
}

.gm-svpc img {
  width: auto !important;
  height: auto !important;
  object-fit: none !important;
}

#minMap .gm-svpc,
#minMap .gmnoprint {
  display: none;
}