@charset "UTF-8";
/* CSS Document */
.List {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
}
@media screen and (max-width: 540px) {
  .List {
    margin-top: 24px;
  }
}
.List-Item {
  border-top: 1px solid #EAEAEA;
  display: flex;
}
.List-Item:first-child {
  border-top: none;
}
.List-Item-Title {
  width: 25%;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.8;
  font-weight: bold;
  font-size: 15px;
}
@media screen and (max-width: 540px) {
  .List-Item-Title {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
}
.List-Item-Text {
  width: 75%;
  padding: 10px;
  line-height: 1.8;
  font-size: 15px;
}
.List-Item-Ul {
  width: 75%;
  padding: 10px;
  line-height: 1.8;
  list-style: none;
  font-size: 15px;
}
@media screen and (max-width: 540px) {
  .List-Item-Text {
    display: flex;
    align-items: center;
    font-size: 14px;
  }
  .List-Item-Ul {
    font-size: 14px;
  }
}

.timeline {
    width: 96%;
    max-width: 980px;
    margin: 0 auto;
}

.timeline-list {
    padding: 40px 0;
}

.timeline-list-item {
    display: flex;
    line-height: 1.5;
    font-size: 16px;
}

.timeline-list-item .date {
    width: 20%;
    padding: 0 0 0 20px;
    color: #A9A9A9;
    font-weight: bold;
}

.timeline-list-item .content {
    position: relative;
    width: 80%;
    padding: 0 20px 60px 30px;
    border-left: 4px solid #aaaaaa;
}

.timeline-list-item .content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px; 
    width: 16px;
    height: 16px;
    background-color: #0376C6;
    border-radius: 10px;
}
.timeline-list-item h3 {
	font-size: 1.2em;
	font-weight:bold;
}

.about_h2 {
	letter-spacing:5px;
}

@media screen and (max-width: 540px) {
.timeline {
	max-width:initial;
    width: 100%;
}
	.timeline-list-item {
    display: flex;
    line-height: 1.5;
    font-size: 14px;
}
	.timeline-list-item h3 {
	font-size: 14px;
	font-weight:bold;
}
}