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

/*　++++++++++++++　年表　++++++++++++++++++++++++++　*/
/* 年表全体のコンテナ */
.timeline-container {
  display: flex;               /* 縦に積む */
  flex-direction: column;      /* アイテムを縦方向に並べる */
  align-items: center;         /* 中央揃え */
  position: relative;          /* 中央線を絶対配置するため */
  width: 75%;                  /* 全体幅 */
  margin: 0 auto;              /* 横中央に配置 */
}

/* 中央の縦線 */
.timeline-line {
  position: absolute;          /* 年表コンテナ内で絶対位置 */
  left: 50%;                   /* コンテナ中央 */
  transform: translateX(-50%); /* 真ん中に揃える */
  width: 2px;                  /* 線の太さ */
  background: linear-gradient(to bottom, #007acc, #00aaff); /* 上下グラデーション */
  top: 0;
  bottom: 0;
  z-index: 1;                  /* 他の要素より下 */
}

/* 年度アイテム1つ分の行 */
.timeline-item {
  display: flex;               /* 左右にテキストを並べる */
  width: 100%;
  justify-content: space-between; /* 左右の隙間を最大化 */
  position: relative;          /* 年度数字を絶対配置するため */
  margin: 20px 0;              /* 上下の間隔 */
  align-items: flex-start; /* 上揃えに変更 */
}

/* 年度（1960など）の表示 */
.timeline-year {
  position: absolute;          /* 中央線上に配置 */
  left: 50%;                   /* 横中央 */
  transform: translateX(-50%); /* 上下中央は削除 */
  top: 0;                       /* 上揃えに変更 */
  background: white;           /* 線と被らないように白背景 */
  padding: 2px 6px;            /* 上下の余白を狭く */
  z-index: 2;                  /* 線より上に表示 */
  text-align: center;          /* 数字中央寄せ */
  font-weight: bold;           /* 太字 */
  color: var(--primary-color); /* 青系 */
  font-size: 2.4rem;           /* お好みで変更可能 */
  font-family: "Bodoni MT", "Didot", "Times New Roman", serif;
  margin-top: -0.6em;
}

/* 年度下のポイント● */
.timeline-point {
  position: absolute;
  left: 50%;                   /* 中央線上 */
  transform: translateX(-50%);
  top: 65%;                   /* 年度の下 */
  font-size: 14px;
  color: var(--primary-color);
  width: 15rem;           /* お好みで調整 */
  text-align: center;    /* 横幅中央に●を配置 */
}

/* 左右テキスト */
.timeline-left, .timeline-right {
  width: 45%;                  /* 左右幅 */
  padding: 0 10%;
}

/* 左テキストは右寄せ（中央線側） */
.timeline-left {
  text-align: right;     /* 右寄せで中央線側に寄せる */
  width: 45%;            /* 左側の幅 */
  margin-right: 20px;    /* 中央線との距離調整 */
  padding: 0;            /* 不要なpaddingは削除 */
}

/* 右テキストは左寄せ（中央線側） */
.timeline-right {
  text-align: left;      /* 左寄せで中央線側に寄せる */
  width: 45%;            /* 右側の幅 */
  margin-left: 20px;     /* 中央線との距離調整 */
  padding: 0;            /* 不要なpaddingは削除 */*/
}

/* 左右のタイトル（ヘッダ） */
.timeline-header {
  display: flex;
  justify-content: space-between; /* 左右にタイトルを配置 */
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary-color);
}

.timeline-header > div:first-child {
  /* 左側タイトルの右側に空き */
  padding-right: 3em;  /* 文字幅の目安として 0.5em～1em 調整可能 */
}

.timeline-header > div:last-child {
  /* 右側タイトルの左側に空き */
  padding-left: 3em;   /* 文字幅の目安として 0.5em～1em 調整可能 */
}

/* 日付のフォントスタイル・サイズ・色を指定 */
.event-date {
  font-family: "Bodoni MT", "Didot", "Times New Roman", serif; /* 明朝系フォント */
  font-size: 1.1rem;          /* サイズ調整 */
  color: var(--primary-color);             /* 青系 */
  font-weight: bold;           /* 太字 */
  display: inline-block;       /* 上下余白を使えるように */
  margin-top: 0.2em;           /* 上の文章との隙間 */
  margin-bottom: 0em;        /* 下の線との隙間 */
}

/* <hr> の太さ・色・線種を指定 */
.event-hr {
  border: none;                /* デフォルトの線をリセット */
  height: 1px;                 /* 線の太さ */
  background-color: var(--primary-color);  /* 線の色 */
  margin: 0em 0em;             /* 上下の余白調整 */
}

/* ================================================= /
/ スマホ用レスポンシブ (max-width: 700px) の修正 /
/ ================================================= /

/* 中央線を見せないようにする */
@media screen and (max-width: 700px) {

  /* 中央線を非表示 */
  .timeline-line {
    display: none;
  }

  /* 縦レイアウトへ変更 */
  .timeline-item {
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
    position: relative;
  }

  /* 左右テキストは両方 左寄せ・幅90％ に統一 */
  .timeline-left,
  .timeline-right {
    width: 90%;
    text-align: left !important;  /* ← 確実に左寄せ */
    margin: 0;
    padding: 5px 0;
  }

  /* 年度表示を確実に中央へ */
  .timeline-year {
    position: relative !important; /* ← absolute を強制解除 */
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    display: block;
    width: 100%;          /* 年度文字ブロックを全幅化 */
    text-align: center;   /* 中央に揃える */
    margin: 0 auto;
    margin-bottom: 10px;  /* 下に少し余白 */
    z-index: 2;
  }

  /* ポイント ● を年度のすぐ下に中央配置 */
  .timeline-point {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    transform: none !important;
    margin: -10px 0 10px;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
  }

  /* タイトルは左右分割をやめる → 1列左寄せへ */
  .timeline-header {
    display: block;
    text-align: left;
    margin: 10px 0;
  }

  .timeline-header > div {
    padding: 0 !important;  /* 不要な余白を消す */
    margin-bottom: 3px;
  }
}

/*　+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++　*/
/*　フローデザイン01　*/
.flow_design01 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_design01 ul {
  padding: 0;
}

.flow_design01 li {
  list-style-type: none;
}

.flow_design01 dd {
  margin-left: 0;
}

.flow01 > li {
  position: relative;
  list-style: none;
}

.flow01 > li:not(:last-child) {
  margin-bottom: 40px;
}

.flow01 > li dl {
  box-sizing: border-box;
  width: 100%;
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 2px solid #F88400;
  border-radius: 10px;
  position: relative;
}

.flow01 > li:not(:last-child) dl::before,
.flow01 > li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow01 > li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: #F88400;
}

.flow01 > li:not(:last-child) dl::after {
  border-width: 20px;
  border-top-color: #fff;
}

.flow01 > li dl dt {
  font-size: 1.2em;
  font-weight: 600;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-right: 2vw;
  text-align: center;
}

.flow01 > li dl dt .icon01 {
  font-size: 0.6em;
  color: #fff;
  background: #F88400;
  padding: 5px 10px;
  margin-bottom: 10px;
  display: block;
  border-radius: 20px;
  position: relative;
  z-index: 100;
}

@media(max-width: 650px) {
  .flow01 > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .flow01 > li dl {
    display: block;
    padding: 10px 15px;
  }

  .flow01 > li dl dt {
    margin-right: 0;
  }

  .flow01 > li dl dt .icon01 {
    font-size: .7em;
  }
}

/*　フローデザイン02　*/
.flow_design02 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow_design02 ul {
  padding: 0;
}

.flow_design02 li {
  list-style-type: none;
}

.flow_design02 dd {
  margin-left: 0;
}

.flow02 > li {
  padding: 40px 10px;;
}

.flow02 > li:not(:last-child) {
  border-bottom: 3px solid #B058D6;
  position: relative;
}

.flow02 > li:not(:last-child)::before,
.flow02 > li:not(:last-child)::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 15%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow02 > li:not(:last-child)::before {
  border-width: 22px;
  border-top-color: #B058D6;
}

.flow02 > li:not(:last-child)::after {
  border-width: 18px;
  border-top-color: #fff;
}

.flow02 > li dl {
  margin: 0;
}

.flow02 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  border-bottom: 2px dotted #878787;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
}

.flow02 > li dl dt .icon02 {
  font-size: 0.6em;
  color: #fff;
  background: #B058D6;
  padding: 5px 10px;
  display: inline-block;
  margin-right: 0.5em;
}

/*　フローデザイン03　*/
.flow_design03 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

.flow_design03 ul {
  padding: 0;
}

.flow_design03 li {
  list-style-type: none;
}

.flow_design03 dd {
  margin-left: 0;
}

.flow03 {
  position: relative;
}

.flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.flow03 > li {
  position: relative;
}

.flow03 > li:not(:last-child) {
  margin-bottom: 60px;
}

.flow03 > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: #8EB83C;
  display: inline-block;
  margin-right: 0.3em;
}

.flow03 > li dl {
  padding-left: 70px;
  position: relative;
}

.flow03 > li dl::before,
.flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #8EB83C;
  border-radius: 50%;
  left: -4px;
}

.flow03 > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow03 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #8EB83C;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

/*　フローデザイン04　*/
.flow04 {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.flow04 > li {
  list-style-type: none;
  width: 100%;
  max-width: 350px;
  display: flex;
}

.flow04 > li .icon04 {
  line-height: 2;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #fff;
  background: #E26B5D;
  margin: 0 auto 10px;
  display: block;
  border-radius: 100vh;
  position: relative;
}

.flow04 > li .icon04::before {
  content: "";
  border: solid transparent;
  border-width: 7px;
  border-top-color: #E26B5D;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow04 > li dl {
  padding: 30px 20px;
  margin: 0;
  border: 3px solid #E26B5D;
  position: relative;
}

.flow04 > li:not(:first-child) dl::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid #E26B5D;
  border-right: 4px solid #E26B5D;
  position: absolute;
  top: calc(50% - 14px);
  left: -45px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.flow04 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #E26B5D;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-bottom: 10px;
  text-align: center;
}

.flow04 > li dl dd {
  margin-left: 0;
}

@media(max-width: 767px){
  .flow04 {
    gap: 20px;
  }
  .flow04 > li {
    max-width: unset;
    display: block;
  }
  .flow04 > li:not(:first-child) dl::before {
    display: none;
  }
}

/*　フローデザイン05　*/
.flow_design05 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow05 {
  padding-left: 0;
}

.flow05 > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}

.flow05 > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow05 > li .icon05 {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #4D9BC1;
  color: #fff;
  position: absolute;
  left: 0;
}

.flow05 > li:not(:last-child)::before {
  content: '';
  background: #c3c3c3;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow05 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #4D9BC1;
}

.flow05 > li dl dd {
  margin-left: 0;
}

/*　フローデザイン06　*/
.flow_design06 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow06 {
  padding-left: 0;
  overflow: hidden;
}

.flow06 > li {
  list-style-type: none;
  padding: 0 0 1.3em 2.3em;
  margin: 0;
  position: relative;
}

.flow06 > li .icon06 {
  font-size: 0.7em;
  display: block;
  color: #F88400;
}

.flow06 > li .icon06::before {
  content: "";
  display: block;
  width: 12px;
  border-top: solid 3px #f88400;
  position: absolute;
  top: 10px;
  left: 12px;
}

.flow06 > li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #F88400;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}

.flow06 > li:not(:last-child)::after {
  content: "";
  display: block;
  height: 100%;
  border-left: solid 5px #bbb;
  position: absolute;
  top: 20px;
  left: 3px;
}

.flow06 > li dl::after {
    content: "";
    width: 100%;
    display: block;
    border-bottom: solid 3px #F88400;
    position: absolute;
    bottom: 22px;
    left: 21px;
}

.flow06 > li dl::before {
    content: "";
    height: calc(100% - 35px);
    display: block;
    border-left: solid 3px #F88400;
    position: absolute;
    top: 10px;
    left: 21px;
}

.flow06 > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 10px;
}

.flow06 > li dl dd {
  margin-left: 0;
}

/*　フローデザイン07　*/
.flow_design07 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow07 {
  padding-left: 0;
}

.flow07 > li {
  list-style-type: none;
  display: flex;
}

.flow07 > li:not(:last-child) {
  margin: 0 0 50px;
}

.flow07 > li .icon07 {
  width: 90px;
  box-sizing: border-box;
  padding: 20px 10px 10px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  background: #B058D6;
  border-radius: 5px 5px 0 0;
  position: relative;
  line-height: 125%;
  margin: 0;
}
.flow07 > li .icon07::after {
  content: ' ';
  width: 0;
  height: 0;
  border-left: 45px solid transparent;
  border-right: 45px solid transparent;
  border-top: 20px solid #B058D6;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.flow07 > li dl {
  padding: 0 0 0 30px;
  width: calc(100% - 115px);
}

.flow07 > li dl dt {
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
}
.flow07 > li dl dt::after {
  content: '';
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #B058D6;
}

.flow07 > li dl dd {
  margin: 0;
}

/*　フローデザイン08　*/
.flow_design08 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow08 {
  padding-left: 0;
}

.flow08 > li {
  list-style-type: none;
  border-radius: 15px;
  background: #F4F6FA;
  position: relative;
  padding: 20px;
}

.flow08 > li:not(:last-child) {
  margin-bottom: 20px;
}

.flow08 > li dl {
  display: flex;
  align-items: center;
  gap: 20px;
}

.flow08 > li dl dt {
  font-size: 1.2em;
  font-weight: 700;
  width: 20%;
  min-width: 7em;
}

.flow08 > li .icon08 {
  color: #8EB83C;
  margin-right: 0.5em;
}

.flow08 > li dl dd {
  margin: 0;
  width: calc(80% - 20px);
}

/*　フローデザイン09　*/
.flow_design09 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow09 {
  padding-left: 0;
  border-bottom: solid 1px #E1E8ED;
}

.flow09 > li {
  list-style-type: none;
  display: flex;
  padding: 20px 0;
  border-top: solid 1px #E1E8ED;
}

.flow09 > li dl dt {
  font-size: 1.2em;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 10px;
}

.flow09 > li .icon09 {
  line-height: 1;
  font-size: 2em;
  font-weight: bold;
  color: #E26B5D;
  text-align: center;
  width: 70px;
  position: relative;
  margin-top: 0;
}

.flow09 > li .icon09::before {
  content: 'STEP';
  font-size: 0.3em;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 1px;
}

.flow09 > li .icon09::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #858585;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  margin: auto;
}

.flow09 > li dl dd {
  margin: 0;
}

.flow09 > li dl {
  width: calc(100% - 70px);
  margin-top: 0.8em;
}

/*　フローデザイン10　*/
.flow_design10 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow10 {
  padding-left: 0;
}

.flow10 > li {
  list-style-type: none;
  border: 2px solid #4D9BC1;
  padding: 20px;
  border-radius: 20px;
}

.flow10 > li:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}

.flow10 > li:not(:last-child)::after {
  content: '';
  position: absolute;
  border: 20px solid transparent;
  width: 0;
  height: 0;
  bottom: -53px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  border-top-color: #4D9BC1;
}

.flow10 > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
  border-bottom: 2pt dashed #ccc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.flow10 > li .icon10 {
  color: #4D9BC1;
  margin-right: 0.5em;
}

.flow10 > li dl dd {
  margin: 0;
}

/*　フローデザイン11　*/
.flow_design11 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow11 {
  padding-left: 0;
}

.flow11 > li {
  list-style-type: none;
  position: relative;
  padding: 0 20px 0 90px;
  border-bottom: 10px solid #F88400;
}

.flow11 > li:not(:last-child) {
  margin-bottom: 40px;
}

.flow11 > li .icon11 {
  position: absolute;
  margin: 0;
  line-height: 0;
  font-size: 100px;
  font-weight: bold;
  left: 10px;
  bottom: 30px;
  color: transparent;
  -webkit-text-stroke: 3px #F88400;
}

.flow11 > li dl dt {
  font-size: 1.3em;
  font-weight: bold;
}

.flow11 > li dl dd {
  margin: 0;
}

/*　フローデザイン12　*/
.flow12 {
	margin: 0;
	padding: 0;
}
.flow12 > li {
	list-style-type: none;
	position: relative;
  padding-bottom: 50px;
	display: flex;
	align-items: flex-start;
}
.flow12 > li:nth-of-type(even)::after {
	content: "";
	position: absolute;
	left: 50px;
	top: 0;
	width: 0;
  height: 100%;
	border-left: 4px dotted #d4d4d4;
}
.flow12 > li:nth-of-type(odd)::before {
	content: "";
	position: absolute;
	left: 50px;
	top: -40px;
	width: 20%;
	height: 40px;
}
.flow12 > li:nth-of-type(odd)::after {
	content: "";
	position: absolute;
	left: 50px;
	top: 50px;
	width: 20%;
	height: calc(100% - 50px);
	border-left: 4px dotted #d4d4d4;
}
.flow12 > li:first-of-type::before, .flow12 > li:last-of-type::after {
  content: unset;
}
.flow12 > li dl {
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 130px);
}
.flow12 > li .icon12 {
	display: inline-block;
	margin: 0;
	width: 100px;
	height: auto;
	margin-right: 20px;
	text-align: center;
	font-weight: bold;
	vertical-align: middle;
	font-size: 2rem;
	line-height: 100px;
	background: #B058D6;
	color: #fff;
	border-radius: 100vh;
	position: relative;
	z-index: 1;
}
.flow12 > li dt {
	display: inline-block;
	margin: 1rem 0 0.5rem;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: .1em;
}
.flow12 > li dd {
	max-width: 550px;
	margin: 0;
	font-weight: normal;
	line-height: 2;
	letter-spacing: .1em;
}

@media screen and (min-width: 960px) {
	.flow12 > li:nth-of-type(even) {
		margin-left: 20%;
		padding-top: 20px;
	}
	.flow12 > li:nth-of-type(odd)::after {
		border-bottom: 4px dotted #d4d4d4;
	}
	.flow12 > li:nth-of-type(odd)::before {
		border-top: 4px dotted #d4d4d4;
		border-left: 4px dotted #d4d4d4;
	}
	.flow12 > li:nth-of-type(even)::after {
		height: calc(100% - 40px);
	}
}

/*テーブル　テンプレートパーティ　パーツ
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1-parts caption {
	font-weight: bold;		/*太字に*/
	font-size: 2.8rem;      /*サイズアップ*/
	text-align-last: left;  /*左合わせで*/
	padding: 0.2rem 1rem;	/*ボックス内の余白*/
	margin-bottom: 15px;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
	background: #fff;		/*背景色*/
	color: #555;			/*文字色*/
}

/*テーブルブロック設定*/
.ta1-parts {
	table-layout: fixed;
	/* === 修正: セルの境界線を単一線にする === */
	border-collapse: collapse;
	/* ================================== */
	border-top: 1px solid #999;	/*テーブルの一番上の線。幅、線種、色。*/
	width: 80%;
	margin-bottom: 2rem;		/*テーブルの下に空けるスペース。２文字分。*/
	background: #fff;		/*テーブル全体の背景色*/
	color: #555;			/*テーブル全体の文字色*/
	/* === 追加する設定: 左右の余白を自動にし、中央配置にする === */
	margin-left: auto;
	margin-right: auto;
    /* ==================================================== */
}

/*tr（１行分）タグ設定*/
.ta1-parts tr {
	border-bottom: 1px solid #999;	/*テーブルの下線。幅、線種、色。*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1-parts th, .ta1-parts td {
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
	/* === 追加する設定 === */
	vertical-align: top; /* テキストを上合わせにする */
    /* ==================== */
}

/*th（左側）のみの設定*/
.ta1-parts th {
	width: 20%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: #fff;	/*背景色*/
	/* === 追加する設定 === */
	vertical-align: top; /* テキストを上合わせにする */
    /* ==================== */
}

/*　両側がめくれているような影のあるデザイン*/
.ttl_3d19 {
  background-color: #4c9ac0;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 0.3em 0.5em;
  text-align: center;
}
.ttl_3d19::before,.ttl_3d19::after {
  position: absolute;
  bottom: 30px;
  width: 20%;
  height: 7px;
  background: transparent;
  box-shadow: 0 25px 20px rgba(0, 0, 0, .8);
  content: "";
  z-index: -1;
}
.ttl_3d19::before {
  transform: rotate(-5deg);
  left: 5px;
}
.ttl_3d19::after {
  transform: rotate(5deg);
  right: 5px;
}
/*実験*/
.container {
    /* これが最も重要 */
    display: flex; 
    
    /* 要素間のスペースを均等に開ける */
    justify-content: space-between; 
    
    /* 垂直方向の中央揃え */
    align-items: center; 
    
    border: 1px solid #ccc;
    padding: 10px;
    height: 100px;
}

.item {
    padding: 10px;
    background-color: #f0f0f0;
}

/* =============================== */
/* 左右タイトル部分（新規追加） */
/* =============================== */

.timeline-header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  margin-top: -20px; /* 少し中央線に寄せ気味 */
}

.timeline-header .header-left,
.timeline-header .header-right {
  width: 45%;
  font-size: 30px;
  font-weight: bold;
  color: #2b5796;
  padding: 8px 0;
}

.timeline-header .header-left {
  text-align: right;
  padding-right: 6%;
}

.timeline-header .header-right {
  text-align: left;
  padding-left: 6%;
}

/* 中央線がタイトルを貫通しないように */
.timeline-header::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: none; /* タイトルには線を表示しない */
}

/* =============================== */
/* スマホ用（768px以下） */
/* =============================== */
@media screen and (max-width: 768px) {

  .timeline-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }

  .timeline-header .header-left,
  .timeline-header .header-right {
    width: 100%;
    text-align: center;
    padding: 4px 0;
    font-size: 17px;
  }

}
