@charset "utf-8";
/* CSS Document */

/* 全体のスタイル */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f2f2f2;
  margin: 0;
  padding: 0;
}

/* ヘッダーセクション */
h1 {
  text-align: center;
  color: #333;
}

/* テーブルの共通スタイル */
table {
  border-collapse: collapse;
  margin: 20px auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* ヘッダーセル */
th {
  background-color: #333;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  text-align: center;
}

/* データセル */
td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

/* リンクのスタイル */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* イメージのスタイル */
img {
  max-width: 100%;
  height: auto;
}

/* ヘッダーセクションのテーブル */
#header-table {
  width: 650px;
}

/* コンテンツセクションのテーブル */
.content-table {
  width: 800px;
}

/* フッターセクションのテーブル */
#footer-table {
  width: 618px;
}

/* 背景色の設定 */
.bg-red {
  background-color: #FF4848;
}

.bg-pink {
  background-color: #FF6C6C;
}

.bg-orange {
  background-color: #FF9999;
}

.bg-black {
  background-color: #000000;
}

.bg-light-orange {
  background-color: #FFCC99;
}

.price-table {
  width: 400px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  font-family: sans-serif;
	font-size: 1.6rem;
  
}

.row {
  display: flex;
  border-bottom: 1px solid #ccc;
}

.row:last-child {
  border-bottom: none;
}

.cell {
  flex: 1;
  padding: 12px;
  text-align: center;
  box-sizing: border-box;
}

.qty {
  background-color: #ffddff;
  width: 100px;
  flex: none;
}

.price {
  background-color: #FFFF99;
	font-size: 2.1rem;
	letter-spacing: 0.5rem;
}

.header .qty {
  font-weight: bold;
}

.header .price {
  font-weight: bold;
	font-size: 1.6rem;
}


