@charset "utf-8";

/* 要素 */
/* 表 */
table {
  border-collapse: collapse; /* 枠線を重ねて1本にする */
  margin-left: 10px;
}

th, td {
  border: 1px solid black; /* 基本の枠線 */
  padding: 5px;
}

td {
  text-align: left;
}

/* リストのデコレーション */
ul {
  list-style-type: none;
  padding-left: 20px;
}

/* 閉じたり開いたりのボタンのカーソル */
strong {
  cursor: pointer;
}

/* クラス */
.wide {
  width: 300px;
}

/* 料理 */
.flexContainer {
  display: flex;
  gap: 10px;
}
.flexContainer img {
  width: 200px; /* 画像の幅を調整 */
  height: auto; /* アスペクト比を維持 */
}
.flexContainer a {
  text-decoration: none; /* リンクの下線を削除 */
}

/* 文字中央揃え */
.cntr {
  text-align: center;
}