h2 {
  font-family: 'Noto Serif JP', 'Georgia', serif;
  font-size: 28px;
  font-weight: 700;
  color: #004D40;
  margin: 70px auto 20px;
  text-align: center;
  padding-bottom: 8px;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  position: relative;
  display: table;
}

/* Override for welcome page titles */
h2.shukuyaku-title {
  margin: 40px auto 20px !important;
  text-align: center !important;
  display: table !important;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #bfa76f, #e8d4a2, #9d8448);
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

h2.animate::after {
  width: 100%;
}

/* English mode h2 adjustment */
body.lang-en h2 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 700;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  h2 {
    font-size: 16px;
    margin: 50px auto 15px;
  }
  
  h2.shukuyaku-title {
    margin: 30px auto 15px !important;
  }
  
  body.lang-en h2 {
    font-size: 18px;
  }
}