/* ===============================
   メインコンテンツ
================================= */
main {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  background-color: #ffffff;
}

.lead {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
  font-weight: bold;
}

.center-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.pill {
  display: inline-block;
  background-color: #ffffff;
  color: #B79769;
  border: 2px solid #B79769;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  width: 400px;
  height: 48px;
  line-height: 44px;
  font-size: 16px;
  box-sizing: border-box;
  margin: 0 auto 20px;
}

.small-note {
  display: block;
  max-width: 320px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

/* ===============================
   スマホ対応
================================= */
@media (max-width: 768px) {

  main {
    padding:  0px 20px 20px 20px;
  }

  h1 {
    font-size: 22px;
  }

  .lead {
    font-size: 14px;
  }

  .pill {
    width: 80%;
    height: auto;
    line-height: 1.5;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 30px;
  }

  .small-note {
    width: 85%;
    font-size: 14px;
    line-height: 1.7;
  }

}