@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 765px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #222;
  line-height: 1.8;
  background-color: #fff;
}

.container {
  max-width: 1140px;
  padding: 0 20px;
  margin: 80px auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 20px;
  text-align: center;
}
@media screen and (max-width: 765px) {
  .header {
    flex-direction: column;
    gap: 0;
  }
}
.header .logo {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.header .site-title {
  font-size: 2.2rem;
  color: #0a3b82;
  font-weight: 700;
}

.address {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
}

.info {
  font-size: 1rem;
  margin-bottom: 40px;
  text-align: center;
}
.info .tel-label {
  font-weight: 700;
  font-size: 1.5rem;
}
.info .tel {
  font-weight: 700;
  color: #000;
  font-size: 1.5rem;
}

.info .tel a {
  color: #000;
  transition-duration: 0.3s;
}
.info .tel a:hover {
  opacity: 0.6;
  text-decoration: none;
  transition-duration: 0.3s;
}

.note {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}

.coming-soon {
  font-size: 5rem;
  color: #c22222;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 20px 0;
  text-align: center;
}
@media screen and (max-width: 765px) {
  .coming-soon {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */