/* CSS Document */
html {
  scroll-behavior: smooth; /* スムーズスクロール */
}

.contents {
    width: 640px;
	margin: 40px auto;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
  display: flow-root;
}

.content-section {
  background: #5FA9A8;
  max-width: 640px;
  margin: 0 auto 20px;
  padding: 10px;
  border-radius: 10px;
  border: 3px solid #A1D7D6;
  box-shadow: 0 0 0 1.5px #D5F6F8 inset;
  box-sizing: border-box;
}

.content-section img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 10px 0;
  border-radius: 10px;
}


.content-section h2,
.content-section h3,
.content-section p,
.content-section ul,
.content-section li {
  color: #FFFFFF;
}

/* リンクスタイル（目次） */
.section-link {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.section-link:hover {
  text-decoration: underline;
  color: #efefef;
}

/* 表スタイル */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  border: 1px solid #A1D7D6;
  padding: 8px 12px;
  text-align: left;
  color: #FFFFFF;
}

th {
  background-color: #5FA9A8;
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .contents {
    width: 95%; /* 画面幅に合わせる */
    margin: 20px auto;
    padding: 5px;
  }

  .content-section {
    padding: 8px;
    margin-bottom: 15px;
  }

  .content-section h2,
  .content-section h3 {
    font-size: 20px;
  }

  .content-section p,
  .content-section li {
    font-size: 16px;
  }

  table {
    font-size: 14px;
    overflow-x: auto;
    display: block; /* スクロール可能に */
  }

  th, td {
    padding: 6px 8px;
  }
}

