html,body {
    height: 100%;
	font-size:12px;
	font: 100%/1.4 "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
	color: #171d26;
}

.toc {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 15px;
  margin: 20px auto;
  max-width: 600px;
  font-size: 14px;
}
.toc-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc li {
  border-bottom: 1px solid #eee;
  padding: 6px 0;
}
.toc li:last-child {
  border-bottom: none;
}
.toc a {
  text-decoration: none;
  color: #333;
}
.toc a:hover {
  color: #007bff;
}

.note {
  font-size: 0.85em;
  font-weight: normal;
  text-align: center;
  margin: -5px 0 10px; /* 見出しとの間を調整 */
  color: #555;         /* 薄めの色で控えめに */
}

.center-title {
  text-align: center;
}

.spreadsheets {
  list-style: none;
}

.container {
  box-sizing: border-box;
  width: min(1020px, 100%);
  padding: 0 10px;
  margin: auto;
}

.js-base {
  display: none !important;
}

.spreadsheets {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.spreadsheets li {
  width: 23%;
}

.spreadsheets--item {
  display: flex;
  flex-direction: column;
  position: relative;
  font-size: 12px;
}

.spreadsheets--item1,
.spreadsheets--item2 {
  margin: 0;            /* ブラウザのデフォルト余白をリセット */
}

.spreadsheets--item1 {
  margin-top: 10px; 
  margin-bottom: 5px;   /* item1 の下にだけ 5px の余白をつける */
}

.spreadsheets--price {
  margin-left: auto;
  text-align: right;
  font-size: 15px;
}

@media (max-width: 767px) {
  body {
    font-size: 65%;
  }
  /* スプレッドシート内のテキストを65%に縮小 */
  .spreadsheets--item,
  .spreadsheets--item1,
  .spreadsheets--item2,
  .spreadsheets--price {
    font-size: 0.15em; /* 親のフォントサイズに対して15% */
  }

  .spreadsheets li {
    width: calc(33.333% - 10px); /* 3列表示 */
  }

  .spreadsheets img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .toc {
    width: 60%;
    margin: 20px auto; /* 中央寄せ */
    font-size: 0.15em
  }

}