


/* タイトル */
.main-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.sub-title {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}
.sub-title:after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background: #999;
  margin: 10px auto 0;
}

/* グリッド */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 140px 100px;
width: 80%;
margin: 0 auto;
}

/* ブロック */
.block {
  background: #fff;
  padding-bottom: 20px;
}

/* 見出し */
.block-title {
  background: #333;
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: bold;
}

/* 画像 */
.image-area {
  text-align: center;
  padding: 15px 0;
}
.image-area2 {
  text-align: center;
  padding: 15px 0;
}
.image-area img {
  max-width: 400px;
	display: block;
	margin: 0 auto;
}

.image-area2 img {
  max-width: 300px;
	display: block;
	margin: 0 auto;
}
/* テーブル */
table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 13px;
}

td, th {
  padding: 8px;
  text-align: center;
}

th {
  background: #e0e0e0;
}

td {
  background: #f0f0f0;
  border-bottom: 2px solid #fff;
}

td:first-child {
  background: #d8d8d8;
  text-align: left;
  padding-left: 10px;
}

/* 1行価格バー */
.price-bar {
  width: 100%;
  margin: 10px auto;
  display: flex;
}
.price-bar div {
  flex: 1;
  padding: 10px;
  background: #e0e0e0;
}
.price-bar div:last-child {
  text-align: right;
}

/* 注意書き */
.note {
  font-size: 11px;
  text-align: right;
  width: 90%;
  margin: 5px auto 0;
  color: #666;
}

/* 下セクション */
.bottom-section {
  margin-top: 60px;
  text-align: center;
}

.bottom-title {
  margin-bottom: 20px;
  position: relative;
}
.bottom-title:after {
  content: "";
  display: block;
  width: 200px;
  height: 1px;
  background: #999;
  margin: 10px auto;
}

.center-block {
  max-width: 400px;
  margin: 0 auto;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .image-area img {
    width: 100%;
  }
  .center-block {
    width: 80%;
  }
}

/* CSS Document */

