@charset "utf-8";

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f7f8;
  padding: 20px;
  margin: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

h1 {
  font-size: 1.5rem;
  color: #1a4a6e;
  border-left: 8px solid #4d9bc1;
  padding: 10px 15px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}

h1 span {
  font-size: 1.1rem;
  color: #666;
}

/* テーブル全体の調整 */
.table-wrapper {
  overflow-x: auto; /* スマホ用スクロール */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.table_design10 {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px; /* PCでの最小幅 */
}

/* 見出しセル */
.table_design10 th {
  width: 180px;
  background: #4d9bc1;
  color: #fff;
  padding: 15px;
  border: 1px solid #fff;
  text-align: center;
  vertical-align: middle;
  font-size: 1rem;
}

/* 内容セル */
.table_design10 td {
  padding: 15px 20px;
  border: 1px solid #45A7F9;
  text-align: left; /* 左揃えにして読みやすく */
  vertical-align: top;
  background: #fff;
}

/* 表の中の段落設定 */
.table_design10 td p {
  margin: 0 0 10px 0;
}

.table_design10 td p:last-child {
  margin-bottom: 0;
}

/* 強調や補足の装飾 */
.sub-section {
  background: #f0f7fa;
  padding: 10px 15px;
  border-radius: 4px;
  margin: 10px 0;
}

.sub-section h3 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  color: #4d9bc1;
  border-bottom: 1px solid #4d9bc1;
}

.note { color: #666; font-size: 0.9em; }
.alert { color: #d9534f; font-weight: bold; } /* 注意喚起は赤 */
.caution { color: #e67e22; font-weight: bold; } /* 警告はオレンジ */
.red{color: red;}
/* 行ごとの背景色交互（シマシマ） */
.table_design10 tr:nth-child(even) td {
  background-color: #fafbfc;
}
.line-both {
  display: flex;
  align-items: center; /* 上下の位置を中央に */
  justify-content: center; /* 左右の中央揃え */
}
.line-both::before,
.line-both::after {
  content: "";
  width: 80px; /* 線の長さ */
  height: 2px; /* 線の太さ */
  background-color: #333; /* 線の色 */
  margin: 0 15px; /* 文字と線の間の余白 */
}
.space3{
	padding-left: 2.5em;
}