@charset "UTF-8";
/** ───────────────────────────────────────────────────────── **/
/*** ▼ 編集不要 ▼ ***/
.gmap_wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 7fr 3fr;
  word-break: break-word;
}
@media (max-width: 768px) {
  .gmap_wrap {
    grid-template-columns: 1fr;
  }
}

#gmap {
  height: 650px;
}
@media (max-width: 768px) {
  #gmap {
    height: 350px;
  }
}
#gmap .number {
  display: none;
}
#gmap .school_district {
  width: 30px;
  line-height: 25px;
  font-size: clamp(0.8rem, -0.524rem + 1.724vw, 1.2rem);
  padding: 2px 5px;
  margin: 0 10px;
  text-align: center !important;
  background-color: #a1926a;
  color: #fff;
}
#gmap * {
  text-box: none;
}

#marker_list {
  height: 650px;
  overflow-y: scroll;
}
@media (max-width: 768px) {
  #marker_list {
    height: 350px;
  }
}
#marker_list li {
  margin: 0 15px;
  padding: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  color: #eeefef;
  border-bottom: 1px #b9b9b9 solid;
}
@media (max-width: 768px) {
  #marker_list li {
    margin-left: 0;
  }
}
#marker_list li:last-child {
  display: none;
}
@media not all and (pointer: coarse) {
  #marker_list li:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
#marker_list li .number {
  text-box: none;
  display: block;
  width: 25px;
  line-height: 25px;
  margin: 0 10px;
  text-align: center !important;
  border-radius: 12.5px;
  background-color: #a1926a;
  color: #fff;
}
@media (max-width: 768px) {
  #marker_list li .number {
    margin-left: 0;
  }
}
#marker_list li .school_district {
  width: 30px;
  line-height: 25px;
  font-size: clamp(0.8rem, -0.524rem + 1.724vw, 1.2rem);
  padding: 0 10px;
  margin: 0 10px;
  text-align: center !important;
  background-color: #a1926a;
  color: #fff;
}
#marker_list li section {
  width: calc(100% - 45px);
  padding: 5px 0;
  display: grid;
  grid-template-columns: 1fr 150px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 768px) {
  #marker_list li section {
    grid-template-columns: 1fr 130px;
  }
}
#marker_list li section .time {
  text-align: right;
}

button {
  border: none;
  outline: none;
}

::-webkit-scrollbar {
  width: 5px; /* スクロールバーの幅 */
}

/* これはスクロールバーのトラック（背景）に適用されます */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0);
}

/* これはスクロールバーのハンドル（スクロール部分）に適用されます */
::-webkit-scrollbar-thumb {
  background: #a1926a;
  border-radius: 2.5px;
}/*# sourceMappingURL=gmap.css.map */