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;
}

/* イベント情報のテーブル */
dl.eventInfo {
	width: 600px;
	background-color: #FBF8EF;
	margin: 32px auto;
	padding: 8px 16px;
}
dl.eventInfo dt {
	font-size : 18px;
	font-weight : bold;
	color: #ff0000;
	
	margin-bottom : 10px;
   
	border-bottom-width : 1px;
	border-bottom-style : solid;
	border-bottom-color : #999999;

	border-left-width : 7px;
	border-left-style : solid;
	border-left-color : #ff0000;

	padding-top : 2px;
	padding-left : 16px;
	padding-bottom : 2px;	
}
dl.eventInfo dd {
	font-size: 90%;
	line-height: 1.5em;	
}

dl.infoWide {
	width: 600px;
	background-color: #FBF8EF;
	margin: 32px auto;
	padding: 8px 16px;
}
dl.infoWide dt {
	font-size : 18px;
	font-weight : bold;
	color: #ff0000;
	
	margin-bottom : 10px;
   
	border-bottom-width : 1px;
	border-bottom-style : solid;
	border-bottom-color : #999999;

	border-left-width : 7px;
	border-left-style : solid;
	border-left-color : #ff0000;

	padding-top : 2px;
	padding-left : 16px;
	padding-bottom : 2px;	
}
dl.infoWide dd {
	font-size: 90%;
	line-height: 1.5em;	
}


.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--item2 {
  text-decoration: line-through; /* 取り消し線 */
}

.spreadsheets--price {
  color: red;
  font-weight: bold;
  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
  }

}