@media screen and (min-width: 769px) {
  .public-popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
  }
  .public-popup .content {
    width: 700px;
    height: 350px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px 35px;
  }
  .public-popup .content .title {
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
  }
  .public-popup .content .title h2 {
    font-size: 24px;
    line-height: 24px;
    color: #333;
  }
  .public-popup .content .text {
    padding: 20px 0 0;
    font-size: 18px;
    line-height: 24px;
  }
  .public-popup .content .button {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .public-popup .content .button button {
    width: 85px;
    height: 35px;
  }
  .public-popup .content .button button a {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 34px;
    color: #333;
  }
}
@media screen and (max-width: 769px) {
  .public-popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
  }
  .public-popup .content {
    width: 95%;
    height: 74.66666667vw;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 4vw;
  }
  .public-popup .content .title {
    padding-bottom: 4vw;
    border-bottom: 0.53333333vw solid #333;
  }
  .public-popup .content .title h2 {
    font-size: 5.86666667vw;
    line-height: 5.86666667vw;
    color: #333;
  }
  .public-popup .content .text {
    padding: 4vw 0 0;
    font-size: 4.26666667vw;
    line-height: 5.86666667vw;
  }
  .public-popup .content .button {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 5.33333333vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .public-popup .content .button button {
    width: 22.66666667vw;
    height: 8.53333333vw;
  }
  .public-popup .content .button button a {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 3.73333333vw;
    line-height: 8vw;
    color: #333;
  }
}
