@charset "utf-8";
/* ===================================================================
CSS
 file name  :  education.css
=================================================================== */
@media screen and (min-width: 769px) {
	h1.page_title{
		background-image: url("../images/education/bg_title_education.png");
	}
	.title_timeline{
		margin-top: 50px;
		display: flex;
		justify-content: space-between;
	}
	.title_timeline div{
		width: 44%;
		background: #405E96;
		border-radius: 5px;
		text-align: center;
		color: #FFFFFF;
		padding: 0.7em;
	}
}
@media screen and (max-width: 768px) {
	.title_timeline{
		display: none;
	}
}

/*===== Vertical Timeline =====*/
#conference-timeline {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
#conference-timeline .conference-center-line {
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	margin-left: -1px;
	background: #202466;
	z-index: -1;
}
.timeline-article {
	  width: 100%;
	  position: relative;
	  overflow: hidden;
	  margin: 40px 0 auto 0;
}
.timeline-article.last{
	background: #FFF;
}
.timeline-article .content-left-container,
.timeline-article .content-right-container {
	max-width: 44%;
	width: 100%;
}
.timeline-article .content-left,
.timeline-article .content-right {
	position: relative;
	width: auto;
	border: 1px solid #BDD0F4;
	border-radius: 5px;
	background-color: #fff;
	padding: 20px 25px;
}
.timeline-article .content-left-photo,
.timeline-article .content-right-photo {
	border-radius: 5px;
	overflow: hidden;
}
.timeline-article .content-left-container {
	float: left;
}
.timeline-article .content-right-container {
	float: right;
}

@media screen and (min-width: 769px) {
	.timeline-article .content-left::before {
		content: "";
		position: absolute;
		top: 30px;
		right: -24px;
		border: 12px solid transparent;
		border-left: 12px solid #FFF;
		z-index: 2;
	}
	.timeline-article .content-left::after {
		content: "";
		position: absolute;
		top: 28px;
		right: -28px;
		border: 14px solid transparent;
		border-left: 14px solid #BDD0F4;
		z-index: 1;
	}
	.timeline-article .content-right:before {
		content: "";
		position: absolute;
		top: 30px;
		left: -24px;
		border: 12px solid transparent;
		border-right: 12px solid #FFF;
		z-index: 2;
	}
	.timeline-article .content-right:after {
		content: "";
		position: absolute;
		top: 28px;
		left: -28px;
		border: 14px solid transparent;
		border-right: 14px solid #BDD0F4;
		z-index: 1;
	}
}
.timeline-article .meta-date {
	position: absolute;
	top: 0;
	left: 50%;
	width: 80px;
	height: 80px;
	margin-left: -40px;
	color: #fff;
	border-radius: 100%;
	background: #202466;
}
.timeline-article .meta-date .month {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	font-weight: 500;
	font-size: 2.0rem;
}

@media only screen and (max-width: 768px) {
	#conference-timeline {
		margin: 0 auto;
		max-width: 480px
	}
	#conference-timeline .conference-center-line {
		margin-left: 0;
		left: 25px;
	}
	.timeline-article {
		  margin: 20px 0 auto 0;
	}
	.timeline-article .meta-date {
		margin-left: 0;
		left: 0px;
		width: 50px;
		height: 50px;
	}
	.timeline-article .meta-date .month {
		height: 50px;
		font-size: 1.2rem;
	}
	.timeline-article .content-left-container,
	.timeline-article .content-right-container {
		max-width: 100%;
		width: auto;
		float: none;
		margin-left: 70px;
	}
	.timeline-article .content-right-photo,
	.timeline-article .content-left-photo {
		margin-top: 20px;
	}
	.timeline-article .content-left,
	.timeline-article .content-right {
		padding: 10px 20px;
	}
	.timeline-article .content-left::before,
	.timeline-article .content-right::before {
		content: "";
		position: absolute;
		top: 10px;
		left: -22px;
		border: 12px solid transparent;
		border-right: 12px solid #FFF;
		z-index: 2;
	}
	.timeline-article .content-left::after,
	.timeline-article .content-right::after{
		content: "";
		position: absolute;
		top: 10px;
		left: -24px;
		border: 12px solid transparent;
		border-right: 12px solid #BDD0F4;
		z-index: 1;
	}

}
@media only screen and (max-width: 400px) {
  .timeline-article p {
    margin: 0;
  }
  .timeline-article p span.article-number {
    display: none;
  }
  
}

/*吹き出しの中*/
.training_list{
	line-height: 1.8;
	font-weight: 500;
	margin-bottom: 1em
}
.training_list li,
p.subtitle{
	line-height: 1.8;
	font-weight: 500;
	background: url("../images/education/bg_circle.png") no-repeat left top 10px;
	background-size: 10px auto;
	padding-left: 1.2em;
}
p.subtitle{
	margin-bottom: 0.5em;
}
@media screen and (min-width: 1000px) {
	.training_list{
		display: flex;
		flex-wrap: wrap;
	}
	.training_list li{
		width: 50%;
	}
}
@media screen and (max-width: 768px) {
	.training_list li,
	p.subtitle{
		background: url("../images/education/bg_circle.png") no-repeat left top 8px;
		background-size: 5px auto;
	}
}