@charset "utf-8";
.profile__img {
	text-align: center;
}
.history__box {
  position: relative;
	z-index: 100;
}

.timeline {
  position: relative;
  margin: 2rem;
  padding-left: 2rem;
  border-left: 2px solid var(--gray);
}
.timeline-item {
  margin-bottom: 1.5rem;
  position: relative;
}
@container (min-width: 768px) {
	.timeline-item {
		display: flex;
	}
}
.timeline-date {
  font-family: "Afacad", sans-serif;
	width: 10rem;
	font-size: 2.4rem;
	font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.timeline-content {
	width: 100%;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(100, 100, 100, 0.1);
}
.timeline-content>strong {
	margin-right: 2rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.8rem;
  top: 1.2rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--gray);
  border-radius: 50%;
}

.tagBox li{
	display: inline-block;
	margin: 0 .1em .6em 0;
	padding: .6em 1em;
	line-height: 1;
	background-color: var(--white);
	border: 1px solid var(--base_light);
	border-radius: 2em;
}