body {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #fff;
}

.top-bar {
  background: #333;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 8px;
}

.container {
  text-align: center;
  padding: 30px 20px;
}

.logo img {
  width: 226px;
  margin: 50px 0;
}

.open-date {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  margin: 10px 0 100px;
  line-height: 1.4;
}

.open-date .large {
  font-size: 52px;
  font-weight: 400;
}

.open-date .middle {
  font-size: 49px;
  font-weight: 400;
}


.surgery-list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
}

.surgery-list li {
  font-size: 14px;
  margin: 8px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* justify-content: left; */
}
.surgery-list .specialty {
  font-size: 20px;
  letter-spacing: -0.05em;
  text-align: left;
  font-weight: 600;
}

.dot {
  width: 10px;
  height: 10px;
  background: #fbbf24;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

a.recruit {
  display: block;
  background: #efefef;
  padding: 15px 0;
  margin: 30px auto;
  width: 300px;
  border-radius: 40px;
  border:1px solid #ccc;
  font-weight: bold;
  font-size: 16px;
}

a.recruit.acrive {
  background: #FFC612;
  text-decoration: none;
  color: #333;
}

a.recruit:hover {
  /* opacity: 0.7; */
  background-color: #F4D77B;
}

.adress-headding {
  font-size: 18px;
  color: #999;
  font-weight: 400;
  margin: 20px auto 0 auto;
}
.address {
  border: 1px solid #ccc;
  padding: 15px 0;
  margin: 10px auto 20px auto;
  width: 300px;
  border-radius: 8px;
}

.map-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background: #f3f3f3;
  border-radius: 30px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.qr { display: none;}
.qr img {
  width: 150px;
  margin: 30px 0;
}

.footer {
  background: #f5f5f5;
  text-align: center;
  font-size: 14px;
  padding: 15px;
}

.vsp{display: block;}
.vpc {display: none;}

/* フェードインアニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.3s; }
.fade-in:nth-child(2) { animation-delay: 0.6s; }
.fade-in:nth-child(3) { animation-delay: 0.9s; }
.fade-in:nth-child(4) { animation-delay: 1.2s; }
.fade-in:nth-child(5) { animation-delay: 1.5s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* sp表示 */
@media (max-width: 767px) {

  .surgery-list {
    width: 90%;
    max-width: 350px;
  }

}
/* PC表示 */
@media (min-width: 768px) {
  .open-date {
    font-size: 20px;
  }
  .open-date .large {
    font-size: 36px;
  }

  .logo {
    padding: 20vh 0 10hv 0;
  }
  .logo img {
    width: 30vh;
    max-width: 274px;
    height: auto;

  }

  .surgery-list {
    width: 800px!important;
    margin: 20px auto 80px auto;
  }

  .surgery-list li {
  display: inline-block;
  margin-right: 1em;
  }
  .address {
    width: 700px;
  }

  .vsp{display: none;}
  .vpc {display: block;}

  .qr { display: block;}

}