
/*タイムライン全体の設定*/
.timeline{
	max-width: 800px;
	width:100%;
	margin:50px auto;
	padding:0 30px;
  }
  
  .timeline li{
	  /*線の起点とするためrelativeを設定*/
	  position: relative;
	list-style: none;
	padding:0 0 20px 0;
  }
  
  .timeline dl{
	margin:0 0 20px 3em;
  }
  
  .timeline dd strong{
	display: block;
	padding:10px 0;
  }
  
  /*絶対配置で線を設定*/
  .border-line {
	  /*線の位置*/
	position: absolute;
	left:0.2em;
	top:0;
	width:3px;/*線の太さ*/
	height:0;/*はじめは高さを0に*/
	background: #bdd1f0;
  }
  
  /*タイムラインの見出し横の丸の位置と形状*/
  .timeline li::after{
	content:'';
	position: absolute;
	top:0;
	left:0;
	width:15px;
	height: 15px;
	background:#bdd1f0;
	border-radius: 50%;
  }


  
  
  /*============ひとことメモのためのcss=======*/
  .box-019 {
	position: relative;
	margin-top: 1em;
	padding: 1.8em 1.5em 1em 1.5em;
	border: 2px solid #f3d094;
	margin-left: 5%;
	margin-right: 5%;
  }
  
  .box-019 > div {
	position: absolute;
	top: -1.15em;
	left: -.5em;
	padding: .4em 1.4em;
	border-radius: 25px;
	background-color: #f3d094;
	color: #fff;
	font-size: .9em;
  }
  
  .box-019 > div::before {
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 16px;
	height: 8px;
	background-color: #f3d094;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	content: '';
  }
  
  .box-019 p {
	margin: 0;
  }



  .list-008 {
	position: relative;
	padding: 0.5em 1em 1em 2.5em;
	border: 2px solid #2589d0;
	margin-top: 3%;
	margin-left: 15%;
	margin-right: 15%;
	margin-bottom: 10%;
  }
  
  .list-008 > div {
	position: absolute;
	top: -.75em;
	left: 1em;
	padding: 0 .5em;
	background-color: #fff;
	color: #2589d0;
	font-weight: 600;
  }
  
  .list-008 ul {
	list-style-type: disc;
	margin: 0;
	padding: 0;
  }
  
  .list-008 li {
	padding: .3em .3em .3em 0;
  }
  
  .list-008 li::marker {
	color: #2589d0;
	font-size: 1.1em;
  }