@charset "UTF-8";

.location-balloon-1 {
  max-width: 200px;
  margin: auto;
  .location-balloon-1__text-1 {
    position: relative;
    display: inline-block;
    left: 200px;
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    background: #076baf;
    margin-bottom: 8px;
    @media screen and (max-width:768px) {
      left: 80px;
    }
    &::after {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 32px;
      width: 0;
      height: 0;
      margin: auto;
      border-style: solid;
      border-color: #076baf transparent transparent transparent;
      border-width: 16px 16px 0 16px;
    }
  }
}


.js-popup-modal-place-1 {
  color: #333;
  text-decoration: underline;
  letter-spacing: 0;
  &:hover {
    text-decoration: none;
  }
}
.modal-section__place-1 {
  position: relative;

  max-width: 460px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  border: 2px solid #333;
  padding: 40px;
  text-align: center;
  @media screen and (max-width:768px) {
    padding: 40px 8px;
  }

  .place-1 {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 8px;
    text-align: center;
    .place-1__text-1 {
      font-size: 24px;
    }
    .place-1__text-2 {
      font-size: 16px;
    }
    .place-1__text-3 {
      font-size: 40px;
    }
    .place-1__text-4 {
      font-size: 16px;
    }
    a[href^="tel:"] {
      color: #333;
      pointer-events: none;
      @media screen and (max-width:768px) {
        pointer-events: auto;
      }
    }
  }


  .btn-modal-close {
    cursor: pointer!important;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 40px;
    height: 40px;
    color: #000;
    text-align: center;
    /* background: #000; */
    z-index: 101;
    span {
      display: block;
      position: absolute;
      top: 19px;
      left: 50%;
      width: 90%;
      height: 2px;
      background: #000;
      transform: translateX(-50%) rotate(45deg);
    }
    span:last-child {
      transform: translateX(-50%) rotate(-45deg);
    }
  }

}
