@charset "utf-8";
/*
.timeline {
	list-style: none;
	margin-top: 80px;
	margin-right: auto;
	margin-left: auto;
	
}
.timeline > li {
  margin-bottom: 60px;
}
*/
/* for Desktop */

@media ( min-width : 800px ){

	.brmb {
		display:none;
	}
	.timeline {
		margin-left: calc(50% - 250px);
		margin-right: auto;
		
	}
  .timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }
  .timeline-date {
	width: 200px;
	float: left;
	margin-top: 20px;
	//background-color: rgba(102,255,255,1);
  }
  .timeline-content {
	width: 300px;
	float: left;
	border-left: 3px #eee solid;
	padding-left: 30px;
	padding-bottom: 20px;
	//background-color: rgba(102,255,102,1);
  }
  .timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #bbb;
	//background: #6fc173;
    position: absolute;
    left: 195px;
    top: 24px;
    border-radius: 100%;
  }

}

