@charset "UTF-8";

h1 {
    font-family: serif;
    font-size: 40px;
    color: #c8860a;
    margin-top: 60px;
    margin-bottom: 16px;
    padding: 0 40px;
}

p {
    font-size: 23px;
    line-height: 35px;
    color: #000000;
    font-family: serif;
    padding: 0 40px;
    margin-bottom: 40px;
}

body {
  padding-top: 70px; /* ← 数値を増やす */
  background-color: #faf8f3;
}

/* h2全体の白を削除して */
h2 {
  font-family: serif;
  font-size: 40px;
  color: #c8860a;
  margin-top: 60px;
  margin-bottom: 16px;
  padding: 0 40px;
}

footer h2 {
  color: #ffffff;
  font-size: 20px !important;
  padding: 0 !important;
  margin: 0 !important;
}

#toTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  font-size: 20px;
  border: none;
  cursor: pointer;
}

footer {
  background-color: #000000;
  color: white;
  padding: 15px 40px;
  text-align: center;
}

a {
    font-family: serif;
    font-size: 24px;
    color: #000000;
}

@media (max-width: 768px) {
    body {
    padding-top: 120px; /* 2列になって高さが減るので調整 */
  }

  /* 見出し・テキスト */
  h1 {
    font-size: 26px;
    padding: 0 16px;
    margin-top: 32px;
  }
  
  p {
    font-size: 16px;
    line-height: 28px;
    padding: 0 16px;
  }
  
  h2{
    font-size: 26px;
    padding: 0 16px;
    margin-top: 32px;
  }

  /* これだけ残す ↓ */
  footer h2 {
    font-size: 13px !important;
  }
}
