@charset "utf-8";
/* CSS Document */


header {
	background-color: #F9F9F9;
}

/* ===== history ===== */
.history {
  padding: 40px 0 80px;
  margin: 90px 0 0;
  background: #fff;
  color: #111;
}

@media (max-width: 1000px) {
.history {
  margin: 60px 0 0;
}	
}

.history_container {
  max-width: 1400px;
	width: 95%;
  margin: 0 auto;
}

.history_container h3 {
	font-size: 18px;
	font-weight: bold;
	padding: 50px 0 20px;
	color: #585858;
}


#title_box {
padding: 40px 0 0;
	background-color: #FF87A2;
	border-radius: 10px;
}

#title_box h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
	text-align: center;
	color: #FFF;
	
}

#title_box p {
  margin: 6px 0 15px;
  font-size: 12px;
  letter-spacing: 0.18em;

	text-align: center;
	color: #FFF;
}

#title_box img {
	display: block;
	max-width: 1000px;
	width: 90%;
    margin: 0 auto;
}

#history_list {
	margin: 100px 0;
	position: relative;
} 

@media (max-width: 1000px) {
#history_list {
	margin: 50px 0;
} 	
}

#history_list::after {
	content: "";
	position: absolute;
	width: 5px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 2;
	background-color: #FFC5D5;
}

@media (max-width: 1000px) {
#history_list::after {
	width: 3px;
	left: 20px;
	right: auto;
	margin: 0;

}	
}


#history_list .date {
	padding: 8px 20px;
	border-radius: 30px;
	background-color: #FF87A2;
	color: #FFF;
	text-align: center;
	max-width: 300px;
	margin: 0 auto 20px;
	font-size: 26px;
	position: relative;
	z-index: 3;
}

@media (max-width: 1000px) {
#history_list .date {
	padding: 4px 36px;
	font-size: 20px;
	margin: 0 0 20px;
	display: inline-block;
	
}	
}


.history_box {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	align-items: center;
	padding: 25px 0;
	margin: 0 0 50px;
}

@media (max-width: 1000px) {
.history_box {
	display: block;
}	
}

#history_list li:nth-child(2n) .history_box {
	flex-direction: row;
}

.history_box figure {
	width: 50%;
}

@media (max-width: 1000px) {
.history_box figure {
	width: 100%;
	padding: 0 0 0 20px;
}	
}

.history_box figure img {
	display: block;
	width: 60%;
	margin: 0 auto;
}


.history_text {
	width: 50%;
	box-sizing: border-box;
	padding: 45px;
}

@media (max-width: 1000px) {
.history_text {
	width: 100%;
	box-sizing: border-box;
	padding: 10px 10px 10px 45px;
}	
}

.history_text h2 {
	font-size: 24px;
	color: #595959;
	font-weight: bold;
	margin: 0 0 25px;
}

.history_text p {
	font-size: 16px;
	color: #737373;
	margin: 0 0 25px;
	line-height: 1.7;
}

@media (max-width: 1000px) {
.history_text p {
	font-size: 15px;
}	
}

