/* CSS Document */

/* =====================
  Base
===================== */
.history {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 16px;
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont,
               "Hiragino Kaku Gothic ProN",
               "Noto Sans JP", sans-serif;
}

.history__title {
  font-size: 24px;
  margin-bottom: 32px;
  border-bottom: 2px solid #1f3a5f;
  padding-bottom: 8px;
}

/* =====================
  Timeline
===================== */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid #002f5d;
}

.timeline__item {
  display: flex;
  gap: 24px;
  padding: 0 0 28px 0;
  position: relative;
}

/* 丸ポイント */
.timeline__item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #00b6c9;
  border-radius: 50%;
}

/* 年月 */
.timeline__year {
  min-width: 110px;
  font-weight: 600;
  color: #1f3a5f;
 font-size: clamp(1.5rem, 1.4vw, 1.5rem);
  text-align: right;
  white-space: nowrap;
	position: relative;
	top:0px;
}

/* 内容 */
.timeline__content {
  padding-top: 0;
}

.timeline__content h3 {
  margin: 0 0 4px;
 font-size: clamp(1.5rem, 1.6vw, 1.8rem);
  font-weight: 600;
	line-height: 1.7;
}

.timeline__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

/* =====================
  Responsive
===================== */
@media (max-width: 834px) {
  .timeline {
    border-left: none;
  }

  .timeline__item {
    flex-direction: column;
    padding-left: 0;
	 
  }

  .timeline__item::before {
 
  }
	
	

  .timeline__year {
    text-align: left;
	  padding-left: 10px;
	   top: -2px;

  }
	.timeline__content h3 {
  margin: 0 0 4px;
 font-size: clamp(1.5rem, 1.6vw, 1.8rem);
  font-weight: 600;
	line-height: 1.7;
		margin-top: -25px;
}
}
























