/* 共通ベーススタイル */
body {
  font-family: "ＭＳ Ｐゴシック";
  font-size: 12pt;
  background-color: #ffffff;
  background-image: url("img/bg-common.gif");
  color: #000000;
  margin: 0;
  padding: 0;
}

/* リンク色（グループA：index, denshigihou, jigyou, sankou01-04） */
a:link { color: #ff0000; }
a:visited { color: #b8860b; }
a:active { color: #1e90ff; }
a.LinkBtn001:link { color: olive; }

/* ページラッパー（サブページ共通） */
.page-wrapper {
  max-width: 650px;
  margin: 0 auto;
  padding: 10px;
}

/* ヘッダーグリッドレイアウト */
.header {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 5px;
}
.header-logo {
  grid-row: 1 / 3;
}
.header-nav-top {
  text-align: right;
}
.header-nav-bottom {
  display: flex;
  gap: 5px;
  justify-content: flex-end;
}

/* ページナビゲーション */
.page-nav {
  text-align: right;
  margin: 5px 0;
}

/* メインコンテンツ */
.main-content {
  max-width: 600px;
  margin: 10px auto;
}

/* 写真ペアレイアウト */
.photo-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 15px 0;
}

/* ブランドカラー（ヘルシーSUNライフ） */
.brand-blue { color: #0000ff; font-weight: bold; font-style: italic; }
.brand-red { color: #ff0000; font-weight: bold; font-style: italic; }

/* 下部ナビゲーション */
.bottom-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}
.bottom-nav-item {
  text-align: center;
}
.bottom-nav-item img {
  display: block;
  margin: 0 auto;
}

/* サブページ共通ヘッダータイトル */
.header-title {
  grid-row: 1 / 3;
  background-color: #fffacd;
  text-align: center;
  padding: 10px;
  line-height: 32px;
  color: #0000ff;
  font-size: 1.3em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* データテーブル共通 */
.data-table {
  border-collapse: collapse;
  margin: 15px auto;
}
.data-table th, .data-table td {
  padding: 4px 8px;
  text-align: center;
}
.data-table th { background-color: #a3b1e4; font-weight: bold; }
.data-table td { background-color: #ddf7ff; }
