@charset "utf-8";
/* TIPページ本体 */
.mother-tip {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 15px;
}
.mother-tip h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top:40px;
  margin-bottom: 10px;
  color: #111827;
}
.mother-tip h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 6px;
}
.mother-tip p {
  margin-bottom: 12px;
  line-height:1.7;
}
.mother-tip ul,
.mother-tip ol {
  margin-left: 20px;
  margin-bottom: 12px;
}
.mother-tip ul li,
.mother-tip ol li {
  line-height:1.7;
}

/* 目次 */
.toc {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 25px;
}
.toc h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top:20px;
}
.toc ul li {
  margin-bottom: 6px;
  line-height:1.7;
}

/* リンクスタイル */
.mother-tip a {
  color: #dc1c24;
  text-decoration: underline;
}

/* 豆知識抜粋部分 */
.mother-tip-excerpt {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width:1000px;
  margin:20px auto 100px auto;
}
.mother-tip-excerpt h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.mother-tip-excerpt p {
  margin-bottom: 12px;
  line-height:1.7;
}
.mother-tip-excerpt a {
  color: #1d4ed8; /* 青色 */
  text-decoration: underline;
}


/* レスポンシブ調整 */
@media (max-width: 640px) {
  .mother-tip {
    padding: 15px;
  }
  .mother-tip h2 {
    font-size: 1.4rem;
  }
  .mother-tip h3 {
    font-size: 1.15rem;
  }
  .toc h2 {
    font-size: 1.1rem;
  }
}

